:root {
  --link-color: #e33247;
  --link-color-hover: #e33247;
  --layout-main-pt: 6.125rem;
  --header-color: #000;
  --menu-color-default: #252525;
  --menu-color-active: #888;
  --gutter-x: 20px;
  font-size: 1rem;
}

@media (min-width: 768px) {
  :root {
    --layout-main-pt: 7.611rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  :root {
    --layout-main-pt: 7.5rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --layout-main-pt: 7.722rem;
  }
}

[data-theme=home] {
  --layout-main-pt: 0;
  --header-color: #fff;
  --menu-color-default: #fff;
  --menu-color-active: #fff;
}

/**
 * Based on Twitter Bootstrap _reboot.scss
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-text-size-adjust: 100%;
  /* stylelint-enable property-no-vendor-prefix */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem 0;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

p {
  margin: 0 0 1.486rem 0;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  --link-color: var(--link-color-hover);
  text-decoration: underline;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

code {
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

select {
  word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-appearance: button;
  /* stylelint-enable property-no-vendor-prefix */
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-appearance: textfield;
  /* stylelint-enable property-no-vendor-prefix */
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

[type=search] {
  outline-offset: -2px;
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-appearance: textfield;
  /* stylelint-enable property-no-vendor-prefix */
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

main {
  display: block;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    max-width: 710px;
  }
}

@media (min-width: 992px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 950px;
  }
}

@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1130px;
  }
}

:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

.row {
  --gutter-x: 20px;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.grid {
  display: grid;
  grid-template-rows: repeat(var(--rows, 1), 1fr);
  grid-template-columns: repeat(var(--columns, 12), 1fr);
  gap: var(--gap, 20px);
}

.grid .g-col-1 {
  grid-column: auto/span 1;
}

.grid .g-col-2 {
  grid-column: auto/span 2;
}

.grid .g-col-3 {
  grid-column: auto/span 3;
}

.grid .g-col-4 {
  grid-column: auto/span 4;
}

.grid .g-col-5 {
  grid-column: auto/span 5;
}

.grid .g-col-6 {
  grid-column: auto/span 6;
}

.grid .g-col-7 {
  grid-column: auto/span 7;
}

.grid .g-col-8 {
  grid-column: auto/span 8;
}

.grid .g-col-9 {
  grid-column: auto/span 9;
}

.grid .g-col-10 {
  grid-column: auto/span 10;
}

.grid .g-col-11 {
  grid-column: auto/span 11;
}

.grid .g-col-12 {
  grid-column: auto/span 12;
}

.grid .g-start-1 {
  grid-column-start: 1;
}

.grid .g-start-2 {
  grid-column-start: 2;
}

.grid .g-start-3 {
  grid-column-start: 3;
}

.grid .g-start-4 {
  grid-column-start: 4;
}

.grid .g-start-5 {
  grid-column-start: 5;
}

.grid .g-start-6 {
  grid-column-start: 6;
}

.grid .g-start-7 {
  grid-column-start: 7;
}

.grid .g-start-8 {
  grid-column-start: 8;
}

.grid .g-start-9 {
  grid-column-start: 9;
}

.grid .g-start-10 {
  grid-column-start: 10;
}

.grid .g-start-11 {
  grid-column-start: 11;
}

@media (min-width: 576px) {
  .grid .g-col-sm-1 {
    grid-column: auto/span 1;
  }

  .grid .g-col-sm-2 {
    grid-column: auto/span 2;
  }

  .grid .g-col-sm-3 {
    grid-column: auto/span 3;
  }

  .grid .g-col-sm-4 {
    grid-column: auto/span 4;
  }

  .grid .g-col-sm-5 {
    grid-column: auto/span 5;
  }

  .grid .g-col-sm-6 {
    grid-column: auto/span 6;
  }

  .grid .g-col-sm-7 {
    grid-column: auto/span 7;
  }

  .grid .g-col-sm-8 {
    grid-column: auto/span 8;
  }

  .grid .g-col-sm-9 {
    grid-column: auto/span 9;
  }

  .grid .g-col-sm-10 {
    grid-column: auto/span 10;
  }

  .grid .g-col-sm-11 {
    grid-column: auto/span 11;
  }

  .grid .g-col-sm-12 {
    grid-column: auto/span 12;
  }

  .grid .g-start-sm-1 {
    grid-column-start: 1;
  }

  .grid .g-start-sm-2 {
    grid-column-start: 2;
  }

  .grid .g-start-sm-3 {
    grid-column-start: 3;
  }

  .grid .g-start-sm-4 {
    grid-column-start: 4;
  }

  .grid .g-start-sm-5 {
    grid-column-start: 5;
  }

  .grid .g-start-sm-6 {
    grid-column-start: 6;
  }

  .grid .g-start-sm-7 {
    grid-column-start: 7;
  }

  .grid .g-start-sm-8 {
    grid-column-start: 8;
  }

  .grid .g-start-sm-9 {
    grid-column-start: 9;
  }

  .grid .g-start-sm-10 {
    grid-column-start: 10;
  }

  .grid .g-start-sm-11 {
    grid-column-start: 11;
  }
}

@media (min-width: 768px) {
  .grid .g-col-md-1 {
    grid-column: auto/span 1;
  }

  .grid .g-col-md-2 {
    grid-column: auto/span 2;
  }

  .grid .g-col-md-3 {
    grid-column: auto/span 3;
  }

  .grid .g-col-md-4 {
    grid-column: auto/span 4;
  }

  .grid .g-col-md-5 {
    grid-column: auto/span 5;
  }

  .grid .g-col-md-6 {
    grid-column: auto/span 6;
  }

  .grid .g-col-md-7 {
    grid-column: auto/span 7;
  }

  .grid .g-col-md-8 {
    grid-column: auto/span 8;
  }

  .grid .g-col-md-9 {
    grid-column: auto/span 9;
  }

  .grid .g-col-md-10 {
    grid-column: auto/span 10;
  }

  .grid .g-col-md-11 {
    grid-column: auto/span 11;
  }

  .grid .g-col-md-12 {
    grid-column: auto/span 12;
  }

  .grid .g-start-md-1 {
    grid-column-start: 1;
  }

  .grid .g-start-md-2 {
    grid-column-start: 2;
  }

  .grid .g-start-md-3 {
    grid-column-start: 3;
  }

  .grid .g-start-md-4 {
    grid-column-start: 4;
  }

  .grid .g-start-md-5 {
    grid-column-start: 5;
  }

  .grid .g-start-md-6 {
    grid-column-start: 6;
  }

  .grid .g-start-md-7 {
    grid-column-start: 7;
  }

  .grid .g-start-md-8 {
    grid-column-start: 8;
  }

  .grid .g-start-md-9 {
    grid-column-start: 9;
  }

  .grid .g-start-md-10 {
    grid-column-start: 10;
  }

  .grid .g-start-md-11 {
    grid-column-start: 11;
  }
}

@media (min-width: 992px) {
  .grid .g-col-lg-1 {
    grid-column: auto/span 1;
  }

  .grid .g-col-lg-2 {
    grid-column: auto/span 2;
  }

  .grid .g-col-lg-3 {
    grid-column: auto/span 3;
  }

  .grid .g-col-lg-4 {
    grid-column: auto/span 4;
  }

  .grid .g-col-lg-5 {
    grid-column: auto/span 5;
  }

  .grid .g-col-lg-6 {
    grid-column: auto/span 6;
  }

  .grid .g-col-lg-7 {
    grid-column: auto/span 7;
  }

  .grid .g-col-lg-8 {
    grid-column: auto/span 8;
  }

  .grid .g-col-lg-9 {
    grid-column: auto/span 9;
  }

  .grid .g-col-lg-10 {
    grid-column: auto/span 10;
  }

  .grid .g-col-lg-11 {
    grid-column: auto/span 11;
  }

  .grid .g-col-lg-12 {
    grid-column: auto/span 12;
  }

  .grid .g-start-lg-1 {
    grid-column-start: 1;
  }

  .grid .g-start-lg-2 {
    grid-column-start: 2;
  }

  .grid .g-start-lg-3 {
    grid-column-start: 3;
  }

  .grid .g-start-lg-4 {
    grid-column-start: 4;
  }

  .grid .g-start-lg-5 {
    grid-column-start: 5;
  }

  .grid .g-start-lg-6 {
    grid-column-start: 6;
  }

  .grid .g-start-lg-7 {
    grid-column-start: 7;
  }

  .grid .g-start-lg-8 {
    grid-column-start: 8;
  }

  .grid .g-start-lg-9 {
    grid-column-start: 9;
  }

  .grid .g-start-lg-10 {
    grid-column-start: 10;
  }

  .grid .g-start-lg-11 {
    grid-column-start: 11;
  }
}

@media (min-width: 1200px) {
  .grid .g-col-xl-1 {
    grid-column: auto/span 1;
  }

  .grid .g-col-xl-2 {
    grid-column: auto/span 2;
  }

  .grid .g-col-xl-3 {
    grid-column: auto/span 3;
  }

  .grid .g-col-xl-4 {
    grid-column: auto/span 4;
  }

  .grid .g-col-xl-5 {
    grid-column: auto/span 5;
  }

  .grid .g-col-xl-6 {
    grid-column: auto/span 6;
  }

  .grid .g-col-xl-7 {
    grid-column: auto/span 7;
  }

  .grid .g-col-xl-8 {
    grid-column: auto/span 8;
  }

  .grid .g-col-xl-9 {
    grid-column: auto/span 9;
  }

  .grid .g-col-xl-10 {
    grid-column: auto/span 10;
  }

  .grid .g-col-xl-11 {
    grid-column: auto/span 11;
  }

  .grid .g-col-xl-12 {
    grid-column: auto/span 12;
  }

  .grid .g-start-xl-1 {
    grid-column-start: 1;
  }

  .grid .g-start-xl-2 {
    grid-column-start: 2;
  }

  .grid .g-start-xl-3 {
    grid-column-start: 3;
  }

  .grid .g-start-xl-4 {
    grid-column-start: 4;
  }

  .grid .g-start-xl-5 {
    grid-column-start: 5;
  }

  .grid .g-start-xl-6 {
    grid-column-start: 6;
  }

  .grid .g-start-xl-7 {
    grid-column-start: 7;
  }

  .grid .g-start-xl-8 {
    grid-column-start: 8;
  }

  .grid .g-start-xl-9 {
    grid-column-start: 9;
  }

  .grid .g-start-xl-10 {
    grid-column-start: 10;
  }

  .grid .g-start-xl-11 {
    grid-column-start: 11;
  }
}

@media (min-width: 1400px) {
  .grid .g-col-xxl-1 {
    grid-column: auto/span 1;
  }

  .grid .g-col-xxl-2 {
    grid-column: auto/span 2;
  }

  .grid .g-col-xxl-3 {
    grid-column: auto/span 3;
  }

  .grid .g-col-xxl-4 {
    grid-column: auto/span 4;
  }

  .grid .g-col-xxl-5 {
    grid-column: auto/span 5;
  }

  .grid .g-col-xxl-6 {
    grid-column: auto/span 6;
  }

  .grid .g-col-xxl-7 {
    grid-column: auto/span 7;
  }

  .grid .g-col-xxl-8 {
    grid-column: auto/span 8;
  }

  .grid .g-col-xxl-9 {
    grid-column: auto/span 9;
  }

  .grid .g-col-xxl-10 {
    grid-column: auto/span 10;
  }

  .grid .g-col-xxl-11 {
    grid-column: auto/span 11;
  }

  .grid .g-col-xxl-12 {
    grid-column: auto/span 12;
  }

  .grid .g-start-xxl-1 {
    grid-column-start: 1;
  }

  .grid .g-start-xxl-2 {
    grid-column-start: 2;
  }

  .grid .g-start-xxl-3 {
    grid-column-start: 3;
  }

  .grid .g-start-xxl-4 {
    grid-column-start: 4;
  }

  .grid .g-start-xxl-5 {
    grid-column-start: 5;
  }

  .grid .g-start-xxl-6 {
    grid-column-start: 6;
  }

  .grid .g-start-xxl-7 {
    grid-column-start: 7;
  }

  .grid .g-start-xxl-8 {
    grid-column-start: 8;
  }

  .grid .g-start-xxl-9 {
    grid-column-start: 9;
  }

  .grid .g-start-xxl-10 {
    grid-column-start: 10;
  }

  .grid .g-start-xxl-11 {
    grid-column-start: 11;
  }
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto>* {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1>* {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2>* {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3>* {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4>* {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5>* {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6>* {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --gutter-x: 0;
}

.g-0,
.gy-0 {
  --gutter-y: 0;
}

.g-1,
.gx-1 {
  --gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-sm-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-md-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-lg-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xl-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xxl-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --gutter-y: 3rem;
  }
}

/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Slide styles end */
p:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  p {
    margin-bottom: 2.167rem;
  }
}

@media (min-width: 992px) {
  p {
    margin-bottom: 2.833rem;
  }
}

.__with-overlay {
  overflow: hidden;
}

.body-overlay {
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: -1px;
  z-index: 9;
  opacity: 0;
  background: #000;
  transition: opacity 0.3s ease-in;
}

.body-overlay.visible {
  width: 100%;
  height: 100%;
  left: 0;
}

.body-overlay.show {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .body-overlay {
    display: none;
  }
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.container-x {
  --gutter-x: 20px;
  width: 100%;
  max-width: var(--cx-mw, 540px);
  margin: 0 auto;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
}

.container-ex {
  --gutter-x: 20px;
  width: 100%;
  max-width: var(--cx-mw, 540px);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container-x {
    --cx-mw: 100%;
  }

  .container-ex {
    --cx-mw: 100%;
    --gutter-x: 20px;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
  }
}

@media (min-width: 1200px) {
  .container-x {
    --gutter-x: 20px;
    --cx-mw: 78.889rem;
  }

  .container-ex {
    --gutter-x: 20px;
    --cx-mw: 78.889rem;
  }
}

.icon-arr {
  width: 2.063rem;
  height: 0.5rem;
  display: block;
  background: no-repeat 0 0/contain url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMyIgaGVpZ2h0PSI4IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjMDAwIiBkPSJNMzIuMzU0IDQuMzU0YS41LjUgMCAwIDAgMC0uNzA4TDI5LjE3Mi40NjRhLjUuNSAwIDEgMC0uNzA3LjcwOEwzMS4yOTMgNGwtMi44MjggMi44MjhhLjUuNSAwIDEgMCAuNzA3LjcwOGwzLjE4Mi0zLjE4MlpNMCA0LjVoMzJ2LTFIMHYxWiIvPjwvc3ZnPg==");
}

.svg-nav {
  width: var(--w, 10px);
  height: var(--h, 16px);
  fill: none;
  stroke: #252525;
}

.svg-nav_left {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.svg-service {
  width: var(--w, auto);
  height: var(--h, auto);
  stroke: #e33247;
  fill: none;
}

.svg-social-tg {
  --w: 26px;
  --h: 24px;
}

.mobile-social .svg-social-tg {
  fill: #fff;
}

.svg-social-vk {
  --w: 30px;
  --h: 17px;
}

.mobile-social .svg-social-vk {
  fill: #fff;
}

.svg-close {
  --w: 1.75rem;
  --h: 1.75rem;
  fill: #fff;
}

.svg-icon-link {
  width: 22px;
  height: 8px;
  margin-left: 1.125rem;
}

.svg-icon-projects {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  stroke: #252525;
  fill: none;
}

.svg-service_city {
  --w: 3.125rem;
  --h: 3.125rem;
}

.svg-service_document {
  --w: 3.125rem;
  --h: 3.125rem;
}

.svg-service_glasses {
  --w: 3.25rem;
  --h: 2.75rem;
}

.svg-service_pen-tool {
  --w: 3.125rem;
  --h: 3.25rem;
}

.svg-service_ruler-pen {
  --w: 3.063rem;
  --h: 2.813rem;
}

.svg-service_script {
  --w: 3.063rem;
  --h: 2.875rem;
}

.svg-service_shield {
  --w: 3.125rem;
  --h: 3.188rem;
}

@media (min-width: 768px) {
  .svg-service_pen-tool {
    --w: 4.222rem;
    --h: 4.444rem;
  }

  .svg-service_city {
    --w: 4.222rem;
    --h: 4.222rem;
  }

  .svg-service_document {
    --w: 4.444rem;
    --h: 4.444rem;
  }

  .svg-service_shield {
    --w: 4.444rem;
    --h: 4.444rem;
  }

  .svg-service_ruler-pen {
    --w: 4.278rem;
    --h: 3.889rem;
  }

  .svg-service_script {
    --w: 4.444rem;
    --h: 4.444rem;
  }

  .svg-service_glasses {
    --w: 3.889rem;
    --h: 3.222rem;
  }
}

@media (min-width: 992px) {
  .svg-nav {
    --w: 14px;
    --h: 22px;
  }

  .svg-service_pen-tool {
    --w: 5.222rem;
    --h: 5.556rem;
  }

  .svg-service_city {
    --w: 5.111rem;
    --h: 5.111rem;
  }

  .svg-service_document {
    --w: 5.556rem;
    --h: 5.556rem;
  }

  .svg-service_shield {
    --w: 4.444rem;
    --h: 5.167rem;
  }

  .svg-service_ruler-pen {
    --w: 5.556rem;
    --h: 4.833rem;
  }

  .svg-service_script {
    --w: 5.111rem;
    --h: 4.889rem;
  }

  .svg-service_glasses {
    --w: 4.778rem;
    --h: 4rem;
  }
}

html,
body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  position: relative;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--body-lh, 1.3);
  color: #252525;
  background-color: #f5f5f5;
}

@media (min-width: 768px) {
  body {
    --body-lh: 1.5;
  }
}

.btn {
  cursor: pointer;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: none;
  background: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus,
.btn:active {
  outline: 0 none;
}

.btn-up {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 30px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: #ddd 1px solid;
  background: #fff;
}

.btn-up__icon {
  --w: 15px;
  --h: 21px;
  fill: #252525;
}

@media (min-width: 768px) {
  .btn-up {
    top: auto;
    bottom: -48px;
    right: 7.2%;
  }
}

@media (min-width: 992px) {
  .btn-up {
    top: 40px;
    bottom: auto;
    right: -5.8%;
  }
}

h1 {
  margin-bottom: var(--h1-mb, 1.25rem);
  line-height: var(--h1-lh, 1.3);
  font-weight: 300;
  font-size: var(--h1-fs, 1.875rem);
}

h2 {
  font-weight: 700;
  font-size: 1.563rem;
}

h3 {
  line-height: var(--h3-lh, 1.27);
  font-weight: 700;
  font-size: var(--h3-fs, 1.125rem);
}

@media (min-width: 768px) {
  h1 {
    --h1-fs: 3.333rem;
    --h1-lh: 1.2;
  }

  h3 {
    --h3-fs: 1.222rem;
    --h3-lh: 1.5;
    margin-bottom: var(--h3-mb, 2.167rem);
  }
}

@media (min-width: 992px) {
  h3 {
    --h3-mb: 2.667rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    --h1-mb: 1.05rem;
  }
}

.burger {
  width: 2.188rem;
  height: 1.375rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 0.125rem;
  position: absolute;
  left: 0;
  pointer-events: none;
  background-color: var(--menu-color-default);
}

.burger span:last-child {
  bottom: 0;
  transition: opacity 0s ease-in-out 0.3s, bottom 0.2s ease-in-out 0.3s;
}

.burger span:first-child {
  top: 0;
  transition: top 0.2s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.2s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out, top 0.2s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
}

.burger span:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: var(--menu-color-default);
  transition: -webkit-transform 0.1s ease-in-out 0.2s;
  transition: transform 0.1s ease-in-out 0.2s;
  transition: transform 0.1s ease-in-out 0.2s, -webkit-transform 0.1s ease-in-out 0.2s;
}

.burger span:first-child+span {
  top: 0;
  bottom: 0;
  margin: auto;
  transition: opacity 0s ease-in-out 0.3s;
}

.burger_open span:last-child {
  bottom: 6.5px;
  opacity: 0;
  transition: bottom 0.3s ease-in-out, opacity 0s ease-in-out 0.3s;
}

.burger_open span:first-child {
  top: 6.5px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s linear 0.3s;
  transition: top 0.3s ease-in-out, transform 0.3s linear 0.3s;
  transition: top 0.3s ease-in-out, transform 0.3s linear 0.3s, -webkit-transform 0.3s linear 0.3s;
}

.burger_open span:first-child::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.burger_open span:first-child+span {
  opacity: 0;
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

.layout-main {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: var(--lm-p, var(--layout-main-pt) 0 5rem);
}

@media (min-width: 768px) {
  .layout-main {
    --lm-p: var(--layout-main-pt) 0 5.556rem;
  }
}

@media (min-width: 992px) {
  .layout-main {
    --lm-p: var(--layout-main-pt) 0 6.667rem;
  }
}

@media (min-width: 1200px) {
  .layout-main {
    --lm-p: var(--layout-main-pt) 0 8.333rem;
  }
}

.layout-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.125rem 0 0;
  margin-bottom: var(--lh-mb, 1.875rem);
  z-index: 10;
}

.layout-header__wrapper {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .layout-header {
    --lh-mb: 3.333rem;
  }
}

@media (min-width: 992px) {
  .layout-header {
    --lh-mb: 3.056rem;
  }
}

@media (min-width: 1200px) {
  .layout-header {
    --lh-mb: 3.167rem;
  }
}

.layout-footer {
  display: flex;
  flex-direction: column;
  border-top: #ddd 1px solid;
}

.layout-footer__wrapper {
  position: relative;
}

.layout-footer__bottom {
  --fs-b: none;
  --fsc-p: 0.313rem calc(var(--gutter-x)*.5);
  padding-bottom: 1.688rem;
}

.footer-section {
  border-top: var(--fs-b, #ddd 1px solid);
}

.footer-section__content {
  width: 100%;
  max-width: var(--cx-mw, 540px);
  position: relative;
  margin: 0 auto;
  padding: var(--fsc-p, 1.875rem calc(var(--gutter-x) * 0.5));
}

.footer-section:first-child {
  border-top: 0;
}

.footer-contact {
  max-width: 16.875rem;
  margin-top: var(--fc-m, 1.875rem);
}

.footer-contact:first-child {
  margin-top: 0;
}

.footer-contact__label {
  margin-bottom: var(--fcl-m, 0.563rem);
  color: #888;
  font-size: var(--fcl-fs, 0.875rem);
  line-height: 1.5;
}

.footer-policy,
.footer-copyright {
  color: #888;
  font-size: var(--fc-fs, 0.75rem);
}

.footer-policy a,
.footer-copyright a {
  color: #888;
}

@media (min-width: 768px) {
  .footer-section {
    --fsc-p: 2.175rem calc(var(--gutter-x) * 0.5);
    --cx-mw: 710px;
  }

  .footer-section__content {
    display: flex;
  }

  .layout-footer__bottom .footer-section {
    --fsc-p: 0.278rem calc(var(--gutter-x)*.5);
  }

  .footer-contact {
    --fc-m: 0;
    --fcl-fs: 0.778rem;
  }

  .footer-policy,
  .footer-copyright {
    --fc-fs: 0.778rem;
  }
}

@media (min-width: 992px) {
  .layout-footer__wrapper {
    width: 100%;
    max-width: var(--cx-mw, 950px);
    margin: 0 auto;
    padding: 0;
    display: flex;
  }

  .footer-section {
    --fsc-p: 2.167rem 0 2.167rem;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 calc(var(--gutter-x) * 0.5);
    border-top: 0;
  }

  .footer-section:first-child {
    border-right: #ddd 1px solid;
  }

  .footer-section__content {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
  }

  .footer-contact {
    --fc-m: 2.444rem;
  }

  .footer-policy,
  .footer-copyright {
    padding-top: 0.667rem;
    padding-bottom: 1.667rem;
  }

  .footer-policy {
    padding-left: 3.333rem;
  }
}

@media (min-width: 1200px) {
  .layout-footer__wrapper {
    max-width: var(--cx-mw, 1130px);
  }
}

.header-logo {
  --w: 3.125rem;
  --h: var(--w);
}

.header-logo__img {
  fill: var(--header-color);
}

@media (min-width: 768px) {
  .header-logo {
    --w: 3.111rem;
  }
}

@media (min-width: 992px) {
  .header-logo {
    --w: 3.444rem;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header-search {
  display: none;
}

@media (min-width: 768px) {
  .header-search {
    display: block;
    margin: var(--hs-m, 0 0 0.722rem 1.167rem);
  }
}

@media (min-width: 992px) {
  .header-search {
    --hs-m: 0 0 0.556rem 2.056rem;
  }
}

@media (min-width: 1200px) {
  .header-search {
    --hs-m: 0 1.667rem 0.556rem 3.389rem;
  }
}

.mobile-search {
  --header-color: #fff;
  --w: 20px;
  --h: 20px;
  margin-bottom: 3.125rem;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu__item {
  margin: 0;
  padding: 0;
}

.menu__item:first-child {
  margin: 0;
}

.menu__item::before {
  display: none;
}

.menu__link {
  color: var(--menu-color-default);
}

.menu__link_active {
  color: var(--menu-color-active);
}

.menu-header {
  display: none;
}

.menu-mobile {
  margin-bottom: 1.875rem;
  font-size: 1.125rem;
}

.menu-mobile__item {
  margin-top: 2.063rem;
}

@media (min-width: 768px) {
  .menu-header {
    gap: var(--mh-g, 20px);
    display: flex;
    margin-bottom: var(--mh-mb, 0.722rem);
  }

  .menu-header__link {
    font-size: 0.889rem;
  }
}

@media (min-width: 992px) {
  .menu-header {
    --mh-g: 40px;
    --mh-mb: 0.556rem;
  }

  .menu-header__link {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .menu-header {
    --mh-g: 60px;
  }
}

.similar-entries {
  overflow: hidden;
}

.similar-entries__header {
  margin-bottom: var(--seh-mb, 1.25rem);
  color: #888;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.similar-slider {
  overflow: visible;
}

.similar-slider .swiper-wrapper {
  align-items: stretch;
}

.similar-entry {
  position: relative;
  height: auto;
  background: #fff;
}

.similar-entry__img {
  width: 100%;
  max-width: 100%;
}

.similar-entry__title {
  color: #252525;
}

.similar-entry__title::before {
  content: "";
  clear: both;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.similar-entry__date {
  padding-top: 0.563rem;
  color: #888;
  font-size: var(--sd-fs, 0.875rem);
}

.similar-entry__wrap {
  padding: var(--sw-p, 1.438rem 1.188rem);
  background: #fff;
}

@media (min-width: 768px) {
  .similar-entries {
    --seh-mb: 2.167rem;
  }

  .similar-entry {
    --sd-fs: 0.778rem;
    --sw-p: 1.611rem;
  }
}

@media (min-width: 992px) {
  .similar-entries {
    --seh-mb: 2.667rem;
  }
}

.pagination {
  --pl-s: 2.813rem;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.pagination__item {
  margin: 0 0 0 var(--pi-mr, 0.438rem);
  padding: 0;
  font-size: var(--pi-fs, 1rem);
}

.pagination__item:first-child {
  margin-top: 0;
  margin-left: 0;
}

.pagination__item::before {
  display: none;
}

.pagination__link {
  width: var(--pl-s);
  height: var(--pl-s);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #252525;
  border: #e5e5e5 1px solid;
  background: #fff;
  text-decoration: none;
}

.pagination__link:not(.pagination__link_active):hover {
  color: #888;
  text-decoration: none;
}

.pagination__link_active {
  cursor: default;
  border-color: #e33247;
}

.pagination__link_prev,
.pagination__link_next {
  border-color: transparent;
  background: none;
}

.pagination__link_prev .icon-arr {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media (min-width: 768px) {
  .pagination {
    --pl-s: 60px;
    --pi-fs: 0.889rem;
    --pi-mr: 0.556rem;
  }
}

@media (min-width: 992px) {
  .pagination {
    --pi-fs: 1rem;
  }
}

.svg {
  width: var(--w, auto);
  height: var(--h, auto);
}

.svg-search {
  --w: 1.25rem;
  --h: 1.25rem;
  fill: none;
  stroke: var(--header-color);
}

@media (min-width: 1200px) {
  .svg-search {
    --w: 1.111rem;
    --h: 1.111rem;
  }
}

.home-slider-container {
  width: 100%;
  position: relative;
  margin-bottom: var(--hmc-mb, 7.313rem);
}

.home-slider {
  --hsi-mh: 22.5rem;
  height: var(--hsi-mh);
}

.home-slider img {
  width: 100%;
  max-width: 100%;
  height: var(--hsi-mh);
  max-height: var(--hsi-mh);
  -o-object-fit: cover;
  object-fit: cover;
}

.projects-slider-container {
  display: flex;
  flex-direction: var(--psc-fd, column);
  position: absolute;
  z-index: 1;
  left: 0.625rem;
  right: 0.625rem;
  bottom: var(--psc-b, -6.25rem);
  background: #fff;
}

.projects-slider {
  padding: var(--ps-p, 1.25rem 1.25rem 2rem);
  border-bottom: #e5e5e5 1px solid;
}

.projects-slider-nav {
  display: flex;
}

.projects-slider-nav__prev,
.projects-slider-nav__next {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.813rem 0;
}

.projects-slider-nav__prev {
  border-right: #e5e5e5 1px solid;
}

.project-slide__name {
  margin-bottom: var(--psn-mb, 0.75rem);
  font-size: var(--psn-fs, 1.125rem);
}

.project-slide__date {
  color: #888;
  font-size: var(--psd-fs, 0.875rem);
}

.projects-slider-thumbs-wrapper {
  margin-bottom: var(--pstw-mb, 0.25rem);
  overflow: hidden;
}

.projects-slider-thumbs {
  margin-bottom: 2.25rem;
  overflow: visible;
}

.projects-slider-thumbs img {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .home-slider-container {
    --hmc-mb: 1.333rem;
  }

  .home-slider {
    --hsi-mh: 25rem;
  }

  .projects-slider-container {
    --psc-b: 1.111rem;
    --psc-fd: row;
  }

  .projects-slider {
    --ps-p: 1.944rem 1.944rem 2.056rem;
    max-width: var(--ps-mw, 31.111rem);
  }

  .project-slide {
    --psn-fs: 1.333rem;
    --psn-mb: 0.333rem;
    --psd-fs: 0.889rem;
  }

  .project-slide__name {
    font-weight: 300;
  }

  .projects-slider-nav {
    flex-grow: 1;
    border-left: #e5e5e5 1px solid;
  }
}

@media (min-width: 992px) {
  .home-slider {
    --hsi-mh: 34.333rem;
  }

  .projects-slider {
    --ps-p: 1.556rem 3.556rem 1.667rem;
    --ps-mw: 43.333rem;
  }

  .project-slide {
    --psn-fs: 1.667rem;
    --psn-mb: 0.667rem;
  }

  .projects-slider-thumbs-wrapper {
    --pstw-mb: 0.833rem;
  }
}

@media (min-width: 1200px) {
  .home-slider {
    --hsi-mh: 45rem;
  }

  .home-slider-container {
    --hmc-mb: 2.722rem;
  }

  .projects-slider {
    --ps-p: 2.556rem 3.889rem 2.389rem;
    --ps-mw: 80%;
  }

  .projects-slider-thumbs-wrapper {
    --pstw-mb: 1.944rem;
  }
}

.subscribe__title {
  margin-bottom: var(--sbt-m, 1.75rem);
  font-weight: 300;
  line-height: var(--sbt-lg, 1.5);
  font-size: var(--sbt-fs, 1.125rem);
}

.form-subscribe {
  --fss-s: 56px;
  display: flex;
}

.form-subscribe__input {
  flex-grow: 1;
  padding: var(--fsi-p, 0.938rem 1.25rem);
  border: #ddd 1px solid;
  font-size: 1rem;
  background: #fff;
}

.form-subscribe__submit {
  width: var(--fss-s);
  height: var(--fss-s);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #252525;
}

.form-subscribe__submit svg {
  margin-left: 0;
  fill: #fff;
}

@media (min-width: 768px) {
  .subscribe {
    --sbt-lg: 1.3;
    --sbt-fs: 1.333rem;
    --sbt-m: 0;
    width: 100%;
    display: flex;
  }

  .subscribe__title {
    margin-right: 3.444rem;
    max-width: 12.778rem;
  }

  .form-subscribe {
    --fss-s: auto;
    --fsi-p: 0.738rem 1.25rem;
    margin-bottom: auto;
    flex-grow: 1;
  }

  .form-subscribe__submit {
    width: 3.111rem;
  }
}

@media (min-width: 992px) {
  .subscribe {
    --fsi-p: 0.722rem 1.222rem;
    --sbt-m: 2.944rem;
    --sbt-fs: 1.667rem;
    padding-left: 3.333rem;
    flex-direction: column;
  }

  .subscribe__title {
    max-width: none;
    margin-right: 0;
  }
}

.footer-social {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.mobile-social {
  padding-top: 1.813rem;
  border-top: #777 1px solid;
}

.social-link {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-social {
    right: -5px;
    bottom: 48px;
  }
}

@media (min-width: 992px) {
  .footer-social {
    right: 30px;
    bottom: 14px;
  }
}

.layout-mobile {
  --menu-color-default: #fff;
  --menu-color-active: #fff;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  left: -360px;
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: opacity ease-in 0.3s, left ease-in 0.3s 0.1s;
  background: center center/cover url(./images/mobile-bg.jpg) no-repeat;
}

.js-show-overlay-sb .layout-mobile {
  left: 0;
  opacity: 1;
}

.layout-mobile__close {
  top: 1.5rem;
  right: 1.563rem;
  position: absolute;
}

.layout-mobile__wrapper {
  padding: 32px 10px 45px 30px;
}

@media (min-width: 768px) {
  .layout-mobile {
    display: none;
  }
}

.entry {
  margin-bottom: var(--ey-mb, 4.375rem);
}

.entry__date {
  margin-bottom: var(--edt-mb, 1.875rem);
  color: #888;
}

.entry__cover {
  width: 100%;
  max-width: 100%;
  margin: 0 auto var(--ecv-mb, 1.875rem);
  display: block;
}

.entry__caption {
  margin-bottom: var(--ect-mb, 1.875rem);
  font-size: var(--ect-fs, 1.125rem);
  font-weight: var(--ect-fw, 400);
  line-height: var(--ect-lh, 1.5);
}

.entry__content {
  margin-bottom: var(--ecn-mb, 1.25rem);
}

.entry-source {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
}

.entry-source:first-child {
  margin-top: 0;
}

.entry-source__label {
  max-width: var(--esl-mw, 6.25rem);
  flex: var(--esl-fx, 0 0 6.25rem);
  margin-right: 0.625rem;
  color: #888;
}

@media (min-width: 768px) {
  .entry {
    --ecn-mb: 2.222rem;
    --edt-mb: 1.556rem;
    --ecv-mb: 2.167rem;
    --ect-mb: 1.667rem;
    --ect-fs: 1.333rem;
    --ect-lh: 1.3;
    --ect-fw: 300;
  }

  .entry-source {
    --esl-mw: none;
    --esl-fx: none;
  }
}

@media (min-width: 992px) {
  .entry {
    --eb-pl: calc(50% + 0.556rem);
    --ey-mb: 6.556rem;
    --ect-fs: 1.667rem;
    --ecv-mb: 4.333rem;
    --ecn-mb: 2.722rem;
    gap: 1.111rem;
  }

  .entry__caption {
    padding-right: var(--ect-pr, calc(50% + 0.556rem));
  }

  .entry__content {
    margin-top: var(--ecn-mt, -8.611rem);
    padding-left: var(--eb-pl);
  }

  .entry__data {
    padding-left: var(--eb-pl);
  }
}

@media (min-width: 1200px) {
  .entry {
    --eb-pl: calc(50% + 1.111rem);
    --ey-mb: 8.333rem;
    --ecv-mb: 5.528rem;
    --ect-pr: calc(50% + 1.111rem);
    --ecn-mt: -4.111rem;
  }
}

.about-intro {
  --ect-mb: 1.25rem;
  margin-bottom: var(--ai-m, 3.75rem);
}

.about-intro__img {
  margin-bottom: var(--aii-m, 1.875rem);
}

.about-achievements {
  width: 100%;
  position: relative;
  margin-bottom: var(--aas-m, 4.375rem);
}

.about-achievements__items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.about-achievements__img {
  width: 100%;
  max-width: var(--aasi-mw, 100%);
}

.about-achievement {
  flex: 1 0 50%;
  max-width: 70%;
  margin-bottom: var(--aa-m, 1.25rem);
}

.about-achievement__v {
  margin-bottom: var(--aav-m, 0.438rem);
  color: #e33247;
  font-weight: 300;
  font-size: var(--aav-fs, 3.125rem);
}

.about-services {
  margin-bottom: var(--as-m, 3.75rem);
}

.about-services__title {
  width: 100%;
  margin-bottom: var(--ast-m, 2.563rem);
}

.about-services__content {
  overflow: hidden;
}

.about-services__footer {
  text-align: center;
}

.services-slider {
  overflow: visible;
  margin-bottom: var(--sps-m, 1.875rem);
}

.services-slider .svg-service {
  margin-bottom: var(--ssss-m, 1.438rem);
}

.services-slider .svg-service_pen-tool {
  --w: 3.813rem;
  --h: 4.063rem;
}

.services-slider .svg-service_city {
  --w: 3.813rem;
  --h: 3.813rem;
}

.services-slider .svg-service_document {
  --w: 3.813rem;
  --h: 3.813rem;
}

.services-slider .svg-service_shield {
  --w: 3.813rem;
  --h: 3.813rem;
}

.services-slider .svg-service_ruler-pen {
  --w: 3.813rem;
  --h: 3.813rem;
}

.services-slider .svg-service_script {
  --w: 3.813rem;
  --h: 3.813rem;
}

.services-slider .svg-service_glasses {
  --w: 3.813rem;
  --h: 3.813rem;
}

.service-slide {
  height: auto;
  padding: var(--ss-p, 2.5rem 1.875rem);
  background: #fff;
}

.service-slide__name {
  line-height: 1.5;
  font-size: var(--ssn-fs, 1.125rem);
}

.section-architect {
  background: #252525;
}

.section-architect__title {
  margin-bottom: var(--sat-m, 1.25rem);
  font-weight: 300;
  font-size: var(--sat-fs, 1.5rem);
  line-height: 1.3;
}

.section-architect__title span {
  display: block;
}

.section-architect__content {
  color: #fff;
  padding: var(--sac-p, 3.75rem 0 0);
  margin-bottom: var(--sac-m, 3.125rem);
}

.section-architect__picture {
  margin-bottom: var(--sap-m, -4.375rem);
}

.section-architect__img {
  width: 100%;
  max-width: 100%;
}

.section-architect__footer {
  padding: var(--saf-p, 6.25rem 0 1.875rem);
  background: #e33247;
}

.section-architect__footer a {
  color: #fff;
}

.section-architect__footer .svg-icon-link {
  fill: #fff;
}

@media (min-width: 768px) {
  .about-intro {
    --ai-m: 5rem;
    --aii-m: 2.056rem;
    --ect-fs: 1.667rem;
    --ect-mb: 1.722rem;
    --ect-lh: 1.3;
  }

  .about-achievements {
    --aas-m: 6.944rem;
    --aasi-mw: 25rem;
    padding: var(--aa-p, 9.444rem 0 0);
  }

  .about-achievement {
    --aa-m: 0;
    --aav-m: 0;
    --aav-fs: 3.889rem;
    position: absolute;
  }

  .about-achievement:nth-child(1) {
    width: 9.556rem;
    top: 0;
    left: 0;
  }

  .about-achievement:nth-child(2) {
    width: 9.556rem;
    top: 0;
    right: 0;
  }

  .about-achievement:nth-child(3) {
    width: 10.833rem;
    right: 0;
    bottom: 0;
  }

  .about-services {
    --as-m: 7.611rem;
  }

  .about-services__content {
    margin-top: var(--asc-m, -3.167rem);
  }

  .services-slider {
    --sps-m: 2.278rem;
  }

  .service-slide {
    --ss-p: 3.056rem 2.667rem 4.222rem;
    --ssn-fs: 1rem;
    --ssss-m: 1.111rem;
  }

  .section-architect {
    --sac-p: 3.056rem 1.111rem 0 0;
    --sat-m: 2.778rem;
    --saf-p: 1.556rem 0;
    --sat-fs: 1.667rem;
  }

  .section-architect__wrapper {
    width: 100%;
    max-width: var(--cx-mw, 710px);
    margin: 0 auto 1.056rem;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    display: flex;
  }

  .section-architect__content {
    flex: 0 0 50%;
    max-width: 50%;
    margin-left: calc(-0.5 * var(--gutter-x));
  }

  .section-architect__picture {
    flex: 0 0 50%;
    max-width: 50%;
    margin: -3rem 1.278rem 0;
  }
}

@media (min-width: 992px) {
  .about-intro {
    --h1-mb: 2.222rem;
    --aii-m: 0;
  }

  .about-intro__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-intro__content>p {
    max-width: 19.444rem;
  }

  .about-intro .entry__caption {
    padding-right: 6.667rem;
  }

  .about-achievements__img {
    display: block;
    margin: auto;
  }

  .about-achievement {
    --aav-fs: 5.333rem;
    --aav-m: 0.389rem;
  }

  .about-achievement:nth-child(1) {
    top: 15.556rem;
  }

  .about-achievement:nth-child(2) {
    top: -3rem;
    right: 50%;
    margin-right: -2.111rem;
  }

  .about-achievement:nth-child(3) {
    right: 1.278rem;
  }

  .about-services {
    --asc-m: -4rem;
  }

  .services-slider {
    --sps-m: 5.278rem;
  }

  .service-slide {
    --ss-p: 3.656rem 2.667rem 2.822rem;
    --ssss-m: 1.411rem;
  }

  .section-architect {
    --sat-fs: 3.333rem;
    --sat-m: 3.889rem;
  }

  .section-architect__title span {
    white-space: nowrap;
    position: relative;
    z-index: 1;
  }

  .section-architect__picture {
    flex: 0 0 60%;
    max-width: 60%;
    margin: -3rem -3.878rem -102px auto;
  }

  .section-architect__wrapper {
    max-width: var(--cx-mw, 950px);
  }
}

@media (min-width: 992px) {
  .about-intro {
    --h1-mb: 2.222rem;
  }

  .about-intro__content {
    padding-left: 0.833rem;
    padding-bottom: 2.778rem;
  }

  .about-achievements {
    --aa-p: 13.5rem 0 0;
    --aasi-mw: 29.722rem;
    --aas-m: 10.722rem;
  }

  .about-achievement:nth-child(1) {
    top: 19.333rem;
  }

  .about-achievement:nth-child(2) {
    top: 0;
    right: 50%;
    margin-right: 0;
  }

  .about-achievement:nth-child(3) {
    right: 2.444rem;
  }

  .about-services {
    --as-m: 15.911rem;
    --asc-m: -5rem;
  }

  .services-slider {
    --sps-m: 8.333rem;
  }

  .section-architect {
    --sac-p: 5.356rem 8.711rem 0 0;
    --sat-m: 4.444rem;
    --saf-p: 3.778rem 0;
  }

  .section-architect__wrapper {
    max-width: var(--cx-mw, 1130px);
  }

  .section-architect__picture {
    flex: 0 0 63.3%;
    max-width: 63.3%;
    margin: -7.8rem -5.878rem -102px auto;
  }

  .section-architect__title {
    position: relative;
    z-index: 1;
    white-space: nowrap;
  }

  .section-architect__title span {
    padding-left: 10.556rem;
  }

  .section-architect__footer {
    margin-top: -4.444rem;
  }
}

.person-intro {
  margin-bottom: var(--pi-m, 0);
}

.person-intro__img {
  width: 100%;
  max-width: 100%;
}

.person-data {
  margin: var(--pd-m, 3.75rem 0 3.875rem 0);
}

.person-data__item {
  margin-top: var(--pdi-m, 1.438rem);
}

.person-data__item:first-child {
  margin-top: 0;
}

.person-data__label {
  margin-bottom: var(--pdl-m, 0.625rem);
  font-size: var(--pdl-fs, 0.875rem);
  color: #888;
  text-transform: uppercase;
}

.photos-cloud {
  margin-bottom: var(--pc-m, 3.75rem);
  min-height: var(--pc-mh, 30.063rem);
  position: relative;
  height: 30rem;
  overflow: hidden;
}

.photos-cloud__img {
  width: var(--pci-w, auto);
  max-width: 100%;
  position: absolute;
}

.photos-cloud__img:nth-child(1) {
  --pci-w: 13.438rem;
  right: 0;
}

.photos-cloud__img:nth-child(2) {
  --pci-w: 13.313rem;
  top: 11.563rem;
}

.photos-cloud__img:nth-child(3) {
  display: none;
}

.photos-cloud__img:nth-child(4) {
  --pci-w: 7.813rem;
  right: 1.875rem;
  bottom: 0;
}

.person-career__title {
  margin-bottom: var(--pct-m, 1.875rem);
  font-size: var(--pct-fs, 1.875rem);
  font-weight: 300;
  line-height: 1.3;
  text-align: var(--pct-ta, left);
}

.career-objects {
  margin: var(--co-m, 0 0 2.375rem);
  padding: var(--co-p, 0.188rem 0 0 0);
  list-style: none;
  counter-reset: item;
}

.career-objects li {
  margin: 0;
  padding: var(--col-p, 1.188rem 0 1.313rem 3.125rem);
  position: relative;
  border-top: #ddd 1px solid;
}

.career-objects li::before {
  content: "";
  clear: both;
  position: absolute;
  top: 50%;
  left: 0;
  counter-increment: item;
  content: "0"counter(item);
  color: #888;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
  }
}

.career-note {
  margin-bottom: var(--cn-m, 6.063rem);
  font-size: var(--cn-fs, 1.125rem);
  font-weight: 300;
  line-height: var(--cn-lh, 1.5);
  text-align: center;
}

.appeal-section {
  padding: var(--as-p, 0 0 3.75rem);
  color: #fff;
  background: #252525;
}

.appeal-section__intro {
  padding: var(--asi-p, 8.938rem 0 0);
  position: relative;
  margin-bottom: 2.25rem;
}

.appeal-section__intro::before {
  width: 6.063rem;
  height: 4.875rem;
  content: "";
  clear: both;
  position: absolute;
  top: 1.938rem;
  left: 0;
  background: 0 0 url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5NCIgaGVpZ2h0PSI3OCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjNzc3IiBzdHJva2Utd2lkdGg9IjIiIGQ9Im04LjUzIDIxLjEzLS4wMDEuMDA0QzMuNTA1IDI4Ljk0NiAxIDM3LjgxNCAxIDQ3LjcwNSAxIDU1LjQ5IDIuNjg1IDYyLjA1NyA2LjEyMiA2Ny4zNSAxMC4yOCA3My43NyAxNi4zMTYgNzcgMjQuMTEgNzdjNS4zNTcgMCA5Ljk1NS0xLjg0MyAxMy43MzctNS41MTcgMy44ODQtMy43NzkgNS44My04LjQ3MyA1LjgzLTE0LjAxNiAwLTUuODg3LTEuODc3LTEwLjY1LTUuNzA0LTE0LjE3MS0zLjc4NS0zLjU3OC04LjQyNy01LjM2Mi0xMy44NjMtNS4zNjItMy43MTIgMC03LjExNyAxLjA1Ny0xMC4xOTMgMy4xNTMtLjI4My0xLjI4Mi0uNDI5LTIuNzUyLS40MjktNC40MTcgMC01LjI4NCAyLjA2LTEwLjU0IDYuMjk3LTE1Ljc4MmwuMDA2LS4wMDZjNC4yNDktNS4zNDggOS4zMTMtOS4yNDkgMTUuMTk1LTExLjcyNmwuOTk2LS40MTktLjQ5NC0uOTYtMi42OTMtNS4yMzQtLjQ0Mi0uODU5LS44NzMuNDExQzIxLjMzIDYuODc1IDEzLjY1OSAxMy4yMTEgOC41MyAyMS4xMzFabTQ5LjMyMyAwLS4wMDEuMDA0Yy01LjAyNSA3LjgxMi03LjUzIDE2LjY4LTcuNTMgMjYuNTcxIDAgNy43ODQgMS42ODYgMTQuMzUyIDUuMTIzIDE5LjY0NEM1OS42MDIgNzMuNzcgNjUuNjM5IDc3IDczLjQzMyA3N2M1LjQ0NiAwIDEwLjA5My0xLjgzOSAxMy44NzgtNS41MTdsLjAxLS4wMUM5MS4xMDggNjcuNjkzIDkzIDYzLjAwMyA5MyA1Ny40NjdjMC01Ljg4NC0xLjg3Ni0xMC42NDYtNS42OTktMTQuMTY3LTMuNjk4LTMuNTg2LTguMzQ2LTUuMzY2LTEzLjg2OC01LjM2Ni0zLjY0NiAwLTcuMDQ4IDEuMDY3LTEwLjE5IDMuMTctLjI4NC0xLjI4Ni0uNDMyLTIuNzYxLS40MzItNC40MzQgMC01LjI4NCAyLjA1OS0xMC41NCA2LjI5Ny0xNS43ODJsLjAwNi0uMDA2YzQuMjQ5LTUuMzQ4IDkuMzEzLTkuMjQ5IDE1LjE5NS0xMS43MjZsLjk5NS0uNDE5LS40OTMtLjk2LTIuNjkzLTUuMjM0LS40NDItLjg1OS0uODc0LjQxMWMtMTAuMTUgNC43OC0xNy44MiAxMS4xMTYtMjIuOTQ5IDE5LjAzNloiLz48L3N2Zz4=") no-repeat;
}

.appeal-marquee {
  margin: 0 auto 2.438rem;
  display: flex;
  gap: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.appeal-marquee__wrap {
  -webkit-animation: scroll 10s linear infinite;
  animation: scroll 10s linear infinite;
}

.appeal-marquee__svg {
  width: 36.625rem;
  height: 5.625rem;
}

.appeal-author {
  --aai-w: 7.313rem;
  margin-top: 3.75rem;
  display: flex;
  align-items: flex-end;
}

.appeal-author__img {
  margin-right: 1.313rem;
  flex: 0 0 var(--aai-w);
  max-width: var(--aai-w);
}

.appeal-author__wrap {
  padding-bottom: var(--aaw-p, 1rem);
}

.appeal-author__name {
  margin-bottom: var(--aan-m, 0.375rem);
}

.appeal-author__pos {
  color: #d5d5d5;
  font-size: var(--aap-fs, 0.75rem);
}

@media (min-width: 768px) {
  .person-intro {
    --pi-m: 2.389rem;
  }

  .person-intro h1 {
    padding-top: 5rem;
    margin-bottom: 2.056rem;
  }

  .person-intro img {
    width: auto;
    max-width: 20.556rem;
  }

  .person-data {
    --pd-m: 1.889rem;
    --pdl-fs: 0.889rem;
    --pdi-m: 0;
  }

  .photos-cloud {
    --pc-m: 1.556rem;
    height: 32.5rem;
    overflow: visible;
  }

  .photos-cloud__img:nth-child(1) {
    --pci-w: 17.138rem;
    right: 233px;
    top: 65px;
  }

  .photos-cloud__img:nth-child(2) {
    --pci-w: 14.513rem;
    top: 17.463rem;
    left: -39px;
  }

  .photos-cloud__img:nth-child(3) {
    --pci-w: 9.444rem;
    display: block;
    right: 42px;
  }

  .photos-cloud__img:nth-child(4) {
    --pci-w: 14.013rem;
    right: -2.125rem;
    bottom: 0;
  }

  .person-career {
    --co-m: 0 0 4.333rem;
    --pct-m: 2.278rem;
    --pct-fs: 3.333rem;
    --pct-ta: center;
  }

  .appeal-section {
    --as-p: 5.333rem 0 5.556rem;
    --asi-p: 0;
  }

  .appeal-section__intro {
    margin-bottom: 3.25rem;
  }

  .appeal-section__intro::before {
    width: 4.363rem;
    height: 3.875rem;
    top: -0.262rem;
    left: 0;
    background-size: contain;
  }

  .appeal-marquee {
    margin: 0 auto 3.338rem;
  }

  .appeal-marquee__svg {
    width: 65.225rem;
    height: 10.025rem;
  }

  .appeal-author {
    --aai-w: 8.513rem;
    --aaw-p: .8rem;
    margin-top: 5.65rem;
  }

  .appeal-author__img {
    margin-right: 2.013rem;
  }

  .career-objects {
    --col-p: 1.188rem 0 1.113rem 6.825rem;
  }

  .career-note {
    --cn-m: 5.556rem;
    --cn-fs: 1.333rem;
    --cn-lh: 1.3;
  }

  .appeal-author {
    --aan-m: 0.333rem;
    --aap-fs: 0.778rem;
  }
}

@media (min-width: 992px) {
  .person-intro {
    --pi-m: 3.378rem;
    --ect-pr: 1.389rem;
    --ect-fs: 1.667rem;
    --ect-lh: 1.3;
    overflow-x: clip;
  }

  .person-intro img {
    max-width: 28.856rem;
    -webkit-transform: translate(7px, -40px);
    transform: translate(7px, -40px);
  }

  .person-intro h1 {
    padding-top: 6.4rem;
  }

  .person-data {
    --pd-m: 0px 3.756rem;
  }

  .photos-cloud {
    --pc-m: 2.656rem;
    --pc-mh: 50.556rem;
  }

  .photos-cloud__img:nth-child(1) {
    --pci-w: 24.438rem;
    right: 307px;
    top: 183px;
  }

  .photos-cloud__img:nth-child(2) {
    --pci-w: 19.713rem;
    top: 29.063rem;
    left: -62px;
  }

  .photos-cloud__img:nth-child(3) {
    --pci-w: 12.844rem;
    display: block;
    right: 55px;
    top: 98px;
  }

  .photos-cloud__img:nth-child(4) {
    --pci-w: 20.013rem;
    right: -4.125rem;
    bottom: 0;
  }

  .person-career {
    --pct-m: 4.278rem;
    --co-m: 0 0 5.533rem;
  }

  .person-career p {
    margin-bottom: 27px;
  }

  .career-objects {
    --col-p: 1.088rem 0 1.113rem 4.225rem;
  }

  .career-objects li::before {
    left: 7px;
  }

  .appeal-section {
    --as-p: 6.667rem 0 6.667rem;
  }

  .appeal-section__intro {
    margin-bottom: 1.55rem;
  }

  .appeal-section__intro::before {
    width: 14.363rem;
    height: 11.475rem;
  }

  .appeal-section__intro p {
    margin-bottom: 39px;
  }

  .appeal-author {
    width: 100%;
    align-self: flex-end;
  }

  .appeal-marquee {
    margin: 0 auto 2.738rem;
  }

  .appeal-marquee__svg {
    width: 102.025rem;
    height: 15.725rem;
  }

  .career-note {
    --cn-m: 6.667rem;
    --cn-fs: 1.667rem;
  }
}

@media (min-width: 1200px) {
  .person-intro {
    --pi-m: 0;
  }

  .person-intro h1 {
    --h1-fs: 5.033rem;
    padding-top: 8.5rem;
    margin-bottom: 3.256rem;
  }

  .person-intro img {
    max-width: 38.856rem;
    -webkit-transform: translate(11px, -46px);
    transform: translate(11px, -46px);
  }

  .person-data {
    --pd-m: 54px 8.667rem;
  }

  .photos-cloud {
    --pc-m: 0;
    --pc-mh: 59.856rem;
  }

  .photos-cloud__img:nth-child(1) {
    --pci-w: 29.138rem;
    right: 334px;
    top: 149px;
  }

  .photos-cloud__img:nth-child(2) {
    --pci-w: 27.213rem;
    top: 27.063rem;
    left: -134px;
  }

  .photos-cloud__img:nth-child(3) {
    --pci-w: 15.444rem;
    right: 29px;
    top: 63px;
  }

  .photos-cloud__img:nth-child(4) {
    --pci-w: 24.413rem;
    right: -7.325rem;
    bottom: 0;
  }

  .person-career {
    --pct-m: 9.078rem;
    --co-m: 0 0 9.533rem;
    margin-top: -283px;
  }

  .person-career__title {
    margin-left: auto;
    max-width: 450px;
    margin-right: auto;
    line-height: 1.2;
  }

  .career-objects {
    --col-p: 1.088rem 0 1.113rem 5.325rem;
  }

  .appeal-section {
    --as-p: 8.333rem 0 8.722rem;
  }

  .career-note {
    --cn-m: 9.167rem;
    padding: 0 140px;
  }
}

.news {
  padding-top: var(--ns-pt, 0.625rem);
  margin-bottom: var(--ns-mb, 0.625rem);
}

.news-item {
  --filter: grayscale(0);
  padding: var(--ns-py, 1.75rem) 0;
  position: relative;
  border-top: #ddd 0.063rem solid;
}

.news-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.news-item:hover {
  --filter: grayscale(1);
}

.news-item__img {
  width: 100%;
  max-width: var(--nsi-mw, 100%);
  margin-bottom: var(--nsi-mb, 1.375rem);
  -webkit-filter: var(--filter);
  filter: var(--filter);
  transition: -webkit-filter 0.3s ease-in;
  transition: filter 0.3s ease-in;
  transition: filter 0.3s ease-in, -webkit-filter 0.3s ease-in;
}

.news-item__date {
  margin-bottom: var(--nsd-mb, 0.5rem);
  color: #888;
  font-size: var(--nsd-fs, 0.875rem);
}

.news-item__name {
  color: #252525;
  font-size: var(--nsn-fs, 1.125rem);
  line-height: var(--nsn-lh, 1.5);
}

.news-item__name:hover {
  text-decoration: none;
}

.news-item__name::before {
  content: "";
  clear: both;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .news {
    --ns-pt: 1rem;
    --ns-mb: 1.111rem;
  }

  .news-item {
    --ns-py: 2.278rem;
    --nsi-mw: 520px;
    --nsi-mb: 1.611rem;
    --nsd-fs: 1rem;
    --nsd-mb: 0.833rem;
    --nsn-fs: 1.667rem;
    --nsn-lh: 1.3;
  }

  .news-item__name {
    font-weight: 300;
  }
}

@media (min-width: 992px) {
  .news {
    --ns-mb: 1.833rem;
  }

  .news-item {
    --ns-py: 2.167rem;
    --nsi-mw: 23.333rem;
    --nsi-mb: 0;
    --nsd-mb: 1.667rem;
    display: flex;
  }

  .news-item__wrap {
    padding: 0 3rem 0 3.889rem;
  }
}

@media (min-width: 1200px) {
  .news {
    --ns-mb: 3.444rem;
  }

  .news-item {
    --nsi-mw: 27.778rem;
  }

  .news-item__wrap {
    padding-left: 5.556rem;
  }
}

.projects-cats {
  display: grid;
  grid-template-columns: var(--pc-gt, repeat(1, 1fr));
  grid-column-gap: var(--pc-gcg, 1.25rem);
  grid-row-gap: var(--pc-grg, 1.25rem);
}

.projects-category {
  position: relative;
}

.projects-category__name {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  position: absolute;
  padding: var(--pcn-p, 0 0 0.813rem 0.625rem);
  top: 0;
  left: 0;
  color: #fff;
  font-size: var(--pcn-fs, 1.125rem);
}

.projects-category__name::before {
  content: "";
  clear: both;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.projects-menu {
  display: flex;
  gap: 0.625rem;
  overflow: scroll;
  margin-bottom: var(--pm-m, 1.438rem);
}

.projects-menu__item {
  padding: var(--pmi-p, 0.625rem 1.125rem);
  font-size: var(--pmi-fs, 0.75rem);
  color: var(--pmi-c, #888);
  border: var(--pmi-bc, #999) 1px solid;
  border-radius: 90px;
  background: var(--pmi-bg, #fff);
  white-space: nowrap;
  text-decoration: none !important;
}

.projects-menu__item_active {
  --pmi-c: #fff;
  --pmi-bc: #e33247;
  --pmi-bg: var(--pmi-bc);
}

.projects {
  position: relative;
  display: grid;
  grid-template-columns: var(--ps-gt, repeat(1, 1fr));
  grid-column-gap: var(--ps-gcg, 1.25rem);
  grid-row-gap: var(--ps-grg, 1.875rem);
}

.project__img {
  margin-bottom: var(--pti-m, 0.563rem);
}

.project__name {
  color: #252525;
}

.project__name::before {
  content: "";
  clear: both;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project__date {
  padding-top: var(--ptd-m, 0.625rem);
  color: #888;
}

@media (min-width: 768px) {
  .projects-cats {
    --pc-gt: repeat(2, 1fr);
    --pc-grg: 2rem;
    --pcn-fs: 1rem;
    padding-top: var(--pc-p, 2.278rem);
  }

  .projects-category {
    --pcn-p: 0 0 0.278rem 0.556rem;
  }

  .projects-menu {
    --pm-m: 2.833rem;
    --pmi-fs: 0.778rem;
    --pmi-p: 0.5rem 0.944rem;
    padding-top: var(--pm-p, 1rem);
    overflow: visible;
    flex-wrap: wrap;
  }

  .projects {
    --ps-gt: repeat(2, 1fr);
    --ps-grg: 3rem;
  }

  .project {
    --pti-m: 1.278rem;
    --ptd-m: 0.278rem;
  }
}

@media (min-width: 992px) {
  .projects-cats {
    --pc-p: 4.111rem;
    --pc-gt: repeat(3, 1fr);
    --pc-grg: 2.222rem;
  }

  .projects-category {
    --pcn-fs: 1rem;
    --pcn-p: 0 0 0.278rem 0.556rem;
  }

  .projects {
    --ps-gt: repeat(3, 1fr);
    --ps-grg: 3.944rem;
  }

  .project {
    --pti-m: 1.611rem;
  }
}

@media (min-width: 1200px) {
  .projects-category {
    --pcn-fs: 1rem;
    --pcn-p: 0 0 0.889rem 1.111rem;
  }

  .projects-menu {
    --pm-p: 1.167rem;
  }
}

.project {
  position: relative;
}

.project__preview {
  margin-bottom: var(--prj-m, 1.875rem);
}

.project-bar {
  display: flex;
  flex-direction: var(--pb-fd, column);
  margin-bottom: var(--pb-m, 1.875rem);
}

.project-info {
  margin-bottom: var(--pi-m, 1.875rem);
}

.project-info__loc {
  margin: var(--pil-m, 0 0 1.25rem);
  font-size: var(--pil-fs, 1.125rem);
  font-weight: var(--pil-fw, 400);
}

.project-info__category {
  display: inline-block;
  padding: var(--pic-p, 0.625rem 1.125rem);
  font-size: var(--pic-fs, 0.75rem);
  color: var(--pic-c, #888);
  border: var(--pic-bc, #999) 1px solid;
  border-radius: 90px;
  white-space: nowrap;
  text-decoration: none !important;
}

.project-description-short {
  margin-bottom: var(--pds-m, 3.75rem);
}

.project-data-image {
  margin-bottom: var(--pdig-m, 3.75rem);
}

.project-data {
  display: grid;
  grid-template-columns: var(--pdi-gt, repeat(1, 1fr));
  grid-column-gap: var(--pdi-gcg, 0);
  grid-row-gap: var(--pdi-grg, 1.563rem);
  margin: 0 0 var(--pd-m, 4.188rem);
  padding: 0;
}

.project-data__item {
  font-size: var(--pdi-fs, 0.875rem);
  list-style: none;
}

.project-data__label {
  margin-bottom: var(--pdl-mb, 0.813rem);
  color: #888;
  font-size: var(--pdl-fs, 0.875rem);
  text-transform: uppercase;
}

.project-gallery-caption {
  margin-bottom: var(--pgc-m, 3.75rem);
}

.project-gallery {
  margin-bottom: var(--pg-m, 2.625rem);
}

.link-all-projects {
  display: inline-flex;
  align-items: center;
  font-size: var(--lap-fs, 0.875rem);
  color: #252525;
  text-transform: uppercase;
  text-decoration: none !important;
}

.project-next {
  height: var(--pn-h, 16.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: var(--pn-m, 3.938rem);
}

.project-next img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-next__wrap {
  width: 100%;
  max-width: var(--pnw-nw, 15.625rem);
  padding: var(--pnw-p, 2.625rem 0.625rem);
  position: absolute;
  top: var(--pnw-t, 2rem);
  bottom: var(--pnw-b, 2rem);
  text-align: center;
  background: #fff;
}

.project-next__i {
  margin-bottom: var(--pni-m, 1.25rem);
  font-size: var(--pni-fs, 0.875rem);
  color: #888;
  text-transform: uppercase;
}

.project-next__name {
  font-weight: 300;
  line-height: 1.3;
  color: #000;
  font-size: var(--pnn-fs, 1.5rem);
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .project {
    --prj-m: 4.444rem;
  }

  .project-bar {
    --pb-m: 2rem;
    --pb-fd: row;
    padding-top: var(--pb-p, 0.833rem);
    align-items: center;
  }

  .project-bar .arrow-link {
    margin-left: auto;
  }

  .project-info {
    --pi-m: 0;
    --pil-m: 0 0 0.333rem;
    --pil-fs: 1.667rem;
    --pil-fw: 300;
    flex: var(--pi-f, 0 0 60%);
    max-width: --pi-mw, 60%;
  }

  .project-description-short {
    --pds-m: 4.444rem;
  }

  .project-data-image {
    --pdig-m: 5.556rem;
  }

  .project-data {
    --pd-m: 0;
    --pdi-grg: 1.889rem;
    --pdl-mb: 0.5rem;
    --pdi-fs: 0.778rem;
    --pdl-fs: 0.889rem;
  }

  .project-gallery-caption {
    --pgc-m: 5.556rem;
  }

  .project-gallery {
    --pg-m: 4.556rem;
  }

  .link-all-projects {
    --lap-fs: 0.889rem;
  }

  .project-next {
    --pn-h: 22.222rem;
    --pn-m: 5.556rem;
    --pnw-nw: 29.722rem;
    --pnw-p: 2.222rem 2.667rem;
    --pnw-t: 3.889rem;
    --pnw-b: 3.889rem;
    --pni-m: 2.111rem;
    --pni-fs: 0.889rem;
    --pnn-fs: 1.667rem;
  }
}

@media (min-width: 992px) {
  .project {
    --prj-m: 5.556rem;
  }

  .project-description-short {
    --pds-m: 5.444rem;
  }

  .project-info {
    --pil-m: 0 0.556rem 0 0;
    --pi-f: 1 0 auto;
    --pi-mw: none;
    display: flex;
    flex-wrap: wrap;
  }

  .project-data {
    --pdi-gt: repeat(2, 1fr);
    --pdi-gcg: 3.889rem;
    --pdi-grg: 6.111rem;
  }

  .project-next {
    --pnw-t: 2.056rem;
    --pnw-b: 2.056rem;
    --pnw-nw: 35.278rem;
    --pnw-p: 2.778rem 1.111rem;
    --pnn-fs: 3.333rem;
    --pn-m: 6.556rem;
    --pn-h: 25.222rem;
  }

  .project-gallery {
    --pg-m: 5.667rem;
  }

  .project-gallery-caption {
    --pgc-m: 6.444rem;
  }
}

@media (min-width: 1200px) {
  .project-bar {
    --pb-p: 1.111rem;
  }

  .project-info {
    --pil-m: 0 1.889rem 0 0;
  }

  .project-description-short {
    --pds-m: 9.944rem;
  }

  .project-data {
    --pdi-grg: 7.222rem;
  }

  .project-data-image {
    --pdig-m: 8.278rem;
  }

  .project-gallery {
    --pg-m: 7.222rem;
  }

  .project-gallery-caption {
    --pgc-m: 8.333rem;
  }

  .project-next {
    --pnw-t: 5.556rem;
    --pnw-b: 5.556rem;
    --pnw-nw: 34.167rem;
    --pn-h: 33.333rem;
    --pn-m: 7.833rem;
    --pni-m: 3.111rem;
  }

  .project-next__name {
    line-height: 1.2;
  }
}

.contacts-map {
  height: var(--map-h, 31.25rem);
  background: #666;
}

.contacts {
  width: auto;
  max-width: var(--ct-mw, 100%);
  padding: var(--ct-p, 1.875rem 1.25rem 0.875rem);
  position: absolute;
  top: var(--ct-t, 0.625rem);
  left: 0.625rem;
  right: 0.625rem;
  color: #fff;
  background: #e33247;
}

.contacts__email {
  color: #fff;
}

.contacts__phone {
  margin-bottom: var(--ctp-mb, 1.25rem);
  font-weight: 300;
  font-size: var(--ctp-fs, 1.875rem);
}

.contacts__address {
  padding-top: var(--cta-pt, 1.25rem);
}

.contacts-wrapper {
  position: relative;
  padding-top: var(--cw-pt, 8.063rem);
}

@media (min-width: 768px) {
  .contacts {
    --ct-t: 1rem;
    --ct-p: 2rem 2.056rem 1.389rem;
    --ct-mw: 20.556rem;
    --ctp-fs: 1.667rem;
    --ctp-mb: 0.944rem;
  }

  .contacts-wrapper {
    --cw-pt: 5.389rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

@media (min-width: 992px) {
  .contacts-map {
    --map-h: 31.667rem;
  }

  .contacts {
    --ct-p: 1.5rem 3.333rem 1.111rem;
    --ct-mw: 33.278rem;
    --ctp-fs: 3.333rem;
    --ctp-mb: 0.611rem;
  }

  .contacts__address {
    max-width: 60%;
  }
}

@media (min-width: 1200px) {
  .contacts-map {
    --map-h: 38.889rem;
  }

  .contacts-wrapper {
    --cw-pt: 6.556rem;
  }

  .contacts {
    --ct-p: 2.222rem 3.889rem 2.778rem 8.056rem;
    --ct-mw: 38.889rem;
    --ctp-mb: 1.833rem;
    --cta-pt: 2.167rem;
  }
}

.home-section__header {
  margin-bottom: var(--hsh-mb, 1.438rem);
  color: #888;
  font-size: var(--hsh-fs, 0.875rem);
  text-transform: uppercase;
}

.section-services {
  margin-bottom: var(--ss-m, 7rem);
}

.section-services__header {
  margin-bottom: var(--ssh-m, 1.875rem);
}

.services {
  margin-bottom: var(--srv-m, 1.875rem);
}

.service {
  padding: var(--se-p, 1.25rem 0);
  display: grid;
  grid-template-columns: 5rem 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 0;
  grid-template-areas: "icon number""icon name";
  border-top: #ddd 0.063rem solid;
}

.service:first-child {
  padding-top: 0;
  border-top: 0;
}

.service__icon {
  grid-area: icon;
  align-self: self-end;
}

.service__n {
  margin-bottom: var(--sen-mb, 0.938rem);
  grid-area: number;
  font-size: var(--sen-fs, 0.875rem);
}

.service__name {
  grid-area: name;
  padding-right: 0.625rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  color: #252525;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-about {
  --ml: 5rem;
  --hsh-mb: 1.188rem;
  margin-bottom: var(--sat-m, 7.5rem);
}

.section-about__header-label {
  position: absolute;
  top: var(--sahl-t, -2.5rem);
  left: calc(var(--ml) * -1);
  color: #888;
  font-size: var(--sahl-fs, 0.875rem);
  text-transform: uppercase;
}

.section-about__header {
  position: relative;
  font-weight: 300;
  font-size: var(--sah-fs, 1.625rem);
  line-height: var(--sah-lg, 1.3);
  text-indent: var(--ml);
  text-transform: none;
  color: #252525;
}

.section-about__header:first-line {
  padding-left: 20px;
}

.section-about-intro {
  margin-bottom: var(--sai-m, 2.5rem);
}

.section-about-intro__pic {
  display: block;
  margin-bottom: 1.25rem;
}

.section-about-intro__container {
  display: flex;
  flex-direction: column;
}

.section-about-content {
  --ml: 5rem;
  padding: var(--sac-p, 3.375rem 0 4.875rem);
  position: relative;
  color: #fff;
  background: center center/cover no-repeat url(./images/section-about-sm-bg.jpg);
}

.section-about-content__header {
  margin-bottom: var(--sach-m, 2.688rem);
  padding: var(--sach-p, 0 0.625rem 0);
  color: #c4c4c4;
  font-size: var(--sach-fs, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.2px;
  font-weight: 300;
  text-transform: uppercase;
  text-indent: var(--ml);
}

.section-about-content__header span {
  color: #fff;
}

.section-about-content p {
  padding-right: 1.875rem;
}

.about-grid {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: var(--ag-fw, wrap);
  margin: var(--ag-m, -2.563rem 0 0);
}

.about-grid-item {
  --agi-f: 50%;
  flex: 0 0 var(--agi-f);
  max-width: var(--agi-f);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--agi-p, 0.688rem 1.25rem 1.063rem);
  border: var(--agi-bc, #ddd) 1px solid;
  color: var(--agi-c, #252525);
  line-height: 1.5;
  font-size: var(--agi-fs, 0.875rem);
  background: var(--agi-bg, #fff);
}

.about-grid-item:nth-child(2n) {
  -webkit-transform: translateY(var(--agi-ty, 40px));
  transform: translateY(var(--agi-ty, 40px));
}

.about-grid-item__no {
  margin-bottom: var(--agin-m, 0.938rem);
  color: var(--agin-c, #e33247);
  font-size: var(--agin-fs, 3.75rem);
  font-weight: 300;
}

.about-grid-item:first-child {
  --agi-c: #fff;
  --agin-c: #fff;
  --agi-bg: #e33247;
  --agi-bc: #e33247;
}

.about-grid-item:last-child {
  --agi-c: #fff;
  --agi-bg: #252525;
  --agi-bc: var(--agi-bg);
}

.section-projects {
  margin-bottom: var(--sp-m, 4.375rem);
  overflow: hidden;
}

.section-projects__title {
  width: 100%;
  margin-bottom: var(--spt-m, 2.5rem);
}

.section-projects__content {
  margin-top: var(--spc-m, 0rem);
}

.section-projects__slider {
  overflow: visible;
  margin-bottom: var(--sps-m, 1.875rem);
}

.section-projects__footer {
  text-align: center;
  padding: 0 2.188rem;
}

.section-projects__footer p {
  font-weight: 300;
  line-height: 1.3;
  font-size: var(--spfp-fs, 1.5rem);
}

.section-projects__footer p:last-of-type {
  margin-bottom: var(--spfp-m, 1.813rem);
}

.project-slide__img {
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--pse-m, 1.25rem);
}

.project-slide__title {
  color: #252525;
}

.project-slide__title::before {
  content: "";
  clear: both;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-slide__date {
  padding-top: var(--sd-p, 0.75rem);
  color: #888;
  font-size: var(--sd-fs, 1rem);
}

.section-epilogue {
  position: relative;
  margin-bottom: var(--se-m, 4.563rem);
}

.section-epilogue__img {
  width: 100%;
  max-width: 100%;
}

.section-epilogue__card {
  min-height: var(--sec-mh, 13.125rem);
  padding: var(--sec-p, 1.5rem 1.375rem 5.813rem);
  font-weight: 300;
  font-size: var(--sec-fs, 1.5rem);
  line-height: 1.3;
  color: #fff;
  background: #e33247;
}

@media (min-width: 768px) {
  .section-services {
    --ss-m: 5.333rem;
    text-align: center;
  }

  .section-services__header {
    text-align: left;
  }

  .services {
    --srv-m: 4.278rem;
    padding-top: 2.389rem;
  }

  .service {
    --se-p: 0;
    --sen-fs: 1rem;
    --sen-mb: 0;
    margin-top: var(--sre-m, 3.944rem);
    display: flex;
    align-items: flex-start;
    border-top: 0;
    text-align: left;
  }

  .service:first-child {
    margin-top: 0;
  }

  .service__n {
    display: flex;
    align-items: center;
    padding-top: 1.667rem;
    flex: 0 0 var(--srvn-f, 3.333rem);
    max-width: var(--srvn-mw, 3.333rem);
    align-self: stretch;
    order: 0;
    border-top: #ddd 0.056rem solid;
  }

  .service__icon {
    padding-top: 0.556rem;
    order: 1;
    flex: 0 0 var(--srvi-f, 9.667rem);
    max-width: var(--srvi-mw, 9.667rem);
    text-align: center;
  }

  .service__name {
    padding-top: 1.222rem;
    order: 2;
    flex-grow: 1;
    font-size: var(--snm-fs, 1.333rem);
    font-weight: 300;
    line-height: 1.3;
    border-top: #ddd 0.056rem solid;
  }

  .section-about-content {
    --ml: 18.8rem;
    --sach-fs: 2.444rem;
    --sac-p: 8.833rem 0 4.333rem;
    --sach-p: 0 0.556rem 0 2.556rem;
    --sach-m: 0;
    margin-top: var(--sac-m, -12.778rem);
    background: center center/cover no-repeat url(./images/section-about-md-bg.jpg);
  }

  .section-about-content p {
    margin: 0 0 1.278rem;
    padding-left: 21.667rem;
  }

  .section-about {
    --sat-m: 10rem;
    --sah-fs: 3.333rem;
    --sah-lg: 1.2;
    --ml: 13.667rem;
    --hsh-mb: 4.056rem;
  }

  .section-about-intro {
    --sai-m: 2rem;
    --saif-f: 43.8%;
  }

  .section-about-intro__container {
    flex-direction: row;
  }

  .section-about-intro__pic {
    position: relative;
    z-index: 1;
  }

  .section-about-intro__figure {
    flex: 0 0 var(--saif-f);
    max-width: var(--saif-f);
  }

  .section-about-intro__content {
    flex-grow: 1;
    padding-left: var(--saic-p, 3.333rem);
  }

  .section-about-intro__content p {
    margin: 0 0 1.278rem;
  }

  .arrow-link {
    position: relative;
    z-index: 1;
  }

  .about-grid {
    --ag-m: 0.222rem 0 0;
  }

  .about-grid-item {
    --agi-ty: 3.333rem;
    --agi-p: 0.556rem 2.611rem 1.278rem;
    --agi-fs: 1rem;
    --agin-m: 0.278rem;
    --agin-fs: 4.444rem;
  }

  .section-projects {
    --sp-m: 7.667rem;
    --spt-m: 0;
    --spc-m: -2.056rem;
    --sps-m: 4rem;
  }

  .project-slide {
    --sd-p: 0.333rem;
    --pse-m: 1.056rem;
    --spfp-m: 2.389rem;
  }

  .section-epilogue {
    --se-m: 5.833rem;
    --sec-mh: 16.222rem;
    --sec-p: 2.111rem 2.222rem;
    --sec-fs: 1.333rem;
  }

  .section-epilogue__card {
    max-width: var(--sec-mw, 20.556rem);
    position: absolute;
    top: var(--sec-t, -1.667rem);
    right: 0;
  }
}

@media (min-width: 992px) {
  .section-services {
    --ss-m: 9.5rem;
    --ssh-m: 1.389rem;
  }

  .services {
    --srv-m: 4.556rem;
  }

  .service {
    --srvi-f: 18.667rem;
    --srvi-mw: var(--srvi-f);
    --snm-fs: 1.667rem;
  }

  .arrow-link {
    letter-spacing: 0.9px;
  }

  .section-about {
    --ml: 21.889rem;
    --sat-m: 8.333rem;
  }

  .section-about-intro {
    --saif-f: 36.1%;
    --saic-p: 4.444rem;
  }

  .section-about-intro__content {
    max-width: 440px;
  }

  .section-about-content {
    --ml: 21.5rem;
    --sac-m: -10rem;
    --sac-p: 9.611rem 0 4.333rem;
    --sach-p: 0 2.5rem 0 3.667rem;
    --sach-fs: 3.556rem;
    --sach-m: 2.667rem;
    min-height: 58.389rem;
  }

  .section-about-content p {
    margin: 0 0 1.278rem 25.556rem;
    max-width: 23.889rem;
    padding-left: 0;
  }

  .about-grid {
    --ag-fw: nowrap;
  }

  .about-grid-item {
    --agi-f: 25%;
    --agi-p: 0.556rem 1.556rem 1.944rem;
    --agin-m: 2.444rem;
  }

  .about-grid-item:nth-child(1) {
    -webkit-transform: translateY(-225px);
    transform: translateY(-225px);
  }

  .about-grid-item:nth-child(2) {
    -webkit-transform: translateY(-111px);
    transform: translateY(-111px);
  }

  .about-grid-item:nth-child(3) {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  .about-grid-item:nth-child(4) {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .section-projects {
    --spc-m: -2.833rem;
    --sps-m: 6.389rem;
    --spfp-m: 2.5rem;
    --spfp-fs: 1.667rem;
    --sp-m: 9.333rem;
  }

  .section-epilogue {
    --sec-fs: 1.667rem;
    --sec-mh: 16.222rem;
    --sec-mw: 28.889rem;
    --sec-t: -2.722rem;
  }
}

@media (min-width: 1200px) {
  .section-about-content {
    --ml: 26.389rem;
    --sac-m: -14.5rem;
    --sach-fs: 4.167rem;
    --sac-p: 15.889rem 0 8.444rem;
    --sach-p: 0 2.5rem 0 8.667rem;
    --sach-m: 4.222rem;
    min-height: 81.556rem;
  }

  .section-about-content p {
    margin: 0 0 1.278rem 35.278rem;
  }

  .section-about-intro {
    --sai-m: 0;
    --saic-p: 6.5rem;
  }

  .section-about-intro__content {
    max-width: 26.667rem;
  }

  .section-services {
    --ss-m: 14.389rem;
    --ssh-m: 2.556rem;
  }

  .services {
    --srv-m: 5.611rem;
  }

  .service {
    --srvi-f: 23.333rem;
    --srvi-mw: var(--srvi-f);
    --sre-m: 5rem;
  }

  .section-about {
    --ml: 26.444rem;
    --sahl-t: 1.111rem;
    --hsh-mb: 5.556rem;
    --sat-m: 2.778rem;
  }

  .about-grid-item {
    --agin-fs: 5.333rem;
    --agi-p: 0.778rem 2.722rem 3.333rem;
    --agin-m: 4.722rem;
  }

  .about-grid-item:nth-child(1) {
    -webkit-transform: translateY(-388px);
    transform: translateY(-388px);
  }

  .about-grid-item:nth-child(2) {
    -webkit-transform: translateY(-237px);
    transform: translateY(-237px);
  }

  .about-grid-item:nth-child(3) {
    -webkit-transform: translateY(-152px);
    transform: translateY(-152px);
  }

  .about-grid-item:nth-child(4) {
    -webkit-transform: translateY(-118px);
    transform: translateY(-118px);
  }

  .section-projects {
    --sp-m: 13.722rem;
    --sps-m: 7.444rem;
  }

  .section-epilogue {
    --sec-mw: 37.778rem;
    --sec-mh: 19.444rem;
    --sec-t: -5.389rem;
    --sec-p: 2.667rem 2.778rem 2.667rem 2.222rem;
  }
}

.search__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.125rem;
}

.form-search {
  --fss-s: 56px;
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

.form-search__input {
  height: var(--fss-s);
  flex-grow: 1;
  padding: var(--fsi-p, 0.938rem 1.25rem);
  border: #ddd 1px solid;
  font-size: 1rem;
  background: #fff;
}

.form-search__btn {
  width: var(--fss-s);
  height: var(--fss-s);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #252525;
}

.form-search__btn svg {
  margin-left: 0;
  fill: #fff;
}

.search-form-hint {
  margin-bottom: 10px;
}

.search-form-hint b {
  color: #e33247;
}

.search-results {
  margin-bottom: 30px;
}

.search-results__empty {
  padding: 30px 0;
  text-align: center;
  font-size: 1.2rem;
}

.search-result {
  padding-top: 20px;
  border-bottom: #d9d9d9 1px solid;
}

.search-result__img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.search-result__title {
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33;
}

.search-result__caption {
  padding-top: 10px;
}

.search-result__link {
  display: none;
}

@media (min-width: 768px) {
  .form-search {
    display: flex;
  }

  .form-search__input {
    flex-grow: 1;
  }

  .form-search__btn {
    min-width: 90px;
    position: relative;
    -webkit-transform: none;
    transform: none;
  }

  .form-search__btn-label {
    display: block;
  }

  .form-search__btn-icon {
    display: none;
  }

  .search-form-hint {
    margin-bottom: 20px;
  }

  .search-result {
    padding: 30px 0 10px;
    display: flex;
  }

  .search-result__picture {
    flex: 0 0 200px;
    max-width: 200px;
    margin-right: 30px;
    text-align: center;
  }

  .search-result__wrapper {
    flex-grow: 1;
  }

  .search-result__img {
    height: auto;
  }

  .search-result__link {
    display: inline-block;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@media (min-width: 992px) {
  .search__title {
    margin-bottom: 21px;
    font-size: 1.333rem;
  }

  .form-search {
    margin-bottom: 30px;
  }

  .form-search__input {
    font-size: 1rem;
  }

  .search-form-hint {
    margin-bottom: 30px;
  }

  .search-results {
    margin-bottom: 50px;
  }

  .search-results__empty {
    padding: 50px 0 30px;
  }

  .search-result {
    padding: 40px 0 10px;
    display: flex;
  }

  .search-result__picture {
    flex: 0 0 158px;
    max-width: 158px;
  }
}

.page-404 {
  margin: auto 0;
}

.logo-404 {
  display: block;
  margin-bottom: 1.875rem;
}

.logo-404__img {
  width: 100%;
  max-width: 500px;
}