.accordion__item {
  border: 1px solid transparent;
  border-radius: 0.625rem;
  background: #f7f7f7;
  overflow: hidden;
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.accordion__item._active {
  background: #ffffff;
  border-color: transparent;
}
.accordion__item._active .accordion__chevron {
  transform: rotate(180deg);
}
.accordion__item._active .accordion__body {
  grid-template-rows: 1fr;
}
.accordion__item._active .accordion__header {
  min-height: 0;
}
@media (any-hover: hover) {
  .accordion__item:hover {
    background-color: rgb(239.35, 239.35, 239.35);
  }
}
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: padding 0.5s cubic-bezier(0.33, 1, 0.68, 1), min-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 991.98px) {
  .accordion__header {
    padding: 0.625rem 1.25rem;
    min-height: 5.125rem;
  }
}
.accordion__item._active .accordion__header {
  padding: 1rem 1rem 0;
  min-height: 0;
}
@media (min-width: 991.98px) {
  .accordion__item._active .accordion__header {
    padding: 0.75rem 1.25rem 0;
  }
}
.accordion__question {
  flex: 1 1 auto;
  max-width: 16.625rem;
  color: #000000;
  font-weight: var(--fw-medium);
  font-style: italic;
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  font-size: 1.125rem;
}
@media (min-width: 991.98px) {
  .accordion__question {
    max-width: 34.625rem;
    font-size: var(--fs-faq);
  }
}
.accordion__chevron {
  display: block;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: #000000;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 991.98px) {
  .accordion__chevron {
    width: 2rem;
    height: 2rem;
  }
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.accordion__inner {
  overflow: hidden;
  min-height: 0;
}
.accordion__answer {
  padding: 0 1rem 1rem;
  color: #6f6f6f;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-0.375rem);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), padding-top 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 991.98px) {
  .accordion__answer {
    padding: 0 1.25rem 0.75rem;
    font-size: 1.125rem;
    max-width: 33.375rem;
  }
}
.accordion__answer:empty {
  display: none;
}
.accordion__item._active .accordion__answer {
  padding-top: 0.625rem;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s, 0.12s, 0s;
}
@media (min-width: 991.98px) {
  .accordion__item._active .accordion__answer {
    padding-top: 1.25rem;
  }
}
.accordion__item:not(._active) .accordion__answer {
  transition-delay: 0s, 0s, 0s;
}

@media (prefers-reduced-motion: reduce) {
  .accordion__item, .accordion__header, .accordion__chevron, .accordion__body, .accordion__answer {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .accordion__answer {
    opacity: 1;
    transform: none;
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 767.98px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form__field {
  display: block;
  min-width: 0;
}
.form__control {
  display: block;
  width: 100%;
  min-height: 3.25rem;
  padding: 1rem 0.875rem;
  border: 0.03125rem solid #fff;
  border-radius: 0.625rem;
  background: transparent;
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: -0.02em;
  transition: border-color 0.25s ease, opacity 0.2s ease;
}
@media (min-width: 767.98px) {
  .form__control {
    padding: 1.25rem;
    font-size: 1.125rem;
    min-height: 3.875rem;
  }
}
.form__control::placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-size: inherit;
}
.form__control:focus {
  border-color: #fff;
  border-width: 0.0625rem;
}
.form__control:disabled, .form__control[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.form__control:is(textarea) {
  min-height: 6.875rem;
  resize: none;
}
@media (min-width: 767.98px) {
  .form__control:is(textarea) {
    min-height: 8.5625rem;
  }
}
.form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 1rem 1rem;
  border: 0;
  border-radius: 0.625rem;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}
@media (min-width: 767.98px) {
  .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn) {
    margin-top: 0;
    min-height: 3.75rem;
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) {
  .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn):hover {
    background: #fd8011;
    color: #ffffff;
  }
}
.form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn):active {
  transform: translateY(1px);
}

.form-field {
  display: block;
  width: 100%;
  min-height: 3.25rem;
  padding: 1rem 0.875rem;
  border: 0.03125rem solid #fff;
  border-radius: 0.625rem;
  background: transparent;
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: -0.02em;
  transition: border-color 0.25s ease, opacity 0.2s ease;
}
@media (min-width: 767.98px) {
  .form-field {
    padding: 1.25rem;
    font-size: 1.125rem;
    min-height: 3.875rem;
  }
}
.form-field::placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-size: inherit;
}
.form-field:focus {
  border-color: #fff;
  border-width: 0.0625rem;
}
.form-field:disabled, .form-field[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-field:read-only {
  opacity: 0.72;
  cursor: default;
}

.form-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field__label {
  font-weight: 400;
  color: inherit;
  pointer-events: none;
}

.form-field--focus .form-field__label {
  font-weight: 600;
}

@keyframes cf7-spinner-rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.wpcf7-response-output {
  display: none !important;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25em;
  text-align: left;
  color: #ff0000;
  font-size: 0.75rem;
  line-height: 1.3;
}

.wpcf7-not-valid {
  border-color: #ff0000 !important;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-spinner {
  display: none;
}
.wpcf7-form label.form__submit:not(.btn),
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 1rem 1rem;
  border: 0;
  border-radius: 0.625rem;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}
@media (min-width: 767.98px) {
  .wpcf7-form label.form__submit:not(.btn),
  .wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn) {
    margin-top: 0;
    min-height: 3.75rem;
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) {
  .wpcf7-form label.form__submit:not(.btn):hover,
  .wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn):hover {
    background: #fd8011;
    color: #ffffff;
  }
}
.wpcf7-form label.form__submit:not(.btn):active,
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn):active {
  transform: translateY(1px);
}
.wpcf7-form label.form__submit:not(.btn),
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn) {
  position: relative;
  margin-inline: auto;
}
.wpcf7-form label.form__submit:not(.btn):has(input:disabled),
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn):has(input:disabled) {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 1;
  background: #f3c49a;
  box-shadow: none;
}
.wpcf7-form label.form__submit:not(.btn):has(input:disabled) .btn__arrow,
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn):has(input:disabled) .btn__arrow {
  opacity: 0.55;
}
.wpcf7-form label.form__submit:not(.btn) .wpcf7-form-control-wrap:has(.wpcf7-submit),
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn) .wpcf7-form-control-wrap:has(.wpcf7-submit) {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.wpcf7-form label.form__submit:not(.btn) .wpcf7-submit,
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn) .wpcf7-submit {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  color: inherit;
  font: inherit;
  font-weight: 500;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.wpcf7-form label.form__submit:not(.btn) .wpcf7-spinner,
.wpcf7-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn) .wpcf7-spinner {
  display: none;
}
.wpcf7-form label.form__submit.btn,
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap) {
  position: relative;
  cursor: pointer;
}
.wpcf7-form label.form__submit.btn:has(input:disabled),
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap):has(input:disabled) {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 1;
  background: #f3c49a;
  box-shadow: none;
}
.wpcf7-form label.form__submit.btn:has(input:disabled) .btn__arrow,
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap):has(input:disabled) .btn__arrow {
  opacity: 0.55;
}
.wpcf7-form label.form__submit.btn .btn__text,
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap) .btn__text {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.wpcf7-form label.form__submit.btn .wpcf7-form-control-wrap:has(.wpcf7-submit),
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap) .wpcf7-form-control-wrap:has(.wpcf7-submit) {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  width: auto;
}
.wpcf7-form label.form__submit.btn .wpcf7-submit,
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap) .wpcf7-submit {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  width: auto;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: inherit;
  cursor: pointer;
}
.wpcf7-form label.form__submit.btn .wpcf7-spinner,
.wpcf7-form .form__submit.btn:has(.wpcf7-form-control-wrap) .wpcf7-spinner {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 1rem 1rem;
  border: 0;
  border-radius: 0.625rem;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}
@media (min-width: 767.98px) {
  .wpcf7-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
    margin-top: 0;
    min-height: 3.75rem;
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) {
  .wpcf7-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap):hover {
    background: #fd8011;
    color: #ffffff;
  }
}
.wpcf7-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap):active {
  transform: translateY(1px);
}
.wpcf7-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
  position: relative;
}
.wpcf7-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) .wpcf7-submit {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  min-height: inherit;
  padding: 1rem;
  color: inherit;
  font: inherit;
  font-weight: 500;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.wpcf7-form:has(.wpcf7-submit[disabled]) label.form__submit.btn, .wpcf7-form:has(.wpcf7-submit[disabled]) .form__submit.btn:has(.wpcf7-form-control-wrap) {
  cursor: not-allowed;
  opacity: 1;
  background: #f3c49a;
  box-shadow: none;
}
.wpcf7-form:has(.wpcf7-submit[disabled]) label.form__submit.btn .btn__arrow, .wpcf7-form:has(.wpcf7-submit[disabled]) .form__submit.btn:has(.wpcf7-form-control-wrap) .btn__arrow {
  opacity: 0.55;
}
.wpcf7-form:has(.wpcf7-submit[disabled]) label.form__submit:not(.btn), .wpcf7-form:has(.wpcf7-submit[disabled]) .form__submit:has(.wpcf7-form-control-wrap):not(.btn), .wpcf7-form:has(.wpcf7-submit[disabled]) .wpcf7-form-control-wrap:has(.wpcf7-submit) {
  cursor: not-allowed;
  opacity: 1;
  background: #f3c49a;
  box-shadow: none;
}
.wpcf7-form.submitting label.form__submit,
.wpcf7-form.submitting .form__submit:has(.wpcf7-form-control-wrap),
.wpcf7-form.submitting .wpcf7-form-control-wrap:has(.wpcf7-submit) {
  pointer-events: none;
}
.wpcf7-form.submitting label.form__submit .wpcf7-submit,
.wpcf7-form.submitting .form__submit:has(.wpcf7-form-control-wrap) .wpcf7-submit,
.wpcf7-form.submitting .wpcf7-submit {
  color: transparent;
}
.wpcf7-form.submitting label.form__submit.btn .btn__arrow,
.wpcf7-form.submitting .form__submit.btn .btn__arrow {
  opacity: 0;
}
.wpcf7-form.submitting label.form__submit::after,
.wpcf7-form.submitting .form__submit:has(.wpcf7-form-control-wrap)::after,
.wpcf7-form.submitting .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.1875rem solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: cf7-spinner-rotation 1s linear infinite;
  z-index: 3;
  color: #fd8011;
}
.wpcf7-form.submitting label.form__submit.btn::after,
.wpcf7-form.submitting .form__submit.btn::after {
  color: #ffffff;
}

.cta-contacts .form {
  gap: 0.5rem;
}
@media (min-width: 991.98px) {
  .cta-contacts .form {
    gap: 0.625rem;
  }
}
.cta-contacts .form__row {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 991.98px) {
  .cta-contacts .form__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.cta-contacts .form__control,
.cta-contacts .form-field {
  min-height: 3rem;
  padding: 0.9375rem 1.25rem;
  border: 0.0625rem solid transparent;
  border-radius: 2.5rem;
  background: #f7f7f7;
  color: #000000;
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}
@media (min-width: 991.98px) {
  .cta-contacts .form__control,
  .cta-contacts .form-field {
    min-height: 3.125rem;
    padding: 0.9375rem 1.25rem;
  }
}
.cta-contacts .form__control::placeholder,
.cta-contacts .form-field::placeholder {
  color: #6f6f6f;
  font-size: 16px;
}
.cta-contacts .form__control:focus,
.cta-contacts .form-field:focus {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.cta-contacts .form__control.wpcf7-not-valid, .cta-contacts .form__control[aria-invalid=true],
.cta-contacts .form-field.wpcf7-not-valid,
.cta-contacts .form-field[aria-invalid=true] {
  border-color: #ff0000;
  box-shadow: none;
}
.cta-contacts .form__control.wpcf7-not-valid:focus, .cta-contacts .form__control[aria-invalid=true]:focus,
.cta-contacts .form-field.wpcf7-not-valid:focus,
.cta-contacts .form-field[aria-invalid=true]:focus {
  border-color: #ff0000;
  box-shadow: none;
}
.cta-contacts .form__control:is(textarea),
.cta-contacts .form-field:is(textarea) {
  min-height: 9.0625rem;
  border-radius: 1.25rem;
  resize: none;
}
.cta-contacts .form-upload {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-contacts .form-upload__dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  min-height: 10.3125rem;
  padding: 1.25rem;
  border: 1px dashed #6f6f6f;
  border-radius: 1.25rem;
  background: #f7f7f7;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .cta-contacts .form-upload__dropzone:hover {
    border-color: #fd8011;
    background: rgba(253, 128, 17, 0.04);
    box-shadow: inset 0 0 0 1px rgba(253, 128, 17, 0.12);
  }
  .cta-contacts .form-upload__dropzone:hover .form-upload__icon {
    opacity: 0.85;
  }
}
.cta-contacts .form-upload__dropzone:focus-within {
  border-color: #fd8011;
  background: rgba(253, 128, 17, 0.04);
  box-shadow: inset 0 0 0 1px rgba(253, 128, 17, 0.12);
}
.cta-contacts .form-upload__dropzone.is-dragover {
  border-color: #fd8011;
  background: rgba(253, 128, 17, 0.06);
  box-shadow: inset 0 0 0 1px rgba(253, 128, 17, 0.16);
}
.cta-contacts .form-upload.is-full .form-upload__dropzone {
  opacity: 0.55;
  cursor: default;
}
@media (any-hover: hover) {
  .cta-contacts .form-upload.is-full .form-upload__dropzone:hover {
    border-color: #6f6f6f;
    background: #f7f7f7;
    box-shadow: none;
  }
  .cta-contacts .form-upload.is-full .form-upload__dropzone:hover .form-upload__icon {
    opacity: 1;
  }
}
.cta-contacts .form-upload__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.cta-contacts .form-upload__icon-svg {
  display: block;
  width: 3.0625rem;
  height: 3.0625rem;
}
@media (min-width: 991.98px) {
  .cta-contacts .form-upload__icon-svg {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}
.cta-contacts .form-upload__title {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: #000000;
}
.cta-contacts .form-upload__hint {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: #6f6f6f;
}
.cta-contacts .form-upload__dropzone .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.cta-contacts .form-upload__dropzone .wpcf7-form-control-wrap input[type=file] {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.cta-contacts .form-upload.is-full .form-upload__dropzone .wpcf7-form-control-wrap {
  pointer-events: none;
}
.cta-contacts .form-upload__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  gap: 0.625rem;
  width: 100%;
  padding: 0.375rem 0.375rem 0 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.cta-contacts .form-upload__list[hidden] {
  display: none;
}
.cta-contacts .form-upload__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.cta-contacts .form-upload__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cta-contacts .form-upload__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-contacts .form-upload__thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #6f6f6f;
}
.cta-contacts .form-upload__thumb-placeholder svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}
.cta-contacts .form-upload__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #6f6f6f;
}
.cta-contacts .form-upload__remove {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.12);
}
@media (any-hover: hover) {
  .cta-contacts .form-upload__remove:hover {
    color: #fd8011;
  }
}
.cta-contacts .form-upload__remove svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.cta-contacts .form-upload__error {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #c0392b;
  text-align: left;
}
.cta-contacts .form-upload__error[hidden] {
  display: none;
}
.cta-contacts .checkbox {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.9375rem;
}
.cta-contacts .checkbox__box {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.0625rem;
}
.cta-contacts .checkbox__box::before {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #fd8011;
  background-color: transparent;
  background-image: none;
  background-size: 1.5rem 1.5rem;
}
.cta-contacts .checkbox__input:checked + .checkbox__box::before, .cta-contacts .checkbox:has(.checkbox__input:checked) .checkbox__box::before, .cta-contacts .checkbox:has(input[type=checkbox]:checked) .checkbox__box::before {
  border-color: transparent;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.33333 0C3.18406 0 2.08186 0.456546 1.2692 1.2692C0.456546 2.08186 0 3.18406 0 4.33333V19.6667C0 20.8159 0.456546 21.9181 1.2692 22.7308C2.08186 23.5435 3.18406 24 4.33333 24H19.6667C20.8159 24 21.9181 23.5435 22.7308 22.7308C23.5435 21.9181 24 20.8159 24 19.6667V4.33333C24 3.18406 23.5435 2.08186 22.7308 1.2692C21.9181 0.456546 20.8159 0 19.6667 0H4.33333ZM19.04 8.37333L10.0347 17.3693C9.84717 17.5566 9.593 17.6618 9.328 17.6618C9.063 17.6618 8.80883 17.5566 8.62133 17.3693L4.96 13.7067C4.78336 13.5171 4.6872 13.2664 4.69177 13.0073C4.69634 12.7482 4.80129 12.5011 4.9845 12.3178C5.16772 12.1346 5.4149 12.0297 5.67397 12.0251C5.93304 12.0205 6.18377 12.1167 6.37333 12.2933L9.32933 15.248L17.6267 6.95867C17.7196 6.86587 17.83 6.79229 17.9514 6.74213C18.0728 6.69197 18.2029 6.66622 18.3343 6.66635C18.4656 6.66647 18.5957 6.69247 18.717 6.74285C18.8383 6.79324 18.9485 6.86702 19.0413 6.96C19.1341 7.05298 19.2077 7.16332 19.2579 7.28473C19.308 7.40614 19.3338 7.53625 19.3337 7.66761C19.3335 7.79897 19.3075 7.92903 19.2571 8.05034C19.2068 8.17166 19.133 8.28187 19.04 8.37467' fill='%23FD8011'/%3E%3C/svg%3E");
  background-size: 1.5rem 1.5rem;
}
.cta-contacts .checkbox__text {
  min-height: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  color: #000000;
}
.cta-contacts .checkbox__text a {
  color: #fd8011;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .cta-contacts .checkbox__text,
  .cta-contacts .checkbox .wpcf7-list-item-label:not(:empty) {
    font-size: var(--fs-faq);
    font-weight: var(--fw-regular);
  }
}
.cta-contacts .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn),
.cta-contacts .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
  min-height: 2.5rem;
  padding: 0.75rem 2.1875rem;
  border-radius: 2.5rem;
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 0.375rem 0.1875rem rgba(253, 128, 17, 0.2);
  text-transform: none;
  letter-spacing: normal;
  font-size: var(--fs-btn);
  font-weight: var(--fw-medium);
  width: 100%;
}
@media (min-width: 991.98px) {
  .cta-contacts .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn),
  .cta-contacts .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
    min-height: 4.3125rem;
    padding: 1.25rem 2.1875rem;
    width: auto;
  }
}
@media (any-hover: hover) {
  .cta-contacts .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn):hover,
  .cta-contacts .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap):hover {
    background: var(--color-accent-hover);
  }
}

.cta-form {
  padding: 0 0 3rem;
}
@media (min-width: 991.98px) {
  .cta-form {
    padding: 0 0 4.5rem;
  }
}
.cta-form__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0625rem;
  padding: 1.0625rem 1rem;
  border-radius: 1rem;
  background: #f7f7f7;
}
@media (min-width: 991.98px) {
  .cta-form__box {
    gap: 2.625rem;
    padding: 2.625rem 2.5rem;
    border-radius: 2.5rem;
  }
}
.cta-form__title {
  margin: 0;
  max-width: 43.125rem;
  text-align: center;
  color: #000000;
}
@media (max-width: 767.98px) {
  .cta-form__title {
    font-size: 1.25rem;
  }
}
.cta-form__body {
  width: 100%;
  max-width: 43.125rem;
}
.cta-form .form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 991.98px) {
  .cta-form .form {
    gap: 1.5rem;
  }
}
.cta-form .form__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #ffffff;
}
@media (min-width: 991.98px) {
  .cta-form .form__card {
    gap: 1.25rem;
    padding: 2.5rem;
    border-radius: 2.5rem;
  }
}
.cta-form .form__row {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 991.98px) {
  .cta-form .form__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.cta-form .form__control,
.cta-form .form-field {
  min-height: 3rem;
  padding: 0.875rem 1rem;
  border: 0.0625rem solid transparent;
  border-radius: 1rem;
  background: #f7f7f7;
  color: #000000;
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}
@media (min-width: 991.98px) {
  .cta-form .form__control,
  .cta-form .form-field {
    min-height: 3.125rem;
    padding: 0.9375rem 1.25rem;
    border-radius: 2.5rem;
  }
}
.cta-form .form__control::placeholder,
.cta-form .form-field::placeholder {
  color: #6f6f6f;
  font-size: 16px;
}
.cta-form .form__control:focus,
.cta-form .form-field:focus {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.cta-form .form__control.wpcf7-not-valid, .cta-form .form__control[aria-invalid=true],
.cta-form .form-field.wpcf7-not-valid,
.cta-form .form-field[aria-invalid=true] {
  border-color: #ff0000;
  box-shadow: none;
}
.cta-form .form__control.wpcf7-not-valid:focus, .cta-form .form__control[aria-invalid=true]:focus,
.cta-form .form-field.wpcf7-not-valid:focus,
.cta-form .form-field[aria-invalid=true]:focus {
  border-color: #ff0000;
  box-shadow: none;
}
.cta-form .form__control:is(textarea),
.cta-form .form-field:is(textarea) {
  min-height: 3.6875rem;
  border-radius: 0.5rem;
  resize: none;
}
@media (min-width: 991.98px) {
  .cta-form .form__control:is(textarea),
  .cta-form .form-field:is(textarea) {
    min-height: 9.0625rem;
    border-radius: 1.25rem;
  }
}
.cta-form .checkbox {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.9375rem;
}
.cta-form .checkbox__box {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.0625rem;
}
.cta-form .checkbox__box::before {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #fd8011;
  background-color: transparent;
  background-image: none;
  background-size: 1.5rem 1.5rem;
}
.cta-form .checkbox__input:checked + .checkbox__box::before, .cta-form .checkbox:has(.checkbox__input:checked) .checkbox__box::before, .cta-form .checkbox:has(input[type=checkbox]:checked) .checkbox__box::before {
  border-color: transparent;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.33333 0C3.18406 0 2.08186 0.456546 1.2692 1.2692C0.456546 2.08186 0 3.18406 0 4.33333V19.6667C0 20.8159 0.456546 21.9181 1.2692 22.7308C2.08186 23.5435 3.18406 24 4.33333 24H19.6667C20.8159 24 21.9181 23.5435 22.7308 22.7308C23.5435 21.9181 24 20.8159 24 19.6667V4.33333C24 3.18406 23.5435 2.08186 22.7308 1.2692C21.9181 0.456546 20.8159 0 19.6667 0H4.33333ZM19.04 8.37333L10.0347 17.3693C9.84717 17.5566 9.593 17.6618 9.328 17.6618C9.063 17.6618 8.80883 17.5566 8.62133 17.3693L4.96 13.7067C4.78336 13.5171 4.6872 13.2664 4.69177 13.0073C4.69634 12.7482 4.80129 12.5011 4.9845 12.3178C5.16772 12.1346 5.4149 12.0297 5.67397 12.0251C5.93304 12.0205 6.18377 12.1167 6.37333 12.2933L9.32933 15.248L17.6267 6.95867C17.7196 6.86587 17.83 6.79229 17.9514 6.74213C18.0728 6.69197 18.2029 6.66622 18.3343 6.66635C18.4656 6.66647 18.5957 6.69247 18.717 6.74285C18.8383 6.79324 18.9485 6.86702 19.0413 6.96C19.1341 7.05298 19.2077 7.16332 19.2579 7.28473C19.308 7.40614 19.3338 7.53625 19.3337 7.66761C19.3335 7.79897 19.3075 7.92903 19.2571 8.05034C19.2068 8.17166 19.133 8.28187 19.04 8.37467' fill='%23FD8011'/%3E%3C/svg%3E");
  background-size: 1.5rem 1.5rem;
}
.cta-form .checkbox__text {
  min-height: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  color: #000000;
}
.cta-form .checkbox__text a {
  color: #fd8011;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .cta-form .checkbox__text,
  .cta-form .checkbox .wpcf7-list-item-label:not(:empty) {
    font-size: var(--fs-faq);
    font-weight: var(--fw-regular);
  }
}
.cta-form .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn),
.cta-form label.form__submit:not(.btn),
.cta-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn),
.cta-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
  min-height: 3rem;
  padding: 0.625rem 1rem;
  border-radius: 3.25rem;
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 0.375rem 0.1875rem rgba(253, 128, 17, 0.2);
  text-transform: none;
  letter-spacing: normal;
  font-size: var(--fs-btn);
  font-weight: var(--fw-medium);
  width: 100%;
}
@media (min-width: 991.98px) {
  .cta-form .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn),
  .cta-form label.form__submit:not(.btn),
  .cta-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn),
  .cta-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap) {
    min-height: 4.375rem;
    padding: 0.9375rem 2.5rem;
    border-radius: 2.5rem;
  }
}
@media (any-hover: hover) {
  .cta-form .form__submit:not(.wpcf7-submit):not(:has(.wpcf7-form-control-wrap)):not(.btn):hover,
  .cta-form label.form__submit:not(.btn):hover,
  .cta-form .form__submit:has(.wpcf7-form-control-wrap):not(.btn):hover,
  .cta-form .wpcf7-form-control-wrap:has(.wpcf7-submit):not(label.form__submit .wpcf7-form-control-wrap):not(.form__submit .wpcf7-form-control-wrap):hover {
    background: var(--color-accent-hover);
  }
}
.cta-form label.form__submit.btn,
.cta-form .form__submit.btn {
  width: 100%;
}

.home-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-arrow__icon {
  display: block;
  width: 3.625rem;
  height: 3.625rem;
}

.section-head {
  margin-bottom: 2rem;
}
.section-head--row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 991.98px) {
  .section-head--row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.section-head__title {
  color: #000;
  font-weight: 500;
}
.section-head__more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0.625rem 0.625rem 2.5rem;
  border-radius: 3.875rem;
  background: #f7f7f7;
  color: #000000;
  transition: background-color 0.25s ease;
}
@media (any-hover: hover) {
  .section-head__more:hover {
    background: #fff;
  }
}
.section-head__more-text {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
}

.messenger-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
  gap: 0.75rem;
}
@media (min-width: 991.98px) {
  .messenger-links {
    gap: 1rem;
  }
}
.messenger-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  min-height: 3.125rem;
  padding: 0 1.25rem;
  border-radius: 3.875rem;
  background: #fff;
  color: #000000;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: box-shadow 0.25s ease;
}
.messenger-links__item svg {
  flex-shrink: 0;
}
.messenger-links__item--telegram svg {
  width: 1rem;
  height: 0.875rem;
}
.messenger-links__item--whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
}
.messenger-links__item--max {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #44ccff 0%, #5533ee 66%, #9933dd 100%);
  color: #ffffff;
}
.messenger-links__item--max::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}
.messenger-links__item--max > * {
  position: relative;
  z-index: 1;
}
.messenger-links__item--max svg {
  width: 1.25rem;
  height: 1.25rem;
}
@media (any-hover: hover) {
  .messenger-links__item--max:hover:not(.is-disabled) {
    box-shadow: none;
    opacity: 1;
  }
  .messenger-links__item--max:hover:not(.is-disabled)::before {
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .messenger-links__item:hover:not(.messenger-links__item--max) {
    box-shadow: 0 0.5rem 1.5rem rgba(253, 128, 17, 0.12);
  }
}

.main--home .visually-hidden, .main--home .wpcf7-form-control-wrap:has(.visually-hidden) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden, .wpcf7-form-control-wrap:has(.visually-hidden) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 1rem 0.9375rem 1.875rem;
}
@media (min-width: 575.98px) {
  .hero {
    padding: 1.25rem 0.9375rem 2.5rem;
  }
}
@media (min-width: 991.98px) {
  .hero {
    padding: 1.875rem 1.875rem 3.75rem;
  }
}
.hero__wrapper {
  max-width: 86.25rem;
  padding: 10.5rem 0.5rem 0rem;
  background: #f7f7f7;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media (min-width: 991.98px) {
  .hero__wrapper {
    border-radius: 2.5rem;
    margin: 0 -2rem;
    padding: 13.75rem 1.875rem 3.125rem;
  }
}
@media (min-width: 1199.98px) {
  .hero__wrapper {
    padding: 13.75rem 1.875rem 7.25rem;
  }
}
@media (min-width: 1399.98px) {
  .hero__wrapper {
    margin: 0 auto;
  }
}
.hero__promo {
  display: none;
}
@media (min-width: 991.98px) {
  .hero__promo {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 2.5rem;
    max-width: 64.375rem;
    margin: 0 auto;
    padding: 0;
    background: #000;
    display: flex;
    margin-bottom: 3.25rem;
    overflow: hidden;
  }
}
.hero__promo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-width: 0;
}
.hero__promo-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.hero__promo-prev.swiper-button-prev, .hero__promo-prev.swiper-button-next, .hero__promo-next.swiper-button-prev, .hero__promo-next.swiper-button-next {
  position: static;
  transform: none;
  margin: 0;
  padding: 0.3125rem;
  width: 1.4375rem;
  height: 1.4375rem;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7f7f7;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.hero__promo-prev.swiper-button-prev .swiper-navigation-icon, .hero__promo-prev.swiper-button-next .swiper-navigation-icon, .hero__promo-next.swiper-button-prev .swiper-navigation-icon, .hero__promo-next.swiper-button-next .swiper-navigation-icon {
  display: none;
}
.hero__promo-prev.swiper-button-prev.swiper-button-disabled, .hero__promo-prev.swiper-button-next.swiper-button-disabled, .hero__promo-next.swiper-button-prev.swiper-button-disabled, .hero__promo-next.swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
@media (any-hover: hover) {
  .hero__promo-prev.swiper-button-prev:not(.swiper-button-disabled):hover, .hero__promo-prev.swiper-button-next:not(.swiper-button-disabled):hover, .hero__promo-next.swiper-button-prev:not(.swiper-button-disabled):hover, .hero__promo-next.swiper-button-next:not(.swiper-button-disabled):hover {
    background: #efefef;
  }
}
.hero__promo-control-icon {
  display: block;
  width: 0.4375rem;
  height: 0.6875rem;
}
.hero__promo-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.625rem;
  height: auto;
}
@media (min-width: 991.98px) {
  .hero__promo-slide {
    padding: 1.94rem 3.75rem;
    background-color: #000;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.hero__promo-title {
  max-width: 22.5rem;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h2);
  color: #ffffff;
  line-height: var(--lh-heading);
}
.hero__promo-btn {
  min-width: 9.25rem;
}
.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 53.125rem;
  margin: 0 auto;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 991.98px) {
  .hero__main {
    gap: 1.25rem;
  }
}
.hero__title {
  width: 100%;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h1);
  color: #000000;
  line-height: var(--lh-heading);
}
.hero__text {
  max-width: 45.125rem;
  color: #6f6f6f;
  font-size: var(--fs-hero-text);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 0.55rem 0 0;
  gap: 0.625rem;
  width: 100%;
}
@media (min-width: 575.98px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
    margin: 0;
  }
}
.hero__btn {
  width: 100%;
}
@media (min-width: 575.98px) {
  .hero__btn {
    width: auto;
    min-width: 11.8125rem;
  }
}
.hero__btn-secondary {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
}
@media (min-width: 575.98px) {
  .hero__btn-secondary {
    width: auto;
    min-height: 2.9375rem;
    padding: 0.9375rem 1.25rem;
  }
}
.hero__image {
  margin-top: 3rem;
  margin-inline: -0.5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 991.98px) {
  .hero__image {
    display: none;
  }
}

.color-grey {
  opacity: 0.55;
}

.color-accent {
  color: #fd8011;
}

.services-teaser {
  padding: 2.5rem 0;
}
@media (max-width: 767.98px) {
  .services-teaser__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .services-teaser__head {
    display: contents;
  }
}
@media (max-width: 767.98px) {
  .services-teaser__title {
    order: 1;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(28px, 1.8518518519vw + 21.3333333333px, 48px);
  }
}
@media (max-width: 767.98px) {
  .services-teaser__more {
    order: 3;
    width: 100%;
  }
}
.services-teaser__slider {
  position: relative;
}
@media (max-width: 767.98px) {
  .services-teaser__slider {
    order: 2;
  }
}
@media (max-width: 767.98px) {
  .services-teaser__slider .swiper {
    overflow: visible;
  }
}
.services-teaser__grid {
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .services-teaser__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    transform: none !important;
  }
}
.services-teaser__slide {
  height: auto;
}
@media (max-width: 767.98px) {
  .services-teaser__slide {
    width: auto !important;
    margin: 0 !important;
  }
}
.services-teaser__prev, .services-teaser__next {
  --swiper-navigation-size: 3.47825rem;
  background: #f7f7f7;
  color: #000;
  border-radius: 50%;
  padding: 1rem;
  --swiper-navigation-sides-offset: -76px;
  transition: background-color 0.3s ease;
}
@media (max-width: 767.98px) {
  .services-teaser__prev, .services-teaser__next {
    display: none;
  }
}
@media (any-hover: hover) {
  .services-teaser__prev:hover, .services-teaser__next:hover {
    background-color: rgb(221.5, 221.5, 221.5);
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 12.5rem;
  border-radius: 0.625rem;
  background: #ffffff;
  background-image: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 767.98px) {
  .service-card {
    min-height: 27.6875rem;
    border-radius: 2.5rem;
  }
}
@media (min-width: 767.98px) {
  .service-card.swiper-slide {
    width: calc(50% - 0.375rem);
  }
  .service-card.swiper-slide:not(:last-child) {
    margin-right: 0.375rem;
  }
}
@media (min-width: 1199.98px) {
  .service-card.swiper-slide {
    width: calc(33.333% - 0.75rem);
  }
  .service-card.swiper-slide:not(:last-child) {
    margin-right: 1.25rem;
  }
}
@media (any-hover: hover) {
  .service-card:hover {
    background-color: rgb(242.25, 242.25, 242.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0.25rem 1.5rem rgba(0, 0, 0, 0.05);
  }
  .service-card:hover .service-card__img {
    transform: scale(1.04);
  }
}
.service-card--has-media {
  min-height: 0;
}
@media (min-width: 767.98px) {
  .service-card--has-media {
    min-height: 0;
  }
}
.service-card--has-media .service-card__inner {
  min-height: 0;
}
@media (min-width: 767.98px) {
  .service-card--has-media .service-card__inner {
    min-height: 0;
    padding: 1.5rem 1.75rem 1.75rem;
  }
}
.service-card__media {
  position: relative;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(253, 128, 17, 0.12) 0%, transparent 55%), repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 0.125rem, transparent 0.125rem, transparent 0.625rem), #f7f7f7;
}
.service-card__media--empty {
  pointer-events: none;
}
.service-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .service-card__img {
    transition: none;
  }
}
.service-card__inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 12.5rem;
  padding: 0.75rem;
}
@media (min-width: 767.98px) {
  .service-card__inner {
    min-height: 27.6875rem;
    padding: 2.5rem;
  }
}
.service-card__head {
  padding-bottom: 0.625rem;
  background: linear-gradient(90deg, rgba(111, 111, 111, 0.26) 0%, rgba(111, 111, 111, 0.26) 50%, transparent 50%, transparent 100%) 0 bottom/0.75rem 0.0625rem repeat-x;
}
@media (min-width: 767.98px) {
  .service-card__head {
    padding-bottom: 1.25rem;
  }
}
.service-card__title {
  display: block;
  margin: 0 0 0.3125rem;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-card-title);
  line-height: var(--lh-heading);
  color: #000000;
  transition: color 0.2s ease;
}
@media (min-width: 767.98px) {
  .service-card__title {
    margin-bottom: 0.625rem;
  }
}
@media (any-hover: hover) {
  .service-card__title:hover {
    color: #fd8011;
  }
}
.service-card__price {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-price);
  color: #000000;
}
.service-card__price small {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  color: #6f6f6f;
}
.service-card__excerpt {
  margin: 0.625rem 0 0.375rem;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: #6f6f6f;
}
@media (min-width: 767.98px) {
  .service-card__excerpt {
    margin: 1.25rem 0 0.75rem;
  }
}
.service-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
}
@media (min-width: 767.98px) {
  .service-card__labels {
    margin-bottom: 1.25rem;
  }
}
.service-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  padding: 0.3125rem 0.625rem;
  border-radius: 3.125rem;
  background: #f7f7f7;
  color: #261c13;
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
}
@media (min-width: 767.98px) {
  .service-card__label {
    justify-content: center;
    padding: 0.625rem 1.25rem;
    text-align: center;
    overflow-wrap: normal;
    white-space: nowrap;
  }
}
.service-card__link {
  width: 100%;
  margin-top: auto;
  min-height: 2.75rem;
  border: 1px solid #e8e8e8;
}
@media (max-width: 767.98px) {
  .service-card__link {
    min-height: 2.75rem;
    padding: 0.375rem 0.375rem 0.375rem 0.875rem;
    border-radius: 3.25rem;
    gap: 0.5rem;
  }
  .service-card__link .btn__arrow {
    width: 1.75rem;
    height: 1.75rem;
  }
  .service-card__link .btn__arrow .btn__arrow-icon {
    width: 0.6875rem;
    height: 0.5rem;
  }
}
.service-card--grey {
  background: #f7f7f7;
  background-image: none;
}
.service-card--grey .service-card__label {
  background: #ffffff;
}
.service-card--grey .service-card__link {
  background: #ffffff;
}
@media (any-hover: hover) {
  .service-card--grey .service-card__link:hover:not(:disabled):not([aria-disabled=true]) {
    background: #ffffff;
  }
}

.portfolio-teaser {
  padding: 1rem 0.9375rem 1.875rem;
}
@media (min-width: 575.98px) {
  .portfolio-teaser {
    padding: 1.25rem 0.9375rem 2.5rem;
  }
}
@media (min-width: 991.98px) {
  .portfolio-teaser {
    padding: 1.875rem 1.875rem 3.75rem;
  }
}
.portfolio-teaser__wrapper {
  max-width: 86.25rem;
  margin-inline: -0.9375rem;
  padding: 2.5rem 1rem;
  background: #f7f7f7;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media (min-width: 991.98px) {
  .portfolio-teaser__wrapper {
    border-radius: 2.5rem;
    margin: 0 -2rem;
    padding: 4.375rem 2.5rem;
  }
}
@media (min-width: 1399.98px) {
  .portfolio-teaser__wrapper {
    margin: 0 auto;
  }
}
.portfolio-teaser__container {
  position: relative;
  max-width: 77.5rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .portfolio-teaser__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}
.portfolio-teaser__head {
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .portfolio-teaser__head {
    display: contents;
    margin-bottom: 0;
  }
}
@media (min-width: 991.98px) {
  .portfolio-teaser__head {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .portfolio-teaser__title {
    order: 1;
    margin-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .portfolio-teaser__more {
    order: 3;
    width: 100%;
  }
}
.portfolio-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .portfolio-teaser__grid {
    order: 2;
  }
}
@media (min-width: 575.98px) {
  .portfolio-teaser__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.375rem;
  background: #ffffff;
  overflow: hidden;
}
@media (min-width: 991.98px) {
  .portfolio-card {
    border-radius: 2.5rem;
  }
}
.portfolio-card__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 342/139;
  color: inherit;
}
@media (min-width: 991.98px) {
  .portfolio-card__media {
    aspect-ratio: 610/246;
  }
}
.portfolio-card__media--single {
  grid-template-columns: 1fr;
}
.portfolio-card__image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(253, 128, 17, 0.1) 25%, rgba(253, 128, 17, 0.2) 50%, rgba(253, 128, 17, 0.1) 75%);
  background-size: 200% 100%;
  animation: portfolio-card-shimmer 3s infinite linear;
}
.portfolio-card__image._loaded {
  animation: none;
  background: #f7f7f7;
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-card__image {
    animation: none;
    background: #f7f7f7;
  }
}
.portfolio-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.portfolio-card__img._loaded {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-card__img {
    transition: none;
  }
}
.portfolio-card__compare {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #f7f7f7;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: #000000;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 991.98px) {
  .portfolio-card__compare {
    width: 2.5rem;
    height: 2.625rem;
  }
}
.portfolio-card__compare-icon {
  display: block;
  width: 0.375rem;
  height: 0.625rem;
}
@media (min-width: 991.98px) {
  .portfolio-card__compare-icon {
    width: 0.8125rem;
    height: 1.25rem;
  }
}
.portfolio-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.0625rem 1.375rem;
}
@media (min-width: 991.98px) {
  .portfolio-card__body {
    padding: 1.875rem 2.5rem 2.5rem;
  }
}
.portfolio-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}
@media (min-width: 991.98px) {
  .portfolio-card__title {
    margin: 0 0 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.portfolio-card__title a {
  color: inherit;
  transition: color 0.2s ease;
}
.portfolio-card__quote {
  margin: 0 0 0.6875rem;
  font-size: var(--fs-work);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: #6f6f6f;
}
@media (min-width: 991.98px) {
  .portfolio-card__quote {
    margin: 0 0 1.25rem;
  }
}
.portfolio-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.6875rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (min-width: 991.98px) {
  .portfolio-card__footer {
    gap: 1rem;
    padding-top: 1.25rem;
  }
}
.portfolio-card__price {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
}
@media (min-width: 991.98px) {
  .portfolio-card__price {
    font-size: 1.5rem;
  }
}
.portfolio-card__currency {
  font-weight: 400;
  font-size: 1.25rem;
  color: #6f6f6f;
}
@media (min-width: 991.98px) {
  .portfolio-card__currency {
    font-size: 0.875rem;
  }
}
.portfolio-card__link {
  flex-shrink: 0;
  width: 8.75rem;
  min-width: 8.75rem;
  min-height: 2.5625rem;
  padding: 0.5rem 0.25rem 0.5rem 0.875rem;
  background: #f7f7f7;
  color: #000000;
  border: none;
  box-shadow: none;
}
.portfolio-card__link .btn__arrow {
  width: 2.125rem;
  height: 2.125rem;
  background: #fd8011;
  color: #ffffff;
}
@media (min-width: 991.98px) {
  .portfolio-card__link {
    width: auto;
    min-width: 15.5rem;
    min-height: 3.25rem;
    padding: 0.375rem 0.625rem 0.375rem 2.1875rem;
  }
  .portfolio-card__link .btn__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (any-hover: hover) {
  .portfolio-card__link:hover:not(:disabled):not([aria-disabled=true]) {
    background: #efefef;
    box-shadow: none;
  }
}
@media (any-hover: hover) {
  .portfolio-card__media--single:hover .portfolio-card__img {
    transform: scale(1.04);
  }
  .portfolio-card__media:not(.portfolio-card__media--single):hover .portfolio-card__compare {
    background: #fd8011;
    color: #ffffff;
  }
  .portfolio-card__title a:hover {
    color: #fd8011;
  }
}

@keyframes portfolio-card-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.why-us {
  padding: 2.5rem 0;
}
@media (min-width: 991.98px) {
  .why-us {
    padding: 3.75rem 0;
  }
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 991.98px) {
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 6.75rem auto 11.6875rem;
    gap: 1.25rem;
  }
}
.why-us__title {
  grid-column: 1/-1;
  margin-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 991.98px) {
  .why-us__title {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin-bottom: 0;
    text-align: left;
  }
}
.why-us__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  background: #f7f7f7;
  overflow: hidden;
}
@media (min-width: 991.98px) {
  .why-us__card {
    border-radius: 2.5rem;
  }
}
.why-us__card--1 {
  grid-column: 1/-1;
  min-height: 13.3125rem;
}
@media (min-width: 991.98px) {
  .why-us__card--1 {
    grid-column: 1;
    grid-row: 2/4;
    min-height: 40.6875rem;
  }
}
.why-us__card--2 {
  min-height: 17.625rem;
}
@media (min-width: 991.98px) {
  .why-us__card--2 {
    grid-column: 2;
    grid-row: 2;
    min-height: 27.75rem;
  }
}
.why-us__card--3 {
  min-height: 17.625rem;
}
@media (min-width: 991.98px) {
  .why-us__card--3 {
    grid-column: 3;
    grid-row: 1/3;
    min-height: 34.5rem;
  }
}
.why-us__card--4 {
  grid-column: 1/-1;
  min-height: 4.875rem;
}
@media (min-width: 991.98px) {
  .why-us__card--4 {
    grid-column: 2/4;
    grid-row: 3;
    min-height: 11.6875rem;
  }
}
.why-us__card-step {
  display: none;
}
@media (min-width: 991.98px) {
  .why-us__card-step {
    display: block;
    position: absolute;
    top: 1.875rem;
    right: 2.5rem;
    z-index: 2;
    font-size: 0.875rem;
    line-height: 1.2;
    color: #6f6f6f;
    white-space: nowrap;
  }
}
@media (min-width: 991.98px) {
  .why-us__card--accent .why-us__card-step {
    position: static;
    width: 100%;
    text-align: right;
    margin-bottom: 0.625rem;
    color: #b55906;
  }
}
.why-us__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.0625rem 1.0625rem 0.75rem;
}
@media (min-width: 991.98px) {
  .why-us__card-body {
    gap: 0.9375rem;
    padding: 3.5625rem 2.5rem 1.25rem;
  }
}
.why-us__card--accent .why-us__card-body {
  flex: 1 1 auto;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}
@media (min-width: 991.98px) {
  .why-us__card--accent .why-us__card-body {
    align-items: flex-start;
    gap: 6.9375rem;
  }
}
.why-us__card-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: var(--fw-semibold);
  font-size: 16px;
  line-height: var(--lh-heading);
  color: #000000;
}
@media (min-width: 991.98px) {
  .why-us__card-title {
    font-size: 1.875rem;
  }
}
.why-us__card--accent .why-us__card-title {
  flex: 0 1 8rem;
  color: #ffffff;
}
@media (min-width: 991.98px) {
  .why-us__card--accent .why-us__card-title {
    flex: 0 1 19.1875rem;
  }
}
.why-us__card-text {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: #6f6f6f;
}
.why-us__card--accent .why-us__card-text {
  flex: 1 1 10.4375rem;
  color: #ffffff;
}
@media (min-width: 991.98px) {
  .why-us__card--accent .why-us__card-text {
    flex: 0 1 18.1875rem;
  }
}
.why-us__card--media .why-us__card-body {
  flex: 0 0 auto;
}
.why-us__card--accent {
  justify-content: center;
  padding: 1.0625rem;
  background: #fd8011;
  box-shadow: 0 0.375rem 0.1875rem rgba(253, 128, 17, 0.2);
}
@media (min-width: 991.98px) {
  .why-us__card--accent {
    padding: 1.875rem 2.5rem 2.5rem;
  }
}
.why-us__card-media {
  position: relative;
  margin-top: auto;
  overflow: hidden;
}
.why-us__card--1 .why-us__card-media {
  min-height: 8.625rem;
}
@media (min-width: 991.98px) {
  .why-us__card--1 .why-us__card-media {
    min-height: 20.5625rem;
  }
}
.why-us__card--2 .why-us__card-media {
  min-height: 9.0625rem;
}
@media (min-width: 991.98px) {
  .why-us__card--2 .why-us__card-media {
    min-height: 15.4375rem;
  }
}
.why-us__card--3 .why-us__card-media {
  min-height: 6.625rem;
  border-radius: 0 0 1.25rem 1.25rem;
}
@media (min-width: 991.98px) {
  .why-us__card--3 .why-us__card-media {
    min-height: 16.75rem;
    border-radius: 0 0 2.5rem 2.5rem;
  }
}
.why-us__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.why-us__card--1 .why-us__card-img {
  object-position: center bottom;
}

.brands-section {
  padding: 2.5rem 0;
}
@media (min-width: 991.98px) {
  .brands-section {
    padding: 3.75rem 0;
  }
}
.brands-section__container {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 767.98px) {
  .brands-section__container {
    align-items: stretch;
  }
}
@media (min-width: 991.98px) {
  .brands-section__container {
    gap: 3.125rem;
  }
}
.brands-section__head.section-head {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .brands-section__head.section-head {
    display: contents;
  }
}
@media (max-width: 767.98px) {
  .brands-section__title {
    order: 1;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(28px, 1.8518518519vw + 21.3333333333px, 48px);
  }
}
@media (max-width: 767.98px) {
  .brands-section__more {
    order: 3;
    width: 100%;
  }
}
.brands-section--archive {
  padding-top: 3.75rem;
}
@media (min-width: 991.98px) {
  .brands-section--archive {
    padding-top: 5rem;
  }
}
.brands-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .brands-section__grid {
    order: 2;
  }
}
@media (min-width: 575.98px) {
  .brands-section__grid {
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 991.98px) {
  .brands-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brands-section .brand-card,
.service-brands .brand-card {
  height: auto;
  min-height: 0;
  border-radius: 1.25rem;
  background: #f7f7f7;
  overflow: hidden;
}
@media (min-width: 991.98px) {
  .brands-section .brand-card,
  .service-brands .brand-card {
    height: 18.75rem;
    min-height: 18.75rem;
    border-radius: 2.5rem;
  }
}
.brands-section .brand-card__link,
.service-brands .brand-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9375rem;
  height: 100%;
  min-height: 0;
  padding: 1.875rem 0.75rem;
  color: #000000;
  transition: background-color 0.2s ease;
}
@media (min-width: 991.98px) {
  .brands-section .brand-card__link,
  .service-brands .brand-card__link {
    gap: 1.8125rem;
    min-height: 18.75rem;
    padding: 2.5rem 1.25rem 2.375rem;
  }
}
@media (any-hover: hover) {
  .brands-section .brand-card__link:hover,
  .service-brands .brand-card__link:hover {
    background: #efefef;
  }
}
.brands-section .brand-card__media,
.service-brands .brand-card__media {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.3125rem;
  max-height: 5.3125rem;
}
@media (min-width: 991.98px) {
  .brands-section .brand-card__media,
  .service-brands .brand-card__media {
    flex: 1 1 auto;
    height: auto;
    max-height: 10.5625rem;
  }
}
.brands-section .brand-card__logo,
.service-brands .brand-card__logo {
  display: block;
  max-width: 7.3125rem;
  max-height: 5.3125rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 991.98px) {
  .brands-section .brand-card__logo,
  .service-brands .brand-card__logo {
    max-width: 10.625rem;
    max-height: 10.5625rem;
  }
}
.brands-section .brand-card__title,
.service-brands .brand-card__title {
  flex-shrink: 0;
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: var(--fw-medium);
  font-size: var(--fs-tab);
  line-height: var(--lh-heading);
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 991.98px) {
  .brands-section .brand-card__title,
  .service-brands .brand-card__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .main--service .brands-section__title {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #000000;
    text-align: left;
  }
}

.color-accent {
  color: #fd8011;
}

.reviews {
  padding: 1rem 0.9375rem 1.875rem;
}
@media (min-width: 575.98px) {
  .reviews {
    padding: 1.25rem 0.9375rem 2.5rem;
  }
}
@media (min-width: 991.98px) {
  .reviews {
    padding: 1.875rem 1.875rem 3.75rem;
  }
}
@media (max-width: 767.98px) {
  .reviews__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9375rem;
  }
}
.reviews__head {
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .reviews__head {
    display: contents;
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .reviews__title {
    order: 1;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(28px, 1.8518518519vw + 21.3333333333px, 48px);
  }
}
@media (max-width: 767.98px) {
  .reviews__more {
    order: 4;
    width: 100%;
    height: auto;
    min-height: 3.3125rem;
  }
  .reviews__more .btn__text {
    white-space: normal;
    text-align: left;
  }
}
.reviews__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 767.98px) {
  .reviews__tabs {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0;
    width: 100%;
  }
}
.reviews__tab {
  min-width: 11.875rem;
  min-height: 2.8125rem;
  padding: 0.75rem 2.5rem;
  border-radius: 2.5rem;
  background: #ffffff;
  color: #000000;
  font-weight: var(--fw-medium);
  font-size: var(--fs-tab);
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 767.98px) {
  .reviews__tab {
    min-width: 0;
    width: 100%;
    min-height: 2.4375rem;
    padding: 0.625rem 1rem;
    border-radius: 1.875rem;
  }
}
.reviews__tab--yandex {
  background: #fce000;
  color: #000000;
}
.reviews__tab--drive2 {
  background: #c03;
  color: #ffffff;
}
.reviews__tab._active {
  opacity: 1;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}
.reviews__panel {
  display: none;
}
@media (max-width: 767.98px) {
  .reviews__panel {
    order: 3;
    width: 100%;
  }
}
.reviews__panel._active {
  display: block;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 991.98px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.reviews__item {
  min-width: 0;
}
.reviews__card {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  height: 100%;
  padding: 1.375rem;
  border-radius: 1.25rem;
  background: #f7f7f7;
  color: inherit;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
@media (min-width: 991.98px) {
  .reviews__card {
    gap: 1.875rem;
    padding: 2.5rem;
    border-radius: 2.5rem;
  }
}
.reviews__card--link {
  cursor: pointer;
}
@media (any-hover: hover) {
  .reviews__card--link:hover {
    background: #efefef;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.125rem);
  }
}
.reviews__card--link:focus-visible {
  outline: 2px solid #fd8011;
  outline-offset: 0.25rem;
}
.reviews__card-top {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  margin-bottom: auto;
}
@media (min-width: 991.98px) {
  .reviews__card-top {
    gap: 1.25rem;
  }
}
.reviews__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (min-width: 991.98px) {
  .reviews__card-head {
    gap: 1rem;
  }
}
.reviews__author {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  min-width: 0;
}
@media (min-width: 991.98px) {
  .reviews__author {
    gap: 1rem;
  }
}
.reviews__photo {
  flex-shrink: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 991.98px) {
  .reviews__photo {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
.reviews__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}
@media (min-width: 991.98px) {
  .reviews__name-row {
    gap: 0.625rem;
  }
}
.reviews__name {
  font-weight: var(--fw-medium);
  font-size: 0.875rem;
  line-height: var(--lh-heading);
  color: #000000;
}
@media (min-width: 991.98px) {
  .reviews__name {
    font-size: 1rem;
  }
}
.reviews__satisfied {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  color: #60d669;
}
@media (min-width: 991.98px) {
  .reviews__satisfied {
    gap: 0.25rem;
  }
}
.reviews__satisfied-icon {
  flex-shrink: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  color: #60d669;
}
@media (min-width: 991.98px) {
  .reviews__satisfied-icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.reviews__satisfied-text {
  font-size: 0.375rem;
  line-height: 1.32;
}
@media (min-width: 991.98px) {
  .reviews__satisfied-text {
    font-size: 0.625rem;
  }
}
.reviews__date {
  font-size: 0.4375rem;
  line-height: 1.32;
  color: #6f6f6f;
}
@media (min-width: 991.98px) {
  .reviews__date {
    font-size: 0.75rem;
  }
}
.reviews__verified {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1.375rem;
  background: #ffffff;
  font-size: var(--fs-small);
  line-height: var(--lh-heading);
  color: #000000;
}
@media (min-width: 991.98px) {
  .reviews__verified {
    gap: 0.625rem;
    padding: 0.625rem 1.875rem;
    border-radius: 2.5rem;
    font-size: 0.875rem;
  }
}
.reviews__verified-icon {
  flex-shrink: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  color: #fd8011;
}
@media (min-width: 991.98px) {
  .reviews__verified-icon {
    width: auto;
    height: auto;
  }
}
.reviews__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: #2d2d2d;
}
.reviews__story {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 4.5rem;
  padding: 0.6875rem 1.75rem 0.5rem 0.6875rem;
  border-radius: 0.9375rem;
  background: #ffffff;
  overflow: hidden;
}
@media (min-width: 991.98px) {
  .reviews__story {
    min-height: 6.9375rem;
    padding: 1.25rem 3.125rem 0.9375rem 1.25rem;
    border-radius: 1.25rem;
  }
}
.reviews__story-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-width: 10rem;
  padding-right: 1.5rem;
}
@media (min-width: 991.98px) {
  .reviews__story-body {
    gap: 0.625rem;
    max-width: 20rem;
    padding-right: 3.25rem;
  }
}
.reviews__story-label {
  font-size: 0.5rem;
  line-height: 1.32;
  color: #6f6f6f;
}
@media (min-width: 991.98px) {
  .reviews__story-label {
    font-size: 0.75rem;
  }
}
.reviews__story-title {
  display: block;
  font-size: 0.625rem;
  line-height: 1.32;
  color: #000000;
}
@media (min-width: 991.98px) {
  .reviews__story-title {
    font-size: 0.875rem;
  }
}
.reviews__car {
  font-size: 0.5rem;
  line-height: 1.32;
}
@media (min-width: 991.98px) {
  .reviews__car {
    font-size: 0.8125rem;
  }
}
.reviews__car-name {
  color: #000000;
}
.reviews__car-meta {
  color: #6f6f6f;
}
.reviews__story-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8.25rem;
  height: 4.125rem;
  border-radius: 0 0 0.9375rem 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (min-width: 991.98px) {
  .reviews__story-image {
    width: 15rem;
    height: 6.5rem;
    border-radius: 0 0 1.25rem 0;
  }
}
.reviews__story-img {
  height: 100%;
  width: auto;
  max-width: 100%;
}