@font-face {
  font-family: 'NimbusSans';
  font-display: swap;
  src: url('../fonts/NimbusSans-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'NimbusSans';
  font-display: swap;
  src: url('../fonts/NimbusSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'NimbusSans';
  font-display: swap;
  src: url('../fonts/NimbusSans-Bold.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'NimbusSans';
  font-display: swap;
  src: url('../fonts/NimbusSans-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}
:root {
  --container-width: 95rem;
  --container-padding: 5rem;
  --app-min-width: 26.25rem;
  --header-height: 7.75rem;
  --content-gap: 1.25rem;
}
@media (width < 1024px) {
  :root {
    --container-padding: 2.5rem;
    --header-height: 5rem;
  }
}
@media (width < 768px) {
  :root {
    --container-padding: 1.5rem;
  }
}
@media (width < 480px) {
  :root {
    --container-padding: 1rem;
  }
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.mask {
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to right, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
}
.mask-vertical {
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to bottom, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
}
/* base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (width >= 1024px) {
  * ::-webkit-scrollbar {
    width: 0.375rem;
    height: 0.375rem;
  }
  * ::-webkit-scrollbar-thumb {
    background-color: #61676d;
    border-radius: 0.375rem;
    background-clip: padding-box;
  }
  * ::-webkit-scrollbar-track {
    background: transparent;
  }
}
*:after,
*:before {
  box-sizing: inherit;
}
html {
  overflow: hidden scroll;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  --sptu: var(--header-height);
  --sptd: 0px;
  scroll-padding-top: var(--sptu);
}
@media (width < 1680px) and (width >= 1024px) {
  html {
    font-size: 0.96vw;
  }
}
body {
  font-family: 'NimbusSans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.44;
  color: #242e36;
  min-width: var(--app-min-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
body:has(.header) {
  padding-top: var(--header-height);
}
.container {
  margin-left: auto;
  margin-right: auto;
  width: calc(var(--container-width) + 2 * var(--container-padding));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 100%;
}
@media (width < 1200px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (width < 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}
@media (width < 768px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (width >= 768px) {
  .visible-mobile {
    display: none !important;
  }
}
@media (width >= 1024px) {
  .visible-tablet {
    display: none !important;
  }
}
@media (width >= 1200px) {
  .visible-desktop {
    display: none !important;
  }
}
.cover-img {
  display: flex;
  overflow: hidden;
  will-change: transform;
}
.cover-img picture,
.cover-img img,
.cover-img video,
.cover-img canvas {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
template {
  display: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
picture img {
  display: block;
}
ul,
ol {
  list-style: none;
}
b,
strong {
  font-weight: 700;
}
button {
  all: unset;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  appearance: button;
}
a:focus-visible,
button:focus-visible {
  outline: solid 0.125rem rgba(200, 188, 172, 0.5);
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}
svg {
  all: unset;
  flex: none;
}
use {
  fill: currentColor;
}
.swiper-slide {
  height: auto;
}
a {
  text-decoration: none;
  color: #c8bcac;
}
.icon {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
}
.btn {
  --height: 2.75rem;
  display: inline-flex;
  gap: 0.313rem;
  height: var(--height);
  cursor: pointer;
  max-width: 100%;
  color: #c8bcac;
  flex: none;
  font-size: 1.125rem;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border: solid 1px #c8bcac;
  border-radius: var(--height);
  transition:
    border-color 0.4s,
    background-color 0.4s,
    color 0.4s;
}
.btn > i {
  flex: none;
  width: var(--height);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #c8bcac;
  color: #242e36;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.btn > i svg {
  --size: 0.75rem;
}
.btn:hover > span {
  background-color: #242e36;
  border-color: #242e36;
  color: #fff;
}
.btn:hover > i {
  background-color: #242e36;
  color: #fff;
}
.btn[disabled],
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-fill > span {
  background-color: #c8bcac;
  color: #242e36;
}
.btn-alt > span {
  border-color: #242e36;
  color: #242e36;
}
.btn-alt > i {
  background-color: #242e36;
  color: #fff;
}
.btn-alt:hover > span {
  background-color: #c8bcac;
  border-color: #c8bcac;
  color: #242e36;
}
.btn-alt:hover > i {
  background-color: #c8bcac;
  color: #242e36;
}
.btn-alt .btn-fill > span {
  background-color: #242e36;
  color: #fff;
}
.btn-alt .btn-fill:hover > span {
  background-color: #c8bcac;
  color: #242e36;
}
.btn-white > span {
  border-color: #fff;
  color: #fff;
}
.btn-white > i {
  background-color: #fff;
  color: #242e36;
}
.btn-white:hover > span {
  background-color: #c8bcac;
  border-color: #c8bcac;
  color: #242e36;
}
.btn-white:hover > i {
  background-color: #c8bcac;
  color: #242e36;
}
.btn-white .btn-fill > span {
  background-color: #fff;
  color: #242e36;
}
.btn-white .btn-fill:hover > span {
  background-color: #c8bcac;
  color: #242e36;
}
.link {
  width: fit-content;
  gap: 0.625rem;
  display: flex;
  align-items: center;
  transition: color 0.4s;
}
.link svg {
  --size: 0.75rem;
}
.link:hover {
  color: #b4a38d;
}
.form-group {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 768px) {
  .form-group {
    grid-template-columns: 1fr 1fr;
  }
}
.form-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-block-title {
  margin-right: auto;
}
.form-block-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.input-block {
  display: flex;
  position: relative;
}
.input {
  --color: var(--input-color, #fff);
  --height: var(--input-height, 3rem);
  font-variation-settings: inherit;
  height: var(--height);
  border: 0;
  border-bottom: solid 0.25rem #354049;
  display: block;
  width: 100%;
  appearance: none;
  box-shadow: none;
  caret-color: var(--color);
  transition:
    border-color 0.4s,
    background-color 0.4s,
    box-shadow 0.4s;
  color: var(--color);
  outline: none;
  line-height: 1.4;
  text-overflow: ellipsis;
  font-size: 1.125rem;
  font-family: 'NimbusSans', sans-serif;
  background: none;
  border-radius: 0;
  padding: 0;
}
.input::-webkit-input-placeholder {
  color: #61676d;
}
.input:-moz-placeholder {
  color: #61676d;
}
.input::-moz-placeholder {
  color: #61676d;
}
.input:-ms-input-placeholder {
  color: #61676d;
}
.input:focus:not(.select-toggle):not([readonly]) {
  border-bottom-color: #c8bcac;
}
.input:-webkit-autofill {
  -webkit-text-fill-color: var(--color);
  background-color: transparent;
  -webkit-transition:
    background-color 5000000s 0s,
    border-color 0.4s;
  transition:
    background-color 5000000s 0s,
    border-color 0.4s;
}
.input:-webkit-autofill::first-line {
  font-family: 'NimbusSans', sans-serif;
  background: none;
}
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  appearance: none;
  display: none;
}
.input::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.input::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}
.input[type='number'] {
  -moz-appearance: textfield;
}
.textarea {
  resize: none;
  field-sizing: content;
  height: auto;
  min-height: var(--height);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.tab-block:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  will-change: transform;
}
.tab-block.active {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
[data-aos='fade-up'] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-delay: 0.2s;
}
[data-aos='fade-up'].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 666666;
}
.modal:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal.open,
.modal.close {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.modal.open .modal-body,
.modal.close .modal-body {
  transition: transform 0.4s;
}
.modal.active .modal-body {
  transform: scale(1);
}
.modal-wrapp {
  width: 100%;
  height: 100%;
  display: flex;
  background: rgba(200, 188, 172, 0.9);
  overflow: hidden;
  overflow-y: scroll;
  outline: none;
  padding: 1.5rem;
}
@media (width < 480px) {
  .modal-wrapp {
    padding: 1rem;
  }
}
.modal-body {
  width: 37.5rem;
  max-width: 100%;
  padding: 4.5rem 6.25rem;
  margin: auto;
  position: relative;
  transform: scale(0.8);
  background-color: #242e36;
  box-shadow: 0px 0px 1.875rem 0px #00000033;
  color: #fff;
}
@media (width < 1024px) {
  .modal-body {
    padding: 2.5rem 1.5rem;
  }
}
.modal-close-btn {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  color: #fff;
  transition: color 0.4s;
}
.modal-close-btn:hover {
  color: #c8bcac;
}
.modal-close-btn svg {
  --size: 1.25rem;
}
.modal-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (width < 1024px) {
  .modal-head {
    margin-bottom: 1.5rem;
  }
}
.modal-head:last-child {
  margin-bottom: 0;
}
.modal-title {
  font-size: 1.875rem;
  line-height: 1;
  text-transform: uppercase;
}
.modal-desc {
  font-size: 1rem;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .modal-form {
    gap: 2rem;
  }
}
.modal-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (width < 1024px) {
  .modal-form-inputs {
    gap: 1.5rem;
  }
}
.modal-form-submit {
  --height: 3.375rem;
}
.modal-form-submit > span {
  min-width: 10.25rem;
}
.section {
  --padding: 4.75rem;
  padding: var(--padding) 0;
  border-bottom: solid 1px #efebe6;
}
.section:has(+ .expert) {
  border-bottom: 0;
}
.section:last-child {
  border-bottom: 0;
}
@media (width < 1024px) {
  .section {
    --padding: 2.5rem;
  }
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
.section-label {
  color: #5d6b76;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.section-label span {
  color: #c8bcac;
  font-style: italic;
}
.section-title {
  font-size: 2.625rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 400;
}
@media (width < 1024px) {
  .section-title {
    font-size: 1.75rem;
  }
}
.section-title span {
  font-weight: 700;
  font-style: italic;
  color: #c8bcac;
}
.file-input {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom-style: dashed;
}
.file-input:has(input:focus) {
  border-bottom-color: #c8bcac;
}
.file-input input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
  font-size: 0;
}
.file-input > svg {
  --size: 1.25rem;
  color: #61676d;
}
.file-input-title {
  flex: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.file-input-title span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input-title:empty:before {
  content: attr(data-placeholder);
  color: #61676d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.content-text {
  display: flow-root;
}
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  margin: calc(2 * var(--content-gap)) 0 var(--content-gap);
  font-weight: 700;
}
.content-text h1:first-child,
.content-text h2:first-child,
.content-text h3:first-child,
.content-text h4:first-child,
.content-text h5:first-child,
.content-text h6:first-child {
  margin-top: 0;
}
.content-text h1:last-child,
.content-text h2:last-child,
.content-text h3:last-child,
.content-text h4:last-child,
.content-text h5:last-child,
.content-text h6:last-child {
  margin-bottom: 0;
}
.content-text strong {
  font-weight: 700;
}
.content-text p {
  margin-bottom: var(--content-gap);
}
.content-text p:last-child {
  margin-bottom: 0;
}
.content-text a:not(.btn) {
  transition: color 0.4s;
}
.content-text a:not(.btn):hover {
  color: #b4a38d;
}
.content-text ol {
  list-style: none;
  counter-reset: counter;
  margin-bottom: var(--content-gap);
  display: flow-root;
}
.content-text ol:last-child {
  margin-bottom: 0;
}
.content-text ol li {
  margin-bottom: calc(0.4 * var(--content-gap));
  padding-left: 1.5rem;
  position: relative;
}
.content-text ol li:last-child {
  margin-bottom: 0;
}
.content-text ol li:before {
  content: counter(counter) '.';
  position: absolute;
  flex: none;
  left: 0;
  top: 0;
  counter-increment: counter;
  width: 1.5rem;
  text-align: center;
}
.content-text ul {
  list-style: none;
  margin-bottom: var(--content-gap);
  display: flow-root;
}
.content-text ul:last-child {
  margin-bottom: 0;
}
.content-text ul li {
  display: flex;
  margin-bottom: calc(0.4 * var(--content-gap));
  padding-left: 1.5rem;
  position: relative;
}
.content-text ul li:last-child {
  margin-bottom: 0;
}
.content-text ul li:before {
  content: '';
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: currentColor;
  left: 0.5rem;
  top: calc(0.5lh - 0.125rem);
}
.content-text figure {
  margin: calc(1.5 * var(--content-gap)) 0;
}
.content-text figure:first-child {
  margin-top: 0;
}
.content-text figure:last-child {
  margin-bottom: 0;
}
.content-text img {
  display: block;
  border-radius: 1rem;
  min-height: 15rem;
  object-fit: cover;
}
.content-text blockquote {
  margin: calc(1.5 * var(--content-gap)) 0;
  padding: 1rem 1.5rem;
  background-color: #efebe6;
  border-left: solid 0.25rem #c8bcac;
}
@media (width < 1024px) {
  .content-text blockquote {
    padding: 0.75rem 1rem;
  }
}
.content-text blockquote:first-child {
  margin-top: 0;
}
.content-text blockquote:last-child {
  margin-bottom: 0;
}
.content-text table {
  margin: var(--content-gap) 0;
  width: 100%;
  table-layout: fixed;
  font-size: 0.875rem;
}
.content-text table:first-child {
  margin-top: 0;
}
.content-text table:last-child {
  margin-bottom: 0;
}
.content-text table td {
  border: solid 0.125rem #efebe6;
  padding: 0.5rem 0.75rem;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 600;
  transition:
    background-color 0.4s,
    opacity 0.4s,
    transform 0.4s;
}
.header:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  border-top: solid 1px #efebe6;
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}
.header > .container {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 2.75rem;
}
.header.hide:not(:hover) {
  transform: translateY(-100%);
  opacity: 0;
}
.header.fixed,
.header:has(.header-nav.active) {
  background-color: #fff;
}
.header.fixed:after,
.header:has(.header-nav.active):after {
  opacity: 1;
}
.header.fixed .logo,
.header:has(.header-nav.active) .logo {
  filter: brightness(0);
  opacity: 0.8;
}
.header.fixed .header-menu a,
.header:has(.header-nav.active) .header-menu a {
  color: #242e36;
}
.header.fixed .header-menu a:hover,
.header:has(.header-nav.active) .header-menu a:hover {
  color: #c8bcac;
}
.header.fixed .header-btn > span,
.header:has(.header-nav.active) .header-btn > span {
  border-color: #242e36;
  color: #242e36;
}
.header.fixed .header-btn > i,
.header:has(.header-nav.active) .header-btn > i {
  background-color: #242e36;
  color: #fff;
}
.header.fixed .header-btn:hover > span,
.header:has(.header-nav.active) .header-btn:hover > span {
  background-color: #c8bcac;
  border-color: #c8bcac;
  color: #242e36;
}
.header.fixed .header-btn:hover > i,
.header:has(.header-nav.active) .header-btn:hover > i {
  background-color: #c8bcac;
  color: #242e36;
}
.header.fixed .header-btn .btn-fill > span,
.header:has(.header-nav.active) .header-btn .btn-fill > span {
  background-color: #242e36;
  color: #fff;
}
.header.fixed .header-btn .btn-fill:hover > span,
.header:has(.header-nav.active) .header-btn .btn-fill:hover > span {
  background-color: #c8bcac;
  color: #242e36;
}
.header.fixed .header-nav-toggle,
.header:has(.header-nav.active) .header-nav-toggle {
  color: #242e36;
}
body:not(:has(.hero)) .header .logo {
  filter: brightness(0);
  opacity: 0.8;
}
body:not(:has(.hero)) .header .header-menu a {
  color: #242e36;
}
body:not(:has(.hero)) .header .header-menu a:hover {
  color: #c8bcac;
}
body:not(:has(.hero)) .header .header-btn > span {
  border-color: #242e36;
  color: #242e36;
}
body:not(:has(.hero)) .header .header-btn > i {
  background-color: #242e36;
  color: #fff;
}
body:not(:has(.hero)) .header .header-btn:hover > span {
  background-color: #c8bcac;
  border-color: #c8bcac;
  color: #242e36;
}
body:not(:has(.hero)) .header .header-btn:hover > i {
  background-color: #c8bcac;
  color: #242e36;
}
body:not(:has(.hero)) .header .header-btn .btn-fill > span {
  background-color: #242e36;
  color: #fff;
}
body:not(:has(.hero)) .header .header-btn .btn-fill:hover > span {
  background-color: #c8bcac;
  color: #242e36;
}
body:not(:has(.hero)) .header .header-nav-toggle {
  color: #242e36;
}
.header-logo {
  display: flex;
  min-width: 16.25rem;
  flex: none;
}
@media (width < 1024px) {
  .header-logo {
    min-width: unset;
    margin-right: auto;
  }
}
.logo {
  display: flex;
  flex: none;
  transition: filter 0.4s;
}
.logo img {
  max-height: 2.125rem;
  object-fit: contain;
}
@media (width < 1024px) {
  .header-nav {
    background-color: rgba(200, 188, 172, 0.9);
    top: calc(var(--header-height) - 1px);
  }
  .header-nav .modal-wrapp {
    padding: 0;
    background: none;
  }
  .header-nav .modal-body {
    width: 17.5rem;
    margin: 0 0 auto auto;
    transform: translateX(100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    min-height: 100%;
    padding: 1.5rem;
  }
  .header-nav.active .modal-body {
    transform: translateX(0);
  }
}
@media (width >= 1024px) {
  .header-nav {
    all: unset;
    display: contents;
  }
  .header-nav:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav .modal-wrapp {
    all: unset;
    display: contents;
  }
  .header-nav .modal-body {
    all: unset;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: auto;
    min-width: 0;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  margin: 0 auto;
}
@media (width < 1024px) {
  .header-menu {
    flex-direction: column;
    align-items: unset;
    gap: 0.25rem;
    margin: 0;
  }
}
.header-menu > li {
  position: relative;
}
.header-menu > li > a {
  margin: -1.25rem;
  padding: 1.25rem;
  transition: color 0.4s;
  display: flex;
  color: #fff;
}
@media (width < 1024px) {
  .header-menu > li > a {
    margin: 0 -1.5rem;
    padding: 0.75rem 1.5rem;
  }
}
.header-menu > li > a:hover {
  color: #c8bcac;
}
.header-btns {
  display: flex;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  min-width: 17.5rem;
}
@media (width < 1024px) {
  .header-btns {
    min-width: unset;
    margin-top: auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.header-login {
  color: #c8bcac;
  margin: -0.5rem;
  padding: 0.5rem;
  transition: color 0.4s;
  font-weight: 600;
}
.header-login:hover {
  color: #b4a38d;
}
@media (width < 1024px) {
  .header-start-btn {
    width: 100%;
  }
}
.header-nav-toggle {
  order: 1;
  display: flex;
  color: #c8bcac;
  margin: -0.5rem;
  padding: 0.5rem;
  position: relative;
  z-index: 601;
  transition: color 0.4s;
}
@media (width >= 1024px) {
  .header-nav-toggle {
    display: none;
  }
}
.header-nav-toggle svg {
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.header-nav-toggle svg:last-child {
  position: absolute;
  left: calc(50% - 0.5 * var(--size));
  top: calc(50% - 0.5 * var(--size));
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:first-child {
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:last-child {
  opacity: 1;
  transform: scale(1);
}
.hero {
  margin-top: calc(-1 * var(--header-height));
}
.home-hero {
  position: relative;
  color: #fff;
  background-color: #242e36;
  padding: var(--header-height) 0 4.625rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .home-hero {
    aspect-ratio: 1680 / 945;
    min-height: unset;
    padding: calc(var(--header-height) + 1.25rem) 0 2.5rem;
  }
}
.home-hero .container {
  position: relative;
  z-index: 1;
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15rem;
}
@media (width < 1024px) {
  .home-hero .container {
    gap: 13.75rem;
  }
}
.home-hero-video {
  position: absolute;
  inset: 0;
}
.home-hero-title {
  margin: 0 calc(-0.5 * var(--container-padding));
  display: flex;
  font-size: 0;
}
.home-hero-title img {
  width: 100%;
}
.home-hero-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  filter: drop-shadow(0 0 0.625rem #242e36);
}
@media (width < 768px) {
  .home-hero-main {
    flex-direction: column;
    align-items: unset;
  }
}
.home-hero-body {
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-hero-desc {
  font-size: 2.5rem;
}
@media (width < 1024px) {
  .home-hero-desc {
    font-size: 1.25rem;
  }
}
.home-hero-info {
  font-size: 3.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #c8bcac;
  line-height: 1.1;
  flex: none;
}
@media (width < 1024px) {
  .home-hero-info {
    font-size: 1.625rem;
  }
}
.spinning-top {
  height: calc(1.3846 * var(--size));
}
.offer {
  overflow: hidden;
}
.offer .container {
  position: relative;
  display: flex;
}
@media (width < 768px) {
  .offer .container {
    flex-direction: column;
  }
}
.offer-main {
  display: flex;
  flex-direction: column;
  gap: var(--padding);
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.offer-img {
  flex: none;
  width: 42.125rem;
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0 -1.25rem -2.5rem;
  align-self: center;
}
@media (width < 1024px) {
  .offer-img {
    width: 20rem;
  }
}
@media (width < 768px) {
  .offer-img {
    max-width: 100%;
  }
}
.offer-decor {
  position: absolute;
  right: calc(var(--container-padding));
  top: 50%;
  transform: translateY(-50%);
  width: 14.375rem;
  display: flex;
}
@media (width < 768px) {
  .offer-decor {
    opacity: 0.4;
  }
}
.offer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 37.75rem;
}
.offer-info .spinning-top {
  --size: 4.063rem;
  color: #c8bcac;
}
.offer-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer-desc {
  font-weight: 700;
}
.services {
  overflow: hidden;
}
.services .container {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .services .container {
    flex-direction: column;
  }
}
.services-title {
  flex: none;
}
.services-body {
  flex: auto;
  min-width: 0;
  position: relative;
}
@media (width >= 1024px) {
  .services-body {
    max-width: 73.125rem;
    margin-left: auto;
  }
}
.services-list {
  position: relative;
  z-index: 1;
}
.services-item {
  position: relative;
  display: flex;
  gap: 3.25rem;
  align-items: flex-start;
  color: inherit;
}
@media (width < 1024px) {
  .services-item {
    gap: 2rem;
  }
}
@media (width < 768px) {
  .services-item {
    flex-direction: column;
    align-items: unset;
    gap: 1rem;
  }
}
.services-item:not(:last-child) {
  margin-bottom: 2.5rem;
  padding-bottom: 2.25rem;
}
@media (width < 768px) {
  .services-item:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}
.services-item:not(:last-child):after {
  content: '';
  position: absolute;
  inset: auto 0 0 2.5rem;
  border-top: solid 1px;
}
.services-item-title {
  padding-left: 2.5rem;
  flex: auto;
  min-width: 0;
  position: relative;
  font-size: 3.125rem;
  line-height: 1.08;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width < 1024px) {
  .services-item-title {
    font-size: 2rem;
  }
}
.services-item-title > svg {
  --size: 1.125rem;
  position: absolute;
  top: 0.5lh;
  left: 0;
  color: #c8bcac;
  transform: translateY(-50%);
}
.services-item-place {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: none;
}
.services-item-place svg {
  --size: 1.125rem;
}
.services-item-desc {
  flex: none;
  width: 29.75rem;
  padding-right: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (width >= 768px) {
  .services-item-desc {
    align-self: center;
    margin-left: auto;
  }
}
@media (width < 1024px) {
  .services-item-desc {
    width: 25rem;
    padding: 0;
  }
}
@media (width < 768px) {
  .services-item-desc {
    width: auto;
    padding-left: 2.5rem;
  }
}
.services-item-desc ul li {
  margin: 0;
}
.job-item .services-item-desc {
  padding: 0;
}
@media (width >= 1024px) {
  .job-item .services-item-desc {
    width: 38.063rem;
  }
}
.job-item:hover .services-item-btn > i {
  background-color: #c8bcac;
  color: #242e36;
}
.services-decor {
  --size: 29.75rem;
  position: absolute;
  left: 10.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #c8bcac;
  opacity: 0.2;
}
@media (width < 768px) {
  .services-decor {
    left: 2.5rem;
  }
}
.business {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .business {
    aspect-ratio: 1680 / 945;
    min-height: unset;
  }
}
.business .container {
  display: flex;
  flex-direction: column;
  flex: auto;
  gap: 13.75rem;
  position: relative;
  z-index: 1;
}
.business .section-head {
  max-width: 41.625rem;
}
.business-video {
  position: absolute;
  inset: 0;
}
.business-logo {
  max-width: 4.125rem;
  margin: auto 0 0 auto;
}
.cta {
  background-color: #efebe6;
}
.cta .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.cta .section-head {
  align-items: center;
  max-width: 78.5rem;
}
.technology {
  padding-bottom: 0;
  border-bottom: 0;
  overflow: hidden;
}
.technology .container {
  display: flex;
  flex-direction: column;
  gap: 9.25rem;
}
@media (width < 1024px) {
  .technology .container {
    gap: 4.25rem;
  }
}
.technology-head {
  display: flex;
  position: relative;
}
.technology-head .section-head {
  flex: auto;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.technology-img {
  flex: none;
  width: 42.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  height: 0;
}
@media (width < 1024px) {
  .technology-img {
    width: 20rem;
  }
}
@media (width < 768px) {
  .technology-img {
    position: absolute;
    bottom: 0;
    opacity: 0.2;
    left: calc(50% - 10rem);
  }
}
.technology-img img {
  max-width: 63.438rem;
  flex: none;
  margin-bottom: -20rem;
}
@media (width < 1024px) {
  .technology-img img {
    max-width: 29.875rem;
    margin-bottom: -9.375rem;
  }
}
.technology-list {
  display: flex;
  position: relative;
}
@media (width < 1024px) {
  .technology-list {
    flex-direction: column;
  }
}
.technology-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28.125rem;
  gap: 2.5rem;
  padding: 2rem;
  background-color: #c8bcac;
  color: #fff;
  flex: 1;
}
@media (width < 1024px) {
  .technology-item {
    min-height: 0;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.technology-item:nth-child(2),
.technology-item:nth-last-child(2) {
  background-color: #cfc4b7;
}
.technology-item:nth-child(3) {
  background-color: #d7cec2;
}
.technology-item-title {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.technology-item-desc {
  font-weight: 700;
}
.expert {
  border: 0;
}
.expert-body {
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 6.25rem;
  min-height: 34.063rem;
}
@media (width < 1024px) {
  .expert-body {
    padding: 2.5rem 1.5rem;
    min-height: 25rem;
  }
}
.expert-body .section-head {
  flex: none;
  width: 40.625rem;
  margin: auto 0;
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .expert-body .section-head {
    width: calc(100% - 12.5rem);
  }
}
@media (width < 768px) {
  .expert-body .section-head {
    width: 100%;
  }
}
.expert-body .section-label {
  color: #5d6b76;
}
.expert-video {
  flex: auto;
  min-width: 12.5rem;
  margin-bottom: -6.25rem;
  height: 0;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media (width < 768px) {
  .expert-video {
    position: absolute;
    opacity: 0.4;
    left: 50%;
    top: 50%;
    min-width: 0;
    width: 0;
    justify-content: center;
  }
}
.expert-video video {
  width: 53rem;
}
.expert-decor {
  position: absolute;
  right: 2.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14.375rem;
  display: flex;
}
@media (width < 768px) {
  .expert-decor {
    display: none;
  }
}
.footer {
  border: 0;
  background-color: #242e36;
  color: #fff;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--padding);
}
.footer-img {
  display: flex;
  margin: 0 calc(-0.5 * var(--container-padding));
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 1024px) {
  .footer-form {
    width: 46.875rem;
    margin-left: auto;
  }
}
.footer-form-title {
  font-weight: 700;
}
.footer-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width < 1024px) {
  .footer-form-inputs {
    gap: 1.5rem;
  }
}
.footer-form-submit {
  margin-top: 0.5rem;
}
.footer-nav {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width < 1024px) {
  .footer-nav {
    gap: 1.5rem;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.75rem;
  --offset: 2rem;
}
.footer-menu li:not(:last-child) {
  padding-right: var(--offset);
  margin-right: var(--offset);
  position: relative;
}
.footer-menu li:not(:last-child):after {
  content: '•';
  position: absolute;
  left: 100%;
  top: 0;
  color: #354049;
  transform: translateX(-50%);
}
.footer-menu li a {
  color: inherit;
  display: flex;
  margin: -0.25rem;
  padding: 0.25rem;
  transition: color 0.4s;
}
.footer-menu li a:hover {
  color: #c8bcac;
}
.foot {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: space-between;
  font-size: 0.875rem;
}
@media (width < 768px) {
  .foot {
    flex-direction: column;
  }
}
.copyright {
  color: #5d6b76;
}
@media (width < 768px) {
  .copyright {
    order: 1;
  }
}
.foot-menu {
  --offset: 1.5rem;
}
.about-hero {
  padding: calc(var(--header-height) + 8rem) 0 4.625rem;
  color: #fff;
  background-color: #242e36;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(100vh, 59.063rem);
  position: relative;
  overflow: hidden;
}
@media (width < 1024px) {
  .about-hero {
    min-height: unset;
    padding: calc(var(--header-height) + 17.5rem) 0 2.5rem;
  }
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero-video {
  position: absolute;
  inset: 0;
}
.about-hero-logos {
  position: absolute;
  inset: 50% 0 0;
  height: 0;
  gap: 31.75rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0.5;
}
@media (width < 1024px) {
  .about-hero-logos {
    gap: 12.5rem;
  }
}
.about-hero-logo {
  display: flex;
  flex-direction: column;
  width: 53.5rem;
  justify-content: center;
  flex: none;
}
@media (width < 1024px) {
  .about-hero-logo {
    width: 25rem;
  }
}
.about-hero-logo:first-child {
  align-items: flex-end;
}
.about-hero-logo img {
  width: 100%;
}
.about-hero-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 52.25rem;
}
.about-hero-title {
  font-size: 2.5rem;
}
@media (width < 1024px) {
  .about-hero-title {
    font-size: 1.25rem;
  }
}
.about .container {
  display: flex;
  flex-direction: column;
}
.about-title {
  font-size: 0;
  display: flex;
  margin: 0 calc(-0.5 * var(--container-padding));
}
.about-title img {
  width: 100%;
}
.about-img {
  --w: 33.25rem;
  margin: calc(-0.5 * var(--w)) auto 0;
  display: flex;
  width: var(--w);
  position: relative;
}
@media (width < 1024px) {
  .about-img {
    --w: 17.5rem;
  }
}
@media (width < 480px) {
  .about-img {
    --w: 15rem;
  }
}
.about-img img {
  width: 100%;
}
.about-advantages {
  display: grid;
}
@media (width >= 1024px) {
  .about-advantages {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.about-advantage {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 17.875rem;
  background-color: #c8bcac;
  color: #fff;
  justify-content: space-between;
}
@media (width < 1024px) {
  .about-advantage {
    padding: 1.5rem;
    gap: 1rem;
    min-height: unset;
  }
}
.about-advantage:nth-child(3n - 1) {
  background-color: #cfc4b7;
}
.about-advantage:nth-child(3n) {
  background-color: #d7cec2;
}
.about-advantage-title {
  text-transform: uppercase;
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (width < 1024px) {
  .about-advantage-title {
    font-size: 1.625rem;
  }
}
.about-advantage-desc {
  font-weight: 700;
  max-width: 15.375rem;
}
.careers-hero {
  padding: calc(var(--header-height) + 2.25rem) 0 4.625rem;
  color: #fff;
  background-color: #242e36;
  display: flex;
  flex-direction: column;
  min-height: min(100vh, 59.063rem);
  position: relative;
  overflow: hidden;
}
@media (width < 1024px) {
  .careers-hero {
    min-height: unset;
    padding: calc(var(--header-height) + 17.5rem) 0 2.5rem;
  }
}
.careers-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: auto;
}
.careers-hero-video {
  position: absolute;
  inset: 0;
}
.careers-hero-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 50.75rem;
}
.careers-hero-title {
  font-size: 2.5rem;
}
@media (width < 1024px) {
  .careers-hero-title {
    font-size: 1.25rem;
  }
}
.page-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
@media (width < 1024px) {
  .page-head {
    margin-bottom: 2.5rem;
  }
}
.page-head .page-title {
  margin: 0;
}
.page-title {
  font-size: 4.375rem;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 3.5rem;
}
@media (width < 1024px) {
  .page-title {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
  }
}
.job-info .services-item:after {
  border-top-color: #efebe6;
  border-top-style: dashed;
}
.contacts {
  padding: calc(var(--header-height) + 2.25rem) 0 4.625rem;
  color: #fff;
  background-color: #000;
  min-height: min(100vh, 59.063rem);
  position: relative;
  overflow: hidden;
}
@media (width < 1024px) {
  .contacts {
    min-height: unset;
    padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
  }
}
.contacts .container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (width < 768px) {
  .contacts .container {
    flex-direction: column;
  }
}
.contacts-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2rem;
  max-width: 40.313rem;
}
@media (width < 1024px) {
  .contacts-body {
    gap: 1.5rem;
  }
}
.contacts-title {
  font-size: 2.5rem;
}
@media (width < 1024px) {
  .contacts-title {
    font-size: 1.25rem;
  }
}
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .contacts-list {
    gap: 1rem;
  }
}
.contacts-item {
  font-size: 1.688rem;
  line-height: 1.2;
}
@media (width < 1024px) {
  .contacts-item {
    font-size: 1.25rem;
  }
}
.contacts-item a {
  transition: color 0.4s;
}
.contacts-item a:hover {
  color: #b4a38d;
}
.contacts-form {
  max-width: 30.75rem;
  margin-top: 2rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .contacts-form {
    gap: 1.5rem;
    margin: 0;
  }
}
.contacts-form .input:not(:focus) {
  border-bottom-color: #fff;
}
@media (width >= 1024px) {
  .contacts-form .textarea {
    min-height: 6.25rem;
  }
}
.contacts-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacts-form-submit > span {
  min-width: 7.875rem;
}
.contacts-img {
  flex: none;
  max-width: 30.5rem;
  display: flex;
  margin: 0 auto;
}
@media (width < 1024px) {
  .contacts-img {
    width: 15rem;
  }
}
@media (width < 768px) {
  .contacts-img {
    margin: 0 auto;
    width: 10rem;
  }
}
.page-404 {
  padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
  color: #fff;
  background-color: #242e36;
  display: flex;
  flex-direction: column;
  flex: auto;
  justify-content: center;
}
.page-404 .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.page-404-img {
  display: flex;
  max-width: 13.375rem;
}
@media (width < 768px) {
  .page-404-img {
    max-width: 10rem;
  }
}
.page-404-code {
  font-size: 12.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (width < 1024px) {
  .page-404-code {
    font-size: 7.5rem;
  }
}
.page-404-title {
  font-size: 1.688rem;
  line-height: 1.2;
}
@media (width < 1024px) {
  .page-404-title {
    font-size: 1.25rem;
  }
}
.page-404-title a {
  transition: color 0.4s;
}
.page-404-title a:hover {
  color: #b4a38d;
}
