/* reset.scss */
.hmns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 72px;
  padding: 5px;
  border-radius: var(--button-radius);
}
@media screen and (min-width: 768px) {
  .hmns-btn {
    min-width: 112px;
    border-radius: var(--button-radius);
  }
}
@media screen and (min-width: 1280px) {
  .hmns-btn {
    min-width: 162.4px;
    height: 26.4px;
    border-radius: var(--button-radius);
  }
}
.hmns-btn-primary {
  background-color: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .hmns-btn-primary {
    font-size: 13.6px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-btn-primary {
    font-size: 19.2px;
  }
}
.hmns-btn-outline {
  border: 1px solid var(--c-font);
  color: var(--c-font);
  font-size: 10.4px;
}
@media screen and (min-width: 768px) {
  .hmns-btn-outline {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-btn-outline {
    font-size: 17.6px;
  }
}
.hmns-btn {
  /* Larger size modifiers */
  /* hmns-btn--l: on mobile behaves like tablet size; scales up on tablet/desktop */
}
.hmns-btn--l {
  /* mobile: use tablet size */
  min-width: 112px;
  height: 20px;
  border-radius: 9.6px;
  font-size: 13.6px;
}
@media screen and (min-width: 768px) {
  .hmns-btn--l {
    min-width: 144px;
    height: 22.4px;
    font-size: 14.4px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-btn--l {
    min-width: 208px;
    height: 28.8px;
    font-size: 17.6px;
  }
}
.hmns-btn {
  /* hmns-btn--xl: on mobile behaves like desktop size; scales up on tablet/desktop */
}
.hmns-btn--xl {
  /* mobile: use desktop-like size */
  min-width: 162.4px;
  height: 26.4px;
  border-radius: 12.8px;
  font-size: 14.4px;
}
@media screen and (min-width: 768px) {
  .hmns-btn--xl {
    min-width: 208px;
    height: 32px;
    font-size: 17.6px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-btn--xl {
    min-width: 288px;
    height: 38.4px;
    font-size: 22.4px;
  }
}
.hmns input,
.hmns textarea {
  background-color: #fff;
  color: #000;
  font-size: 9.6px;
  padding: 4px 9.6px;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  .hmns input,
  .hmns textarea {
    font-size: 14.4px;
  }
}
.hmns input[type=checkbox] {
  display: none;
}
.hmns input[type=checkbox]:checked + .hmns-checkbox {
  background-color: var(--c-red);
  border-color: var(--c-red);
}

.hmns-checkbox {
  width: 4.8px;
  height: 4.8px;
  border: 1.6px solid var(--c-border);
  display: inline-flex;
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .hmns-checkbox {
    width: 11.2px;
    height: 11.2px;
  }
}

.hmns-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.hmns-modal__content {
  background: var(--c-bg);
  border-radius: 9.6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  padding: 19.2px 14.4px;
  min-width: 256px;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hmns-modal__content {
    min-width: 272px;
    padding: 25.6px 22.4px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-modal__content {
    min-width: 384px;
    padding: 32px 28.8px;
  }
}
.hmns-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 14.4px;
  color: var(--c-font);
  cursor: pointer;
  width: 20.8px;
  height: 16.8px;
}
.hmns-modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .hmns-modal__close {
    font-size: 17.6px;
    top: 12.8px;
    right: 12.8px;
  }
}
.hmns-modal {
  /* Cookie consent panel */
}

.hmns-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 9.6px 14.4px;
  pointer-events: none;
  z-index: 10;
}
@media screen and (min-width: 1280px) {
  .hmns-cookie-consent__panel {
    display: flex;
    gap: 19.2px;
  }
}
.hmns-cookie-consent__panel {
  pointer-events: auto;
  margin: 0 auto;
  width: var(--container-width);
  border-radius: 9.6px;
  background: var(--c-bg-dark);
  padding: 12.8px;
  box-shadow: 0 6.4px 19.2px rgba(16, 24, 40, 0.08);
  outline: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .hmns-cookie-consent__panel {
    padding: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-cookie-consent__panel {
    flex-direction: row;
    padding: 19.2px;
  }
}
.hmns-cookie-consent__text {
  flex-grow: 1;
  color: var(--c-notif-text);
  line-height: 1.4;
}
@media screen and (max-width: 1279px) {
  .hmns-cookie-consent__text {
    font-size: 14px;
  }
}
.hmns-cookie-consent__link {
  font-weight: 600;
  color: var(--c-red); /* indigo-500 */
  text-decoration: none;
}
.hmns-cookie-consent__actions {
  margin-top: 9.6px;
  display: flex;
  gap: 9.6px;
  justify-content: flex-end;
}

.hmns .hmns-main-menu {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hmns .hmns-main-menu {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    margin-top: 1rem;
    gap: 32px;
    line-height: 1;
    height: 40px;
  }
  .hmns .hmns-main-menu > li {
    font-weight: bold;
    font-size: 19.2px;
  }
  .hmns .hmns-main-menu > li.hmns-has-submenu {
    position: relative;
  }
  .hmns .hmns-main-menu > li > a {
    position: relative;
    z-index: 20;
  }
  .hmns .hmns-main-menu > li > a:hover, .hmns .hmns-main-menu > li > a.hmns-active {
    border-bottom: 1.6px solid var(--c-red);
  }
}
.hmns .hmns-mega-menu {
  position: absolute;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--c-bg);
  padding: 50.4px;
}
.hmns .hmns-mega-menu__item {
  display: flex;
  gap: 20px;
}
.hmns .hmns-mega-menu__item-title {
  font-weight: bold;
  font-size: 14.4px;
}
.hmns .hmns-mega-menu__item-image {
  width: 97.6px;
  height: 97.6px;
  flex-shrink: 0;
}
.hmns .hmns-mega-menu__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hmns .hmns-mega-menu__item-list {
  color: var(--c-submenu);
  font-weight: normal;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 13.6px;
  margin-top: 16px;
  font-size: 12px;
}
.hmns .hmns-mega-menu__item-list > li > a:hover {
  color: var(--c-font);
}
.hmns .hmns-collapse-menu {
  background-color: var(--c-bg);
  color: var(--c-collapse-menu);
  position: absolute;
  left: var(--offset-right);
  top: 100%;
  padding: 54.4px;
  transform: translateX(-54.4px);
  z-index: 10;
}
.hmns .hmns-collapse-menu li {
  border-bottom: 1px solid var(--c-submenu);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.hmns .hmns-collapse-menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hmns .hmns-collapse-menu li > a {
  white-space: nowrap;
}
.hmns .hmns-collapse-menu li a {
  display: block;
  font-weight: normal;
}
.hmns .hmns-collapse-menu li a:hover {
  color: var(--c-font);
}
.hmns .hmns-collapse-menu button {
  cursor: pointer;
  font-weight: normal;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  white-space: nowrap;
  min-height: 22px;
}
.hmns .hmns-collapse-menu button:after {
  height: 22px;
  width: 12.8px;
  display: block;
  background: url("/local/lib/dist/icons/arrow.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  content: " ";
  font-size: 0;
  flex-shrink: 0;
}
.hmns .hmns-collapse-menu button.hmns-active {
  color: var(--c-collapse-active);
}
.hmns .hmns-collapse-menu button.hmns-active:after {
  transform: rotate(90deg);
  transform-origin: center;
}
.hmns .hmns-collapse-menu__sublist {
  border-top: 1px solid var(--c-submenu);
  margin-top: 0.25rem;
}
.hmns .hmns-collapse-menu__sublist a, .hmns .hmns-collapse-menu__sublist button {
  padding-left: 40px;
}
.hmns .hmns-collapse-menu__sublist .hmns .hmns-collapse-menu__sublist a, .hmns .hmns-collapse-menu__sublist .hmns .hmns-collapse-menu__sublist button {
  padding-left: 80px;
}
.hmns .hmns-collapse-menu__sublist .hmns .hmns-collapse-menu__sublist .hmns .hmns-collapse-menu__sublist a, .hmns .hmns-collapse-menu__sublist .hmns .hmns-collapse-menu__sublist .hmns .hmns-collapse-menu__sublist button {
  padding-left: 120px;
}
.hmns .hmns-mobile-menu {
  border-top: 3px solid var(--c-submenu);
  border-bottom: 3px solid var(--c-submenu);
}
.hmns .hmns-mobile-menu li {
  border-bottom: 1px solid var(--c-submenu);
}
.hmns .hmns-mobile-menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hmns .hmns-mobile-menu li.hmns-has-submenu.active, .hmns .hmns-mobile-menu li.hmns-has-submenu:hover, .hmns .hmns-mobile-menu li.hmns-has-submenu:visited {
  color: var(--c-collapse-active);
}
.hmns .hmns-mobile-menu li.hmns-has-submenu.active a:after, .hmns .hmns-mobile-menu li.hmns-has-submenu:hover a:after, .hmns .hmns-mobile-menu li.hmns-has-submenu:visited a:after {
  transform: rotate(90deg);
  transform-origin: center;
  opacity: 0.5;
}
.hmns .hmns-mobile-menu li.hmns-has-submenu a:after {
  height: 22px;
  width: 12.8px;
  display: block;
  background: url("/local/lib/dist/icons/arrow.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  content: " ";
  font-size: 0;
  flex-shrink: 0;
}
.hmns .hmns-mobile-menu li a, .hmns .hmns-mobile-menu li .hmns-back-button {
  font-weight: normal;
  padding: 6px 25.6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hmns .hmns-mobile-menu li a:hover, .hmns .hmns-mobile-menu li .hmns-back-button:hover {
  color: var(--c-font);
}
.hmns .hmns-mobile-menu li .hmns-back-button {
  justify-content: flex-start;
  gap: 16px;
}
.hmns .hmns-mobile-menu li .hmns-back-button:before {
  height: 22px;
  width: 12.8px;
  display: block;
  background: url("/local/lib/dist/icons/arrow.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  content: " ";
  font-size: 0;
  flex-shrink: 0;
  transform-origin: center;
  transform: rotate(180deg);
}

.hmns-header {
  margin-bottom: 36px;
  --header-height: 56px;
  height: var(--header-height);
  position: sticky;
  top: 0;
  background-color: var(--c-bg);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .hmns-header {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-header {
    height: auto;
    margin-bottom: 0;
  }
}
.hmns-header__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.2rem;
}
@media screen and (min-width: 1280px) {
  .hmns-header__container {
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 32px;
  }
}

.hmns-header__logo {
  position: relative;
  margin-top: -1.2rem;
}
.hmns-header__logo img {
  width: 208px;
  height: 44.8px;
}
@media screen and (min-width: 1280px) {
  .hmns-header__logo img {
    width: 432.8px;
    height: 64px;
  }
}
.hmns-header__logo .hmns-header__search {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hmns-header__logo .hmns-header__search {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
  }
  .hmns-header__logo .hmns-header__search img {
    width: 22.4px;
    height: 22.4px;
    object-fit: contain;
  }
}

.hmns-header__phone {
  font-weight: bold;
  font-size: 29.2px;
  display: none;
}
@media screen and (min-width: 1280px) {
  .hmns-header__phone {
    display: block;
    white-space: nowrap;
    font-size: 1.4rem;
  }
}

.hmns .hmns-header__cta {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hmns .hmns-header__cta {
    display: inline-flex;
  }
}

.hmns-header__burger {
  display: inline-flex;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20.8px;
  height: 16.8px;
}
.hmns-header__burger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .hmns-header__burger {
    bottom: 6.4px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-header__burger {
    display: none;
  }
}

.hmns-header__actions {
  display: flex;
}
@media screen and (max-width: 767px) {
  .hmns-header__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    width: 100vw;
    justify-content: space-between;
    background-color: var(--c-bg);
    padding: 19.2px 19.2px 4px;
    margin-left: calc((var(--container-width) - 100vw) / 2);
  }
}
@media screen and (min-width: 768px) {
  .hmns-header__actions {
    gap: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-header__actions {
    margin-left: auto;
    margin-right: 24px;
    gap: 32px;
  }
}
.hmns-header__actions img {
  width: 15.2px;
  height: 15.2px;
  object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .hmns-header__actions img {
    width: 22.4px;
    height: 22.4px;
  }
}

.hmns-header__login {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hmns-header__login {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-header__login img {
    width: 22.4px;
    height: 22.4px;
    object-fit: contain;
  }
}

.hmns-mobile-sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  background-color: var(--c-bg);
  z-index: 1000;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .hmns-mobile-sidebar {
    width: calc(var(--container-width) / 2);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  }
}

.hmns-mobile-city-detected {
  color: var(--c-border);
  font-weight: normal;
  padding: 6px 25.6px;
}

.hmns-mobile-contacts {
  margin: 25.6px;
  font-size: 16px;
}
.hmns-mobile-contacts p {
  margin: 1em 0;
}
.hmns-mobile-contacts a[href^=tel] {
  font-weight: bold;
}

.hmns-mobile-socials ul {
  display: flex;
  gap: 12px;
  padding: 0 25.6px;
  margin-bottom: 25.6px;
}
.hmns-mobile-socials ul img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hmns-mobile-search {
  margin: 25.6px;
}

.hmns-mobile-form {
  margin: 25.6px;
}
.hmns-mobile-form form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
@media screen and (min-width: 1280px) {
  .hmns-mobile-form form {
    gap: 12px;
  }
}
.hmns-mobile-form img[alt=icon] {
  width: 20.8px;
  height: 16.8px;
}
.hmns-mobile-form .hmns-btn {
  padding: 6px 16px;
  align-self: flex-start;
}
.hmns-mobile-form .hmns-form-checkboxes {
  font-size: 7.2px;
}
.hmns-mobile-form .hmns-form-checkboxes label {
  display: flex;
  gap: 4px;
}
@media screen and (min-width: 1280px) {
  .hmns-mobile-form .hmns-form-checkboxes {
    font-size: 12px;
  }
}

.hmns-mobile-form__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.hmns-mobile-form__caption img {
  width: 17.6px;
  height: 17.6px;
}

.hmns-footer {
  padding: 16px 0;
}
@media screen and (min-width: 1280px) {
  .hmns-footer {
    padding: 48px 0;
  }
}
.hmns-footer .hmns-container {
  display: flex;
  flex-direction: column;
  gap: 36.8px;
}
@media screen and (min-width: 1280px) {
  .hmns-footer .hmns-container {
    display: grid;
    grid-template-columns: 288px 1fr;
    gap: 149.6px;
  }
}

@media screen and (min-width: 768px) {
  .hmns-footer-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 40px 0;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-footer-left {
    display: block;
    margin: 0;
  }
}

.hmns-footer-search__title {
  font-weight: normal;
  font-size: 17.6px;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-search__title {
    font-size: 22.4px;
  }
}
.hmns-footer-search__form {
  border-bottom: 1px solid #808080;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.4px;
  margin-top: 14.4px;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-search__form {
    font-size: 19.2px;
    margin-top: 22.4px;
  }
}
.hmns-footer-search input {
  padding-bottom: 0.25rem;
  background-color: transparent;
  font-size: inherit;
  color: inherit;
}
.hmns-footer-search button img {
  width: 16.8px;
  height: 16.8px;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-search button img {
    width: 21.6px;
    height: 21.6px;
  }
}
.hmns-footer-search + .hmns-footer-search {
  margin-top: 44.8px;
}
@media screen and (min-width: 768px) {
  .hmns-footer-search + .hmns-footer-search {
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-footer-search + .hmns-footer-search {
    margin-top: 80px;
  }
}

.hmns-footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 11.2px;
  gap: 48px 32px;
}
@media screen and (min-width: 768px) {
  .hmns-footer-menu {
    grid-template-columns: repeat(3, 1fr);
    font-size: 15.2px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-footer-menu {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    font-size: 19.2px;
  }
}
.hmns-footer-menu__col.hmns-has-socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .hmns-footer-menu__col.hmns-has-socials {
    grid-column: span 3;
  }
  .hmns-footer-menu__col.hmns-has-socials ul {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-footer-menu__col.hmns-has-socials {
    display: none;
  }
}
.hmns-footer-menu__col-title {
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-menu__col-title {
    text-align: left;
  }
}
.hmns-footer-menu ul {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-menu ul {
    gap: 16px;
    margin-top: 20px;
    text-align: left;
  }
}
.hmns-footer-menu ul li {
  line-height: 1;
  font-weight: normal;
}

.hmns-footer-contacts {
  font-weight: bold;
  font-size: 13.2px;
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-contacts {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 32px;
    font-size: 19.2px;
  }
}
.hmns-footer-contacts a, .hmns-footer-contacts p {
  font-weight: normal;
}
.hmns-footer-contacts__left {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-contacts__left {
    text-align: left;
  }
}
.hmns-footer-contacts__right {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hmns-footer-contacts__right {
    display: flex;
    gap: 21.6px;
  }
}

.hmns-footer-social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media screen and (max-width: 1279px) {
  .hmns-footer-copyright {
    text-align: center;
    font-size: 8px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .hmns-footer-copyright {
    margin-top: 24px;
  }
}

.hmns-notification {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 4.8px 3.2px;
  pointer-events: none;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .hmns-notification {
    align-items: flex-start;
    padding: 4.8px;
  }
}
.hmns-notification__stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2px;
}
@media screen and (min-width: 768px) {
  .hmns-notification__stack {
    align-items: flex-end;
  }
}
.hmns-notification__panel {
  pointer-events: auto;
  width: 100%;
  max-width: 240px;
  transform: translateY(0);
  border-radius: 6.4px;
  background: var(--c-bg-dark);
  box-shadow: 0 6.4px 19.2px rgba(16, 24, 40, 0.08);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease, opacity 0.28s ease;
}
@media screen and (min-width: 768px) {
  .hmns-notification__panel {
    transform: translateX(0);
  }
}
.hmns-notification__body {
  padding: 12.8px;
}
.hmns-notification__row {
  display: flex;
  gap: 9.6px;
  align-items: flex-start;
}
.hmns-notification__icon {
  flex: 0 0 auto;
}
.hmns-notification__icon-svg {
  width: 19.2px;
  height: 19.2px;
  color: #10b981;
}
.hmns-notification__content {
  flex: 1 1 auto;
  min-width: 0;
}
.hmns-notification__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-font);
}
.hmns-notification__message {
  margin: 4.8px 0 0;
  font-size: 14.4px;
  color: var(--c-border-light);
}
.hmns-notification__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.hmns-notification__close {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--c-border-light);
  cursor: pointer;
}
.hmns-notification__close-svg {
  width: 16px;
  height: 16px;
}
.hmns-notification {
  /* visually hidden helper */
}
.hmns-notification .hmns-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --ff-base: "ITC Officina Sans", Arial, sans-serif;
  --ff-alt: "Cricket Book", Arial, sans-serif;
  --w-desktop: 1280px;
  --w-laptop: 1024px;
  --w-tablet: 768px;
  --w-mobile: 375px;
  /* colors */
  --c-bg: #14141D;
  --c-bg-light: #222228;
  --c-bg-dark: #0E0E14;
  --c-icon-bg: #44444A;
  --c-red: #E4002B;
  --c-font: #fff;
  --c-border: #808080;
  --c-border-light: #fff;
  --c-submenu: #CCC;
  --c-collapse-menu: #e6e6e6;
  --c-collapse-active: #7FA3DC;
  --c-breadcrumbs: #7c7c9a;
  --border-radius: var(--theme-outer-border-radius, 9.6px);
  --button-radius: var(--theme-button-border-radius, 4.8px);
  --border-radius-lg: 24px;
  --container-width: 320px;
  --section-margin: 25.6px;
  --section-padding: 12.8px;
  /* fonts */
  --section-title: 25.6px;
  --subsection-title: 19.2px;
}
@media screen and (min-width: 768px) {
  :root {
    --container-width: 712px;
    --section-margin: 41.6px;
    --section-padding: 19.2px;
  }
}
@media screen and (min-width: 1280px) {
  :root {
    --container-width: 1280px;
    --section-padding: 32px;
  }
}

.theme-light {
  /* colors */
  --c-bg: #f4f4f4;
  --c-bg-dark: #f4f4f4;
  --c-bg-light: #fff;
  --c-icon-bg: #f5f5f5;
  --c-red: #E4002B;
  --c-font: #000;
  --c-border: #ededed;
  --c-border-light: #fff;
  --c-submenu: #000;
  --c-collapse-menu: #000;
  --c-collapse-active: #3665db;
}
.theme-light img[alt=icon],
.theme-light .hmns-footer-social img,
.theme-light .hmns-has-socials img,
.theme-light .hmns-mobile-socials img {
  /* inline SVGs: set their fill/currentColor */
  fill: var(--c-font);
  color: var(--c-font);
  /* fallback for external SVG/bitmap icons: turn into a dark silhouette */
  -webkit-filter: brightness(0) saturate(100%);
  filter: brightness(0) saturate(100%);
}

/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li::before,
li::after {
  content: "";
  display: none;
}

/* Remove default margin and padding */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default border */
fieldset {
  border: none;
}

/* Remove default background and color */
body {
  background: none;
  color: inherit;
}

/* Remove default table spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove quotes from blockquote and q */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* Remove default button and input styles */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

/* Remove default anchor styles */
a {
  text-decoration: none !important;
  color: inherit;
}

/* Remove default image border */
img {
  border-style: none;
}

html {
  font-size: 20px;
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: var(--c-bg);
  color: var(--c-font);
  font-family: var(--ff-base);
}

.container, .hmns-container {
  width: var(--container-width);
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container-fluid {
    max-width: var(--container-width);
    margin: 0 auto;
  }
}

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

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

.mx-auto {
  display: block;
  margin: 0 auto;
}

.section-padding {
  padding: var(--section-padding);
  border-radius: var(--border-radius);
}

.section-margin {
  margin-top: var(--section-margin);
  margin-bottom: var(--section-margin);
}

.no-scroll, .hmns-no-scroll {
  overflow: hidden;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.rotate-180 {
  transform: rotate(180deg);
}

.nums {
  display: flex;
}

.dropdown {
  position: relative;
  display: inline-flex;
  background-color: unset;
}
.dropdown-counter {
  background-color: var(--c-red);
  color: #fff;
  line-height: 1;
  padding: 1.6px 3.2px;
  border-radius: var(--button-radius);
}
.dropdown .filter-controls {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7.2px 16px 7.2px 9.6px;
  position: sticky;
  bottom: 0;
  background-color: var(--c-bg-light);
  border-top: 1px solid var(--c-bg-dark);
}
.dropdown a {
  color: var(--c-red);
}
.dropdown.active {
  z-index: 10;
}
.dropdown.active .dropdown-toggle {
  background-color: var(--c-bg-light);
  border-radius: var(--button-radius) var(--button-radius) 0 0;
}
.dropdown .rotate {
  transform: rotate(180deg);
}
.dropdown svg {
  width: 12.8px;
  height: 7.2px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7.2px;
  line-height: 1;
  cursor: pointer;
  padding: 7.2px 4.8px 7.2px 9.6px;
  white-space: nowrap;
}
@media screen and (min-width: 1280px) {
  .dropdown-toggle {
    padding: 7.2px 9.6px;
  }
}
.dropdown-items {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--c-bg-light);
  overflow: auto;
  max-height: 240px;
  white-space: nowrap;
  min-width: 160px;
  max-width: 100vw;
  border-radius: var(--button-radius);
}
.dropdown.right .dropdown-items {
  left: auto;
  right: 0;
}
.dropdown-item {
  padding: 7.2px 16px 7.2px 9.6px;
  cursor: pointer;
}

.btn-alt {
  border-radius: var(--button-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 9.6px 19.2px;
  font-size: 12.8px;
  line-height: 1;
  font-weight: 700;
  gap: 8px;
}
.btn-alt.mx-auto {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn-alt.mx-auto {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .btn-alt.xs-full {
    width: 100%;
  }
}
.btn-alt svg {
  height: 16px;
  width: auto;
}
@media screen and (min-width: 1280px) {
  .btn-alt svg {
    height: 19.2px;
  }
}
.btn-alt-outline {
  border: 1px solid var(--c-font);
}
.btn-alt-primary {
  background-color: var(--c-red);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 72px;
  height: 14.4px;
  border-radius: var(--button-radius);
  gap: 8px;
}
.btn.mx-auto {
  display: flex;
}
.btn svg {
  height: 16px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .btn {
    min-width: 112px;
    height: 20px;
    border-radius: var(--button-radius);
  }
}
@media screen and (min-width: 1280px) {
  .btn {
    min-width: 162.4px;
    height: 26.4px;
    border-radius: var(--button-radius);
  }
}
.btn-primary {
  background-color: var(--c-red);
  color: #fff;
  font-size: 14.4px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .btn-primary {
    font-size: 13.6px;
  }
}
@media screen and (min-width: 1280px) {
  .btn-primary {
    font-size: 19.2px;
  }
}
.btn-outline {
  border: 1px solid var(--c-font);
  color: var(--c-font);
  font-size: 14.4px;
}
@media screen and (min-width: 768px) {
  .btn-outline {
    font-size: 12.8px;
  }
}
@media screen and (min-width: 1280px) {
  .btn-outline {
    font-size: 17.6px;
  }
}
.btn {
  /* Larger size modifiers */
  /* btn--l: on mobile behaves like tablet size; scales up on tablet/desktop */
}
.btn--l {
  /* mobile: use tablet size */
  min-width: 112px;
  height: 20px;
  border-radius: 9.6px;
  font-size: 13.6px;
}
@media screen and (min-width: 768px) {
  .btn--l {
    min-width: 144px;
    height: 22.4px;
    font-size: 14.4px;
  }
}
@media screen and (min-width: 1280px) {
  .btn--l {
    min-width: 208px;
    height: 28.8px;
    font-size: 17.6px;
  }
}
.btn {
  /* btn--xl: on mobile behaves like desktop size; scales up on tablet/desktop */
}
.btn--xl {
  /* mobile: use desktop-like size */
  min-width: 162.4px;
  height: 26.4px;
  border-radius: 12.8px;
  font-size: 14.4px;
}
@media screen and (min-width: 768px) {
  .btn--xl {
    min-width: 208px;
    height: 32px;
    font-size: 17.6px;
  }
}
@media screen and (min-width: 1280px) {
  .btn--xl {
    min-width: 288px;
    height: 38.4px;
    font-size: 22.4px;
  }
}

input, textarea {
  background-color: #fff;
  color: #000;
  font-size: 9.6px;
  padding: 4px 9.6px;
  line-height: 1;
}
@media screen and (min-width: 1280px) {
  input, textarea {
    font-size: 14.4px;
  }
}
input.form-control, textarea.form-control {
  /* reset border, border-radius, background and hover styles */
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  height: unset;
  width: unset;
}
input.form-control + input.form-control, input.form-control + textarea.form-control, textarea.form-control + input.form-control, textarea.form-control + textarea.form-control {
  margin-top: 0;
}
input.form-control:not([readonly]):not([disabled]):hover, input.form-control:not([readonly]):not([disabled]):focus, input.form-control:not([readonly]):not([disabled]):active, textarea.form-control:not([readonly]):not([disabled]):hover, textarea.form-control:not([readonly]):not([disabled]):focus, textarea.form-control:not([readonly]):not([disabled]):active {
  background: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--c-font);
}
input.form-control, textarea.form-control {
  padding: 3.2px 9.6px;
  font-size: 12.8px;
  line-height: 19.2px;
  border-bottom: 1px solid var(--c-font);
  background-color: transparent;
  color: var(--c-font);
}

.checkbox-container {
  display: inline-flex;
  align-items: center;
  gap: 6.4px;
  cursor: pointer;
  line-height: 1;
}

.checkbox {
  width: 16px;
  height: 16px;
  border: 1.6px solid var(--c-border);
  display: inline-flex;
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .checkbox {
    width: 16px;
    height: 16px;
  }
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked + .checkbox {
  background-image: url("/local/lib/dist/icons/checkbox-input.svg");
  background-size: contain;
  background-position: center;
  background-color: var(--c-red);
  border-color: var(--c-red);
}

.form-control-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-control-wrapper label {
  font-size: 11.2px;
  color: var(--c-breadcrumbs);
  padding-left: 9.6px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.form-control-wrapper:has(input:not(:placeholder-shown)) label, .form-control-wrapper:has(textarea:not(:placeholder-shown)) label, .form-control-wrapper:has(input[value]:not([value=""])) label, .form-control-wrapper:has(textarea[value]:not([value=""])) label {
  opacity: 1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.modal__content {
  background: var(--c-bg);
  border-radius: 9.6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  padding: 19.2px 14.4px;
  min-width: 256px;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal__content {
    min-width: 272px;
    padding: 25.6px 22.4px;
  }
}
@media screen and (min-width: 1280px) {
  .modal__content {
    min-width: 384px;
    padding: 32px 28.8px;
  }
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 14.4px;
  color: var(--c-font);
  cursor: pointer;
  width: 20.8px;
  height: 16.8px;
}
@media screen and (min-width: 768px) {
  .modal__close {
    font-size: 17.6px;
    top: 12.8px;
    right: 12.8px;
  }
}

.breadcrumbs {
  color: var(--c-breadcrumbs);
  font-size: 14.4px;
  display: flex;
  flex-wrap: wrap;
  gap: 3.2px;
}
.breadcrumbs-item a {
  color: var(--c-breadcrumbs);
  text-decoration: none;
}
.breadcrumbs-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-item + .breadcrumbs-item::before {
  content: "/";
  margin: 0 3.2px;
  color: var(--c-breadcrumbs);
}

.sidemenu {
  background-color: var(--c-bg-dark);
  border-radius: var(--border-radius);
}
.sidemenu-title {
  display: none;
}
@media screen and (min-width: 1280px) {
  .sidemenu-title {
    display: block;
    margin-bottom: 19.2px;
  }
}
.sidemenu-list {
  display: flex;
  overflow-x: scroll;
  font-size: 16px;
  gap: 25.6px;
  padding: 0 var(--section-padding);
}
@media screen and (min-width: 1280px) {
  .sidemenu-list {
    font-size: 16px;
    overflow: unset;
    flex-direction: column;
    padding: 0;
    gap: 19.2px;
  }
}
.sidemenu-item, .sidemenu li.sidemenu-item {
  padding: 12.8px 0;
  line-height: 1;
  white-space: nowrap;
}
.sidemenu-item.active, .sidemenu li.sidemenu-item.active {
  border-bottom: 1px solid var(--c-red);
  color: var(--c-red);
  font-weight: bold;
}
.sidemenu-item:before, .sidemenu li.sidemenu-item:before {
  content: "";
  display: none;
}
.sidemenu-item a:hover, .sidemenu li.sidemenu-item a:hover {
  color: var(--c-red);
}
@media screen and (min-width: 1280px) {
  .sidemenu-item, .sidemenu li.sidemenu-item {
    padding: 0;
    white-space: normal;
  }
  .sidemenu-item.active, .sidemenu li.sidemenu-item.active {
    border: 0;
  }
}
@media screen and (min-width: 1280px) {
  .sidemenu {
    padding: 32px;
  }
}

.success-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12.8px;
  margin-top: 25.6px;
}

.section-title {
  font-size: var(--section-title);
  line-height: 1.2;
  font-weight: 700;
}

.subsection-title {
  font-size: var(--subsection-title);
  line-height: 1.3;
  font-weight: 700;
}

.section-description {
  font-size: 16px;
  line-height: 1.3;
}
.section-description p {
  margin: 1em 0;
}
.section-description {
  line-height: 1.5;
  color: inherit;
}
.section-description img {
  max-width: 100%;
  height: auto;
}
.section-description p, .section-description li {
  margin: 12.8px 0;
}
.section-description {
  /* headings in percentages (relative to .seo-content font-size) */
}
.section-description h1 {
  font-size: 200%;
  line-height: 1.1;
  margin: 25.6px 0 9.6px;
  font-weight: 700;
}
.section-description h2 {
  font-size: 160%;
  line-height: 1.15;
  margin: 22.4px 0 8px;
  font-weight: 700;
}
.section-description h3 {
  font-size: 135%;
  line-height: 1.2;
  margin: 19.2px 0 6.4px;
  font-weight: 700;
}
.section-description h4 {
  font-size: 115%;
  line-height: 1.25;
  margin: 16px 0 4.8px;
  font-weight: 700;
}
.section-description h5 {
  font-size: 100%;
  line-height: 1.3;
  margin: 14.4px 0 3.2px;
  font-weight: 700;
}
.section-description {
  /* media, figures */
}
.section-description img,
.section-description video,
.section-description figure {
  max-width: 100%;
  height: auto;
}
.section-description {
  /* lists */
}
.section-description ol {
  list-style-type: decimal;
}
.section-description ul {
  list-style-type: disc;
}
.section-description ul,
.section-description ol {
  margin: 12.8px 0;
  padding-left: 22.4px;
}
.section-description li {
  margin: 4.8px 0;
}
.section-description {
  /* blockquote */
}
.section-description blockquote {
  margin: 16px 0;
  padding-left: 12.8px;
  border-left: 3.2px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.85);
  font-style: italic;
}
.section-description {
  /* code / pre */
}
.section-description pre {
  background: rgba(0, 0, 0, 0.04);
  padding: 9.6px;
  border-radius: 4.8px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Noto Sans Mono", monospace;
  font-size: 0.875em;
}
.section-description code {
  background: rgba(0, 0, 0, 0.04);
  padding: 0 4.8px;
  border-radius: 3.2px;
  font-family: inherit;
  font-size: 0.95em;
}
.section-description {
  /* horizontal rule */
}
.section-description hr {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  margin: 25.6px 0;
}
.section-description {
  /* links */
}
.section-description a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2.4px;
}
.section-description {
  /* tables */
}
.section-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.section-description th,
.section-description td {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6.4px;
}

.seo-content {
  line-height: 1.5;
  color: inherit;
}
.seo-content img {
  max-width: 100%;
  height: auto;
}
.seo-content p, .seo-content li {
  margin: 12.8px 0;
}
.seo-content {
  /* headings in percentages (relative to .seo-content font-size) */
}
.seo-content h1 {
  font-size: 200%;
  line-height: 1.1;
  margin: 25.6px 0 9.6px;
  font-weight: 700;
}
.seo-content h2 {
  font-size: 160%;
  line-height: 1.15;
  margin: 22.4px 0 8px;
  font-weight: 700;
}
.seo-content h3 {
  font-size: 135%;
  line-height: 1.2;
  margin: 19.2px 0 6.4px;
  font-weight: 700;
}
.seo-content h4 {
  font-size: 115%;
  line-height: 1.25;
  margin: 16px 0 4.8px;
  font-weight: 700;
}
.seo-content h5 {
  font-size: 100%;
  line-height: 1.3;
  margin: 14.4px 0 3.2px;
  font-weight: 700;
}
.seo-content {
  /* media, figures */
}
.seo-content img,
.seo-content video,
.seo-content figure {
  max-width: 100%;
  height: auto;
}
.seo-content {
  /* lists */
}
.seo-content ol {
  list-style-type: decimal;
}
.seo-content ul {
  list-style-type: disc;
}
.seo-content ul,
.seo-content ol {
  margin: 12.8px 0;
  padding-left: 22.4px;
}
.seo-content li {
  margin: 4.8px 0;
}
.seo-content {
  /* blockquote */
}
.seo-content blockquote {
  margin: 16px 0;
  padding-left: 12.8px;
  border-left: 3.2px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.85);
  font-style: italic;
}
.seo-content {
  /* code / pre */
}
.seo-content pre {
  background: rgba(0, 0, 0, 0.04);
  padding: 9.6px;
  border-radius: 4.8px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Noto Sans Mono", monospace;
  font-size: 0.875em;
}
.seo-content code {
  background: rgba(0, 0, 0, 0.04);
  padding: 0 4.8px;
  border-radius: 3.2px;
  font-family: inherit;
  font-size: 0.95em;
}
.seo-content {
  /* horizontal rule */
}
.seo-content hr {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  margin: 25.6px 0;
}
.seo-content {
  /* links */
}
.seo-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2.4px;
}
.seo-content {
  /* tables */
}
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.seo-content th,
.seo-content td {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6.4px;
}
@media screen and (max-width: 1279px) {
  .seo-content {
    font-size: 9px;
  }
  .seo-content p, .seo-content li {
    font-size: 150%;
  }
}

/* Responsive show/hide utilities (with hmns- prefixed aliases)
   - mobile: < $tablet
   - tablet: >= $tablet and < $laptop
   - desktop: >= $desktop (all desktop variants)
   Utilities use `display: initial` to restore element's default display.
   Use !important to reliably override other rules.
*/
.mobile-show, .hmns-mobile-show {
  display: none !important;
}

.mobile-hide, .hmns-mobile-hide {
  display: initial !important;
}

@media screen and (max-width: 767px) {
  .mobile-show, .hmns-mobile-show {
    display: initial !important;
  }
  .mobile-hide, .hmns-mobile-hide {
    display: none !important;
  }
}
.tablet-show, .hmns-tablet-show {
  display: none !important;
}

.tablet-hide, .hmns-tablet-hide {
  display: initial !important;
}

@media screen and (min-width: 768px) {
  .tablet-show, .hmns-tablet-show {
    display: initial !important;
  }
  .tablet-hide, .hmns-tablet-hide {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tablet-show, .hmns-tablet-show {
    display: none !important;
  }
  .tablet-hide, .hmns-tablet-hide {
    display: initial !important;
  }
}
.desktop-show, .hmns-desktop-show {
  display: none !important;
}

.desktop-hide, .hmns-desktop-hide {
  display: initial !important;
}

@media screen and (min-width: 1280px) {
  .desktop-show, .hmns-desktop-show {
    display: initial !important;
  }
  .desktop-hide, .hmns-desktop-hide {
    display: none !important;
  }
}