@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");
body {
  font-family: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: 32px;
  -webkit-margin-after: 1.2em;
          margin-block-end: 1.2em;
}

h2 {
  font-size: 22px;
  -webkit-margin-after: 1.2em;
          margin-block-end: 1.2em;
}

h3 {
  font-size: 20px;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}

h4 {
  font-size: 18px;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}

h5 {
  font-size: 16px;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}

h6 {
  font-size: 14px;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 26px;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #495057;
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cfd4d9;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 2px 4px 2px rgba(13, 110, 253, 0.125);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  color: #6c757d;
  background-color: #e9ecef;
  border-color: #ced4da;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.875rem 1.5rem;
  margin: -0.875rem -1.5rem;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
  color: #fff;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.875rem 1.5rem;
  margin: -0.875rem -1.5rem;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
  color: #fff;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.btn {
  --btn-padding-x: 1.5rem;
  --btn-padding-y: 0.875rem;
  --btn-font-family: ;
  --btn-font-size: 1rem;
  --btn-font-weight: 400;
  --btn-line-height: 1;
  --btn-color: #212529;
  --btn-bg: transparent;
  --btn-border-width: 1px;
  --btn-border-color: transparent;
  --btn-border-radius: 0.5rem;
  --btn-hover-border-color: transparent;
  --btn-box-shadow: ;
  --btn-disabled-opacity: 0.65;
  --btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  text-decoration: none;
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  color: var(--btn-color);
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  border: var(--btn-border-width) solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-bg);
  box-shadow: var(--btn-box-shadow);
  transition: 0.2s;
}
.btn:hover {
  color: var(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
  transition: 0.1s;
}
.btn-check + .btn:hover {
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
}
.btn:focus-visible {
  color: var(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
  outline: 0;
  box-shadow: var(--btn-box-shadow), var(--btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--btn-hover-border-color);
  outline: 0;
  box-shadow: var(--btn-box-shadow), var(--btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--btn-active-color);
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-border-color);
  box-shadow: var(--btn-active-shadow);
  transition: 0.05s;
  transform: scale(0.98);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--btn-active-shadow), var(--btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--btn-active-shadow), var(--btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--btn-disabled-color);
  pointer-events: none;
  background-color: var(--btn-disabled-bg);
  border-color: var(--btn-disabled-border-color);
  opacity: var(--btn-disabled-opacity);
  box-shadow: none;
}

.btn-primary {
  --btn-color: #fff;
  --btn-bg: #dc2626;
  --btn-border-color: #dc2626;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(213.3833333333, 34.4166666667, 34.4166666667);
  --btn-hover-border-color: #dc2626;
  --btn-focus-shadow-rgb: 49, 132, 253;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(200.2083333333, 32.2916666667, 32.2916666667);
  --btn-active-border-color: #dc2626;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: #999;
  --btn-disabled-border-color: #888;
}

.btn-secondary {
  --btn-color: #fff;
  --btn-bg: #6610f2;
  --btn-border-color: #6610f2;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(97.35, 12.7833333333, 235.0166666667);
  --btn-hover-border-color: #6610f2;
  --btn-focus-shadow-rgb: 49, 132, 253;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(91.3392857143, 11.994047619, 220.505952381);
  --btn-active-border-color: #6610f2;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: #999;
  --btn-disabled-border-color: #888;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  --form-check-bg: #fff;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
          appearance: none;
  background-color: var(--form-check-bg);
  background-image: var(--form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 2px 4px 2px rgba(51, 51, 51, 0.125);
}
.form-check-input:checked {
  background-color: #333;
  border-color: #333;
}
.form-check-input:checked[type=checkbox] {
  --form-check-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>");
}
.form-check-input:checked[type=radio] {
  --form-check-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2' fill='%23fff'/></svg>");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #333;
  border-color: #333;
  --form-check-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path stroke='%23fff' stroke-linecap='round' stroke-width='3' d='M6 10h8'/></svg>");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.65;
}

.form-check-label {
  font-size: 0.875rem;
  color: #212529;
  cursor: pointer;
}

.form {
  display: grid;
  grid-gap: 10px;
}
.form__descr {
  font-size: 0.75rem;
  color: #888;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}

.fancybox-close-small {
  background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent white background */
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px); /* Apply a blur effect to the background */
  border-radius: 50%; /* Make the button a circle */
  width: 36px; /* Set a fixed width */
  height: 36px; /* Set a fixed height */
  padding: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
  transition: all 0.3s ease; /* Add a smooth transition for hover effects */
  margin: 4px;
}
@media (min-width: 992px) {
  .fancybox-close-small {
    margin: 14px;
  }
}

.fancybox-close-small:hover {
  background-color: rgba(255, 255, 255, 0.5); /* Slightly less transparent on hover */
  transform: scale(1.1); /* Slightly enlarge the button on hover */
}

.fancybox-close-small svg {
  fill: #333; /* Dark gray color for the SVG icon */
}

.features ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-gap: 10px;
  justify-items: start;
}
.features ul li {
  display: flex;
  height: 36px;
  border-radius: 18px;
  padding: 6px 18px;
  gap: 10px;
  padding-left: 6px;
  line-height: 1.5;
  background-image: linear-gradient(rgb(250, 250, 250) 0%, rgb(250, 250, 250) 100%);
  border: 1px solid rgb(231, 231, 231);
}
.features ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3C!--!Font Awesome Free v7.0.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M352 128C352 110.3 337.7 96 320 96C302.3 96 288 110.3 288 128L288 288L128 288C110.3 288 96 302.3 96 320C96 337.7 110.3 352 128 352L288 352L288 512C288 529.7 302.3 544 320 544C337.7 544 352 529.7 352 512L352 352L512 352C529.7 352 544 337.7 544 320C544 302.3 529.7 288 512 288L352 288L352 128z' fill='%23888'/%3E%3C/svg%3E");
  border: 1px solid #e7e7e7;
}

.popup {
  width: 360px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.popup__inner {
  display: grid;
}
.popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__content {
  padding: 20px;
}
.popup .form {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .popup .features {
    display: none;
  }
}
@media (min-width: 992px) {
  .popup {
    width: 1200px;
    border-radius: 30px;
  }
  .popup__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
  }
  .popup__content {
    padding: 40px;
  }
}

:root {
  --header-height: 80px;
}
@media (min-width: 992px) {
  :root {
    --header-height: 88px;
  }
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
  margin-top: unset;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: unset;
}

.dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.dot--primary {
  background: #dc2626;
}
.dot--secondary {
  background: #6610f2;
}

.icon--fire::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M11.25 20C14.9557 20 18 17.0634 18 13.2941C18 12.3688 17.953 11.3769 17.4401 9.83522C16.9271 8.29361 16.8238 8.09462 16.2815 7.14256C16.0498 9.08543 14.81 9.89516 14.4951 10.1372C14.4951 9.88539 13.7451 7.10115 12.608 5.43525C11.4917 3.8 9.97357 2.72716 9.08342 2C9.08342 3.3814 8.69488 5.43525 8.13845 6.48173C7.58203 7.5282 7.47753 7.56632 6.7825 8.34509C6.08752 9.12386 5.76851 9.36438 5.18733 10.3093C4.60618 11.2542 4.5 12.5128 4.5 13.4381C4.5 17.2074 7.5444 20 11.25 20Z' stroke='%23F5F5F5' stroke-width='2' stroke-linejoin='round'/%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.dist {
  color: rgb(183, 183, 183);
}
.dist::before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 11px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.3162 2.99209C6.09345 2.99209 6.72355 2.32228 6.72355 1.49604C6.72355 0.669804 6.09345 0 5.3162 0C4.53895 0 3.90885 0.669804 3.90885 1.49604C3.90885 2.32228 4.53895 2.99209 5.3162 2.99209ZM2.75504 8.79007L2.46184 11.0757L0.350796 14.7326C0.116232 15.1274 0.233514 15.626 0.604895 15.8753C0.741724 15.9585 0.878553 16 1.01538 16C1.26949 16 1.54314 15.8547 1.67997 15.6052L3.88876 11.7821C3.9474 11.6782 3.98649 11.5743 4.00604 11.4497L4.20151 9.91208L2.75504 8.79007ZM7.44685 5.48642L9.47974 6.27599C9.78864 6.38547 9.98686 6.6833 9.99937 7.00998C10.0035 7.11732 9.98749 7.22777 9.94884 7.33569C9.81203 7.77203 9.36243 8.0006 8.95198 7.83437L6.72362 6.96167C6.60634 6.92013 6.48906 6.83701 6.39132 6.71234L5.82447 5.96432L5.31626 8.20838L7.52041 9.99967C7.71588 10.1451 7.83319 10.3945 7.83319 10.6646V15.1631C7.83319 15.6203 7.48137 15.9943 7.05133 15.9943C6.62131 15.9943 6.26947 15.6203 6.26947 15.1631V11.0801L4.26074 9.45509L2.81428 8.35383L3.42023 5.46565L2.57972 5.86043L1.47044 7.93827C1.31408 8.20838 1.05997 8.35383 0.786308 8.35383C0.649491 8.35383 0.512663 8.33306 0.395381 8.24994C0.144146 8.09532 0.000250479 7.80758 3.56884e-07 7.51538C-0.000124704 7.37562 0.032616 7.23485 0.102175 7.10712L1.34827 4.80073C1.50665 4.53886 1.79173 4.41169 2.04668 4.29798C2.07495 4.28538 2.10284 4.27294 2.13014 4.2605L4.00663 3.40858C4.14346 3.32546 4.29983 3.26313 4.45619 3.24236C4.63212 3.22157 5.31626 3.28392 5.49219 3.30469C5.87033 3.37169 6.10877 3.70872 6.33036 4.02191C6.38367 4.09725 6.436 4.17122 6.48906 4.23971C6.64544 4.44751 6.8067 4.65528 6.96795 4.86306C7.12922 5.07086 7.29047 5.27864 7.44685 5.48642Z' fill='%23B7B7B7'/%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.tags {
  font-size: 14px;
  display: grid;
  gap: 8px;
}
.tags__row {
  display: flex;
  gap: inherit;
  flex-wrap: wrap;
}
.tags__item {
  padding-top: 8px;
  padding-bottom: 6px;
  padding-left: 14px;
  padding-right: 14px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 18px;
  height: 36px;
  background-image: linear-gradient(rgb(250, 250, 250) 0%, rgb(250, 250, 250) 100%);
  border: 1px solid rgb(231, 231, 231);
}
.tags__item--primary {
  background: #dc2626;
  color: #fff;
}
.tags__item--secondary {
  background-image: linear-gradient(#6610f2 0%, #6610f2 100%) !important;
  color: #fff;
}
@media (min-width: 992px) {
  .tags {
    font-size: 16px;
    gap: 10px;
  }
  .tags__item {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.benefits {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.benefits__item {
  padding-left: 20px;
  border-left: 2px solid;
  max-width: 14em;
}
@media (min-width: 992px) {
  .benefits {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    font-size: 18px;
  }
}

.header {
  height: var(--header-height);
  display: grid;
  align-items: center;
}
.header__inner {
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: auto;
  width: 120px;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__phone a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .header {
    position: absolute;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
  }
  .header__logo {
    width: 160px;
  }
}

.hero__inner {
  display: grid;
}
.hero__content {
  display: grid;
}
.hero__content-body {
  display: flex;
  flex-direction: column;
}
.hero__title {
  margin-bottom: 30px;
}
.hero__tags {
  margin-bottom: 40px;
}
.hero__benefits {
  margin-top: auto;
}
.hero__aside {
  position: relative;
  text-align: center;
  border-radius: 30px;
  padding: 20px;
  padding-top: 120px !important;
  margin-top: 1.5rem;
}
.hero__aside .form-control {
  text-align: center;
}
.hero__aside-asset {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-30%);
  width: 100%;
  max-width: 220px;
}
.hero__aside-asset img {
  animation: slide 5s infinite ease-in-out;
}
.hero__legal {
  font-size: 0.875rem;
  color: #888;
}
@media (max-width: 767px) {
  .hero {
    padding-bottom: 40px;
  }
  .hero__inner {
    grid-gap: 20px;
  }
  .hero__bg {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
  }
  .hero__bg img {
    width: 100%;
    height: 410px;
    object-fit: cover;
  }
  .hero__content {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 30px;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .hero__content-body {
    padding: 40px 20px;
  }
  .hero__aside {
    background: #6610f2;
    color: #fff;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  }
  .hero__legal {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hero {
    position: relative;
    min-height: 100lvh;
    z-index: 0;
    padding-top: var(--header-height);
    display: grid;
    color: #fff;
  }
  .header {
    color: #fff;
  }
  .tags__item {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-color: transparent;
  }
  .hero__bg {
    position: absolute;
    z-index: -1;
    inset: 0;
  }
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4666666667);
  }
  .hero__inner {
    padding: 40px 0;
    min-height: 100%;
    grid-template-columns: 1fr 340px;
    grid-template-rows: 1fr auto;
    grid-gap: 20px;
  }
  .hero__benefits, .hero__aside {
    align-self: end;
    background: #fff;
    color: #3a3a3a;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 30px;
    padding: 20px;
  }
  .hero__benefits .btn, .hero__aside .btn {
    width: 100%;
  }
  .hero__benefits {
    background: rgba(85, 84, 84, 0.2);
    color: #fff;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    border: 1px solid rgba(178, 178, 178, 0.65);
  }
}
@media (min-width: 992px) {
  .hero__inner {
    grid-column-gap: 40px;
  }
  .hero__benefits {
    padding: 25px 40px;
  }
  .hero__aside {
    padding: 25px;
  }
}

@keyframes slide {
  from, to {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(10%);
  }
}