@charset "UTF-8";

*,
*:after,
*:before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
}

:root {
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --white: #ffffff;
  --black: rgb(10, 10, 10);
  --muted: #6f6f6f;
  --line: #e8e8e8;
  --red: #a50d61;
  --overlay: rgba(0, 0, 0, 0.32);
  --header-height: 63px;
  --preview-width: 300px;
  --aside-width: 380px;
  --line: rgba(92, 92, 92, 0.1);
  --burger-sidebar-width: 380px;
  --burger-submenu-width: 300px;
  --maxWidth: 1920px;
  --grey: #5c5c5c;
  --font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--black);
}

.lock,
.is-menu-open {
  overflow: hidden;
}

.page-content {
  display: flex;
  flex-direction: column;
}

.page-content > * {
  width: 100%;
}

.page-content header.header,
.page-content footer.footer {
  flex-shrink: 0;
}

.page-content main {
  flex-grow: 1;
}

a,
a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

*,
*:focus {
  outline: none;
}

a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-cover,
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

input,
button,
textarea {
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
}

button,
input[type=submit] {
  cursor: pointer;
}

address {
  font-style: normal;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
}

input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container.container--narrow {
  max-width: 920px;
}

.container.container--medium {
  max-width: 1440px;
}

.container.container-percent {
  width: 75%;
  max-width: 1440px;
}

.social-block {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.social-block .social-item {
  width: 28px;
  height: 28px;
}

.social-block svg {
  width: 28px;
  height: 28px;
}

.social-block .social-item:hover svg {
  color: var(--red);
}

.social-block.social-block--white svg {
  color: white;
  fill: white;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: rgba(210, 209, 204, 0.3);
  width: 42px;
  height: 42px;
  display: inline-flex;
  border-radius: 4px;
  transition: 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: white;
  font-size: 16px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(210, 209, 204, 0.6);
}

.h-54,
.h-32 {
  font-weight: 600;
}

.h-54 {
  font-size: 54px;
}

.h-44 {
  font-size: 44px;
  line-height: 1.5;
}

.h-32 {
  font-size: 32px;
}

.semi-18 {
  font-family: var(--font-family);
  font-weight: 600 !important;
  font-size: 18px;
}

.semi-24 {
  font-family: var(--font-family);
  font-weight: 600 !important;
  font-size: 24px;
}

.font-20 {
  font-weight: 500;
  font-size: 20px;
}

.font-16 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
}

.txt-center {
  text-align: center;
}

.txt-primary {
  color: var(--red);
}

.txt-grey {
  color: var(--grey) !important;
}

.txt-white {
  color: var(--white) !important;
}

.txt-upper {
  text-transform: uppercase;
}

.icon-text,
.contact-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
  transition: 0.3s;
  font-family: var(--font-family);
  color: var(--black);
}

.icon-text svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-item:hover {
  color: var(--red);
}

.contact-item:hover svg {
  color: var(--red);
}

.custom-text {
  font-size: 18px;
  line-height: 1.56;
  color: var(--black);
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
}

.custom-text > *:first-child {
  margin-top: 0;
}

.custom-text > *:last-child {
  margin-bottom: 0;
}

.custom-text p {
  margin: 0 0 1em;
}

.custom-text h2,
.custom-text h3,
.custom-text h4 {
  margin: 60px 0 24px;
  line-height: 1.25;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: var(--black);
}

.custom-text h2 + *,
.custom-text h3 + *,
.custom-text h4 + * {
  margin-top: 0 !important;
}

.custom-text .swiper-slide img,
.custom-text .swiper-slide figure {
  margin-top: 0;
}

.custom-text ul,
.custom-text ol {
  margin-block: 1em;
  padding-left: 20px;
}

.custom-text ul li {
  list-style: disc;
}

.custom-text img {
  display: block;
  max-width: 100%;
  margin: 60px 0;
  aspect-ratio: 900/500;
  -o-object-fit: cover;
  object-fit: cover;
}

.custom-text figure {
  margin: 60px 0;
}

.custom-text figure img,
.custom-text figure video,
.custom-text figure iframe {
  margin: 0;
}

.custom-text figcaption {
  margin-top: 8px;
  font-size: 16px;
  line-height: 175%;
  color: var(--black);
}

.custom-text .table-wrapper {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}

.custom-text .table-wrapper::-webkit-scrollbar {
  display: none;
}

.custom-text table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(92, 92, 92, 0.2);
  border-radius: 6px;
}

.custom-text th,
.custom-text td {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--black);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid rgba(92, 92, 92, 0.2);
  border-bottom: 1px solid rgba(92, 92, 92, 0.2);
}

.custom-text th {
  color: rgba(10, 10, 10, 0.4);
  border-right: 0;
}

.custom-text th:last-child {
  border-right: 1px solid rgba(92, 92, 92, 0.2);
}

.custom-text th:last-child,
.custom-text td:last-child {
  border-right: none;
}

.custom-text tbody tr:last-child td {
  border-bottom: none;
}

.custom-text th:nth-child(1),
.custom-text td:nth-child(1) {
  width: 55%;
  min-width: 300px;
}

.custom-text th:nth-child(2),
.custom-text td:nth-child(2) {
  width: 30%;
  min-width: 200px;
}

.custom-text th:nth-child(3),
.custom-text td:nth-child(3) {
  width: 15%;
  min-width: 80px;
}

.custom-text video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900/483;
}

.custom-text iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}

.mark-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mark-list li {
  padding-left: 24px;
  background-size: 14px;
  background-position: left;
  line-height: 1.75;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.6992 0.700012L4.44922 8.95001L0.699219 5.20001' stroke='%230A0A0A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.mark-list li + li {
  margin-top: 2px;
}

.bar-menu {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bar-menu-item {
  width: 100%;
}

.bar-menu-link {
  transition: 0.3s;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: var(--black);
  transition: 0.3s;
  border: 1px solid var(--grey);
  border-radius: 8px;
  padding: 10px 16px;
  height: 48px;
}

.bar-menu-link span {
  flex-grow: 1;
  transition: 0.3s;
}

.bar-menu-link .svg-arr-down {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--black);
}

.bar-menu-link.active,
.bar-menu-link:hover {
  border: 1px solid var(--red);
  background: var(--red);
}

.bar-menu-link.active span,
.bar-menu-link:hover span {
  color: white;
}

.bar-menu-link.active .svg-arr-down,
.bar-menu-link:hover .svg-arr-down {
  color: white;
}

/*vendore*/

.d-flex,
.flex-column {
  display: flex;
  gap: 12px;
}

.d-flex {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-5 {
  gap: 5px !important;
}

.gap-20 {
  gap: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-80 {
  margin-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.p-block-100 {
  padding-block: 100px;
}

.p-block-80 {
  padding-block: 80px;
}

.title-center {
  margin-bottom: 60px;
  text-align: center;
}

.wrapper-mb-80 {
  margin-bottom: 80px;
}

.btn-center,
.btn-center-mobile {
  display: flex;
  justify-content: center;
}

.btn-center-mobile {
  justify-content: flex-start;
}

.bg-overlay {
  position: relative;
  overflow: hidden;
}

.bg-overlay:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.black-bg {
  background-color: var(--black);
}

.grey-bg {
  background-color: #fafafa;
}

.column-gap-16 {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.sidebar-grid {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  align-items: flex-start;
}

.sidebar-grid .sidebar {
  width: 427px;
  flex-shrink: 0;
}

.sidebar-grid .sidebar > * + * {
  margin-top: 40px;
}

.sidebar-grid .sidebar-grid-main {
  flex-grow: 1;
}

svg {
  display: inline-block;
  transition: 0.3s;
}

.svg-right {
  fill: transparent;
  width: 12px;
  height: 10px;
}

.svg-arr-down,
.svg-cross {
  width: 24px;
  height: 24px;
  color: #0A0A0A;
  fill: transparent;
}

.popup-wrapper .svg-cross {
  color: white;
}

.svg-logo {
  width: 280px;
  aspect-ratio: 280/32;
  color: var(--black);
}

.svg-load {
  color: #0A0A0A;
  fill: transparent;
}

.svg-phone,
.svg-load {
  width: 18px;
  height: 18px;
}

.svg-right,
.svg-arrow-down {
  width: 24px;
  height: 24px;
  color: black;
  fill: transparent;
}

.svg-caret-left,
.svg-caret-right {
  width: 20px;
  height: 20px;
  color: var(--black);
}

.caret-down {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.5 0.5L5 5L9.5 0.5' stroke='%230A0A0A' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.svg-plus,
.svg-minus,
.svg-check {
  width: 20px;
  height: 20px;
  color: white;
  fill: transparent;
}

.svg-mark {
  width: 44px;
  height: 44px;
  color: var(--black);
  fill: transparent;
}

.btn-primary,
.btn-white,
.btn-outline,
.btn,
.btn-transparent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  color: var(--white);
  border-radius: 50px;
  border: none;
  padding-left: 40px;
  padding-right: 40px;
  background: var(--red);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  transition: 0.2s ease;
}

.btn-primary svg,
.btn-white svg,
.btn-outline svg,
.btn svg,
.btn-transparent svg {
  color: var(--white);
}

.btn-white {
  color: var(--black);
  background: var(--white);
}

.btn-white svg {
  color: var(--black);
}

.btn-white:hover {
  color: var(--grey);
}

.btn-white:hover svg {
  color: var(--grey);
}

.btn-primary:hover {
  background: #82084c;
}

.btn-primary:focus-visible {
  outline: 2px solid #82084c;
  outline-offset: 2px;
}

.btn-primary.btn-slim {
  height: 40px;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
  min-width: unset;
}

.btn-primary:disabled,
.btn-primary[aria-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  height: 56px;
}

.btn-outline:hover {
  color: #b8b8b8;
}

.btn-outline:hover svg {
  color: #b8b8b8;
}

.btn {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--grey);
  height: 56px;
}

.btn svg {
  color: var(--black);
}

.btn:hover {
  border: 1px solid var(--black);
}

.btn-transparent {
  background-color: transparent;
  color: var(--black);
  padding-left: 20px;
  padding-right: 20px;
}

.btn-transparent svg {
  width: 18px;
  height: 18px;
  color: var(--black);
}

.btn-transparent:hover {
  color: var(--red);
}

.btn-transparent:hover svg {
  color: var(--red);
}

.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  padding: 9px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(165, 13, 97, 0.5);
  transition: background 0.3s ease, opacity 0.3s ease;
}

.btn-square:hover {
  background: var(--red);
}

.btn-square:hover .svg-plus {
  transform: rotate(180deg);
}

.btn-square svg {
  width: 100%;
  height: 100%;
  max-width: 32px;
  max-height: 32px;
  display: block;
  color: var(--white);
  flex-shrink: 0;
}

.w-auto {
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 210px;
}

.label-txt {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  color: var(--white);
  background: var(--black);
  padding: 2px 12px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  transition: 0.3s;
}

.label-txt:hover {
  background: rgb(73, 73, 73);
}

.form-item {
  position: relative;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-item {
  margin-bottom: 0;
}

.form-row {
  margin-bottom: 20px;
}

.form-footer {
  margin-top: 32px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.form-footer.d-flex {
  -moz-column-gap: 32px;
  column-gap: 32px;
  flex-direction: row;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #9d9d9e;
  margin-bottom: 8px;
}

.input,
.textarea {
  display: block;
  width: 100%;
  height: 54px;
  padding: 7px 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
}

.textarea {
  height: 142px;
  background: rgba(0, 0, 0, 0.05);
  resize: none;
}

.dark-form .input,
.dark-form .textarea,
.page-form .input,
.page-form .textarea {
  color: white;
  background: rgba(0, 0, 0, 0.5);
}

.form-item .error {
  display: none;
  font-size: 14px;
  color: #FF0004;
  margin-top: 8px;
}

.feedback-media .form-item .error {
  font-size: 16px;
}

.form-item.form-item-error .form-label {
  color: #FF0004;
}

.form-item.form-item-error .error {
  display: block;
}

.checkbox-item .checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.checkbox-item input[type=checkbox] {
  width: 0.01px;
  height: 0.01px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.checkbox-item .fake-checkbox {
  display: inline-block;
  border: 1px solid var(--red);
  border-radius: 4px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.7002 0.699951L4.4502 8.94995L0.700195 5.19995' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  background-size: 0 0;
  transition: 0.3s;
}

.checkbox-item .checkbox-label:hover .fake-checkbox {
  background-color: var(--red);
}

.checkbox-item .checkbox-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(10, 10, 10, 0.4);
}

.checkbox-item .checkbox-name a {
  display: inline;
  transition: 0.3s;
  color: rgb(10, 10, 10);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.checkbox-item .checkbox-name a:hover {
  color: var(--red);
}

.checkbox-item input[type=checkbox]:checked + .fake-checkbox {
  background-color: rgba(165, 13, 97, 0.7);
  background-size: 14px 10px;
}

.radio-item .radio-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.radio-item input[type=radio] {
  width: 0.01px;
  height: 0.01px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.radio-item .fake-radio {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--red);
}

.radio-item input[type=radio]:checked + .fake-radio {
  background-color: var(--red);
  outline-offset: -4px;
  outline: 3px solid white;
}

.radio-item .radio-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(10, 10, 10, 0.4);
}

.form-title {
  font-weight: 500;
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 2;
}

.dark-form .checkbox-item .checkbox-name {
  color: rgba(255, 255, 255, 0.4);
}

.dark-form .checkbox-item .checkbox-name a {
  color: rgb(255, 255, 255);
}

.page-form {
  position: relative;
  z-index: 2;
}

.page-form .form-label {
  color: white;
}

.page-form .form-agree .checkbox-name {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.page-form .form-agree .checkbox-name a {
  color: white;
}

.page-form .input,
.page-form .textarea {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.page-form .btn-primary {
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
  min-width: 210px;
}

.page-form .form-footer {
  row-gap: 40px;
}

.form-content .form-title {
  margin-bottom: 60px;
}

.message-chips {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  padding: 15px 40px;
  text-align: center;
  width: 98%;
  max-width: 720px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -190px);
  z-index: 45;
  background: #4f992b;
  transition: 0.3s;
}

.message-chips.is-visible {
  transform: translate(-50%, 90px);
}

.message-chips.message-chips-error {
  background: #FF0004;
}

.desktop-header-wrapper {
  display: block;
}

.header {
  position: sticky;
  top: 0;
  background: #fafafa;
  z-index: 10;
}

.header__inner {
  position: relative;
  max-width: var(--maxWidth);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fafafa;
}

.header__left,
.header__center,
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__center {
  flex-shrink: 0;
}

.header__left {
  min-width: 0;
}

.header__right {
  justify-content: flex-end;
}

.header__left,
.header__right {
  flex: 1;
}

.header__right .contact-item {
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}

.header__right .contact-item > * {
  transition: 0.3s;
}

.mobile-header-wrapper {
  display: none;
}

.header-mobile {
  min-height: 52px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #FAFAFA;
  display: flex;
  align-items: center;
}

.header-mobile .logo {
  width: 205px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.header-mobile .logo svg,
.header-mobile .logo img {
  width: 100%;
}

.header-mobile .header-mobile-right {
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.header-mobile-content {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-content: space-between;
}

.mobile-header-wrapper .header-mobile {
  min-height: 52px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #FAFAFA;
  position: relative;
  z-index: 120;
}

.mobile-header-wrapper .header-mobile-content {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-content: space-between;
}

.mobile-header-wrapper body.is-menu-open {
  overflow: hidden;
}

.mobile-header-wrapper {
  /* === МЕНЮ === */
}

.mobile-header-wrapper .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  visibility: hidden;
  pointer-events: none;
}

.mobile-header-wrapper .mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-header-wrapper .mobile-menu-overlay {
  position: absolute;
  inset: 0;
  top: 52px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-header-wrapper .mobile-menu.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-header-wrapper .mobile-menu-content {
  position: relative;
  margin-left: auto;
  width: min(100vw, 430px);
  height: 100dvh;
  padding: 24px 16px;
  padding-top: 76px;
  background: #FAFAFA;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 24px;
  transform: translateX(110%);
  transition: transform 0.35s ease;
}

.mobile-header-wrapper {
  /* если нужно меню на всю ширину экрана, просто поставь width: 100%; */
}

.mobile-header-wrapper .mobile-menu.is-open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-header-wrapper {
  /* Верхняя зона, внутри которой ездят уровни меню */
}

.mobile-header-wrapper .mobile-menu-body {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.mobile-header-wrapper {
  /* Базовые панели */
}

.mobile-header-wrapper .mobile-menu-list-wrap,
.mobile-header-wrapper .mobile-submenu-content,
.mobile-header-wrapper .mobile-subsubmenu-content {
  position: absolute;
  inset: 0;
  background: #FAFAFA;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-header-wrapper {
  /* Первый уровень */
}

.mobile-header-wrapper .mobile-menu-list-wrap {
  z-index: 1;
}

.mobile-header-wrapper {
  /* Второй и третий уровни */
}

.mobile-header-wrapper .mobile-submenu-content,
.mobile-header-wrapper .mobile-subsubmenu-content {
  transform: translateX(110%);
  transition: transform 0.35s ease;
}

.mobile-header-wrapper .mobile-submenu-content {
  z-index: 2;
}

.mobile-header-wrapper .mobile-subsubmenu-content {
  z-index: 3;
}

.mobile-header-wrapper .mobile-submenu-content.is-active,
.mobile-header-wrapper .mobile-subsubmenu-content.is-active {
  transform: translateX(0);
}

.mobile-header-wrapper {
  /* Списки */
}

.mobile-header-wrapper .mobile-menu-list,
.mobile-header-wrapper .mobile-submenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-header-wrapper .mobile-menu-list {
  row-gap: 32px;
}

.mobile-header-wrapper .mobile-submenu-list {
  row-gap: 16px;
}

.mobile-header-wrapper {
  /* Пункты меню */
}

.mobile-header-wrapper .mobile-menu-item,
.mobile-header-wrapper .back-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: var(--black);
}

.mobile-header-wrapper .mobile-menu-item--parent::after {
  content: "";
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

.mobile-header-wrapper .back-link {
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}

.mobile-header-wrapper .mobile-menu-item .svg-caret-right {
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.mobile-header-wrapper {
  /* Контакты снизу */
}

.mobile-header-wrapper .mobile-menu-contacts {
  flex-shrink: 0;
}

.mobile-header-wrapper .mobile-menu-phone,
.mobile-header-wrapper .mobile-menu-mail {
  display: block;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.mobile-header-wrapper .mobile-menu-mail {
  margin-top: 8px;
}

.mobile-header-wrapper .mobile-menu-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mobile-header-wrapper .mobile-menu-messengers a {
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  color: #d85b8e;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fbe4ec;
}

.mobile-header-wrapper .mobile-menu-address {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 12px;
  color: var(--black);
}

.mobile-header-wrapper {
  /* Бургер */
}

.mobile-header-wrapper .burger {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-header-wrapper .burger span,
.mobile-header-wrapper .burger::before,
.mobile-header-wrapper .burger::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-header-wrapper .burger span {
  top: 11px;
}

.mobile-header-wrapper .burger::before {
  top: 5px;
}

.mobile-header-wrapper .burger::after {
  top: 17px;
  width: 16px;
}

.mobile-header-wrapper .burger.is-active span {
  opacity: 0;
}

.mobile-header-wrapper .burger.is-active::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-header-wrapper .burger.is-active::after {
  transform: translateY(-5px) rotate(-45deg);
  width: 22px;
}

.nav {
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  white-space: nowrap;
  transition: color 0.2s ease;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.has-drop .nav__link,
.have-icon {
  position: relative;
}

.has-drop .nav__link:after,
.have-icon:after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.5 0.5L5 5L9.5 0.5' stroke='%230A0A0A' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  flex-shrink: 0;
}

.nav__item.is-active > .nav__link,
.nav__link:hover {
  color: var(--red);
}

.nav__item.is-active > .nav__link:after,
.nav__link:hover:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.5 0.5L5 5L9.5 0.5' stroke='%23a50d61' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.nav__dropdown-content {
  display: none;
}

.mega {
  position: absolute;
  top: 100%;
  background: #fafafa;
  border-top: 1px solid rgba(69, 69, 69, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow: hidden;
}

.mega__mount {
  min-height: 280px;
}

.mega-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  min-width: 0;
}

.mega-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 20px;
  min-width: 0;
  position: relative;
}

.mega-sidebar:after {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  bottom: -50px;
  width: 1px;
  background-color: var(--line);
}

.mega-sidebar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  transition: color 0.2s ease;
  position: relative;
  width: 100%;
}

.mega-sidebar__link.is-active,
.mega-sidebar__link:hover {
  color: var(--red);
}

.mega-sidebar__link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.499999 10.5L5.5 5.5L0.5 0.5' stroke='%230A0A0A' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  margin-left: auto;
}

.mega-sidebar__link.is-active::after,
.mega-sidebar__link:hover::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.499999 10.5L5.5 5.5L0.5 0.5' stroke='%23A50D61' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.mega-content {
  min-width: 0;
}

.mega-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) var(--preview-width);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.mega-panel.is-active {
  display: grid;
}

.mega-cols {
  min-width: 0;
}

.mega-cols__list {
  display: grid;
  gap: 32px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.mega-cols__item {
  min-width: 0;
}

.mega-cols__link {
  display: inline-flex;
  align-items: flex-start;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  transition: color 0.2s ease;
}

.mega-cols__link:hover {
  color: var(--red);
}

.mega-preview {
  width: var(--preview-width);
  min-width: var(--preview-width);
}

.mega-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.mega--desktop .mega-layout {
  padding: 40px;
}

.mega--desktop .mega-cols__list {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.desktop-header-wrapper .burger {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 230;
}

.desktop-header-wrapper .burger span,
.desktop-header-wrapper .burger::before,
.desktop-header-wrapper .burger::after {
  content: "";
  position: absolute;
  left: 2px;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.desktop-header-wrapper .burger span {
  top: 11px;
}

.desktop-header-wrapper .burger::before {
  top: 6px;
}

.desktop-header-wrapper .burger::after {
  top: 16px;
  width: 16px;
}

.desktop-header-wrapper .burger.is-active span {
  opacity: 0;
}

.desktop-header-wrapper .burger.is-active::before {
  top: 11px;
  transform: rotate(45deg);
}

.desktop-header-wrapper .burger.is-active::after {
  top: 11px;
  transform: rotate(-45deg);
  width: 100%;
}

.desktop-header-wrapper .burger-overlay {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 210;
}

.desktop-header-wrapper .burger-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.burger-menu {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: var(--burger-sidebar-width) minmax(0, 1fr);
  overflow: hidden;
}

.burger-menu__aside {
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.burger-menu__aside::-webkit-scrollbar {
  display: none;
}

.burger-menu__top {
  padding: 40px 40px 0;
}

.burger-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.burger-menu__item {
  min-width: 0;
}

.burger-menu__main-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.2s ease;
}

.burger-menu__item.is-active > .burger-menu__main-link,
.burger-menu__main-link:hover {
  color: var(--red);
}

.aside-contacts {
  margin-top: auto;
  padding: 24px 20px 20px;
}

.company-contacts__group .contact-item + .contact-item {
  margin-top: 8px;
}

.company-contacts__group + .company-contacts__group {
  margin-top: 40px;
}

.company-contacts__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chips-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  background: rgba(255, 231, 244, 0.5);
  transition: 0.3s;
}

.chips-item:hover {
  background: var(--red);
  color: white;
}

.company-contacts__city {
  margin-bottom: 8px;
}

.company-contacts__address {
  font-weight: 500;
  font-size: 16px;
  color: var(--grey);
}

.burger-menu__main {
  display: grid;
  grid-template-columns: var(--burger-submenu-width) minmax(0, 1fr);
  align-self: start;
  min-height: 300px;
  height: -moz-fit-content;
  height: fit-content;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.burger-menu__submenu {
  border-right: 1px solid var(--line);
  padding: 40px;
  background: #fafafa;
  min-width: 0;
}

.burger-menu__submenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px 16px;
}

.burger-menu__submenu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.2s ease;
  width: 100%;
}

.have-icon-right,
.burger-menu__submenu-link {
  position: relative;
  width: 100%;
}

.have-icon-right:hover::after,
.burger-menu__submenu-link:hover::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.5 15L12.5 10L7.5 5' stroke='%23A50D61' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.is-active .have-icon-right::after,
.is-active.have-icon-right::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.5 15L12.5 10L7.5 5' stroke='%23A50D61' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.have-icon-right::after,
.burger-menu__submenu-link::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.5 15L12.5 10L7.5 5' stroke='%230A0A0A' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: auto;
}

.burger-menu__submenu-link.is-active,
.burger-menu__submenu-link:hover {
  color: var(--red);
}

.burger-menu__content {
  min-width: 0;
  overflow: auto;
  background: #fafafa;
  padding: 40px;
}

.burger-menu__panel {
  display: none;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) var(--preview-width);
  gap: 28px;
  align-items: start;
}

.burger-menu__panel.is-active {
  display: grid;
}

.burger-menu__panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 32px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  max-width: 760px;
}

.burger-menu__panel-link {
  display: inline-flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.35;
  color: var(--black);
  transition: color 0.2s ease;
}

.burger-menu__panel-link:hover {
  color: var(--red);
}

.burger-menu__panel-preview {
  width: var(--preview-width);
  min-width: var(--preview-width);
}

.burger-menu__panel-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 300/300;
  -o-object-fit: cover;
  object-fit: cover;
}

.burger-menu__main.is-hidden {
  display: none;
}

.burger-menu__content.is-empty {
  padding: 0;
}

.burger-menu__content.is-empty::before {
  content: "";
  display: block;
  width: 100%;
  min-height: 300px;
  background: #fafafa;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  max-height: 1080px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 80px;
  position: relative;
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .hero-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .hero-title > * + * {
  margin-top: 10px;
}

.hero .svg-logo {
  width: 644px;
}

.hero.hero-inner {
  align-items: flex-end;
}

.overlay-full,
.overlay-gradient {
  position: relative;
}

.overlay-full:after,
.overlay-gradient:after {
  content: "";
  position: absolute;
}

.overlay-full:after {
  inset: 0;
  background-color: rgba(10, 10, 10, 0.5);
}

.overlay-gradient {
  position: relative;
}

.overlay-gradient:after {
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 38%, rgb(0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 740px;
  row-gap: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.hero-content .h-54 {
  line-height: 1.5;
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.card-portfolio .card-overlay-media {
  width: 100%;
  aspect-ratio: 948/540;
  height: 100%;
}

.card-overlay.card-portfolio {
  aspect-ratio: 948/540;
}

.card-service,
.card-overlay {
  position: relative;
  overflow: hidden;
}

.card-service img,
.card-service video,
.card-overlay img,
.card-overlay video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.card-overlay-link {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.35);
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding: 24px;
}

.card-overlay-link .btn-square {
  margin-left: auto;
}

.card-overlay-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  color: white !important;
  font-weight: 500;
}

.card-overlay .font-32 {
  font-size: 32px;
  color: var(--white);
}

.card-overlay .font-20 {
  font-size: 20px;
  color: var(--white);
}

.card-overlay .font-18 {
  font-size: 18px;
  line-height: 1.56;
  color: var(--white);
  opacity: 0.8;
}

.card-overlay.card-portfolio:hover .btn-square {
  background: var(--red);
}

.card-service:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
  inset: 0;
}

.card-service .card-overlay-text {
  max-width: 230px;
}

.card-service .card-overlay-link {
  top: auto;
  display: flex;
  align-items: center;
  z-index: 5;
  background-color: transparent;
}

.card-service:hover .btn-square .svg-plus {
  transform: rotate(180deg);
}

.company-intro {
  padding-top: 80px;
  padding-bottom: 80px;
}

.company-intro__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  -moz-column-gap: 16px;
  column-gap: 16px;
  margin-bottom: 20px;
}

.company-intro__title {
  margin: 0;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: var(--black);
}

.company-intro__text p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: var(--black);
}

.company-intro__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.company-intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.company-intro__media picture,
.company-intro__media img {
  display: block;
  width: 100%;
}

.company-intro__media img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.company-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  align-items: end;
}

.intro-inner .company-intro__stats {
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
}

.intro-inner .company-intro__stats .company-intro__stat:nth-child(2n) {
  padding-top: 100px;
}

.company-intro__media .company-intro__stats {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  z-index: 2;
}

.company-intro__media .company-intro__stat:nth-child(2) {
  text-align: center;
}

.company-intro__media .company-intro__stat:last-child {
  text-align: right;
}

.company-intro__stat-value {
  margin: 0 0 2px;
  font-weight: 500;
  font-size: 78px;
  line-height: 1;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.company-intro__stat-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
}

.company-intro__stat-name {
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  margin-top: 4px;
}

.company-intro__img {
  margin-top: 4px;
}

.company-intro__img img {
  display: inline-block;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 4px solid white;
}

.company-intro__img img + img {
  margin-left: -52px;
  z-index: 3;
}

.company-intro__media .company-intro__stat-text,
.company-intro__media .company-intro__stat-value,
.company-intro__media .company-intro__stat-name {
  color: var(--white);
}

.feedback-content {
  width: 75%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1440/800;
  background-color: #909090;
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feedback-content .feedback-media {
  position: absolute;
  inset: 0;
}

.feedback-content .feedback-media ~ * {
  position: relative;
  z-index: 3;
}

.feedback-content .form-wrapper {
  max-width: 896px;
  width: 80%;
  position: relative;
  z-index: 2;
}

.feedback-content .form-wrapper .form-agree .checkbox-name {
  max-width: 400px;
  font-size: 14px;
}

.team {
  overflow: hidden;
}

.team .grid-12 {
  gap: 20px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.team-card__img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.team-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
}

.team-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-card .font-20,
.team-card .font-16 {
  margin: 0;
}

.team-card .font-16 {
  color: var(--grey);
}

.team-gallery-wrapper {
  position: relative;
}

.team-gallery-wrapper .container {
  padding: 0;
  position: relative;
}

.team-gallery-head {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.team-gallery-head > * {
  color: white;
}

.team-gallery-head > * + * {
  margin-top: 40px;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
}

.team-gallery .team-gallery-item.overlay-full:after {
  background: rgba(0, 0, 0, 0.25);
}

.team-gallery .team-gallery-item:first-child {
  grid-row: span 2/span 2;
}

.team-gallery .team-gallery-item:first-child:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.team-gallery .team-gallery-item:last-child {
  grid-column-start: 2;
}

.team-gallery .team-gallery-item img {
  width: 100%;
  aspect-ratio: 951/475;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-gallery .team-gallery-item:first-child img {
  aspect-ratio: 951/952;
}

.grid-12,
.grid-10,
.grid-6 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 8px;
}

.grid-12 > *,
.grid-10 > *,
.grid-6 > * {
  grid-column: span 12;
}

.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-10 > * {
  grid-column: span 10;
}

.xs-col-2 > * {
  grid-column: span 6;
}

.grid-10.col-2 > * {
  grid-column: span 5;
}

.xl-reverse {
  grid-template-areas: "sidebar main";
}

.flex,
.flex-2,
.flex-3,
.flex-4,
.flex-5,
.flex-6 {
  --gap: 8px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.flex > *,
.flex-2 > *,
.flex-3 > *,
.flex-4 > *,
.flex-5 > *,
.flex-6 > * {
  width: 100%;
}

.flex-2 > * {
  width: calc((100% - var(--gap) * 1) / 2);
}

.flex-3 > * {
  width: calc((100% - var(--gap) * 2) / 3);
}

.flex-4 > * {
  width: calc((100% - var(--gap) * 3) / 4);
}

.flex-5 > * {
  width: calc((100% - var(--gap) * 4) / 5);
}

.flex-6 > * {
  width: calc((100% - var(--gap) * 5) / 6);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 16px;
}

.benefit-card .card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.about-intro {
  width: 100%;
  aspect-ratio: 1920/800;
  max-height: 800px;
  min-height: 500px;
  padding-block: 100px;
}

.about-intro .img-cover {
  position: absolute;
  inset: 0;
}

.about-intro .container {
  position: relative;
  z-index: 2;
}

.about-intro .about-intro-content {
  display: grid;
  grid-template-columns: 1fr 48%;
  -moz-column-gap: 4%;
  column-gap: 4%;
}

.about-intro .about-intro-content .h-54 {
  align-self: flex-start;
}

.about-intro .about-intro-content .font-20 {
  align-self: flex-end;
  max-width: 90%;
}

.about-intro,
.about-intro .container {
  display: flex;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--black);
}

.footer .footer-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer-content .company-contacts__group {
  flex: 1;
}

.footer .company-contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 130px;
  column-gap: 130px;
}

.footer .company-contacts__group .semi-24,
.footer .company-contacts__address,
.footer .company-contacts__group p {
  color: white;
}

.footer .company-contacts__group + .company-contacts__group {
  margin-top: 0;
}

.footer .company-contacts__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 24px;
}

.footer .company-contacts__group .company-contacts__city {
  margin-bottom: 0;
}

.footer .company-contacts__group .contact-item + .contact-item {
  margin-top: 0;
}

.footer .chips-item {
  background-color: var(--red);
}

.footer .contact-item:hover {
  color: var(--red);
}

.footer .social-block {
  justify-content: center;
}

.footer .social-block svg {
  color: white;
}

.footer .chips-item {
  color: var(--white);
  background: var(--red);
}

.footer .chips-item:hover {
  background: rgba(255, 231, 244, 0.8);
}

.footer .hide-mobile {
  display: flex;
}

.footer .hide-desktop {
  display: none !important;
}

.footer-copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(217, 217, 217, 0.2);
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.footer-copyright .footer-links {
  margin-left: auto;
  display: flex;
  gap: 40px;
}

.footer-copyright .footer-links a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}

.footer-copyright .footer-links a:hover {
  text-decoration: none;
}

.footer-copyright,
.footer-links a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #999;
}

.tabs-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 60px;
}

.tabs-nav {
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-button {
  padding: 16px 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
  border-bottom: 3px solid rgba(92, 92, 92, 0.1);
  transition: 0.3s;
  white-space: nowrap;
}

.tab-button.active {
  border-bottom-color: var(--red);
}

.tab-button-round {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  height: 48px;
  padding-left: 40px;
  padding-right: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 30px;
  border: 1px solid var(--grey);
  transition: 0.3s;
}

.tab-button-round.active,
.tab-button-round:hover {
  border: 1px solid var(--red);
}

.our-services .tab-content.grid-12 {
  gap: 10px;
}

.description-row {
  display: flex;
  -moz-column-gap: 3%;
  column-gap: 3%;
  justify-content: space-between;
}

.description-row .description-title {
  max-width: 800px;
  line-height: 1.33;
}

.description-row .description-text {
  max-width: 740px;
}

.description-row-left,
.description-row-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 640px;
  row-gap: 24px;
}

.description-row-left .overlay-full,
.description-row-right .overlay-full {
  height: 100%;
}

.description-row-left img,
.description-row-right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.description-row-left {
  padding-right: 40px;
  padding-top: 16px;
  width: 46.8%;
}

.description-row-left img {
  aspect-ratio: 890/630;
}

.description-row:nth-child(odd) .description-row-left {
  padding-top: 16px;
}

.description-row-right {
  width: 49.9%;
  margin-left: auto;
}

.description-row-right img {
  aspect-ratio: 950/640;
}

.description-grid {
  display: flex;
  flex-direction: column;
  row-gap: 160px;
}

.description-grid .description-row {
  width: 100%;
}

.description-row .description-title,
.description-row .description-text {
  font-weight: 500;
  color: var(--black);
}

.description-row .description-title {
  font-size: 54px;
  color: var(--black);
}

.description-row .description-text {
  font-size: 20px;
}

.description-grid .description-row:nth-child(2n) .description-row-right {
  padding-right: 0;
  width: 46.8%;
}

.description-grid .description-row:nth-child(2n) .description-row-right img {
  aspect-ratio: 890/630;
}

.description-grid .description-row:nth-child(2n) .description-row-left {
  width: 49.9%;
  padding-top: 16px;
  margin-left: auto;
}

.description-grid .description-row:nth-child(2n) .description-row-left img {
  aspect-ratio: 950/640;
}

.description-grid .description-row:nth-child(2) {
  flex-direction: row-reverse;
}

.stage-card {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
  min-height: 330px;
  border-bottom: 1px solid #d8d8d8;
}

.stage__number {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: var(--grey);
  opacity: 0.4;
}

.stage__img {
  height: 114px;
  flex-shrink: 0;
  width: 100%;
}

.stage__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.stage__body {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-bottom: 40px;
}

.stage__body .font-16 {
  line-height: 162%;
  color: var(--grey);
}

.stages-cards.grid-12 {
  row-gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.news-card__img {
  width: 100%;
  aspect-ratio: 611/400;
  max-height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.news-card__body .semi-24 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card__body .font-18 {
  line-height: 156%;
  color: var(--grey);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-card__body .font-16 {
  letter-spacing: -0.01em;
  color: var(--grey);
  opacity: 0.4;
}

.single-news-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(92, 92, 92, 0.2);
}

.single-news-header .h2 {
  margin-bottom: 8px;
}

.single-news-meta {
  justify-content: space-between;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.single-news-group {
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-left: auto;
  align-self: flex-end;
}

.single-news-info {
  line-height: 175%;
}

.single-news-info > * + * {
  margin-top: 4px;
}

.pagination {
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.pagination .pagination-btn {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 42px;
  min-width: 42px;
  border-radius: 4px;
  padding: 7px;
  background-color: transparent;
  color: var(--black);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.pagination .pagination-btn:hover {
  background-color: #e6e6e6;
}

.pagination .pagination-btn.current {
  background-color: var(--red);
  color: white;
}

.pagination,
.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination svg {
  width: 16px;
}

.pagination-btn.disabled,
.pagination-btn[disabled],
.pagination-btn:disabled {
  pointer-events: none;
  cursor: default !important;
  color: #cecece;
}

.pagination-btn.pagination-dot {
  align-items: flex-end;
}

.pagination-btn.pagination-dot svg {
  width: 16px;
  height: 16px;
  align-self: flex-end;
}

.pagination-btn.pagination-dot:hover,
.pagination-btn.pagination-dot.current {
  background-color: transparent;
  color: var(--black);
}

.portfolio-tabs .tab-content.grid-12 {
  gap: 5px;
}

.portfolio-tabs .tabs-nav {
  justify-content: flex-start;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
}

.qwiz-banner {
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.qwiz-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.qwiz-wrapper {
  position: relative;
  min-height: 800px;
  display: flex;
  overflow: hidden;
  padding: 40px;
}

.qwiz-plates {
  width: 750px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.qwiz-plate-body {
  width: 100%;
  max-width: 400px;
}

.qwiz-counter {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 0;
  top: 24px;
  color: white;
  z-index: 100;
  pointer-events: none;
}

.qwiz-plate {
  padding: 32px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  inset: 0;
  width: 80%;
  box-sizing: border-box;
  transform: translateX(0);
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

/* Активная карточка */

.qwiz-plate.is-active {
  pointer-events: auto;
}

/* Карточки, которые уже прошли — уехали влево */

.qwiz-plate.is-passed {
  transform: translateX(-115%);
}

/* Будущие карточки просто лежат под активной */

.qwiz-plate.is-future {
  transform: translateX(0);
}

.qwiz-plate.is-future .qwiz-plate-back {
  opacity: 0;
}

.qwiz-plate-footer {
  display: flex;
  gap: 16px;
}

.qwiz-plate-head {
  margin-bottom: 40px;
}

.qwiz-plate-body {
  margin-bottom: 32px;
  flex-shrink: 0;
}

.qwiz-plate-footer {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.qwiz-plate-next {
  width: 100%;
  max-width: 240px;
  transition: 0;
  transition: color 0.3s;
}

.qwiz-plate-next svg {
  transition: 0;
  transition: color 0.3s;
}

.qwiz-plate-back {
  margin-top: auto;
  justify-content: flex-start;
}

.price-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}

.price-card__img {
  width: 100%;
  aspect-ratio: 456/240;
  flex-shrink: 0;
  overflow: hidden;
}

.price-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.price-card__body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.price-card__body .btn {
  margin-top: auto;
}

.price-card__title {
  min-height: 58px;
  flex-shrink: 0;
  margin-bottom: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: var(--black);
}

.price-card__amount {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--black);
}

.price-card__text {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 24px;
}

.price-card__list {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
}

.price-card__list .txt-primary {
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  margin-bottom: 9px;
}

.prices-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.price-li {
  display: flex;
  background-color: #fff;
  align-items: center;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--black);
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.price-li .price-name {
  flex-grow: 1;
}

.price-li .price-val {
  width: 160px;
  flex-shrink: 0;
  white-space: nowrap;
}

.price-li + .price-li {
  margin-top: 8px;
}

.project-meta {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 42px;
  column-gap: 42px;
  margin-bottom: 32px;
}

.project-meta-li {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #000;
  padding-left: 12px;
}

.project-meta-li:first-child {
  padding-left: 0;
  list-style-type: none;
}

.project-swiper .swiper-slide {
  width: 100%;
  aspect-ratio: 1900/900;
  display: flex;
}

.project-swiper .swiper-slide img,
.project-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-swiper .overlay-gradient:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 88%, rgb(0, 0, 0) 100%);
}

.project-preview-swiper {
  margin-top: -126px;
  margin-left: 24px;
  z-index: 3;
  position: relative;
}

.project-preview-swiper .swiper-slide {
  width: 102px !important;
  opacity: 0.3;
}

.project-preview-swiper .swiper-slide img {
  border-radius: 10px;
  border: 1px solid var(--white);
  aspect-ratio: 1;
}

.project-preview-swiper .swiper-slide {
  position: relative;
}

.project-preview-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.project-preview-swiper .swiper-slide .svg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white;
}

.single-project-gallery {
  margin-left: -10px;
  margin-right: -10px;
}

.single-project-description .sidebar {
  position: sticky;
  top: 20px;
}

.single-project-description .content-card-left {
  position: sticky;
  top: 20px;
}

.single-project-description .content-card > *:last-child,
.single-project-description .content-card-right > *:last-child {
  margin-bottom: 0;
}

.content-card {
  background-color: #fff;
  color: var(--black);
  border-radius: 10px;
  padding: 40px;
}

.content-card p:not([class]) {
  margin-bottom: 1em;
  font-weight: 400;
  font-size: 20px;
}

.content-card h2:not([class]) {
  font-size: 32px;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

.content-card > img,
.content-card > video,
.content-card > iframe,
.content-card > figure,
.content-card > picture {
  display: block;
  width: 100%;
  aspect-ratio: 1353/700;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 10px;
}

.content-card figure img,
.content-card figure iframe {
  margin-top: 0;
  margin-bottom: 0;
}

.content-card .before-after {
  margin-block: 40px;
}

.content-card + .content-card {
  margin-top: 24px;
}

.content-card-block {
  display: grid;
  -moz-column-gap: 20px;
  column-gap: 20px;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: flex-start;
}

.content-card-column .content-card-top {
  margin-bottom: 40px;
}

/*before-after*/

.before-after {
  max-width: 100%;
}

.before-after__slider {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.before-after__slider img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.before-after__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: ew-resize;
}

.before-after__handle svg {
  display: block;
}

/**/

.designer-card {
  width: 100%;
  max-width: 445px;
  background-color: #fff;
}

.designer-card p,
.designer-card img {
  margin: 0;
}

.designer-card__img {
  aspect-ratio: 443/487;
  overflow: hidden;
  flex-shrink: 0;
}

.designer-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.designer-card .designer-card__text {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.designer-card .font-16 {
  color: var(--grey);
  opacity: 0.6;
}

.designer-card .font-18 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--black);
}

.designer-cards.grid-12 {
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 12px;
}

.company-contacts.company-contacts-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.company-contacts.company-contacts-row .company-contacts__group + .company-contacts__group {
  margin: 0;
}

.company-contacts.company-contacts-row .company-contacts__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-contacts.company-contacts-row .company-contacts__group .font-18 {
  line-height: 1.56;
}

.company-contacts.company-contacts-row .company-contacts__group .chips-item {
  font-size: 16px;
  font-weight: 600;
}

.contacts-hero .company-contacts .company-contacts__chips {
  margin-top: 16px;
}

.bank-details {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 24px;
  border-radius: 12px;
}

.bank-details .btn-white {
  width: -moz-fit-content;
  width: fit-content;
}

.bank-details-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  flex-grow: 1;
}

.contacts-map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.contacts-map .map {
  width: 100%;
  height: 500px;
}

.contacts-map .map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts-cards.grid-12 {
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 12px;
}

.bank-details,
.map {
  border-radius: 12px;
  overflow: hidden;
}

.contact-card {
  background-color: #F7F7F7;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--black);
  text-decoration: none;
}

.contact-card__top {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(92, 92, 92, 0.1);
}

.contact-card__bottom {
  flex-grow: 1;
  padding-top: 16px;
}

.contact-card__top > * + *,
.contact-card__bottom > * + * {
  margin-top: 4px;
}

.popup-wrapper[data-popup] {
  justify-content: center;
  align-items: flex-start;
  padding-block: 40px;
  background: rgba(10, 10, 10, 0.7);
  position: fixed;
  overflow-y: auto;
  inset: 0;
  display: none;
}

.popup-wrapper.popup-open[data-popup] {
  display: flex;
  z-index: 30;
}

.popup-wrapper .popup-body {
  width: 100%;
  max-width: 600px;
  background-color: rgba(30, 30, 30, 0.9);
  border: 1px solid #383838;
  border-radius: 12px;
  position: relative;
}

.popup-wrapper .popup-body .popup-close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
}

.popup-wrapper .popup-body .popup-close svg {
  width: 20px;
  height: 20px;
}

.popup-wrapper.popup-big-form .popup-body {
  background-color: transparent;
  width: 75%;
  border-radius: 0 !important;
  border: 0;
  max-width: 1440px;
}

.popup-wrapper .feedback-content {
  width: 100%;
}

.form-content {
  padding: 80px 32px;
}

.modal-visible .modal-large,
.modal-visible .modal-frame {
  transform: translateX(0) !important;
}

.ui-panel {
  width: 320px;
  background-color: #094071;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 50px;
  padding-bottom: 80px;
  z-index: 10;
}

.ui-panel .back-index {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 16px;
  display: block;
}

.ui-panel ul {
  list-style: circle;
}

.ui-panel h3 {
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  color: orange;
}

.ui-panel .ui-panel-block__part + .ui-panel-block__part {
  margin-top: 32px;
}

.ui-panel li + li {
  margin-top: 16px;
}

.ui-panel li > a {
  color: #fff;
  font-size: 16px;
  font-family: sans-serif;
}

.body-dashboard {
  padding-left: 320px;
  padding-top: 50px;
  padding-bottom: 100px;
}

.body-dashboard .ui-panel {
  transition: 0.3s;
}

.body-dashboard.active {
  padding-left: 0;
}

.body-dashboard.active .ui-panel {
  transform: translateX(-100%);
}

.body-dashboard .modal-frame {
  transform: translate(0) !important;
  position: relative !important;
}

.body-dashboard #close-ui {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 4;
  border: 1px solid blue;
  background-color: blue;
  width: 140px;
  height: 50px;
  color: white;
}

.body-dashboard .container-dashboard {
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}

.body-dashboard .container-dashboard h2.db-h2 {
  margin-bottom: 40px;
}

.body-dashboard .container-dashboard .reestr-modal {
  transform: translateX(0);
}

.body-dashboard .container-dashboard .modal-large.service-modal {
  transform: translateY(0);
  z-index: -1;
}

.body-dashboard .color-scheme {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 24px;
}

.body-dashboard .color-scheme li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body-dashboard .color-scheme li span:first-child {
  width: 60px;
  height: 60px;
  border: 1px solid #000;
}

.body-dashboard .color-scheme li span + span {
  font-size: 16px;
  margin-top: 15px;
}

.body-dashboard .ui-typography li {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #cecece;
}

.body-dashboard .ui-typography li pre {
  margin-top: 5px;
  margin-bottom: 5px;
}

.body-dashboard .ui-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 48px;
}

.body-dashboard .ui-lists > li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.body-dashboard .dark-bg,
.body-dashboard .temp-wrapper {
  background-color: #694949;
  padding: 15px;
  color: white;
}

/*стили для вспомогат страницы - удалить из проектп */

.start-page {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.start-page h1 {
  font-weight: 700;
  margin-bottom: 40px;
}

.start-page__cards {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 16px;
}

.start-page a {
  width: calc((100% - 32px) / 3);
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.start-page a span {
  display: block;
  text-align: center;
  padding-bottom: 8px;
  padding-top: 8px;
}

.start-page a:first-child {
  width: 100%;
}

.container-dashboard__content .mobile-navigation {
  width: 480px;
  position: relative;
}

.body-dashboard footer.footer {
  position: static;
}

.ui-dot {
  height: 1px;
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 1px dashed #999;
}

/*//стили для вспомогат страницы - удалить из проектп */

@media (min-width: 575px) {
  .ms-col-2 > * {
    grid-column: span 6;
  }
}

@media (min-width: 744px) {
  .grid-12,
  .grid-10,
  .grid-6 {
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
  }

  .md-col-2 > * {
    grid-column: span 6 !important;
  }

  .md-col-3 > * {
    grid-column: span 4 !important;
  }

  .md-col-4 > * {
    grid-column: span 3 !important;
  }

  .md-col-5 > * {
    grid-column: span 2 !important;
  }

  .md-col-6 > * {
    grid-column: span 2 !important;
  }

  .flex,
  .flex-2,
  .flex-3,
  .flex-4,
  .flex-5,
  .flex-6 {
    --gap: 24px;
  }

  .md-flex-2 > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }

  .md-flex-3 > * {
    width: calc((100% - var(--gap) * 2) / 3);
  }

  .md-flex-4 > * {
    width: calc((100% - var(--gap) * 3) / 4);
  }

  .md-flex-5 > * {
    width: calc((100% - var(--gap) * 4) / 5);
  }

  .md-flex-6 > * {
    width: calc((100% - var(--gap) * 5) / 6);
  }
}

@media (min-width: 1024px) {
  .lg-col-2 > * {
    grid-column: span 6 !important;
  }

  .lg-col-3 > * {
    grid-column: span 4 !important;
  }

  .lg-col-4 > * {
    grid-column: span 3 !important;
  }

  .lg-col-5 > * {
    grid-column: span 2 !important;
  }

  .lg-col-6 > * {
    grid-column: span 2 !important;
  }

  .lg-flex-2 > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }

  .lg-flex-3 > * {
    width: calc((100% - var(--gap) * 2) / 3);
  }

  .lg-flex-4 > * {
    width: calc((100% - var(--gap) * 3) / 4);
  }

  .lg-flex-5 > * {
    width: calc((100% - var(--gap) * 4) / 5);
  }

  .lg-flex-6 > * {
    width: calc((100% - var(--gap) * 5) / 6);
  }
}

@media (min-width: 1200px) {
  .xl-col-2 > * {
    grid-column: span 6 !important;
  }

  .xl-col-3 > * {
    grid-column: span 4 !important;
  }

  .xl-col-4 > * {
    grid-column: span 3 !important;
  }

  .xl-col-5 > * {
    grid-column: span 2 !important;
  }

  .xl-col-6 > * {
    grid-column: span 2 !important;
  }

  .grid-12 .span-xl-4 {
    grid-column: span 4;
  }

  .grid-12 .span-xl-8 {
    grid-column: span 8;
  }

  .xl-reverse .span-xl-4 {
    grid-area: sidebar;
    grid-column: 1/5;
  }

  .xl-reverse .span-xl-8 {
    grid-area: main;
    grid-column: 5/-1;
  }

  .xl-flex-2 > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }

  .xl-flex-3 > * {
    width: calc((100% - var(--gap) * 2) / 3);
  }

  .xl-flex-4 > * {
    width: calc((100% - var(--gap) * 3) / 4);
  }

  .xl-flex-5 > * {
    width: calc((100% - var(--gap) * 4) / 5);
  }

  .xl-flex-6 > * {
    width: calc((100% - var(--gap) * 5) / 6);
  }
}

@media (min-width: 1440px) {
  .xxl-col-2 > * {
    grid-column: span 6 !important;
  }

  .xxl-col-3 > * {
    grid-column: span 4 !important;
  }

  .xxl-col-4 > * {
    grid-column: span 3 !important;
  }

  .xxl-col-5 > * {
    grid-column: span 2 !important;
  }

  .xxl-col-6 > * {
    grid-column: span 2 !important;
  }

  .grid-12 .span-xxl-4 {
    grid-column: span 4;
  }

  .grid-12 .span-xxl-8 {
    grid-column: span 8;
  }

  .xl-reverse .span-xxl-4 {
    grid-area: sidebar;
    grid-column: 1/5;
  }

  .xl-reverse .span-xxl-8 {
    grid-area: main;
    grid-column: 5/-1;
  }

  .stages-cards.grid-12 {
    row-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

@media (max-width: 1920px) {
  .hero {
    padding-block: 4vw;
  }
}

@media (max-width: 1919px) {
  .header__left,
  .header__center,
  .header__right {
    gap: 24px;
  }

  .nav__list {
    gap: 20px;
  }

  .mega-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .mega--desktop .mega-layout {
    padding: 30px;
  }
}

@media (max-width: 1699px) {
  .semi-18 {
    font-size: 14px;
  }

  .header__left .svg-logo,
  .header__center .svg-logo,
  .header__right .svg-logo {
    width: 205px;
  }

  .header__right .contact-item {
    font-size: 13px;
  }

  .nav__link {
    font-size: 12px;
  }

  .mega-sidebar {
    gap: 24px;
  }

  .mega-sidebar__link {
    font-size: 12px;
  }

  .mega-panel {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .mega-cols__list {
    gap: 24px 16px;
  }

  .mega-cols__link {
    font-size: 12px;
  }

  .mega-preview {
    width: 200px;
    min-width: 200px;
  }

  .burger-menu {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .burger-menu__top {
    padding: 20px 24px 0;
  }

  .burger-menu__main-link {
    font-size: 14px;
  }

  .aside-contacts {
    padding: 20px 24px;
  }

  .company-contacts__group + .company-contacts__group {
    margin-top: 24px;
  }

  .chips-item {
    font-size: 11px;
    padding: 11px 16px;
  }

  .company-contacts__address {
    font-size: 12px;
  }

  .burger-menu__submenu {
    padding: 20px 30px;
  }

  .burger-menu__submenu-link {
    font-size: 14px;
  }

  .burger-menu__content {
    padding: 20px 30px;
  }

  .burger-menu__panel {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .burger-menu__panel-link {
    font-size: 14px;
  }

  .burger-menu__panel-preview {
    width: 200px;
    min-width: 200px;
  }
}

@media (max-width: 1599px) {
  .company-intro__stat-value {
    font-size: 3.05vw;
  }

  .company-intro__stat-text {
    font-size: 16px;
  }

  .company-intro__stat-name {
    font-size: 1.67vw;
  }

  .footer .company-contacts {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }

  .description-row-left,
  .description-row-right {
    height: 30vw;
  }

  .description-row .description-title {
    font-size: 3vw;
  }

  .description-row .description-text {
    font-size: 18px;
  }

  .company-contacts.company-contacts-row .company-contacts__group .h-32 {
    font-size: 1.8vw;
  }
}

@media (max-width: 1439px) {
  .h-54 {
    font-size: 3.5vw;
  }

  .semi-24 {
    font-size: 20px;
  }

  .bar-menu-link {
    font-size: 16px;
  }

  .mt-80 {
    margin-top: 60px;
  }

  .p-block-100 {
    padding-block: 80px;
  }

  .p-block-80 {
    padding-block: 60px;
  }

  .title-center {
    margin-bottom: 50px;
  }

  .sidebar-grid {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .sidebar-grid .sidebar {
    width: 300px;
  }

  .form-title {
    font-size: 28px;
  }

  .mega-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 30px;
  }

  .burger-menu__main {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .burger-menu__panel-preview {
    display: none;
  }

  .card-overlay .font-32 {
    font-size: 26px;
  }

  .card-overlay .font-20,
  .card-overlay .font-18 {
    font-size: 16px;
  }

  .company-intro__title {
    font-size: clamp(52px, 6vw, 70px);
  }

  .team-gallery-head > * + * {
    margin-top: 30px;
  }

  .about-intro {
    padding-block: 80px;
  }

  .about-intro .about-intro-content .font-20 {
    max-width: 100%;
  }

  .tabs-nav {
    gap: 16px;
  }

  .tab-button-round {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }

  .description-grid {
    row-gap: 130px;
  }

  .news-card__body .semi-24 {
    font-size: 20px;
  }

  .news-card__body .font-18 {
    font-size: 16px;
  }

  .news-card__body .font-16 {
    font-size: 14px;
  }

  .qwiz-wrapper {
    min-height: 700px;
  }

  .qwiz-counter {
    font-size: 50px;
  }

  .price-card__title {
    font-size: 1.8vw;
  }

  .price-card__amount {
    font-size: 2.3vw;
  }

  .price-card__text {
    font-size: 13px;
    line-height: 162%;
    color: var(--black);
  }

  .project-preview-swiper .swiper-slide {
    width: 84px !important;
  }

  .single-project-description .content-card-left .h-32 {
    font-size: 26px;
  }

  .content-card {
    padding: 24px;
  }

  .content-card p:not([class]) {
    font-size: 18px;
  }

  .content-card h2:not([class]) {
    font-size: 26px;
  }

  .contacts-map .map {
    height: 400px;
  }

  .contact-card {
    padding: 16px;
    font-size: 14px;
  }

  .contact-card .txt-primary {
    font-size: 16px;
  }
}

@media (max-width: 1364px) {
  .news-card__body .semi-24 {
    font-size: 18px;
  }
}

@media (max-width: 1280px) {
  .mega-panel,
  .burger-menu__panel {
    grid-template-columns: 1fr;
  }

  .mega-preview,
  .burger-menu__panel-preview {
    width: 100%;
    min-width: 0;
    max-width: var(--preview-width);
  }

  .project-meta {
    margin-bottom: 24px;
  }

  .project-meta-li {
    font-size: 16px;
  }
}

@media (max-width: 1279px) {
  .mega-preview {
    display: none;
  }
}

@media (max-width: 1199px) {
  .container.container-percent {
    width: 85%;
  }

  .h-32 {
    font-size: 28px;
  }

  .custom-text {
    font-size: 14px;
  }

  .custom-text h2,
  .custom-text h3,
  .custom-text h4 {
    font-size: 18px;
  }

  .custom-text figcaption {
    font-size: 13px;
    line-height: 1.62;
  }

  .wrapper-mb-80 {
    margin-bottom: 40px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-content .form-title {
    margin-bottom: 40px;
  }

  .desktop-header-wrapper {
    display: none !important;
  }

  .mobile-header-wrapper {
    display: block;
    position: sticky;
    top: 0;
    z-index: 20;
  }

  .company-intro__img img {
    width: 54px;
    height: 54px;
  }

  .company-intro__img img + img {
    margin-left: -32px;
  }

  .feedback-content {
    padding: 32px 16px;
    width: 85%;
  }

  .footer .company-contacts {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }

  .tabs-nav {
    flex-wrap: nowrap;
    width: calc(50% + 50vw);
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 10px;
  }

  .tabs-nav .tab-button:last-child,
  .tabs-nav .tab-button-round:last-child {
    margin-right: 16px;
  }

  .tab-button-round {
    height: 32px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
  }

  .description-row-left {
    padding-right: 0;
  }

  .description-row:nth-child(odd) .description-row-left {
    padding-top: 0;
  }

  .description-grid {
    row-gap: 80px;
  }

  .description-row .description-text {
    font-size: 16px;
  }

  .description-grid .description-row:nth-child(2n) .description-row-right {
    padding-right: 0;
  }

  .description-grid .description-row:nth-child(2n) .description-row-right img {
    aspect-ratio: 950/640;
  }

  .description-grid .description-row:nth-child(2n) .description-row-left {
    padding-top: 0;
  }

  .stage__number {
    font-size: 14px;
  }

  .news-card__body .font-18 {
    font-size: 13px;
  }

  .news-card__body .font-16 {
    font-size: 12px;
  }

  .pagination .pagination-btn {
    height: 38px;
    min-width: 38px;
    font-size: 13px;
  }

  .portfolio-tabs .tabs-nav {
    flex-wrap: wrap;
    width: 100%;
  }

  .portfolio-tabs .tabs-nav .tab-button-round:last-child {
    margin-right: 0;
  }

  .qwiz-wrapper {
    min-height: 630px;
  }

  .qwiz-plates {
    width: 700px;
  }

  .qwiz-counter {
    font-size: 32px;
  }

  .qwiz-plate {
    padding: 24px;
    width: 85%;
  }

  .price-card__title {
    font-size: 18px;
  }

  .price-li .price-name {
    font-size: 13px;
  }

  .price-li .price-val {
    font-size: 14px;
    font-weight: 600;
    width: 100px;
  }

  .price-li {
    padding: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .project-preview-swiper .swiper-slide {
    width: 64px !important;
  }

  .project-preview-swiper {
    margin-top: -74px;
    margin-left: 10px;
  }

  .single-project-description .content-card-left {
    position: relative;
    top: auto;
  }

  .content-card p:not([class]) {
    font-size: 15px;
  }

  .content-card h2:not([class]) {
    font-size: 22px;
  }

  .content-card-block {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .designer-card .font-16 {
    font-size: 14px;
  }

  .designer-card .font-18 {
    font-size: 16px;
  }

  .company-contacts.company-contacts-row {
    gap: 24px;
  }
}

@media (max-width: 1023px) {
  .custom-text ul,
  .custom-text ol {
    padding-left: 16px;
  }

  .custom-text th,
  .custom-text td {
    font-size: 13px;
    padding: 12px;
    letter-spacing: 0.02em;
  }

  .custom-text th {
    font-size: 12px;
  }

  .gap-5 {
    gap: 1px !important;
  }

  .p-block-100 {
    padding-block: 40px;
  }

  .p-block-80 {
    padding-block: 40px;
  }

  .title-center {
    margin-bottom: 40px;
  }

  .btn-square {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .input,
  .textarea {
    height: 42px;
    font-size: 16px;
  }

  .textarea {
    height: 80px;
  }

  .checkbox-item .fake-checkbox {
    width: 18px;
    height: 18px;
  }

  .checkbox-item .checkbox-name {
    font-size: 14px;
  }

  .radio-item .radio-name {
    font-size: 14px;
  }

  .form-title {
    font-size: 20px;
  }

  .card-overlay-link {
    padding: 16px;
  }

  .card-overlay .font-32 {
    font-size: 18px;
  }

  .card-overlay .font-20,
  .card-overlay .font-18 {
    font-size: 13px;
  }

  .card-service .btn-square {
    width: 28px;
    height: 28px;
  }

  .card-service .card-overlay-link {
    padding: 14px 8px;
  }

  .company-intro__text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .intro-inner .company-intro__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .intro-inner .company-intro__stats .company-intro__stat:nth-child(2n) {
    padding-top: 0;
  }

  .company-intro {
    padding-top: 0;
    padding-bottom: 0;
  }

  .company-intro__top {
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-bottom: 24px;
  }

  .company-intro__title {
    font-size: 28px;
    line-height: 1.1;
  }

  .company-intro__text {
    max-width: 100%;
  }

  .company-intro__media {
    overflow: visible;
  }

  .company-intro__media::after {
    display: none;
  }

  .company-intro__media .company-intro__stats {
    position: static;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    align-items: flex-start;
  }

  .company-intro__media .company-intro__stat:last-child {
    text-align: left;
  }

  .company-intro__media .company-intro__stat:nth-child(2) {
    text-align: left;
  }

  .company-intro__media .company-intro__stat-value {
    font-size: 28px;
    color: var(--black);
  }

  .company-intro__media .company-intro__stat-text {
    font-size: 16px;
    line-height: 1.35;
    color: var(--grey);
  }

  .team-card {
    gap: 8px;
  }

  .team-card__img {
    max-width: 140px;
  }

  .team-card__content {
    gap: 8px;
  }

  .team-gallery-head {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    inset: auto;
  }

  .team-gallery-head > * {
    color: var(--black);
  }

  .team-gallery-head svg {
    color: var(--black);
  }

  .team-gallery-head {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .team-gallery-head > * + * {
    margin-top: 0;
  }

  .about-intro {
    padding-block: 40px;
  }

  .footer .company-contacts__group .semi-24 {
    font-size: 18px;
  }

  .footer-copyright .footer-links {
    gap: 20px;
  }

  .footer-copyright,
  .footer-links a {
    font-size: 11px;
    color: var(--grey);
  }

  .tabs-container {
    row-gap: 40px;
  }

  .description-row-left,
  .description-row-right {
    height: 370px;
  }

  .news-card__img {
    aspect-ratio: 390/200;
  }

  .news-swiper .swiper-button-next,
  .news-swiper .swiper-button-prev {
    display: none;
  }

  .pagination {
    -moz-column-gap: 2px;
    column-gap: 2px;
  }

  .qwiz-wrapper {
    padding-top: 32px;
  }

  .qwiz-plates {
    width: 100%;
    max-width: 470px;
  }

  .qwiz-counter {
    top: 0;
  }

  .qwiz-plate {
    width: 100%;
    top: 70px;
  }

  .qwiz-plate-back {
    margin-top: 0;
    position: absolute;
    top: -70px;
    left: 0;
    color: white;
  }

  .qwiz-plate-back svg {
    color: white;
  }

  .price-card {
    border-radius: 8px;
  }

  .price-card__amount {
    font-size: 22px;
  }

  .price-li .price-val {
    width: 80px;
    text-align: right;
  }

  .project-meta {
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 16px;
  }

  .project-meta-li {
    font-size: 13px;
    padding-left: 0;
  }

  .single-project-description .sidebar {
    position: relative;
    top: auto;
    padding-bottom: 40px;
  }

  .content-card {
    scroll-margin-top: 60px;
  }

  .designer-card__img {
    aspect-ratio: 332/229;
  }

  .designer-card__img img {
    -o-object-position: top;
    object-position: top;
  }

  .designer-card .designer-card__text {
    padding-top: 16px;
  }

  .designer-card .font-16 {
    font-size: 12px;
  }

  .designer-card .font-18 {
    font-size: 12px;
  }

  .company-contacts.company-contacts-row .company-contacts__group .h-32 {
    font-size: 18px;
  }

  .company-contacts.company-contacts-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    font-size: 13px;
  }

  .contact-card .txt-primary {
    font-size: 14px;
  }

  .popup-wrapper .popup-body .popup-close {
    top: 20px;
    right: 20px;
  }

  .popup-wrapper .popup-body {
    align-self: center;
  }

  .popup-wrapper.popup-big-form .popup-body {
    width: 100%;
    max-width: 890px;
  }

  .popup-wrapper .feedback-content {
    padding-top: 60px;
  }

  .start-page a {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 767px) {
  .container.container-percent {
    width: 100%;
  }

  .h-54 {
    font-size: 24px;
  }

  .h-44 {
    font-size: 22px;
  }

  .h-32 {
    font-size: 22px;
  }

  .semi-24 {
    font-size: 18px;
  }

  .font-20 {
    font-size: 13px;
  }

  .custom-text img {
    aspect-ratio: 370/240;
  }

  .custom-text figure img,
  .custom-text figure video,
  .custom-text figure iframe {
    aspect-ratio: 370/240;
  }

  .custom-text td {
    font-weight: 600;
  }

  .mb-60 {
    margin-bottom: 40px;
  }

  .mb-80 {
    margin-bottom: 40px;
  }

  .mt-80 {
    margin-top: 40px;
  }

  .pb-80 {
    padding-bottom: 40px;
  }

  .pb-100 {
    padding-bottom: 60px;
  }

  .btn-center-mobile {
    justify-content: center;
  }

  .mobile-large {
    margin-left: -10px;
    margin-right: -10px;
  }

  .sidebar-grid {
    flex-direction: column;
  }

  .sidebar-grid .sidebar,
  .sidebar-grid .sidebar-grid-main {
    width: 100%;
  }

  .btn-primary,
  .btn-white,
  .btn-outline,
  .btn,
  .btn-transparent {
    height: 40px;
    font-size: 13px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .btn-transparent {
    font-size: 16px;
  }

  .label-txt {
    font-size: 12px;
  }

  .form-item {
    margin-bottom: 8px;
  }

  .form-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    margin-top: 24px;
  }

  .form-footer .w-auto {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }

  .form-footer.d-flex {
    flex-direction: column;
    row-gap: 20px;
  }

  .form-label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-item .error {
    font-size: 12px;
    margin-top: 4px;
  }

  .feedback-media .form-item .error {
    font-size: 12px;
  }

  .checkbox-item .checkbox-label {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .radio-item .radio-label {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .page-form .form-agree .checkbox-name {
    font-size: 11px;
  }

  .page-form .form-footer {
    row-gap: 20px;
  }

  .page-form .form-content {
    padding: 80px 16px;
  }

  .message-chips {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero.hero-inner {
    align-items: center;
  }

  .card-portfolio .card-overlay-media {
    display: block;
  }

  .card-overlay-text {
    gap: 4px;
  }

  .card-overlay .btn-square {
    width: 34px;
    height: 34px;
  }

  .company-intro__text p {
    font-size: 14px;
  }

  .company-intro__media {
    border-radius: 4px;
  }

  .intro-inner .company-intro__stats {
    grid-template-columns: 1fr;
  }

  .company-intro__stat-value {
    font-size: 64px;
  }

  .company-intro__stat-text {
    font-size: 13px;
  }

  .company-intro__media .company-intro__stat-text {
    font-size: 12px;
  }

  .company-intro__stat-name {
    font-size: 16px;
    margin-top: 8px;
  }

  .company-intro__img {
    margin-top: 8px;
  }

  .company-intro__media {
    border-radius: 4px;
    overflow: hidden;
  }

  .company-intro__media .company-intro__stat-value {
    font-size: 20px;
    letter-spacing: 0.01em;
  }

  .company-intro__stats {
    grid-template-columns: 1fr 1fr;
  }

  .company-intro__stat:last-child {
    grid-column: 1/-1;
  }

  .company-intro__title {
    font-size: 32px;
  }

  .company-intro__top {
    row-gap: 8px;
  }

  .feedback-content {
    width: 100%;
    min-height: 480px;
    aspect-ratio: unset;
  }

  .feedback-content .h-32 {
    font-size: 20px;
  }

  .feedback-content .form-wrapper {
    width: 100%;
  }

  .feedback-content .form-wrapper .form-agree .checkbox-name {
    font-size: 11px;
  }

  .feedback-content .form-wrapper .form-footer {
    flex-direction: column-reverse;
  }

  .feedback-content .form-wrapper .form-footer .btn-primary {
    min-width: 210px;
  }

  .team-card .font-16 {
    font-size: 12px;
  }

  .team-gallery-wrapper .container {
    padding-inline: 16px;
  }

  .team-gallery .team-gallery-item.overlay-full:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  }

  .team-gallery {
    display: flex;
    width: calc(50% + 50vw);
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .team-gallery::-webkit-scrollbar {
    display: none;
  }

  .team-gallery {
    grid-template-rows: unset;
  }

  .team-gallery .team-gallery-item {
    flex-shrink: 0;
  }

  .team-gallery .team-gallery-item:first-child,
  .team-gallery .team-gallery-item:last-child {
    grid-row: unset;
  }

  .team-gallery .team-gallery-item:first-child img,
  .team-gallery .team-gallery-item img {
    aspect-ratio: unset;
    width: 454px !important;
    height: 320px;
  }

  .benefit-card .svg-mark {
    width: 32px;
    height: 32px;
  }

  .benefit-card .font-16 {
    font-size: 13px;
  }

  .benefits-cards.grid-12 {
    row-gap: 40px;
  }

  .about-intro {
    height: 570px;
  }

  .about-intro .about-intro-content {
    grid-template-columns: 1fr;
  }

  .about-intro .about-intro-content .font-20 {
    line-height: 1.62;
  }

  .footer .company-contacts {
    -moz-column-gap: 30px;
    column-gap: 30px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer .social-block svg {
    color: var(--black);
    align-items: center;
  }

  .footer .hide-mobile {
    display: none !important;
  }

  .footer .hide-desktop {
    display: flex !important;
  }

  .footer-copyright {
    display: flex;
    flex-direction: column;
  }

  .footer-copyright .footer-links {
    margin-left: 0;
  }

  .footer {
    background-color: #fff;
  }

  .footer .company-contacts__group .semi-24,
  .footer .company-contacts__address,
  .footer .company-contacts__group p {
    color: var(--black);
  }

  .footer .company-contacts__address {
    color: var(--grey);
  }

  .footer .chips-item {
    color: var(--red);
    background: rgba(255, 231, 244, 0.5);
  }

  .footer .chips-item:hover {
    background: var(--red);
    color: white;
  }

  .tab-button {
    font-size: 12px;
    border-bottom: 2px solid rgba(92, 92, 92, 0.1);
    padding: 16px 12px;
  }

  .our-services .tab-content.grid-12 {
    gap: 1px;
  }

  .description-row {
    flex-direction: column;
    row-gap: 40px;
  }

  .description-row-left,
  .description-row-right {
    width: 100%;
    height: auto;
  }

  .description-row-left img,
  .description-row-right img {
    height: 370px;
  }

  .description-grid {
    row-gap: 60px;
  }

  .description-row .description-title {
    font-size: 24px;
  }

  .description-row .description-text {
    font-size: 13px;
    line-height: 162%;
  }

  .description-grid .description-row:nth-child(2n) .description-row-right,
  .description-grid .description-row:nth-child(2n) .description-row-left {
    padding-right: 0;
    width: 100%;
  }

  .description-grid .description-row:nth-child(2n) .description-row-right img,
  .description-grid .description-row:nth-child(2n) .description-row-left img {
    aspect-ratio: unset;
  }

  .description-grid .description-row:nth-child(2) {
    flex-direction: column;
  }

  .stage-card {
    min-height: 234px;
  }

  .stage__body {
    row-gap: 8px;
    padding-bottom: 24px;
  }

  .news-card__body {
    padding-left: 10px;
    padding-right: 10px;
  }

  .news-tabs .tab-content {
    row-gap: 24px;
  }

  .single-news-meta {
    flex-direction: column;
    row-gap: 16px;
    align-items: flex-start;
  }

  .single-news-group {
    -moz-column-gap: 16px;
    column-gap: 16px;
    align-self: flex-start;
    margin-left: 0;
  }

  .single-news-info {
    font-size: 12px;
  }

  .qwiz-wrapper {
    padding: 32px 16px;
    padding-bottom: 60px;
  }

  .qwiz-plate {
    padding: 16px;
  }

  .qwiz-plate-next {
    margin-inline: auto;
  }

  .price-card__title {
    font-size: 14px;
    text-transform: uppercase;
  }

  .project-swiper .swiper-slide {
    aspect-ratio: 390/400;
  }

  .single-project-hero.p-block-80 {
    padding-top: 20px;
  }

  .content-card p:not([class]) {
    font-size: 13px;
  }

  .content-card h2:not([class]) {
    font-size: 18px;
  }

  .content-card > img,
  .content-card > video,
  .content-card > iframe,
  .content-card > figure,
  .content-card > picture {
    border-radius: 8px;
    aspect-ratio: 322/240;
  }

  .before-after__slider {
    border-radius: 8px;
  }

  .contacts-map-row {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .contacts-map .map {
    height: 240px;
  }

  .bank-details,
  .map {
    border-radius: 10px;
  }

  .form-content {
    padding: 60px 16px;
  }

  .start-page a {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=main.css.map */
