

/* Start:/local/templates/alpha_hydraulics/assets/css/main.css?178185385622166*/
.footer__form .field input,
.footer__form .field textarea {
  border: none;
  background: transparent;
  box-shadow: none;
  height: auto;
  padding: 8px 0 0;
}

.footer__form .success-message,
.footer__form .error-message {
  margin-bottom: 16px;
  font-size: 14px;
}

:root {
  --black: #151515;
  --deep-blue: #122a75;
  --dark-blue: #090948;
  --grey-blue: #eef0f2;
  --page: #f7f7f9;
  --white: #ffffff;
  --danfoss-red: #d92826;
  --sun-orange: #f15827;
  --font: "Ubuntu", sans-serif;
  --container: 1320px;
  --radius-lg: 40px;
  --radius-md: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 120px, var(--container));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: var(--page);
  padding: 8px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 50px;
}

.topbar__right .topbar__phone {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  color: var(--deep-blue);
}

.topbar__phones {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--white);
  padding-bottom: 15px;
}

.header__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0;
}

.header__row {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  display: block;
  height: 50px;
  width: 203px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
  background: var(--page);
  border-radius: var(--radius-lg);
  padding: 0 20px 0 0;
}

.header__nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 404px;
  max-width: 100%;
  flex-shrink: 0;
  background: var(--grey-blue);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
}

.header__nav-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 200px;
  max-width: 239px;
  gap: 12px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link--pill {
  font-weight: 500;
  color: var(--deep-blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 120;
  min-width: 240px;
  padding: 8px 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(9, 9, 72, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-dropdown--more .nav-dropdown__panel {
  left: auto;
  right: 0;
}

.nav-dropdown.is-open .nav-dropdown__panel,
.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-submenu--nested {
  padding: 4px 0 4px 16px;
}

.nav-submenu__link {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 1.2;
  color: var(--black);
  white-space: nowrap;
}

.nav-submenu__link:hover,
.nav-submenu__link.is-active {
  color: var(--deep-blue);
  background: var(--page);
}

.nav-submenu__item--parent > .nav-submenu__link {
  font-weight: 500;
  color: var(--deep-blue);
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.header__icon {
  display: grid;
  place-items: center;
  padding: 0;
}

.btn--callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 202px;
  min-height: 54px;
  padding: 18px 32px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--deep-blue);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.btn--callback-submit {
  width: 100%;
}

/* Callback modal */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.45);
}

.callback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(9, 9, 72, 0.18);
}

.callback-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--page);
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.callback-modal__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 500;
  color: var(--deep-blue);
}

.callback-modal__lead {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}

.callback-modal__message {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.callback-modal__message.is-success {
  background: #e8f5e9;
  color: #1b5e20;
}

.callback-modal__message.is-error {
  background: #ffebee;
  color: #b71c1c;
}

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

.callback-modal__form .field input {
  width: 100%;
  padding: 12px 0 8px;
  border: none;
  border-bottom: 1px solid rgba(21, 21, 21, 0.15);
  background: transparent;
  outline: none;
}

.callback-modal__form .checkbox {
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.4;
}

.header__search-host {
  width: 100%;
  position: relative;
}

.header__search-host .title-search-result {
  z-index: 200;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 18px 32px;
  border: none;
  background: var(--page);
  border-radius: var(--radius-lg);
}

.header__search input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
}

.header__search input::placeholder {
  color: rgba(27, 24, 32, 0.4);
}

.header__search button {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  padding: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Pill button */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 0 0 0 32px;
  min-height: 54px;
  border-radius: var(--radius-lg);
  background: var(--grey-blue);
  color: var(--deep-blue);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}

.btn-pill img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.btn-pill--sm {
  min-height: 54px;
}

.btn-pill--light {
  background: var(--grey-blue);
  margin-top: 8px;
}

/* Hero */
.hero {
  padding: 30px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 40px;
  position: relative;
}

.hero__text {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  padding-top: 0;
}

.hero__plus {
  position: absolute;
  left: 4px;
  top: 77px;
  width: 80px;
  height: 80px;
}

.hero__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.hero__title-offset {
  margin-left: 92px;
}

.hero__text .btn-pill {
  margin-top: 40px;
  margin-left: 92px;
}

.hero__aside {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  max-width: 323px;
  padding-top: 28px;
}

.hero__aside img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.hero__aside p {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

.hero__banner {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  margin-top: 40px;
  min-height: 296px;
}

.hero__banner-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--deep-blue);
  overflow: hidden;
}

.hero__blueprint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: screen;
}

.hero__product {
  position: absolute;
  left: 50%;
  top: -90px;
  transform: translateX(-50%);
  width: min(597px, 55%);
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  text-align: left;
}

.hero__badge-years {
  display: block;
  font-size: 28px;
  color: var(--deep-blue);
  font-style: italic;
  transform: rotate(-9.64deg);
}

.hero__badge-text {
  display: block;
  margin-left: 46px;
  font-size: 24px;
  font-weight: 300;
  color: var(--black);
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.section-head--simple {
  gap: 50px;
}

.section-link {
  font-weight: 500;
  font-size: 16px;
  color: var(--deep-blue);
}

.catalog .section-link {
  display: block;
  text-align: right;
  margin-top: 20px;
}

/* Catalog */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalog-card {
  position: relative;
  min-height: 210px;
  padding: 40px;
  background: var(--page);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s;
}

.catalog-card:hover {
  transform: translateY(-2px);
}

.catalog-card__title {
  position: relative;
  z-index: 2;
  font-size: 24px;
  line-height: 1.2;
  max-width: 200px;
}

.catalog-card__title span {
  display: block;
}

.catalog-card__img {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.catalog-card__img--1 {
  right: 0;
  bottom: 0;
  width: 163px;
}

.catalog-card__img--2 {
  right: 60px;
  bottom: -20px;
  width: 174px;
}

.catalog-card__img--danfoss {
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 418px;
}

.catalog-card__img--sun {
  right: 0;
  bottom: 0;
  width: 70%;
  max-width: 301px;
}

/* Services */
.services .section-title {
  margin-bottom: 40px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 334px;
  padding: 40px;
  background: var(--page);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card__title {
  margin: 0;
  max-width: 322px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card__icon {
  position: absolute;
  right: 40px;
  bottom: 100px;
  width: 120px;
  height: auto;
}

.service-card__icons {
  position: absolute;
  right: 40px;
  bottom: 100px;
}

.service-card__icons .service-card__icon {
  position: static;
}

.service-card__icon--2 {
  position: absolute;
  right: -20px;
  top: -30px;
}

.service-card__btn {
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 80px);
  max-width: 347px;
  padding: 18px 32px;
  border: 1.5px solid var(--deep-blue);
  border-radius: var(--radius-lg);
  color: var(--deep-blue);
  font-weight: 500;
  font-size: 16px;
  transition: background 0.2s;
}

.service-card__btn:hover {
  background: rgba(18, 42, 117, 0.06);
}

/* Why */
.why {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 50px;
  padding-bottom: 80px;
}

.why__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 42, 117, 0.08) 0%, transparent 100%) center top / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.why__inner {
  position: relative;
  z-index: 1;
}

.why .section-title {
  margin-bottom: 70px;
}

.why__timeline {
  position: relative;
  min-height: 284px;
  padding: 0 92px;
}

.why__line {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--deep-blue) 0,
    var(--deep-blue) 10px,
    transparent 10px,
    transparent 15px
  );
}

.why__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why__item {
  flex: 0 1 228px;
  padding-top: 0;
}

.why__dot {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--deep-blue);
  position: relative;
  flex-shrink: 0;
}

.why__dot::before,
.why__dot::after {
  content: "";
  position: absolute;
  background: var(--white);
}

.why__dot::before {
  top: 50%;
  left: 8px;
  right: 8px;
  height: 1.5px;
  transform: translateY(-50%);
}

.why__dot::after {
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  transform: translateX(-50%);
}

.why__item h3 {
  margin: 15px 0 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.2;
}

.why__item p {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.2;
  max-width: 228px;
}

.why__item--last p {
  max-width: 221px;
}

.why__years {
  display: inline-block;
  margin-top: 24px;
  margin-left: 50px;
  font-size: 28px;
  color: var(--deep-blue);
  font-style: italic;
  transform: rotate(-9.64deg);
}

.why__cta {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

/* Brands */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.brand-card--danfoss {
  background: var(--danfoss-red);
}

.brand-card--danfoss img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card--sun {
  background: var(--sun-orange);
}

.brand-card--sun .brand-card__icon {
  position: absolute;
  left: 27px;
  width: 112px;
}

.brand-card--sun img:last-child {
  width: 60%;
  max-width: 264px;
}

.brand-card--soon {
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #002b49;
  background: var(--white);
  text-align: center;
  padding: 40px;
}

.brand-card--soon strong {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-blue);
}

.brand-card--soon span {
  font-size: 16px;
  color: rgba(21, 21, 21, 0.4);
  max-width: 249px;
}

/* Blog */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.blog-card__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-card__media > img:first-child {
  width: 100%;
  aspect-ratio: 315 / 334;
  object-fit: cover;
}

.blog-card__media time {
  position: absolute;
  left: 20px;
  bottom: 22px;
  padding: 10px 15px;
  border: 1.5px solid var(--white);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 14px;
  background: rgba(0, 0, 0, 0.15);
}

.blog-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
}

.blog-card h3 {
  margin: 0 0 5px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 40px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 538px 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 60px;
  padding-bottom: 40px;
}

.footer__form {
  grid-column: 1;
  grid-row: 1 / 3;
}

.footer__form h2 {
  margin: 0 0 25px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.footer__form form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.field {
  display: block;
  border-bottom: 1.5px solid rgba(238, 240, 242, 0.2);
  padding: 20px;
}

.field span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--white);
  outline: none;
  padding: 8px 0 0;
  resize: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  cursor: pointer;
}

.checkbox input {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  accent-color: var(--deep-blue);
}

.footer__contacts h3,
.footer__menu h3 {
  margin: 0 0 35px;
  font-size: 24px;
  font-weight: 500;
  color: rgba(238, 240, 242, 0.2);
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer__email,
.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__menu a {
  font-size: 18px;
  line-height: 1.2;
}

.footer__logo {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: end;
}

.footer__logo img {
  width: 311px;
  height: auto;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 40px;
  border-top: 1.5px solid rgba(238, 240, 242, 0.2);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__legal a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .header__nav-pill {
    gap: 12px;
    padding: 14px 20px;
  }

  .catalog__grid,
  .services__grid,
  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why__timeline {
    padding: 0;
  }

  .why__items {
    flex-direction: column;
    gap: 40px;
  }

  .why__line {
    display: none;
  }

  .why__item {
    flex: 1 1 auto;
    max-width: none;
  }

  .why__item p {
    max-width: none;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__form {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer__logo {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar__right {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header__row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header__nav {
    display: none;
    order: 10;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 16px;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav-pill {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 0;
    background: transparent;
  }

  .nav-dropdown__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 8px 16px;
    min-width: 0;
  }

  .nav-dropdown:not(.is-open) .nav-dropdown__panel {
    display: none;
  }

  .header__nav-secondary {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    width: 100%;
    gap: 0;
  }

  .nav-dropdown:hover .nav-dropdown__panel {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    display: block;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .btn--callback {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    max-width: none;
  }

  .hero__banner {
    margin-top: 60px;
  }

  .hero__product {
    width: 80%;
    top: -60px;
  }

  .hero__badge {
    right: 20px;
  }

  .section-head {
    flex-wrap: wrap;
    gap: 20px;
  }

  .catalog__grid,
  .services__grid,
  .brands__grid,
  .blog__grid,
  .why__items {
    flex-direction: column;
  }

  .footer__inner,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero__title-offset,
  .hero__text .btn-pill {
    margin-left: 0;
  }

  .hero__plus {
    display: none;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__aside p {
    font-size: 18px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card__icon {
    width: 80px;
    right: 20px;
    bottom: 90px;
  }
}




/* End */


/* Start:/local/templates/alpha_hydraulics/styles.css?178185227926*/
/* Required by Bitrix */

/* End */


/* Start:/local/templates/alpha_hydraulics/template_styles.css?178185227952*/
/* Template-specific overrides for Bitrix admin */

/* End */
/* /local/templates/alpha_hydraulics/assets/css/main.css?178185385622166 */
/* /local/templates/alpha_hydraulics/styles.css?178185227926 */
/* /local/templates/alpha_hydraulics/template_styles.css?178185227952 */
