@charset "UTF-8";
/*
 * Стили всего сайта
 * Стили для профиля в файле profile.scss
 */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  font-family: inherit;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .container-md, .container-sm, .container {
    max-width: 992px;
  }
}
.container-md, .container-sm, .container {
  max-width: 1740px;
}

:root {
  --header-height: 134px;
  --section-paddings: 40px;
  --main-br: var(--wp--preset--border-radius--small, 4px);
  --section-wrapper-padding: clamp(15px, 7vw, 100px);
  --section-wrapper-margin: calc(var(--section-wrapper-padding) * 0.5);
  --section-wrapper-width: calc(100% + (var(--section-wrapper-padding) * 1.6));
  --color-primary: var(--wp--preset--color--accent, #FBCE11);
  --color-black: var(--wp--preset--color--contrast, #161616);
  --color-white: var(--wp--preset--color--base, #FFFFFF);
  --color-gray: var(--wp--preset--color--gray-1, #AAAAAA);
  --color-gray-1: var(--wp--preset--color--gray-2, #F5F5F5);
  --color-border: var(--wp--preset--color--border, #EDEDED);
  --header-fixed: 80px;
}
@media (max-width: 991.98px) {
  :root {
    --header-height: 144px;
    --section-wrapper-padding: 15px;
    --section-paddings: 40px;
    --header-height: 60px;
    --header-fixed: 60px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --section-paddings: 15px;
  }
}

.color-primary {
  color: var(--wp--preset--color--accent, #FBCE11);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: var(--trsn, none);
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

p {
  margin: 0 0 0.67em 0;
}

html {
  min-width: 320px;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

body:not(.wp-admin) {
  margin: 0;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-align: left;
  overflow-x: hidden;
  min-width: 320px;
  position: relative;
  width: 100%;
  height: 100%;
}
body:not(.wp-admin)._scroll-lock > .screen-page:after {
  visibility: visible;
  opacity: 1;
}
body:not(.wp-admin)._scroll-lock {
  overflow: hidden;
}

.img-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.6);
}

.screen-page {
  width: 100%;
  min-height: 100%;
  position: relative;
}
.screen-page::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  background: rgba(var(--color-background), 0.5);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: linear 300ms;
}
.screen-page._lock::after {
  visibility: visible;
  opacity: 1;
}

.link_to_edit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: var(--color-background-button, var(--wp--preset--color--accent, #FBCE11));
  color: var(--color-text-button, var(--wp--preset--color--base, #000));
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 6px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.link_to_edit:hover {
  transform: scale(1.2);
}

.to-top-fixed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.to-top-fixed.fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}
.to-top-fixed.fixed:hover {
  background-color: color-mix(in srgb, var(--color-primary) 80%, #fff);
  transform: scale(1.1);
}

.modal-form.fancybox__content {
  width: 95%;
  margin: 25px 0;
  padding: clamp(20px, 5vw, 50px);
  border-radius: var(--main-br);
  max-width: 1130px;
}
.modal-form.fancybox__content .fancybox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
  cursor: pointer;
  touch-action: manipulation;
  margin: -10px;
  font-size: 24px;
  padding: 10px;
  transition: background-color 0.2s ease;
  border-radius: 50%;
}
.modal-form.fancybox__content .fancybox-close [class*=vuesax-bold-] {
  transform: rotateZ(45deg);
}
.modal-form.fancybox__content .fancybox-close:hover {
  background-color: var(--color-gray-1);
}
.modal-form.fancybox__content .fancybox-close {
  top: 20px;
  right: 20px;
}
.modal-form__subtitle {
  margin-top: 13px;
  color: var(--color-gray, #AAAAAA);
  margin-bottom: clamp(20px, 3vw, 40px);
}
.modal-form__subtitle .js-phone {
  color: var(--black);
}
.modal-form__subtitle .js-change-phone {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.modal-form__heading, .modal-form__title {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: clamp(15px, 3vw, 30px);
}
.modal-form__heading:before, .modal-form__title:before {
  content: "";
  display: block;
  float: right;
  width: 25px;
  height: 25px;
}
.modal-form__heading:after, .modal-form__title:after {
  content: "";
  display: block;
  clear: both;
}
.modal-form__heading span, .modal-form__title span {
  color: var(--color-primary);
}

.cookie-popup {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 80;
  display: none;
  max-width: 1760px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.cookie-popup.is-visible {
  display: block;
}
.cookie-popup__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-white, #fff);
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
@media (max-width: 575.98px) {
  .cookie-popup__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cookie-popup__text {
  color: var(--color-gray, #AAAAAA);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}
.cookie-popup__text a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookie-popup__text a:hover {
  color: var(--color-primary, #FBCE11);
}
.cookie-popup__btn {
  flex-shrink: 0;
}

.bg-loading {
  --bg-loading-1: #F5F8FD;
  --bg-loading-2: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background-image: linear-gradient(60deg, var(--bg-loading-1) 30%, var(--bg-loading-2) 45%, var(--bg-loading-1) 60%);
  background-size: 200% 100%;
  animation: 0.9s bgLoadingAnimation linear infinite;
}

.b-loaded + noscript + .bg-loading,
.b-loaded + .bg-loading {
  display: none;
}

@keyframes bgLoadingAnimation {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -200%;
  }
}
.img-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

main {
  padding-top: var(--header-height);
}
main:has(.hero:first-child) {
  padding-top: 0;
}
main:has(.hero:first-child) .hero__inner {
  padding-top: var(--header-height);
}
main > section:not(:first-child) {
  padding-top: var(--section-paddings);
}
main > section:not(.breadcrumbs) {
  padding-bottom: var(--section-paddings);
}
main > section.breadcrumbs {
  padding-bottom: 20px;
}
main > section.breadcrumbs + section:not(.hero) {
  padding-top: 0;
}

.breadcrumbs {
  color: var(--color-tr);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2em;
}
.breadcrumbs .kama_breadcrumbs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}
.breadcrumbs {
  text-transform: lowercase;
}
.breadcrumbs svg {
  display: inline-block;
}
.breadcrumbs a {
  color: inherit;
  padding: 5px;
  margin: -5px;
  display: block;
}
.breadcrumbs a:hover {
  color: var(--color-text);
}

.form-response:empty {
  display: none;
}
.form-response--error {
  font-weight: 500;
  color: var(--color-error, #df3434);
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.2em;
  display: block;
}
.form-response:not(:empty) {
  position: relative;
  padding: 6px 6px 6px 40px;
  background: linear-gradient(90deg, #ed4f4f 0, #df3434 50.19%);
  color: #fff;
  font-size: 14px;
  border-radius: 12px;
  min-height: 37px;
  margin-top: 10px;
}
.form-response:not(:empty) > div {
  margin-top: 0.2em;
}
.form-response:not(:empty):before {
  content: "";
  background-position: center;
  background-size: contain;
  margin-right: 15px;
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  min-width: 24px;
  width: 24px;
  height: 24px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 8V13' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.9961 16H12.0051' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.form-response:not(:empty).form-response--success {
  background: var(--color-gray);
  color: var(--color-text);
}
.form-response:not(:empty).form-response--success:before {
  background-color: #47A23F;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-image: none;
  mask-image: url("data:image/svg+xml,%3Csvg width='33' height='33' viewBox='0 0 33 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 30.25C24.0625 30.25 30.25 24.0625 30.25 16.5C30.25 8.9375 24.0625 2.75 16.5 2.75C8.9375 2.75 2.75 8.9375 2.75 16.5C2.75 24.0625 8.9375 30.25 16.5 30.25Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.5 16.5L15.0741 21L22 13' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.form-response:not(:empty).form-response--edit {
  background: #30b72e;
  color: #fff;
}
.form-response:not(:empty).form-response--edit:before {
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-image: none;
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6999 19L13.5999 9.90001C14.4999 7.60001 13.9999 4.90001 12.0999 3.00001C10.0999 1.00001 7.09994 0.600012 4.69994 1.70001L8.99994 6.00001L5.99994 9.00001L1.59994 4.70001C0.399939 7.10001 0.899939 10.1 2.89994 12.1C4.79994 14 7.49994 14.5 9.79994 13.6L18.8999 22.7C19.2999 23.1 19.8999 23.1 20.2999 22.7L22.5999 20.4C23.0999 20 23.0999 19.3 22.6999 19Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
}
.form-response__close {
  position: absolute;
  right: 6px;
  top: 6px;
  color: currentColor;
}

@media (min-width: 992px) {
  .section-wrapper {
    margin-left: calc(var(--section-wrapper-margin) * -1);
    margin-right: calc(var(--section-wrapper-margin) * -1);
    padding-left: var(--section-wrapper-margin);
    padding-right: var(--section-wrapper-margin);
    max-width: calc(100% + var(--section-wrapper-margin) * 2);
  }
}

@media (max-width: 991.98px) {
  .hide-md-md {
    display: none !important;
  }
}

.hide-up-lg {
  display: none !important;
}

@media (min-width: 992px) {
  .container {
    padding-left: clamp(15px, 5vw, 70px) !important;
    padding-right: clamp(15px, 5vw, 70px) !important;
  }
}
h1,
.h1 {
  font-size: clamp(24px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  margin-bottom: 0.6em;
}

h2,
.h2,
.content-field-lg h1 {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 0.6em;
}

h3,
.h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 22px;
  font-size: 20px;
}

h4,
.h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h5,
.h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.content-field p,
.content-field li {
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0.01em;
  font-size: 14px;
}
.content-field p:not(:last-child),
.content-field li:not(:last-child) {
  margin-bottom: 1em;
}
.content-field ol,
.content-field ul {
  margin-bottom: 1em;
  padding-left: 1.8em;
}
.content-field ul li {
  list-style: disc;
}
.content-field-lg p,
.content-field-lg li, .content-field-xl p,
.content-field-xl li {
  font-size: clamp(14px, 4vw, 20px);
}

.is-layout-flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.has-medium-font-size {
  font-size: 22px;
  font-size: 18px;
}

.wp-block-button__link {
  text-decoration: none !important;
}

.wp-element-button-parent-btn {
  text-decoration: none !important;
}

.wp-element-button-parent-btn {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 1px;
}

.wp-element-button-parent-btn [class*=vuesax-bold-] {
  padding-right: 19px;
  padding-left: 19px;
  font-weight: normal;
  font-size: 90%;
  padding-top: 0px;
  padding-bottom: 0px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-element-button-parent-btn:hover .wp-element-button {
  background-color: color-mix(in srgb, var(--wp--preset--color--accent) 80%, #fff);
}
.wp-element-button-parent-btn:hover .wp-element-button.wp-element-button-gray {
  background-color: #EAEAEB;
  color: var(--color-black);
}

.wp-element-button.is-style-outline {
  border: 1px solid var(--wp--preset--color--accent);
  background-color: transparent;
  color: inherit;
}

.wp-element-button-gray {
  background-color: var(--color-gray-1);
  color: var(--color-black);
}
.wp-element-button-gray:hover {
  background-color: #EAEAEB;
  color: var(--color-black);
}

header.header--front {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
header.header--front.fixed {
  position: fixed;
  top: var(--admin-bar-height, 0px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 4px 0px 44px 0px rgba(0, 0, 0, 0.0901960784);
  animation: HeaderAnim ease-in-out 0.4s alternate;
}
header.header--front.fixed:after {
  content: "";
  position: absolute;
  bottom: 100%;
  background-color: #fff;
  width: 100%;
  left: 0;
  height: 180%;
}
header.header--front.fixed .header__main {
  height: var(--header-fixed);
}
header.header--white:not(.fixed) {
  background-color: transparent;
  color: #fff;
  --header-description-color: color-mix(in srgb, #fff 50%, transparent);
}

@keyframes HeaderAnim {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0%);
  }
}
.header__main {
  height: var(--header-height);
}
.header__main a {
  text-decoration: none;
}
.header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}
@media (max-width: 575.98px) {
  .header__main-inner {
    gap: 5px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 1vw, 15px);
}
.header__logo-wrap {
  position: relative;
}
.header__logo-wrap img {
  height: clamp(24px, 5vw, 50px);
  width: auto;
}
@media (min-width: 992px) {
  .header__logo-wrap img {
    height: clamp(24px, 3vw, 50px);
  }
}
@media (max-width: 575.98px) {
  .header__main-inner .header__contacts {
    margin-left: auto;
    justify-content: flex-end;
  }
  .header__main-inner .header__contacts .header__contact--phone .header__contact-description,
  .header__main-inner .header__contacts .header__contact--phone .header__contact-value {
    display: none;
  }
  .header__main-inner .header__contacts .header__contact--phone .header__contact-link {
    padding: 6px;
    border-radius: var(--main-br);
    border: 1px solid var(--color-primary);
  }
  .header__main-inner .header__contacts .header__contact--phone .header__contact-link .header__contact-icon {
    transform: translateX(-1px);
  }
  .header__main-inner .header__actions .header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 0 12px;
    height: 32px;
    min-height: 32px;
  }
}
.header__company-name {
  font-weight: 900;
  font-size: clamp(12px, 2.6vw, 30px);
  line-height: 1em;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .header__company-name {
    font-size: clamp(14px, 1.6vw, 30px);
  }
}
.header__company-name span {
  color: var(--color-primary, #FBCE11);
}
.header__company-slogan {
  font-size: clamp(6px, 1vw, 12px);
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (min-width: 992px) {
  .header__company-slogan {
    font-size: clamp(5px, 0.7vw, 12px);
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-grow: 1;
}
.header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.header__contact-icon {
  color: var(--color-primary, #FBCE11);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__contact-link[href^="tel:"] {
  white-space: nowrap;
}
.header__contact-link:hover {
  color: var(--color-primary, #FBCE11);
}
.header__contact-value {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: bold;
  line-height: 1.2em;
}
.header__contact--phone .header__contact-link {
  gap: 5px;
}
.header__contact--phone .header__contact-value {
  font-size: clamp(16px, 2vw, 24px);
}
@media (min-width: 992px) {
  .header__contact--phone .header__contact-value {
    font-size: clamp(14px, 1.8vw, 24px);
  }
}
.header__contact--phone .header__contact-description {
  padding-left: clamp(25px, 2vw, 28px);
}
.header__contact-description {
  font-size: clamp(8px, 1vw, 10px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: var(--header-description-color, var(--wp--preset--color--gray-1, #AAAAAA));
  margin-top: 4px;
}
.header__socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 8px;
}
.header__social:hover {
  color: var(--color-primary, #FBCE11);
}
.header__btn {
  white-space: nowrap;
}
.header__mobile-trigger {
  display: none;
}
@media (max-width: 991.98px) {
  .header__mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__mobile-trigger svg path {
    fill: currentColor;
  }
  .header__mobile-trigger svg:last-child {
    display: none;
  }
  .header__mobile-trigger.toggled svg:first-child {
    display: none;
  }
  .header__mobile-trigger.toggled svg:last-child {
    display: block;
  }
}
@media (min-width: 992px) {
  .header__actions a.header__btn {
    padding: clamp(0.8rem, 1vw, 1rem) clamp(1rem, 2vw, 1.4rem) !important;
  }
}
@media (min-width: 992px) {
  .header__dropdown {
    display: none !important;
  }
}
.header__dropdown {
  --header-socials-border: var(--border);
  --header-logo-black-display: block;
  --header-logo-white-display: none;
  --header-socials-filter: none;
  --header-logo-after-color: none;
  color: #fff;
  --header-description-color: var(--color-gray);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  height: calc(var(--vh, 1vh) * 100 - var(--header-height, 0px) - var(--admin-bar-height, 0px));
  background-color: #fff;
  color: #000;
  top: var(--header-height, 0px);
  width: 0;
  overflow: auto;
  transition: visibility 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.header__dropdown .container {
  flex-grow: 1;
}
.header__dropdown-flex {
  padding: 20px 0;
  padding-bottom: 50px;
  color: var(--black);
  height: 100%;
}
.header__dropdown-flex .header__contacts {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.header__dropdown-flex .header__socials {
  width: 100%;
  flex-grow: 1;
  padding-top: 15px;
}
.header__dropdown-flex .header__social {
  width: 100%;
  border-radius: 12px;
  background-color: var(--color-gray-1);
}
.header__dropdown-flex .header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}
.header__dropdown-flex .header__actions a,
.header__dropdown-flex .header__actions .header__field-wrap {
  display: flex;
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__dropdown.toggled {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  pointer-events: all;
  width: 100%;
  transition: visibility 0.2s ease, opacity 0.2s ease, translate 0.2s ease;
}

@media screen and (max-width: 380px) {
  .header__main-inner .header__actions {
    display: none;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__title {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--wp--preset--color--base);
  max-width: 1040px;
  padding-top: var(--section-paddings);
  padding-bottom: calc(var(--section-paddings) * 2);
}
.hero__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 20px 40px;
  max-width: 881px;
}
@media (max-width: 991.98px) {
  .hero__blocks {
    gap: 10px 20px;
  }
}
.hero__blocks:not(:last-child) {
  margin-bottom: clamp(20px, 3vw, 48px);
}
.hero__block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(5px, 1vw, 10px);
}
.hero__block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--color-primary);
  align-self: flex-start;
}
.hero__block-title {
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  align-self: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--wp--preset--gradient--hero-contrast-fade);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.hero__banner {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  right: var(--section-wrapper-margin);
  z-index: 5;
  background: var(--color-black);
  color: var(--color-white);
  max-width: 560px;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 50px);
}
@media (max-width: 991.98px) {
  .hero__banner {
    position: relative;
    transform: translateY(60px);
    top: 0;
    right: 0;
    margin-top: -60px;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    max-width: 90%;
  }
}
.hero__banner-icon {
  font-size: clamp(30px, 6vw, 60px);
  display: flex;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.hero__banner-title h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-bottom: 0.6em;
}
.hero__banner-title p,
.hero__banner-title li {
  color: var(--color-gray);
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1.2em;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 992px) {
  .catalog__grid {
    margin-left: calc(var(--section-wrapper-margin) * -1);
    margin-right: calc(var(--section-wrapper-margin) * -1);
    max-width: calc(100% + var(--section-wrapper-margin) * 2);
  }
}
@media (max-width: 991.98px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
}
.catalog__cats {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(5px, 1vw, 15px);
  margin-bottom: clamp(20px, 3vw, 40px);
  overflow: auto;
  white-space: nowrap;
}
.catalog__cats::-webkit-scrollbar {
  display: none;
}
.catalog__cats::-webkit-scrollbar-track {
  display: none;
}
@media (max-width: 991.98px) {
  .catalog__cats {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.catalog__cat {
  position: relative;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(5px, 1.6vw, 15px);
  border: 1px solid var(--color-border);
  border-radius: var(--main-br);
  padding: clamp(10px, 2vw, 15px);
  text-align: left;
}
.catalog__cat:not(.active):hover {
  border-color: color-mix(in srgb, var(--color-gray) 80%, transparent);
}
.catalog__cat.active {
  border-color: var(--color-primary);
}
.catalog__cat-image {
  --catalog-cat-image-size: clamp(40px, 6vw, 50px);
  width: var(--catalog-cat-image-size);
  max-width: var(--catalog-cat-image-size);
  min-width: var(--catalog-cat-image-size);
  height: var(--catalog-cat-image-size);
  max-height: var(--catalog-cat-image-size);
  object-fit: contain;
  object-position: center;
}
.catalog__cat-name {
  display: block;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: -0.01em;
}
.catalog__cat-description {
  display: block;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2em;
  margin-top: 0.2em;
}
.catalog__card {
  position: relative;
  background-color: var(--color-gray-1);
  padding: var(--section-wrapper-margin);
  border-radius: var(--main-br);
}
@media (max-width: 991.98px) {
  .catalog__card {
    padding: clamp(15px, 2vw, 20px);
  }
}
.catalog__card-inner {
  display: grid;
  grid-template-columns: 1fr 65%;
  align-items: center;
}
.catalog__card-title {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-bottom: 0.6em;
  max-width: 282px;
}
.catalog__card-button {
  margin-top: clamp(20px, 3vw, 48px);
}
@media (max-width: 575.98px) {
  .catalog__card-button {
    width: 100%;
  }
  .catalog__card-button a {
    width: 100%;
  }
  .catalog__card-button a > *:first-child {
    flex-grow: 1;
  }
}
.catalog__card-image {
  position: relative;
  width: 100%;
}
.catalog__card-image-wrap {
  position: relative;
  padding-top: 100%;
}
.catalog__card-image-wrap img {
  object-fit: contain;
}
.catalog__card-param:not(:last-child) {
  margin-bottom: clamp(10px, 1.5vw, 30px);
}
.catalog__card-param-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2em;
  color: var(--color-gray);
  margin-bottom: 0.4em;
}
.catalog__card-param-value {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2em;
  color: var(--color-black);
}
.catalog__card-param--price .catalog__card-param-value {
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 500;
}
.catalog__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.catalog__card-badge {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.catalog__actions {
  margin-top: clamp(20px, 3vw, 40px);
  display: flex;
  justify-content: center;
}
.catalog__load-more {
  position: relative;
  min-width: 160px;
}
.catalog__load-more.is-loading .catalog__load-more-text {
  opacity: 0.35;
}
.catalog__cat.is-loading, .catalog__load-more.is-loading {
  pointer-events: none;
}
.catalog__cat.is-loading::after, .catalog__load-more.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border: 2px solid color-mix(in srgb, currentColor 25%, transparent);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: catalog-loader-spin 0.65s linear infinite;
}
.catalog__cat.is-loading::after {
  width: 18px;
  height: 18px;
}

@keyframes catalog-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
.bquote {
  position: relative;
}
.bquote .section-wrapper {
  position: relative;
  padding-top: calc(var(--section-paddings) * 2);
  padding-bottom: calc(var(--section-paddings) * 2);
  border-radius: var(--main-br);
}
@media (max-width: 991.98px) {
  .bquote .section-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.bquote__title {
  margin-bottom: clamp(20px, 3vw, 65px);
}
.bquote__title p, .bquote__title li {
  font-size: clamp(14px, 2vw, 16px);
  opacity: 0.6;
}
.bquote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .bquote__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.bquote__inner:after {
  content: "";
  display: block;
}
@media (max-width: 991.98px) {
  .bquote__inner:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .bquote__quote {
    padding-left: var(--section-wrapper-margin);
  }
}
.bquote__quote-icon {
  color: var(--color-primary);
}
.bquote__quote-icon svg {
  width: clamp(40px, 5vw, 78px);
  height: auto;
}
.bquote__quote-text p, .bquote__quote-text li {
  font-size: clamp(16px, 2vw, 20px);
}
.bquote__quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.bquote__quote-author {
  text-align: right;
}
.bquote__quote-author-name {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.2em;
  display: block;
  letter-spacing: -0.03em;
}
.bquote__quote-author-position {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}
.bquote__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--main-br);
  overflow: hidden;
}
.bquote__bg:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--wp--preset--gradient--bquote-contrast-fade);
}
@media (max-width: 991.98px) {
  .bquote__bg:before {
    background-color: var(--color-black);
    opacity: 0.85;
  }
}
.bquote__bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: cover;
  object-position: center right;
  height: 100%;
  width: 100%;
}

.faq {
  background-color: var(--color-white);
  color: var(--color-black);
}
.faq .section-wrapper {
  padding-right: 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 10px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 32px);
}
.faq__title {
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.faq__title p {
  margin: 0;
}
.faq__title p:not(:last-child) {
  margin-bottom: 0.45em;
}
.faq__button {
  flex-shrink: 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 14px);
}
.faq__item {
  background-color: var(--color-gray-1);
  border: 1px solid var(--color-border);
  border-radius: var(--main-br);
  transition: border-color 0.22s ease;
  padding-bottom: clamp(14px, 2vw, 20px);
}
.faq__item.is-open {
  border-color: var(--color-primary);
}
.faq__item-headings {
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.2vw, 24px) 0 clamp(16px, 2.2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  cursor: pointer;
  user-select: none;
  text-align: left;
}
.faq__item-question {
  flex: 1;
  min-width: 0;
  font-size: clamp(15px, 1.45vw, 17px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.faq__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 4.5vw, 44px);
  height: clamp(38px, 4.5vw, 44px);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--main-br);
}
.faq__item-icon .vuesax-bold-linear-arrow-down-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  color: var(--color-black);
  transition: transform 0.26s ease;
}
.faq__item.is-open .faq__item-icon .vuesax-bold-linear-arrow-down-1 {
  transform: rotate(180deg);
}
.faq__item-answer {
  margin-top: clamp(12px, 1.8vw, 18px);
  padding: 10px clamp(16px, 2.2vw, 24px) 0 clamp(16px, 2.2vw, 24px);
  border-top: 1px solid var(--color-border);
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--color-black);
}
.faq__item-answer p {
  margin: 0 0 0.85em;
}
.faq__item-answer p:last-child {
  margin-bottom: 0;
}
.faq__item-answer ul,
.faq__item-answer ol {
  margin: 0 0 0.85em;
  padding-left: 1.2em;
}
.faq__item-answer ul:last-child,
.faq__item-answer ol:last-child {
  margin-bottom: 0;
}
.faq__item-answer strong,
.faq__item-answer b {
  font-weight: 700;
}
.faq__item-answer a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: inherit;
}
.faq__item-answer a:hover {
  opacity: 0.82;
}

.bform .section-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.bform__inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .bform__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.bform__content {
  background-color: var(--color-primary);
  color: var(--color-black);
  padding: calc(var(--section-paddings) * 2) var(--section-wrapper-margin);
  border-radius: var(--main-br);
}
.bform__form {
  background-color: var(--color-gray-1);
  padding: calc(var(--section-paddings) * 2) var(--section-wrapper-margin);
  border-radius: var(--main-br);
}

.footer {
  margin-top: var(--section-paddings);
}
.footer__grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__bottom {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  padding-top: calc(var(--section-paddings) * 2);
  padding-bottom: var(--section-paddings);
  gap: 10px;
}
@media (max-width: 991.98px) {
  .footer__bottom {
    grid-template-columns: 1fr;
  }
}
.footer__bottom-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px 30px;
  flex-wrap: wrap;
  align-self: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2vw, 15px);
}
.footer__logo-wrap {
  position: relative;
}
.footer__logo-wrap img {
  height: clamp(24px, 5vw, 50px);
  width: auto;
}
.footer__company-name {
  font-weight: 900;
  font-size: clamp(14px, 2.6vw, 30px);
  line-height: 1em;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .footer__company-name {
    font-size: clamp(14px, 1.6vw, 30px);
  }
}
.footer__company-name span {
  color: var(--color-primary, #FBCE11);
}
.footer__policy-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: var(--color-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.footer__policy-link:hover {
  color: var(--color-primary);
}
.footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 991.98px) {
  .footer__contacts {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.footer__contact {
  border: 1px solid var(--color-border);
  border-radius: var(--main-br);
  padding: clamp(20px, 4vw, 50px);
}
.footer__contact:before {
  content: "";
  display: block;
  width: 100%;
  background-color: var(--color-primary);
  height: 2px;
  margin-bottom: 32px;
}
.footer__contact-title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.footer__contact-description {
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  color: var(--color-gray);
}
.footer__contact-description:not(:last-child) {
  margin-bottom: clamp(10px, 2vw, 20px);
}
.alert-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 90;
}
.alert-wrapper .message {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  padding: 12px 25px;
  padding-right: 40px;
  color: #fff;
  pointer-events: all;
  user-select: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  max-width: 420px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.08), 0 4px 8px rgba(0, 51, 153, 0.08);
  max-width: 320px;
}
.alert-wrapper .message .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 16px;
}
.alert-wrapper .message .close:hover {
  opacity: 0.5;
}
.alert-wrapper .message:after {
  content: "";
  display: block;
  clear: both;
}
.alert-wrapper .message.show {
  opacity: 1;
  transform: translateY(0);
}
.alert-wrapper .message.removing {
  opacity: 0;
  transform: translateY(20px);
}
.alert-wrapper .success {
  background-color: #28a745;
}
.alert-wrapper .warning {
  background-color: #a79428;
}
.alert-wrapper .error {
  background-color: #cf000f;
}

.share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 17px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.share__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #fff;
}
.share__socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.share__socials a {
  padding: 9px;
  border-radius: 20px;
  background-color: #fff;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2em;
  transition: background-color 0.2s, color 0.2s;
}
.share__socials a:hover {
  background-image: var(--gradient-site);
  color: #fff;
}
.share__socials a:active {
  filter: brightness(0.9);
}
.share__socials-item-count:empty {
  display: none;
}

@media (max-width: 991.98px) {
  .error-page {
    padding-top: 15px;
  }
}
.error-page__title {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.error-page__grid {
  padding: var(--section-wrapper-padding) 0 var(--section-paddings) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 100px);
}
@media (max-width: 991.98px) {
  .error-page__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.error-page .section-wrapper {
  background-color: var(--color-gray-1);
  border-radius: var(--main-br);
}
.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  gap: 0px;
}
@media (max-width: 991.98px) {
  .error-page__image {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}
.error-page__image svg {
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .thanks {
    padding-top: 15px;
  }
}
.thanks__grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
}
@media (max-width: 991.98px) {
  .thanks__grid {
    flex-direction: column;
    gap: 15px;
  }
}
.thanks .section-wrapper {
  background-color: var(--color-gray-1);
  border-radius: var(--main-br);
}
.thanks__title {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.thanks__content {
  padding: var(--section-wrapper-padding) 0 var(--section-paddings) 0;
  width: 100%;
  min-width: 100%;
}
@media (min-width: 992px) {
  .thanks__content {
    width: 460px;
    min-width: 460px;
  }
}
@media (max-width: 991.98px) {
  .thanks__content {
    padding: 15px;
  }
}
.thanks__image {
  position: relative;
  max-width: 503px;
  align-self: flex-end;
}
@media (min-width: 992px) {
  .thanks__image {
    margin-top: var(--section-paddings);
  }
}
@media (max-width: 991.98px) {
  .thanks__image {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.thanks__image-img {
  align-items: flex-end;
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
  height: auto;
}

/*# sourceMappingURL=main.min.css.map */
