/*
 * Main CSS file, altrain.ru
 *
 * Copyright (c) 2024 Ivan Shchurupov, plarson.ru
 *
 * Date: 2024-01-24
 * Update 2024-01-29
 */
@import "../fonts/font.css";
:root {
  --faze-color-primary: #2563eb;
  --faze-color-primary-dark: #1d53c7;
  --faze-color-success: #4bb543;
  --faze-color-error: #e94151;
  --faze-color-white: #ffffff;
  --faze-color-black: #000000;
  --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-color-background: #ffffff;
  --faze-color-background-hover: #2563eb1a;
  --faze-color-background-active: #2563eb33;
  --faze-shadow-light: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.12), 0 0.1rem 0.2rem rgba(0, 0, 0, 0.24);
  --faze-shadow-medium: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16), 0 0.3rem 0.6rem rgba(0, 0, 0, 0.23);
  --faze-shadow-heavy: 0 1rem 2rem rgba(0, 0, 0, 0.19), 0 0.6rem 0.6rem rgba(0, 0, 0, 0.23);
  --faze-border-radius: 0.5rem;
  --faze-font-fontawesome: 'Font Awesome 6 Pro';
  --faze-line-height: 1.2;
  --faze-size-xs: 1.2rem;
  --faze-size-sm: 1.4rem;
  --faze-size-md: 1.6rem;
  --faze-size-lg: 1.8rem;
  --faze-size-xl: 2rem;
  --faze-margin-xs: 0.4rem;
  --faze-margin-sm: 0.8rem;
  --faze-margin-md: 1.2rem;
  --faze-margin-lg: 1.6rem;
  --faze-margin-xl: 2rem;
  --faze-padding-xs: 0.4rem;
  --faze-padding-sm: 0.8rem;
  --faze-padding-md: 1.2rem;
  --faze-padding-lg: 1.6rem;
  --faze-padding-xl: 2rem;
  --faze-gap-xs: 0.4rem;
  --faze-gap-sm: 0.8rem;
  --faze-gap-md: 1.2rem;
  --faze-gap-lg: 1.6rem;
  --faze-gap-xl: 2rem;
  --faze-breakpoint-xs: 480px;
  --faze-breakpoint-sm: 768px;
  --faze-breakpoint-md: 1024px;
  --faze-breakpoint-lg: 1280px;
  --faze-breakpoint-xl: 1440px;
}
* {
  outline: none;
  box-sizing: border-box;
}
html {
  font-size: 10px;
}
.faze-hide {
  display: none !important;
}
.faze-hidden {
  visibility: hidden !important;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.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;
  color: var(--faze-color-text);
  font-size: var(--faze-size-sm);
  line-height: var(--faze-line-height);
  background: var(--faze-color-white);
  border-radius: var(--faze-border-radius);
  box-shadow: var(--faze-shadow-light);
  animation: fadeInUp 0.2s ease-out;
  z-index: 30;
}
[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,
[data-faze~=tab][data-faze-styles=true] .faze-tabs-headers {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 0.1rem solid var(--faze-color-border);
}
.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],
[data-faze~=tab][data-faze-styles=true] .faze-tab-header,
[data-faze~=tab][data-faze-styles=true] [data-faze-tab=header],
[data-faze~=tab][data-faze-styles=true] [data-faze-tab-head] {
  padding: 1rem;
  color: var(--faze-color-text);
  font-size: var(--faze-size-sm);
  line-height: 1;
  border: 0.1rem solid var(--faze-color-border);
  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),
[data-faze~=tab][data-faze-styles=true] .faze-tab-header:not(:first-child),
[data-faze~=tab][data-faze-styles=true] [data-faze-tab=header]:not(:first-child),
[data-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: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,
[data-faze~=tab][data-faze-styles=true] .faze-tab-header:hover,
[data-faze~=tab][data-faze-styles=true] [data-faze-tab=header]:hover,
[data-faze~=tab][data-faze-styles=true] [data-faze-tab-head]:hover {
  background-color: var(--faze-color-background-hover);
  cursor: pointer;
}
.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,
[data-faze~=tab][data-faze-styles=true] .faze-tab-header.faze-active,
[data-faze~=tab][data-faze-styles=true] [data-faze-tab=header].faze-active,
[data-faze~=tab][data-faze-styles=true] [data-faze-tab-head].faze-active {
  background-color: var(--faze-color-background-active);
}
.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],
[data-faze~=tab][data-faze-styles=true] .faze-tab-body,
[data-faze~=tab][data-faze-styles=true] [data-faze-tab=body],
[data-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 .faze-drag-item-phantom,
[data-faze~=drag] .faze-drag-item-phantom {
  width: var(--faze-width);
  height: var(--faze-height);
  transition: var(--faze-animation);
}
.faze-drag .faze-drag-item-phantom2,
[data-faze~=drag] .faze-drag-item-phantom2 {
  width: var(--faze-width);
  height: var(--faze-height);
  transition: var(--faze-animation);
}
.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,
[data-faze=dropdown] {
  position: relative;
}
.faze-dropdown .faze-title,
.faze-dropdown [data-faze-dropdown=title],
[data-faze=dropdown] .faze-title,
[data-faze=dropdown] [data-faze-dropdown=title] {
  display: inline-flex;
  padding: var(--faze-padding-sm) var(--faze-padding-md);
  border: 0.1rem solid var(--faze-color-border);
  border-radius: var(--faze-border-radius);
  line-height: var(--faze-line-height);
  user-select: none;
  z-index: 5;
}
.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;
  margin-top: var(--faze-margin-md);
  padding: var(--faze-padding-md);
  background: var(--faze-color-background);
  border: 0.1rem solid var(--faze-color-border);
  border-radius: var(--faze-border-radius);
  box-shadow: var(--faze-shadow-light);
  animation: fadeInUp 0.2s ease-out;
  z-index: 6;
}
.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-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,
.faze-select > .title {
  display: inline-flex;
  padding: var(--faze-padding-sm) var(--faze-padding-md);
  line-height: var(--faze-line-height);
  border: 0.1rem solid var(--faze-color-border);
  border-radius: var(--faze-border-radius);
  user-select: none;
  z-index: 5;
}
.faze-select > .faze-title:hover,
.faze-select > .title:hover {
  cursor: pointer;
}
.faze-select > .faze-body,
.faze-select > .body {
  position: absolute;
  display: none;
  margin-top: var(--faze-margin-md);
  padding: var(--faze-padding-md);
  background: var(--faze-color-background);
  border: 0.1rem solid var(--faze-color-border);
  border-radius: var(--faze-border-radius);
  box-shadow: var(--faze-shadow-light);
  animation: fadeInUp 0.2s ease-out;
  z-index: 6;
}
.faze-select > .faze-body > .faze-option:hover,
.faze-select > .body > .faze-option:hover {
  cursor: pointer;
}
.faze-select.faze-active > .faze-body,
.faze-select.faze-active > .body {
  display: block;
}
.faze-smartsearch-items {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  max-height: 33rem;
  margin-top: var(--faze-margin-md);
  border: 1px solid var(--faze-color-border);
  border-radius: var(--faze-border-radius);
  background: var(--faze-color-background);
  box-shadow: var(--faze-shadow-light);
  overflow: auto;
  animation: fadeInUp 0.2s ease-out;
  z-index: 5;
}
.faze-smartsearch-items .faze-smartsearch-item {
  padding: var(--faze-padding-sm) var(--faze-padding-md);
  color: var(--faze-color-text);
  font-size: var(--faze-size-sm);
  line-height: var(--faze-line-height);
  user-select: none;
}
.faze-smartsearch-items .faze-smartsearch-item.faze-active,
.faze-smartsearch-items .faze-smartsearch-item:hover {
  cursor: pointer;
  background: var(--faze-color-background-hover);
}
.faze-smartsearch-items.faze-active {
  display: block;
}
.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 {
  will-change: transform;
}
.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;
}
.carousel-new-test body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #1a1a2e;
}
.carousel-new-test .carousel-container {
  position: relative;
  width: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.carousel-new-test .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
}
.carousel-new-test .carousel-track.dragging {
  cursor: grabbing;
}
.carousel-new-test .carousel-slide {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  flex-shrink: 0;
  user-select: none;
  border-radius: 8px;
}
.carousel-new-test img {
  width: 100%;
  height: auto;
}
.carousel-new-test .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsla(0, 0%, 100%, 0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}
.carousel-new-test .carousel-btn:hover {
  background: hsla(0, 0%, 100%, 0.5);
}
.carousel-new-test .carousel-btn.prev {
  left: 10px;
}
.carousel-new-test .carousel-btn.next {
  right: 10px;
}
.carousel-new-test .carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.carousel-new-test .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-new-test .dot.active {
  background: #fff;
}
.faze-thumbgallery {
  position: relative;
}
.faze-thumbgallery .faze-thumbgallery-holder {
  display: flex;
  overflow: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.faze-thumbgallery .faze-thumbgallery-holder img {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}
.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 .faze-thumbgallery-gallery[data-faze-thumbgallery-total="6"] {
  grid-template-columns: repeat(5, 1fr);
}
.faze-thumbgallery:hover .faze-thumbgallery-gallery {
  visibility: visible;
}
@media (max-width: 768px) {
  .faze-thumbgallery .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;
}
@keyframes faze-zoombox-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
[data-faze-zoombox-image]:hover {
  cursor: zoom-in;
}
.faze-zoombox-wrapper {
  position: absolute;
  padding: 5px;
  border: 1px solid var(--faze-color-text);
  border-radius: var(--faze-border-radius);
  background-color: var(--faze-color-white);
}
.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: var(--faze-color-white);
  user-select: none;
  animation-name: faze-zoombox-appear;
  animation-duration: 1s;
  transform: translateY(-50%);
}
.faze-zoombox-wrapper .faze-zoombox-arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--faze-color-text);
  border-top: 2px solid var(--faze-color-text);
}
.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: var(--faze-color-white);
  animation-name: faze-zoombox-appear;
  animation-duration: 1s;
}
.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: var(--faze-color-text);
}
.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;
}
/*
 * Basic CSS file, altrain.ru
 *
 * Copyright (c) 2024 Ivan Shchurupov, plarson.ru
 *
 * Date: 2024-01-24
 * Update 2024-01-29
 */
/* базовые стили страницы */
::-webkit-scrollbar {
  width: 0;
}
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #212326;
  color: #e7e5e0;
  font-family: "Oceanic";
  letter-spacing: 1.65px;
  cursor: url("/i/altrain2024/image/cursor-arrow.svg") 4 1, auto;
  /* стили текста и контента в карточках */
  /* Контакты */
  /* плашка время на странице page-horizont */
  /* медиа запросы */
}
body hr {
  width: 141px;
}
body button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: url("/i/altrain2024/image/cursor.svg") 4 1, auto;
}
body h1,
body .h1 {
  font-size: 54px;
  font-family: "Oceanic";
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.85);
  font-weight: normal;
  letter-spacing: 3.24px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  max-width: 80%;
}
body h2 {
  font-family: "Oceanic";
  font-weight: normal;
  font-size: 33px;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: #ffffff;
}
body h3 {
  font-family: "Oceanic";
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  margin-top: 10px;
}
body p {
  font-family: "Gilroy";
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.39px;
  font-size: 13px;
  margin: 40px 0;
}
body a {
  color: #e7e5e0;
  font-family: "Gilroy";
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.39px;
  text-transform: uppercase;
  cursor: url("/i/altrain2024/image/cursor.svg") 4 1, pointer;
}
body ul {
  list-style: none;
  padding: 0;
}
body .btn {
  border-radius: 52px;
  border: 1px solid #e9dec7;
  background-color: #e9dec7;
  color: #000;
  padding: 20px 44px;
  text-decoration: none;
  transition: all 0.5s;
}
body .btn:hover {
  border: 1px solid #212326;
}
body .burger {
  width: 30px;
  height: 30px;
  display: flex;
  background-color: transparent;
  flex-direction: column;
  margin-right: 20px;
  gap: 3px;
  cursor: url("/i/altrain2024/image/cursor.svg") 4 1, pointer;
  position: absolute;
  right: 0;
  top: 5px;
}
body .burger .line1,
body .burger .line3 {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  pointer-events: none;
  transition: all 1s;
}
body .burger .line2 {
  width: 20px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  margin-left: 10px;
  pointer-events: none;
  transition: all 1s;
}
body .burger-active > .line1 {
  transform: rotate(-45deg);
  margin-top: 10px;
}
body .burger-active > .line2 {
  opacity: 0;
}
body .burger-active > .line3 {
  transform: rotate(45deg);
  margin-top: -12px;
}
body .menu {
  z-index: 100;
  position: fixed;
  margin-top: 30px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
body .menu-page {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 67px;
  height: 100vh;
  width: 0;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  overflow: hidden;
  background-color: #212326;
  transition: all 1s;
}
body .menu-page .menu-page-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
body .menu-page .menu-page-items a {
  text-decoration: none;
}
body .menu-page .menu-page-items a:hover {
  text-decoration: underline;
}
body .menu-page .menu-page-items .phone {
  font-size: 16px;
}
body .menu-page .menu-page-items .social {
  display: flex;
  gap: 10px;
}
body .menu-page .menu-page-items .social img {
  width: 38px;
}
body .menu-page .presentation {
  position: absolute;
  padding: 15px;
  bottom: 40px;
  right: 40px;
  border: 1px solid;
  border-radius: 50%;
}
body .menu-page .presentation span {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
}
body .menu-page-active {
  width: 100vw;
}
body .logo-anima {
  animation: startScale 2s ease-in-out;
}
@keyframes startScale {
  0% {
    position: fixed;
    margin-top: 40%;
    scale: 5;
    opacity: 0;
  }
  40% {
    position: fixed;
    margin-top: 40%;
    scale: 5;
    opacity: 1;
  }
  100% {
    position: fixed;
    margin-top: 30px;
    scale: 1;
  }
}
@media (max-width: 767px) {
  @keyframes startScale {
    0% {
      position: fixed;
      margin-top: 80vh;
      scale: 2.5;
      opacity: 0;
    }
    40% {
      position: fixed;
      margin-top: 80vh;
      scale: 2.5;
      opacity: 1;
    }
    100% {
      position: fixed;
      margin-top: 30px;
      scale: 1;
    }
  }
}
body .anima {
  margin: 0 auto;
  text-align: center;
  opacity: 0;
}
body .anima-text {
  opacity: 1;
  animation: startHeader 2s ease-in-out;
}
@keyframes startHeader {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    scale: 0.1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
body .page {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  font-size: 2em;
  transition: 1.2s;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
body [data-page="home"] > div {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
}
body [data-page="portfolio"] > div {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  gap: 40px;
}
body .first-page-title {
  margin: 0 auto;
  margin-top: 46px;
  width: 100vw;
}
body .first-page-text {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 200px;
  font-family: "Gilroy";
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}
body .left {
  transition: 1.2s;
  display: flex;
  flex-wrap: wrap;
}
body .right {
  transition: 1.2s;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  transform: translateY(0vh);
}
body .page-image {
  flex-shrink: 0;
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
body .page-content {
  text-align: center;
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .page-content-text {
  width: 60%;
  position: relative;
}
body .page-content-text > h2 {
  font-size: 33px;
  margin-left: 0;
  margin-right: 0;
}
body .page-content-text > p {
  font-size: 13px;
}
body .page .page-image,
body .page-horizont {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body .js-opacity-scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 25vh;
  background-image: url(/i/altrain2024/image/back-shadow.png);
  background-size: cover;
}
body .page-horizont:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  transition: 1.5s;
  opacity: 0;
}
body .page-portfolio {
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
body .banner {
  position: absolute;
  display: block;
  width: 450px;
  box-sizing: border-box;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 61px 50px 50px;
  text-transform: uppercase;
}
body .banner-horizont {
  left: auto;
  right: 10%;
}
body .banner-horizont > p {
  margin: 0;
  margin-top: 15px;
}
body .banner-text {
  font-family: "Oceanic";
  font-size: 33px;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  margin-bottom: 57px;
}
body .banner-text > h2 {
  margin: 0;
}
body .banner-link {
  color: #ffffff;
}
body .page-horizont {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
body .grid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin: 50px 50px 0;
}
body .grid-item > p {
  margin: 15px 0 0;
}
body .page-contacts {
  align-items: normal;
}
body .page-contacts > span {
  position: absolute;
  left: 60px;
  top: 33px;
  font-family: "Gilroy";
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
body .contacts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1023px) {
  body .contacts {
    gap: 10px;
  }
}
body .contacts p {
  width: 50%;
  margin: 20px 0;
  line-height: 2rem;
  white-space: nowrap;
}
body .contacts h2 {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
body .contacts-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 71%;
  margin: 118px 65px 54px;
}
body .copyright {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: #212326;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
body .copyright::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(231, 229, 224, 0.2);
}
body .copyright p {
  margin: 10px 0;
}
body .contacts-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .phone {
  font-size: 33px;
}
body .page-contacts .page-image {
  display: block;
  width: 50vw;
  height: 100vh;
  z-index: 2;
}
body .call-phone {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 20px;
  bottom: 5%;
  right: 3%;
  align-items: center;
  justify-content: center;
}
body .call-phone > a {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #212326;
  padding: 10px;
}
body .times-ligth {
  position: absolute;
  bottom: 75px;
  left: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-family: "Gilroy";
  font-size: 18px;
  text-transform: uppercase;
  transform: translateX(-50%);
  border-bottom: 1px solid #ffffff;
  z-index: 1;
}
body .times-ligth button {
  opacity: 0.5;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 150px;
  padding-bottom: 10px;
}
body .times-ligth button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  width: 1px;
  height: 1px;
  background-color: transparent;
  transition: all 1s;
}
body .times-ligth button img {
  scale: 0.8;
  transition: all 1s;
  pointer-events: none;
}
body .times-ligth .times-active {
  opacity: 1;
  color: #ffffff;
  position: relative;
}
body .times-ligth .times-active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  width: 150px;
  height: 3px;
  background-color: #ffffff;
}
body .times-ligth .times-active img {
  scale: 1;
}
@media (max-width: 1439px) {
  body h2 {
    font-size: 28px;
    margin-left: 15px;
    margin-right: 15px;
  }
  body h3 {
    font-size: 18px;
  }
  body p {
    font-size: 10px;
    line-height: 18px;
  }
  body .grid-items {
    gap: 30px;
    margin: 30px 30px 0;
  }
  body .banner {
    width: 350px;
    padding: 43px 27px 30px;
  }
  body .banner-text {
    font-size: 20px;
    margin-bottom: 47px;
  }
  body .phone {
    font-size: 28px;
  }
  body .phone img {
    width: 30px;
  }
  body .copyright a {
    font-size: 10px;
  }
}
@media (max-width: 1023px) {
  body h2 {
    font-size: 20px;
  }
  body h3 {
    font-size: 16px;
  }
  body p {
    font-size: 8px;
    line-height: 15px;
    margin: 20px 0;
  }
  body .menu {
    margin-top: 20px;
  }
  body .btn {
    padding: 8px 30px;
  }
  body .page-content-text h2 {
    font-size: 24px;
  }
  body .page-content-text p {
    font-size: 8px;
  }
  body .first-page-title {
    margin-top: 4px;
  }
  body .first-page-text {
    margin-bottom: 4px;
  }
  body .banner {
    width: 250px;
    padding: 43px 27px 30px;
  }
  body .banner-text {
    margin-bottom: 21px;
  }
  body .contacts-content {
    height: 83%;
    margin: 93px 40px 54px;
    overflow: scroll;
  }
  body .contacts-social {
    flex-wrap: wrap;
    gap: 30px;
  }
  body .times-ligth {
    font-size: 11px;
  }
  body .times-ligth button {
    width: 100px;
  }
  body .presentation {
    padding: 10px;
    bottom: 100px;
    right: 20px;
  }
  body .times-ligth .times-active::after {
    width: 100px;
  }
}
@media (max-width: 767px) {
  body h1,
  body .h1 {
    font-size: 28px;
  }
  body p {
    font-size: 12px;
  }
  body .h1 {
    position: absolute;
    bottom: 150px;
  }
  body .btn {
    position: absolute;
    bottom: 70px;
  }
  body .page {
    position: relative;
  }
  body .anima {
    position: absolute;
    bottom: 100px;
  }
  body .page > .page-image {
    display: none;
  }
  body .page > .page-content {
    width: 100vw;
    display: block;
    margin-top: 25vh;
  }
  body .page-double {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  body .left > .page-image,
  body .left > .page-content {
    width: 100vw;
    height: 50vh;
  }
  body .right > .page-image,
  body .right > .page-content {
    width: 100vw;
    height: 50vh;
  }
  body .left .page-content {
    flex-shrink: 0;
    height: 45vh;
  }
  body .left > div:nth-child(2n) {
    transform: translateY(100%);
  }
  body .right .page-content {
    flex-shrink: 0;
    height: 35vh;
  }
  body .right > div:nth-child(2n) {
    transform: translateY(-100%);
  }
  body .left,
  body .right {
    background-color: transparent;
    flex-wrap: nowrap;
    flex-direction: row;
    transition: 0.6s;
  }
  body .page {
    background-position-x: 50%;
  }
  body .page-content-text p {
    font-size: 12px;
  }
  body .page .page-horizont {
    background-position-x: 40%;
  }
  body .grid-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 0;
  }
  body .banner {
    width: 80%;
    bottom: 0px;
    top: auto;
  }
  body .page-contacts {
    flex-direction: column;
  }
  body .page-contacts span {
    display: none;
  }
  body .page-contacts .page-image {
    display: block;
    width: 100vw;
    height: 30vh;
  }
  body .phone {
    font-size: 16px;
  }
  body .page-content .page-content-text {
    width: 80vw;
    height: 25vh;
  }
  body .page-content-text {
    width: 100vw;
    height: 70vh;
  }
  body .contacts-content {
    margin: 75px 40px 21px;
    height: 72%;
    gap: 0;
  }
  body .contacts p {
    font-size: 10px;
    margin: 10px 0;
    width: 100%;
    line-height: 1.6rem;
  }
  body .contacts p a {
    font-size: 10px;
  }
  body .contacts h2 {
    font-size: 16px;
    margin: 0;
  }
  body .contacts h2:not(:first-child) {
    margin-top: 20px;
  }
  body .copyright p {
    margin: 10px 0;
  }
  body .call-phone {
    gap: 10px;
    bottom: 3%;
  }
  body .call-phone > a {
    width: 40px;
    height: 40px;
    padding: 7px;
  }
  body .call-phone img {
    width: 25px;
  }
  body .times-ligth {
    bottom: 40px;
  }
  body .times-ligth button {
    width: 90px;
    font-size: 15px;
  }
  body .times-ligth button img {
    width: 15px;
  }
  body .times-ligth .times-active::after {
    width: 90px;
  }
}
@media (max-height: 750px) {
  body .grid-items {
    margin: 0;
  }
  body .grid-items h3 {
    margin-top: 5px;
  }
  body .grid-items p {
    margin: 10px 10px 0;
  }
  body .contacts-content {
    gap: 0;
  }
  body .contacts-content .contacts h2 {
    margin: 5px 0;
  }
  body .contacts-content .contacts h2:not(:first-child) {
    margin-top: 5px;
  }
  body .contacts-content .contacts p {
    margin: 5px 0;
  }
}
/*
 * Modal CSS file, altrain.ru
 *
 * Copyright (c) 2024 M. Shlychkov, plarson.ru
 *
 * Date: 2025-01-14
 */
.faze-modal-wrapper {
  background-color: rgba(0, 0, 0, 0.1);
}
.faze-modal-wrapper .faze-modal.portfolio-mobile-modal {
  min-width: 13.3rem;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-family: "Gilroy";
}
.faze-modal-wrapper .faze-modal.portfolio-mobile-modal header,
.faze-modal-wrapper .faze-modal.portfolio-mobile-modal footer {
  display: none;
}
.faze-modal-wrapper .faze-modal.portfolio-mobile-modal main {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 3.2rem 2.3rem;
}
.faze-modal-wrapper .faze-modal.portfolio-mobile-modal main .text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.faze-modal-wrapper .faze-modal.portfolio-mobile-modal main .btn {
  position: static;
  margin: 0 auto;
  background-color: transparent;
  color: #ffffff;
  border: 0.1rem solid #ffffff;
  border-radius: 0;
  font-family: "Gilroy";
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}
/*
 * Portfolio CSS file, altrain.ru
 *
 * Copyright (c) 2024 Ivan Shchurupov, plarson.ru
 *
 * Date: 2024-01-24
 * Last Update: 2024-01-26
 */
.page-portfolio body {
  display: flex;
}
.page-portfolio body .page {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-portfolio body .page {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.page-portfolio body .page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 30vh;
  background-image: url('/i/altrain2024/image/back-shadow.png');
  background-size: cover;
}
@media (max-width: 767px) {
  .page-portfolio body .page::after {
    width: 1000px;
  }
}
.page-portfolio body .page .page-horizont > img {
  width: 0;
}
@media (max-width: 767px) {
  .page-portfolio body .page .page-horizont > img {
    min-height: 100%;
    width: auto;
    max-width: 1000px;
    position: absolute;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-shrink: 0;
  }
}
.page-portfolio body .gallery {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
}
.page-portfolio body .gallery > div {
  width: 0vw;
  height: 100vh;
}
.page-portfolio body .gallery > div:first-child {
  width: 100vw;
}
.page-portfolio body .arrow-left,
.page-portfolio body .arrow-right {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  border: none;
  background-color: #212326;
  background-image: url("/i/altrain2024/image/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.page-portfolio body .disabled {
  display: none;
}
.page-portfolio body .arrow-left {
  left: 10px;
  transform: rotate(180deg);
}
.page-portfolio body .arrow-right {
  right: 10px;
}
.page-portfolio body .gallery-projects {
  box-sizing: border-box;
  position: absolute;
  bottom: 50px;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-transform: uppercase;
  padding: 0 40px;
}
.page-portfolio body .gallery-projects h2 {
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
}
.page-portfolio body .gallery-projects .projects-items {
  opacity: 0;
  padding: 0;
  margin: 0;
  height: 40px;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}
.page-portfolio body .gallery-projects .projects-items .project-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
}
.page-portfolio body .gallery-projects .projects-items .project-item > a {
  font-size: 13px;
  color: #e7e5e0;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 767px) {
  .page-portfolio body .gallery-projects .projects-items .project-item > a:hover {
    text-decoration: none;
  }
}
.page-portfolio body .gallery-projects .projects-items .active {
  border-bottom: 2px solid;
}
@media (max-width: 767px) {
  .page-portfolio body .gallery-projects .projects-items {
    height: auto;
    overflow-y: hidden;
  }
}
@media (max-width: 767px) {
  .page-portfolio body .gallery-projects {
    width: 90%;
  }
}
.page-portfolio body .category-left,
.page-portfolio body .category-right {
  padding: 0;
  position: absolute;
  bottom: 10%;
  width: 18px;
  height: 18px;
  border: none;
  background-image: url("/i/altrain2024/image/icon-park.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}
.page-portfolio body .category-left {
  transform: rotate(180deg);
  left: 0;
}
@media (max-width: 1023px) {
  .page-portfolio body .category-left {
    left: -100px;
  }
}
@media (max-width: 767px) {
  .page-portfolio body .category-left {
    left: 0;
  }
}
.page-portfolio body .category-right {
  right: 0;
}
@media (max-width: 1023px) {
  .page-portfolio body .category-right {
    right: -100px;
  }
}
@media (max-width: 767px) {
  .page-portfolio body .category-right {
    right: 0;
  }
}
/*
 * News CSS file, altrain.ru
 *
 * Copyright (c) 2024 Ivan Shchurupov, plarson.ru
 *
 * Date: 2024-01-24
 */
* {
  scrollbar-width: none;
}
.page-news,
.page-video,
.page-team {
  scrollbar-width: none;
}
.page-news ::-webkit-scrollbar,
.page-video ::-webkit-scrollbar,
.page-team ::-webkit-scrollbar {
  width: 0;
}
.page-news a:hover,
.page-video a:hover,
.page-team a:hover {
  text-decoration: none;
}
.page-news p,
.page-video p,
.page-team p {
  margin-bottom: 20px;
}
.page-news img,
.page-video img,
.page-team img {
  pointer-events: none;
}
.page-news h1,
.page-video h1,
.page-team h1 {
  font-size: 33px;
  text-transform: uppercase;
  margin: 0;
  padding: 49px 65px 150px;
  letter-spacing: 1.65px;
  text-align: left;
}
@media (max-width: 1439px) {
  .page-news h1,
  .page-video h1,
  .page-team h1 {
    padding-bottom: 50px;
  }
}
@media (max-width: 1023px) {
  .page-news h1,
  .page-video h1,
  .page-team h1 {
    font-size: 20px;
    padding: 32px 40px 45px;
  }
}
@media (max-width: 767px) {
  .page-news h1,
  .page-video h1,
  .page-team h1 {
    padding: 72px 30px 30px;
  }
}
.page-news h2,
.page-video h2,
.page-team h2 {
  line-height: 42px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 1023px) {
  .page-news h2,
  .page-video h2,
  .page-team h2 {
    line-height: normal;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .page-news h2,
  .page-video h2,
  .page-team h2 {
    text-decoration-line: underline;
  }
}
.page-news ul,
.page-video ul,
.page-team ul {
  width: 50vw;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-news ul,
  .page-video ul,
  .page-team ul {
    width: 100vw;
    padding-bottom: 80px;
  }
  .page-news ul .li,
  .page-video ul .li,
  .page-team ul .li {
    width: auto;
    margin: 0 30px 60px;
  }
}
.page-news li,
.page-video li,
.page-team li {
  position: relative;
  width: 70%;
  margin: 0 65px 137px;
  margin: 20px 0;
}
.page-news .li,
.page-video .li,
.page-team .li {
  margin: 0 65px 137px;
}
@media (max-width: 1023px) {
  .page-news .li,
  .page-video .li,
  .page-team .li {
    margin: 0 40px 60px;
  }
}
.page-news .logo,
.page-video .logo,
.page-team .logo {
  opacity: 1;
}
.page-news .backimage,
.page-video .backimage,
.page-team .backimage {
  position: fixed;
  width: 50vw;
  height: 100vh;
  right: 0;
  background-size: cover;
  background-position-x: center;
}
@media (max-width: 767px) {
  .page-news .backimage,
  .page-video .backimage,
  .page-team .backimage {
    display: none;
  }
}
.page-news .news,
.page-video .news,
.page-team .news {
  position: relative;
  height: 100vh;
  overflow-y: scroll;
}
.page-news .news .news-video li,
.page-video .news .news-video li,
.page-team .news .news-video li {
  width: 80%;
}
@media (max-width: 767px) {
  .page-news .news .news-video li,
  .page-video .news .news-video li,
  .page-team .news .news-video li {
    width: calc(100% - 60px);
  }
}
.page-news .news .news-img,
.page-video .news .news-img,
.page-team .news .news-img {
  width: 100%;
}
.page-news .news .news-add,
.page-video .news .news-add,
.page-team .news .news-add {
  display: block;
  width: 52px;
  height: 52px;
  position: absolute;
  right: -100px;
  bottom: 6px;
  background-image: url("/i/altrain2024/image/add-news.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-news .news .news-add:hover,
.page-video .news .news-add:hover,
.page-team .news .news-add:hover {
  background-image: url("/i/altrain2024/image/add-news-hover.svg");
}
@media (max-width: 1439px) {
  .page-news .news .news-add,
  .page-video .news .news-add,
  .page-team .news .news-add {
    width: 32px;
    height: 32px;
    right: -60px;
  }
}
@media (max-width: 767px) {
  .page-news .news .news-add,
  .page-video .news .news-add,
  .page-team .news .news-add {
    display: none;
  }
}
.page-news .news .video,
.page-video .news .video,
.page-team .news .video {
  width: 100%;
  height: 400px;
}
@media (max-width: 1023px) {
  .page-news .news .video,
  .page-video .news .video,
  .page-team .news .video {
    height: 210px;
  }
}
@media (max-width: 767px) {
  .page-news .news .video,
  .page-video .news .video,
  .page-team .news .video {
    height: 190px;
  }
}
.page-news .news-item,
.page-video .news-item,
.page-team .news-item {
  width: 50vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 65px 165px 50px 70px;
  box-sizing: border-box;
}
@media (max-width: 1439px) {
  .page-news .news-item,
  .page-video .news-item,
  .page-team .news-item {
    padding: 40px 100px 40px 40px;
  }
}
@media (max-width: 767px) {
  .page-news .news-item,
  .page-video .news-item,
  .page-team .news-item {
    width: 100vw;
    padding: 72px 30px;
  }
}
.page-news .news-item > h2,
.page-video .news-item > h2,
.page-team .news-item > h2 {
  margin-top: 50px;
}
.page-news .news-item .news-img,
.page-video .news-item .news-img,
.page-team .news-item .news-img {
  width: 100%;
}
.page-news .news-item img,
.page-video .news-item img,
.page-team .news-item img {
  max-width: 100%;
}
.page-news .news-item .news-subtitle,
.page-video .news-item .news-subtitle,
.page-team .news-item .news-subtitle {
  text-decoration: underline;
}
.page-news .news-back,
.page-video .news-back,
.page-team .news-back {
  position: fixed;
  width: 52px;
  height: 52px;
  top: 45px;
  left: calc(45vw - 25px);
  background-image: url("/i/altrain2024/image/add-news-hover.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(45deg);
  cursor: url("/i/altrain2024/image/cursor.svg") 4 1, pointer;
}
.page-news .news-back:hover,
.page-video .news-back:hover,
.page-team .news-back:hover {
  background-image: url("/i/altrain2024/image/add-news.svg");
}
@media (max-width: 1439px) {
  .page-news .news-back,
  .page-video .news-back,
  .page-team .news-back {
    width: 32px;
    height: 32px;
    left: calc(45vw - 10px);
  }
}
@media (max-width: 767px) {
  .page-news .news-back,
  .page-video .news-back,
  .page-team .news-back {
    display: none;
  }
}
.page-news .about,
.page-video .about,
.page-team .about {
  overflow-y: scroll;
  height: 100vh;
  box-sizing: border-box;
  width: 50vw;
  padding: 89px 106px;
}
@media (max-width: 1439px) {
  .page-news .about,
  .page-video .about,
  .page-team .about {
    padding: 32px 40px;
  }
}
@media (max-width: 767px) {
  .page-news .about,
  .page-video .about,
  .page-team .about {
    width: 100vw;
  }
}
.page-news .about h1,
.page-video .about h1,
.page-team .about h1 {
  padding: 0;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .page-news .about h1,
  .page-video .about h1,
  .page-team .about h1 {
    padding-top: 72px;
  }
}
.page-news .about .about-text,
.page-video .about .about-text,
.page-team .about .about-text {
  text-transform: uppercase;
}
.page-news .about p,
.page-video .about p,
.page-team .about p {
  margin: 0;
  margin-bottom: 40px;
}
.page-news .about ul li,
.page-video .about ul li,
.page-team .about ul li {
  margin: 0;
}
.page-news .about ul li p,
.page-video .about ul li p,
.page-team .about ul li p {
  margin: 0;
}
.page-news .about .about-items,
.page-video .about .about-items,
.page-team .about .about-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  gap: 50px;
  justify-content: center;
}
@media (max-width: 1439px) {
  .page-news .about .about-items,
  .page-video .about .about-items,
  .page-team .about .about-items {
    grid-template-columns: repeat(auto-fit, 160px);
  }
}
@media (max-width: 767px) {
  .page-news .about .about-items,
  .page-video .about .about-items,
  .page-team .about .about-items {
    grid-template-columns: repeat(auto-fit, 118px);
  }
}
.page-news .about .about-items .about-item,
.page-video .about .about-items .about-item,
.page-team .about .about-items .about-item {
  width: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .page-news .about .about-items .about-item .about-name,
  .page-video .about .about-items .about-item .about-name,
  .page-team .about .about-items .about-item .about-name {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.page-news .about .about-items .about-item .about-image,
.page-video .about .about-items .about-item .about-image,
.page-team .about .about-items .about-item .about-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 8px;
  background-position: center;
}
@media (max-width: 1439px) {
  .page-news .about .about-items .about-item .about-image,
  .page-video .about .about-items .about-item .about-image,
  .page-team .about .about-items .about-item .about-image {
    width: 156px;
    height: 156px;
  }
}
@media (max-width: 767px) {
  .page-news .about .about-items .about-item .about-image,
  .page-video .about .about-items .about-item .about-image,
  .page-team .about .about-items .about-item .about-image {
    width: 118px;
    height: 118px;
  }
}
@media (max-width: 767px) {
  .page-news .menu,
  .page-video .menu,
  .page-team .menu {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: #212326;
  }
  .page-news .burger,
  .page-video .burger,
  .page-team .burger {
    margin-top: 15px;
  }
}


/*
generated in 0.517 seconds at 2026-06-29 22:39:36
last modified file: altrain.news.less at 2025-12-12 01:19:08
includes (6):
2025-01-14 10:26:51	office/455/i/altrain2024/css/altrain.less
2024-01-29 17:33:52	../fonts/font.css
2024-02-13 15:29:43	altrain.common.less
2025-01-14 18:05:35	altrain.modal.less
2024-02-09 13:42:01	altrain.gallery.less
2025-12-12 01:19:08	altrain.news.less
*/
