/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #1A1A19;
  --secondary-color: #1A1A19;
  --primary-bg-color: #FFFCFA;
  --primary-bg-color-always: #FFFCFA;
  --secondary-bg-color: #F2EFEC;
  --secondary-bg-color-always: #F2EFEC;
  --primary-text-color: #333231;
  --secondary-text-color: #807E7C;
  --link-color: #807E7C;
  --border-color: #999794;
  --placeholder-text-color: #807E7C;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #B24109;
  --primary-color-hover: #000;
  --primary-color-active: #000;
  --secondary-color-hover: #000;
  --secondary-color-active: #000;
  --secondary-bg-color-hover: #eae5e0;
  --secondary-bg-color-active: #e6e0da;
  --secondary-text-color-hover: #767472;
  --secondary-text-color-active: #706f6d;
  --link-color-hover: #615f5e;
  --link-color-active: #595856;

  /* Text */
  --text-font-family: 'Swis721 BT', sans-serif;
  --heading-font-family: 'Swis721 BT', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 44px;
  --heading-2-font-size: 33px;
  --heading-3-font-size: 22px;
  --heading-4-font-size: 19px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

  /* Other */
  --border-radius-base: 0px;
  --border-radius-small: calc(0px / 2);
  --border-radius-button: 8px;
  --logo-height: 26px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 0px 15px rgba(0, 0, 0, .15);
  --duration: 400ms;
  --timing-function: cubic-bezier(.17, .67, .54, 1);
  --assets-check-svg: url(/hc/theming_assets/01KS24P6EC7S99KB641P7APGZX);
}

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

body,
html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 140px !important;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2%;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  background-color: var(--primary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

a.link-primary,
.my-activities-menu__item a {
  color: var(--primary-color);
}

a.link-primary:hover,
.my-activities-menu__item a:hover {
  color: var(--primary-color-hover);
}

a.link-primary:active,
a.link-primary.is-active,
.my-activities-menu__item a:active {
  color: var(--primary-color-active);
}

.my-activities-menu__item.is-active a {
  color: var(--primary-text-color);
}

a.link-secondary {
  color: var(--secondary-color);
}

a.link-secondary:hover {
  color: var(--secondary-color-hover);
}

a.link-secondary:active,
a.link-secondary.is-active {
  color: var(--secondary-color-active);
}

a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

a,
button,
[type=submit],
[type=button],
[type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

figure {
  margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.iframe {
  position: relative;
}

.iframe iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-container {
  width: 100%;
  overflow-y: auto;
}

.list-unstyled {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.list-unstyled li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.is-hidden,
[hidden] {
  display: none !important;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .is-hidden--xl {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .is-hidden--lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .is-hidden--md {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .is-hidden--sm {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .is-hidden--xl-down {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-hidden--lg-down {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-hidden--md-down {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .is-hidden--sm-down {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .is-hidden--xs,
  .is-hidden--xs-down {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .is-hidden--xxl,
  .is-hidden--xxl-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-hidden--xl-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-hidden--lg-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-hidden--md-up {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .is-hidden--sm-up {
    display: none !important;
  }
}

[dir=ltr] .is-hidden--ltr {
  display: none !important;
}

[dir=rtl] .is-hidden--rtl {
  display: none !important;
}

.ui-light .is-hidden--light-mode {
  display: none !important;
}

.ui-dark .is-hidden--dark-mode {
  display: none !important;
}

/********
 Headings
 ********/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--heading-font-family);
  font-weight: 500;
  letter-spacing: -2%;
}

h1, .h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

h2, .h2 {
  font-size: 25px;
  line-height: 27px;
}

h3, .h3,
h4, .h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

h5, .h5 {
  font-size: var(--heading-5-font-size);
}

h6, .h6 {
  font-size: var(--heading-5-font-size);
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  h2, .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  h3, .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }
}

h1,
.h1 {
  margin: 0 0 1.2em;
}

.markdown h1,
.markdown .h1 {
  margin-top: 1.2em;
}

.markdown > *:first-child {
  margin-top: 0;
}

.markdown > *:last-child {
  margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 8px;
  padding: 0;
}

.breadcrumbs--bottom {
  margin: 8px 0 0;
}

.breadcrumbs li {
  font-size: 14px;
  line-height: 19px;
  margin-right: 6px;
  display: block;
  position: relative;
}

.breadcrumbs--bottom li {
  font-size: 12px;
  line-height: 16px;
}

.breadcrumbs:not(.breadcrumbs--bottom) li:last-child {
  font-weight: bold;
}

.breadcrumbs li + li {
  padding-left: 16px;
}

.breadcrumbs li + li::before {
  content: ">";
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .breadcrumbs li {
    margin-right: 12px;
  }

  .breadcrumbs li + li {
    padding-left: 16px;
  }
}

/* Inner pages */
.inner-page-heading .section__title {
  margin-bottom: 12px;
}

.section__description {
  color: var(--secondary-text-color);
}

.inner-page-heading--center {
  text-align: center;
}

.inner-page {
  background-color: var(--primary-bg-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.inner-page .category-list__item {
  background-color: var(--secondary-bg-color);
}

.inner-page .category-list__item:hover,
.inner-page .category-list__item:active {
  box-shadow: none;
}

.inner-page__sections {
  margin-bottom: 10px;
}

.inner-page__sections .col-12 {
  margin-bottom: 30px;
}

.entry-info {
  display: flex;
  font-size: 14px;
}

.entry-info__avatar {
  flex-shrink: 0;
}

[dir=ltr] .entry-info__avatar {
  padding-right: 12px;
}

[dir=rtl] .entry-info__avatar {
  padding-left: 12px;
}

.avatar {
  position: relative;
  display: inline-block;
}

.user-avatar {
  border-radius: 100%;
}

.user-avatar--profile {
  margin-bottom: 12px;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

.meta {
  font-size: var(--text-font-size-small);
  color: var(--secondary-text-color);
}

.inner-page__rightbar + .inner-page__rightbar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.inner-page__rightbar h3,
.recent-articles-title,
.related-articles-title,
.recent-articles h3 {
  margin: 0 0 24px;
  font-size: var(--heading-3-font-size);
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
  display: block;
}

.related-articles ul li,
.recent-articles ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.share {
  display: flex;
  margin: 24px 0;
  padding: 0;
}

.share li {
  display: block;
  margin: 0 12px 0 0;
  padding: 0;
  list-style: none;
}

.attachments {
  margin: 24px 0;
}

.attachment-list {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.attachment-list__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attachment-list__item + .attachment-list__item {
  margin-top: 8px;
}

.attachment-list__item i {
  color: var(--primary-color);
}

.article-vote {
  margin: 40px 0;
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 24px;
  text-align: center;
}

.article-vote__title {
  margin: 0 0 24px;
}

.article-vote__count {
  margin-top: 12px;
}

.article-more-questions {
  display: none !important;
}

/* Comments */
.comments__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.comments__title {
  margin: 0;
}

.comments__container {
  background-color: var(--primary-bg-color);
  padding: 40px;
}

.comment-form__body textarea {
  height: 112px;
  background-color: var(--secondary-bg-color);
  border-color: var(--primary-color);
}

.comment-form__attachments,
.comment-form__controls {
  margin-top: 8px;
}

.comment-form__ccs ul {
  display: block;
  margin: 0 0 8px;
}

.comment-form__mark-as-solved {
  display: flex;
  margin-bottom: 8px;
}

.comment-form__mark-as-solved label {
  margin-left: 8px;
}

.comments__list {
  padding: 0 40px 16px;
  margin: 0 -40px 40px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.comments__list--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  position: relative;
  margin-bottom: 16px;
}

.comment__left {
  width: 100%;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.comment__sidebar ~ .comment__left {
  width: calc(100% - 42px);
  min-height: 80px;
}

.comment + .comment {
  padding-top: 16px;
  border-top: var(--border-width) solid var(--border-color);
}

.comment + .comment .comment__sidebar {
  top: 24px;
}

.comment__heading {
  display: flex;
  align-items: center;
}

.comment__title {
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 8px;
  color: var(--primary-text-color);
}

.user-avatar {
  margin-right: 12px;
}

.comment__body {
  font-size: 14px;
  line-height: 19px;
  color: var(--secondary-text-color);
}

.comment__body .h5 {
  font-size: 18px;
}

.comment__actions {
  margin-top: 4px;
}

.request-details {
  display: flex;
  flex-wrap: wrap;
}

.request-details dt {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-weight: bold;
}

.request-details dd {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  color: var(--secondary-text-color);
}

.request-status {
  padding: 2px 8px;
  border: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
}

.request-status--open,
.request-status--new {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.request-status--answered {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.request-status--solved,
.request-status--closed {
  background-color: var(--success-color);
  color: var(--white-color);
}

/**/
.my-activities-menu {
  display: flex;
  padding: 0;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: -32px;
}

.my-activities-menu__item {
  display: block;
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 480px) {
  .my-activities-menu__item {
    margin: 0 12px 0 0;
  }
}

.my-activities-menu__item.is-active {
  padding: 0 0 12px;
  border-bottom: 3px solid var(--primary-color);
}

.my-activities {
  width: 100%;
}

.my-activities thead {
  font-weight: bold;
}

.my-activities thead td {
  padding-bottom: 12px;
}

.my-activities tbody td {
  padding: 4px 0;
}

.my-activities__btn {
  width: 10px;
}

.pagination {
  display: block;
  margin: 24px 0;
}

.pagination-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-list li + li {
  margin-left: 4px;
}

@media (max-width: 767px) {
  .my-activities__is-hidden {
    display: none !important;
  }
}

.my-activities thead .requests-link,
.my-activities thead .requests-link:hover,
.my-activities thead .requests-link:active {
  color: var(--primary-text-color);
}

.my-activities thead .requests-sort-symbol {
  font-size: 10px;
  color: var(--link-color);
  margin-left: 4px;
}

#search-filter {
  margin-bottom: 40px;
}

.filter {
  margin: 0;
}

@media (min-width: 768px) {
  .filter {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  #search-filter h3::after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f107";
    color: var(--secondary-text-color);
    margin-left: 8px;
  }
}


.filter li {
  padding: 4px 0;
}

.filter__btn {
  margin-top: 24px;
}

.topic-list__item + .topic-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.topic-list__heading {
  margin-top: 0;
}

.topic-list + .pagination {
  margin-top: 40px;
}

.topic-controls {
  margin-bottom: 40px;
}

.vote-sum {
  margin: 0 12px;
}

/* Profile */
.profile-stats:first-child {
  margin-top: 0;
}

.profile-stats__stat {
  display: flex !important;
}

.profile-stats__label {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

.profile-stats__label::after {
  content: ':';
}

.profile-stats__value {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  font-weight: bold;
  font-size: var(--text-font-size-small);
}

.community-badges-block {
  padding-bottom: 24px;
}

.community-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badges img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.community-badge-titles {
  display: inline-block;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size-small);
  font-weight: normal;
  background-color: var(--secondary-color);
  padding: 2px 4px;
  border-radius: var(--border-radius-button);
  color: var(--white-color);
  line-height: 1;
  vertical-align: middle;
}

.profile-heading {
  margin-bottom: 40px;
}

.profile-heading h2 {
  margin: 0 0 12px;
}

.profile-user-meta > span {
  display: block;
  font-weight: bold;
  color: var(--primary-text-color);
}

.profile-badges-item-image {
  display: block;
  margin-right: 12px;
}

.profile-badges-item-image img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-badges-item-image.titles {
  border-radius: 50%;
  background-color: var(--secondary-text-color);
}

.profile-badges-item-metadata {
  margin-top: 12px;
}

/* Header */
.header-container,
.footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 1440px) {
  .header-container,
  .footer-container {
    padding: 0 50px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.topbar {
  background-color: #1A1A19;
  color: #fff;
  height: 32px;
  font-size: 11px;
  line-height: 16px;
  padding: 8px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.topbar__back-link {
  width: 180px;
}

a.topbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

a.topbar-link:hover {
  opacity: .75;
}

.topbar__center {
  text-align: center;
}

.topbar__center a {
  text-decoration: underline 1px;
  color: #fff;
}

.topbar__center a:hover {
  text-decoration: none;
}

.topbar__right {
  width: 180px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.header__logo {
  height: 68px;
  display: flex;
  align-items: center;
}

.header__logo img {
  display: block;
  height: var(--logo-height);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header__menu a {
  display: block;
  position: relative;
  padding: 22px 18px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .02em;
  color: var(--primary-text-color);
}

.header__menu a::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-text-color);
  transition: all .2s ease;
}

.header__menu a:hover::before {
  width: calc(100% - 36px);
}

.header__burger {
  display: none;
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 24px;
  }

  .topbar__center {
    display: none;
  }

  .header__logo {
    height: 68px;
  }

  .header__logo img {
    height: 26px;
  }

  .header__menu {
    position: absolute;
    top: 100%;
    bottom: unset;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 24px 0;
    box-shadow: 0 0 0 transparent;
    transition: all .2s ease;
    transform: translateX(-100%);
  }

  .header__menu.is-active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
  }

  .header__menu a {
    padding: 6px 24px;
    line-height: 24px;
    width: 100%;
    text-align: left;
  }

  .header__menu a::before {
    display: none;
  }

  .header__burger {
    display: block;
    width: 28px;
    height: 28px;
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
  }

  .header__burger span {
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--primary-text-color);
    position: absolute;
    left: 4px;
    transition: all .2s ease;
  }

  .header__burger span:nth-child(2) {
    top: 50%;
  }

  .header__burger span:nth-child(1) {
    top: 8px;
  }

  .header__burger span:nth-child(3) {
    bottom: 7px;
  }

  .header__burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .header__burger.is-active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }

  .header__burger.is-active span:nth-child(3) {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
  }
}

/* Welcome */
.welcome,
.new-request-welcome {
  padding: 188px 0 188px;
  background: url(/hc/theming_assets/01KS24P9V1SZ7PQQ0VCY6Y7JYS) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 98;
}

.welcome .container {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.welcome::before {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #33323180;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.welcome.is-active::before {
  opacity: 1;
  visibility: visible;
}

.welcome__title {
  text-align: center;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -2%;
  font-family: Inter, sans-serif;
}

.welcome__search {
  display: block;
  position: relative;
}

.welcome__search .meta {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.welcome__search input[type=search] {
  height: 54px;
  padding-left: 16px;
  outline: none;
  border: none;
}

.welcome__search input[type=search]:focus,
.welcome__search input[type=search]:active {
  outline: none;
}

.welcome__search input[type=submit] {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.welcome__search input[type=submit],
.welcome__search input[type=submit]:hover,
.welcome__search input[type=submit]:focus,
.welcome__search input[type=submit]:active {
  background-color: transparent;
  color: transparent;
  border-color: transparent;
}

.welcome__search::after {
  content: '';
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6563 16.9124C7.20502 16.9124 4.40002 14.104 4.40002 10.6562C4.40002 7.20834 7.20502 4.3999 10.6563 4.3999C14.1075 4.3999 16.9125 7.20834 16.9125 10.6562C16.9125 14.104 14.1075 16.9124 10.6563 16.9124ZM10.6563 5.2249C7.66221 5.2249 5.22502 7.66209 5.22502 10.6562C5.22502 13.6502 7.66221 16.0874 10.6563 16.0874C13.6503 16.0874 16.0875 13.6502 16.0875 10.6562C16.0875 7.66209 13.6503 5.2249 10.6563 5.2249Z' fill='%23333231'/%3E%3Cpath d='M16.1028 15.5197L15.5194 16.103L19.6443 20.2279L20.2276 19.6445L16.1028 15.5197Z' fill='%23333231'/%3E%3C/svg%3E%0A") no-repeat center;
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .welcome {
    padding: 120px 0;
  }
}

@media (max-width: 575px) {
  .welcome {
    padding: 64px 0 88px;
  }

  .welcome__title {
    margin-bottom: 8px;
    font-size: 25px;
    line-height: 27px;
  }

  .welcome__search input[type=search] {
    height: 46px;
    min-height: 46px;
  }
}

[dir] .row--min {
  margin-right: -8px;
  margin-left: -8px;
  row-gap: 16px;
}

[dir] .row--min .col-12 {
  padding-right: 8px;
  padding-left: 8px;
}

/* Category list */
.category-list {
  background-color: var(--primary-bg-color);
  padding: 64px 0;
}

.category-list__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  height: 100%;
  padding: 32px 16px;
  transition: all var(--duration) var(--timing-function);
}

.category-list__item:hover {
  background-color: #F7F5F3;
  box-shadow: 0 2px 16px 0 #0000001A;
}

.category-list__title {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-text-color);
  transition: color var(--duration) var(--timing-function);
  font-size: 19px;
  line-height: 21px;
  letter-spacing: -2%;
  font-weight: 500;
}

.category-list__description {
  color: var(--secondary-text-color);
  transition: color var(--duration) var(--timing-function);
  font-size: 14px;
  line-height: 20px;
}

.category-list__item-image {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 60px;
}

/* Page */
.page {
  padding: 64px 0;
}

.page-heading {
  margin: 0 0 64px;
}

.page-heading__title {
  margin: 0;
}

.page-heading__subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #999794;
  margin-bottom: 8px;
}

.page-heading__description {
  margin-top: 12px;
}

/* Footer cta */
.footer-cta {
  padding: 64px 0;
  background-color: var(--secondary-bg-color);
  text-align: center;
}

.footer-cta__title {
  margin: 0 0 8px;
}

.footer-cta__subtitle {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 28px;
}

.footer-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 32px;
  color: var(--primary-text-color);
  height: 100%;
}

.footer-cta-block:hover {
  background-color: #F7F5F3;
  color: #333231;
  box-shadow: 0 2px 16px 0 #0000001A;
}

.footer-cta-block__img {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
}

.footer-cta-block__title {
  display: block;
  font-weight: 500;
  letter-spacing: -2%;
  font-size: 19px;
  line-height: 21px;
  margin-bottom: 8px;
}

.footer-cta-block__description {
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.footer-cta-block__link {
  display: block;
  margin-top: 24px;
  text-transform: uppercase;
  color: #666563;
  font-family: 'Swiss 721 Condensed BT', sans-serif;
  border-bottom: 0.5px solid currentColor;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 15%;
  transition: all .2s ease;
}

.footer-cta-block:hover .footer-cta-block__link {
  color: var(--primary-text-color);
}

/* Footer */
.footer {
  color: #fff;
  background-color: #1A1A19;
  padding: 64px 0;
  font-family: Inter, sans-serif;
}

.footer__logo {
  display: block;
  width: 163px;
  margin-bottom: 22px;
}

.footer__text {
  font-size: 25px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 64px;
}

@media (min-width: 992px) {
  .footer__text {
    width: 66%;
  }
}

.footer-menu__heading {
  font-size: 19px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 16px;
}

.footer .row {
  row-gap: 32px;
}

.footer-menu__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.footer-menu__list li,
.footer-soc__list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu__list li a {
  color: #BBBBBB;
  font-size: 14px;
  line-height: 19px;
}

.footer-menu__list li a:hover {
  color: #fff;
}

.footer-soc__title {
  font-size: 33px;
  line-height: 37px;
  font-weight: 500;
  letter-spacing: -2%;
  margin-bottom: 8px;
}

.footer-soc__description {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 24px;
}

.footer-soc__list {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer-soc__list li a:hover {
  opacity: .75;
}

/* Section */
.section {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 42px 0;
  }
}

.inner-page-heading {
  padding: 32px 0;
  background-color: var(--secondary-bg-color);
}

/* Category tree */
.category-tree__section {
  margin-bottom: 42px;
}

.category-tree__section-name {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-text-color);
}

.category-tree__subsections,
.category-tree__articles {
  display: block;
  margin-bottom: 12px;
}

.category-tree__subsection {
  display: block;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-small);
  padding: 4px 12px;
}

.category-tree__subsection + .category-tree__subsection {
  margin-top: 4px;
}

.category-tree__article {
  display: block;
}

.category-tree__article + .category-tree__article {
  margin-top: 4px;
}

.comments {
  background-color: var(--secondary-bg-color);
}

.comments__container {
  border-radius: var(--border-radius-base);
}

.markdown {
  width: 100%;
  overflow: hidden;
}

.markdown pre {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  font-size: 14px;
  padding: 12px;
  overflow-x: auto;
}

[dir] zd-autocomplete-title-multibrand,
[dir] zd-autocomplete-header {
  font-family: var(--heading-font-family);
  font-size: var(--text-font-size);
  line-height: 1.5;
  color: var(--link-color);
  margin-bottom: 8px;
}

[dir] zd-autocomplete-multibrand,
[dir] zd-autocomplete-option {
  font-family: var(--text-font-family);
  line-height: 1.5;
  font-size: var(--heading-6-font-size);
  color: var(--link-color);
  border-color: var(--border-color);
  transition: all var(--duration) var(--timing-function);
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-radius: 0;
}

[dir] zd-autocomplete-multibrand:hover,
[dir] zd-autocomplete-multibrand[aria-selected="true"],
[dir] zd-autocomplete-option:hover,
[dir] zd-autocomplete-option[aria-selected="true"] {
  background-color: var(--secondary-bg-color);
  box-shadow: var(--primary-color) 3px 0 inset;
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-bottom: none !important;
}

[dir] zd-autocomplete-breadcrumbs-multibrand {
  color: var(--secondary-text-color) !important;
}

.my-activities__filter {
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 32px;
}

.my-activities__filter > * + * {
  margin-left: 8px;
}

.my-activities__filter label[for] {
  margin-bottom: 4px;
}

.my-activities__search {
  width: 50%;
  position: relative;
}

.my-activities__search input[type="search"] {
  padding-left: 42px;
}

.my-activities__search::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f002";
  left: 15px;
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .my-activities__filter {
    flex-direction: column;
  }

  .my-activities__filter > * {
    width: 100%;
  }

  .my-activities__filter > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
}

.markdown > * {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
  white-space: pre;
}

.wysiwyg-body pre {
  background-color: var(--secondary-bg-color) !important;
  border: 1px solid var(--border-color);
  color: var(--primary-text-color);
  padding: 10px 15px;
  white-space: pre;
  border-radius: 3px;
  overflow-x: auto;
}

.wysiwyg-body pre code {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  font-style: italic;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.approval-request .fSbCBS {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
}

.approval-request .bFtQSZ {
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-base);
}

.powered-by-zendesk a {
  color: var(--secondary-text-color);
}

[dir] zd-summary-block {
  color: var(--primary-text-color);
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  border-color: var(--primary-color);
}

/* Blockquotes */
.markdown blockquote {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

[dir=ltr] .markdown blockquote {
  border-top-right-radius: var(--border-radius-base, 8px);
  border-bottom-right-radius: var(--border-radius-base, 8px);
  border-left: 4px solid var(--primary-color, #000c20);
  padding: 8px 0 8px 12px;
}

[dir=rtl] .markdown blockquote {
  border-top-left-radius: var(--border-radius-base, 8px);
  border-bottom-left-radius: var(--border-radius-base, 8px);
  border-right: 4px solid var(--primary-color, #000c20);
  padding: 8px 12px 8px 0;
}

@media (min-width: 768px) {
  [dir=ltr] .markdown blockquote {
    padding: 8px 0 8px 24px;
  }

  [dir=rtl] .markdown blockquote {
    padding: 8px 24px 8px 0;
  }
}

.markdown blockquote::before {
  content: "\f10e";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  z-index: -1;
  top: -8px;
  font-size: 50px;
  color: var(--secondary-bg-color, #f1f4fa);
}

[dir=ltr] .markdown blockquote::before {
  left: 8px;
}

[dir=rtl] .markdown blockquote::before {
  right: 8px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  [dir=ltr] .markdown blockquote::before {
    left: 12px;
  }

  [dir=rtl] .markdown blockquote::before {
    right: 12px;
  }
}

@media (min-width: 1024px) {
  [dir=ltr] .markdown blockquote::before {
    left: 16px;
  }

  [dir=rtl] .markdown blockquote::before {
    right: 16px;
  }
}

/* Tables */
[dir] figure.wysiwyg-table {
  display: block;
  width: 100%;
  overflow-y: auto;
}

#service-catalog a {
  color: var(--primary-text-color);
}

/* Copyright */
.powered-by-zendesk {
  display: none !important;
}

html[dir] .pp-copyright {
  display: block;
  padding: 0 6px 16px 6px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background-color: #1A1A19;
  text-decoration: none;
}

html[dir] .pp-copyright span {
  opacity: 0.5;
  text-decoration: none;
  transition: all .3s ease;
}

html[dir] .pp-copyright:hover span {
  opacity: 1;
  text-decoration: underline;
}

html[dir] select.select-organization[disabled] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: text;
  outline: none;
}

/* Section list */
.section-list,
.section-list-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .section-list-row {
    flex-direction: row;
  }

  .section-list-col {
    width: calc(100% - 12px);
  }
}

.section-list-item__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #807E7C;
  padding: 8px 0;
}

.section-list-item__name {
  font-size: 19px;
  line-height: 21px;
  letter-spacing: -2%;
  font-weight: 500;
  color: var(--primary-text-color);
  position: relative;
  display: block;
  padding-right: 20px;
}

.section-list-item__name::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  width: 20px;
  height: 20px;
  background: url(/hc/theming_assets/01KS24P6BE0AT5FZYVAKXGHVF2) no-repeat right center;
}

.section-list-item.is-open .section-list-item__name::after {
  background-image: url(/hc/theming_assets/01KS24P6B37GCKAXC4QQE935R9);
}

.section-list-item__description {
  font-size: 12px;
  line-height: 16px;
  color: var(--secondary-text-color);
}

.section-list-item__body {
  padding: 16px 0 0 24px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-list__item {
  font-size: 14px;
  line-height: 19px;
  color: #333231;
}

.article-list__item--more {
  margin-top: 8px;
  font-weight: bold;
}

.article-list__item--section {
  font-weight: bold;
}

.empty {
  font-style: italic;
}

.sidebar-box {
  padding: 16px;
  background-color: #F7F5F3;
  margin-bottom: 24px;
}

.sidebar-box__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.sidebar-box__list li {
  display: block;
  margin: 0;
  padding: 0;
}

.sidebar-box__list li a {
  display: inline;
  color: #666563;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -2%;
}

.sidebar-box__title {
  margin: 0 0 16px;
}

.article-sidebar {
  position: sticky;
  top: 140px;
}

.article-footer {
  display: none !important;
}

.sidebar-box__more a {
  display: block;
  position: relative;
  margin-top: 24px;
  text-transform: uppercase;
  color: #666563;
  font-family: 'Swiss 721 Condensed BT', sans-serif;
  border-bottom: 0.5px solid currentColor;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 15%;
  transition: all .2s ease;
}

.sidebar-box__more a::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(100% + 10px);
  background: 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='M19.0583 11.5464H4.49707V12.4464H19.0583V11.5464Z' fill='%23666563'/%3E%3Cpath d='M13.0652 19.0691L12.4277 18.4316L18.2402 12.6154C18.4915 12.3641 18.7465 12.1091 18.8065 11.9966C18.7502 11.8841 18.4915 11.6291 18.2402 11.3779L12.4277 5.56914L13.0652 4.93164L18.8777 10.7404C19.4177 11.2804 19.714 11.5766 19.714 11.9966C19.714 12.4166 19.4177 12.7129 18.8777 13.2529L13.0652 19.0691Z' fill='%23666563'/%3E%3C/svg%3E%0A") no-repeat center;
  background-size: contain;
}

.pagination-list {
  justify-content: center;
  gap: 24px;
}

.pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link {
  font-size: 14px;
  line-height: 19px;
  color: var(--primary-text-color);
}

.quick-navigation {
  padding: 64px 0;
}

.quick-navigation__heading {
  text-align: center;
  margin: 0 0 22px;
}

.quick-navigation__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.quick-navigation__list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.no-results {
  margin-top: -8px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.no-results__title {
  margin: 0;
}

.no-results__description {
  margin-top: -8px;
}

.no-results__buttons {
  display: flex;
  gap: 16px;
}

.new-request-welcome {
  --aspect-ratio: 3.015312131919906;
  padding-top: calc(100% / var(--aspect-ratio));
  padding-bottom: 0;
  position: relative;
}

.new-request-welcome h1 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 70px;
  font-size: 80px;
  color: #fff;
  margin: 0;
}

@media (max-width: 991px) {
  .new-request-welcome {
    padding-top: 233px;
  }
  .new-request-welcome h1 {
    padding: 24px 20px;
    font-size: 25px;
    line-height: 27px;
  }
}

.form-field-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-field-buttons .btn {
  padding: 8px 24px;
  border-radius: 8px;
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.thank-you-page__img {
  display: block;
  width: 50%;
  max-width: 485px;
}

.thank-you-page__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 10px;
  max-width: 580px;
}

.thank-you-page__title {
  margin: 0 0 8px;
}

.thank-you-page__description {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 24px;
}

.thank-you-page__buttons {
  display: flex;
  gap: 8px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  padding-top: 64px;
}

.footer__bottom-left {
  color: #bbbbbb;
  text-align: center;
}

.footer__bottom-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  row-gap: 8px;
}

html[dir] .footer__bottom a {
  color: #bbbbbb;
}

html[dir] .footer__bottom a:hover {
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column-reverse;
  }
}

/* Search */
zd-autocomplete {
  display: none !important;
}

.welcome__search {
  position: relative;
}

.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  padding: 24px 16px;
  background-color: var(--primary-bg-color);
  margin-top: 8px;
  max-height: calc(100dvh - 200px);
  overflow-y: auto;
}

.search-autocomplete__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-autocomplete__title {
  margin: 0;
  font-size: 19px;
  line-height: 21px;
}

.search-autocomplete__st {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loading {
  height: 40px;
  position: relative;
}

.loading::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  border-top-color: transparent;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.search-results {
  display: flex;
  flex-direction: column;
}

.search-result {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 16px;
}

.search-result:last-child {
  padding-bottom: 0;
}

.search-result + .search-result {
  border-top: 1px solid rgb(153 151 148 / 0.7);
  padding-top: 16px;
}

.search-result__name {
  font-size: 14px;
  line-height: 19px;
  color: #000;
}

.search-result__name em {
  font-style: normal;
  background-color: #9997944D;
}

.search-result__breadcrumbs {
  font-size: 12px;
  line-height: 16px;
  color: #807E7C;
}

.search-results-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-results-enter {
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: #807E7C;
}

.markdown {
  font-size: 14px;
  line-height: 19px;
}

.markdown h2 {
  font-size: 25px;
  line-height: 27px;
  margin: 24px 0;
}

.comment__title em,
.comment__body em {
  font-style: normal;
  background-color: rgb(153 151 148 / 0.3);
}

.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 8px 0;
  margin: 32px 0;
}

.custom-pagination > * {
  position: relative;
  display: flex;
}

.custom-pagination > a::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  top: calc(50% - 1px);
}

.custom-pagination > a:first-child::before {
  right: -18px;
}

.custom-pagination > a:last-child::before {
  left: -18px;
}

.custom-pagination a {
  font-size: 14px;
  line-height: 19px;
  color: #1A1A19;
}

.custom-pagination__buttons {
  gap: 12px;
}

.custom-pagination__buttons a {
  display: block;
  border-bottom: 1px solid transparent;
}

.custom-pagination__buttons a.is-active {
  border-color: currentColor;
}

@media (max-width: 767px) {
  .row--article {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}

@media (max-width: 575px) {
  .search-autocomplete {
    padding: 16px 12px;
  }

  .search-result {
    padding-bottom: 12px;
  }

  .search-result + .search-result {
    padding-top: 12px;
  }

  .search-results-container {
    gap: 12px;
  }

  .category-list__item {
    padding: 24px 12px;
  }

  .category-list__item-image {
    margin-bottom: 35px;
  }

  .footer-cta {
    padding: 40px 0;
  }

  .footer-cta__title {
    font-size: 25px;
    line-height: 27px;
  }

  .footer-cta__subtitle {
    font-size: 14px;
    line-height: 19px;
  }

  .footer-cta-block {
    padding: 24px;
  }

  .footer-cta-block__img {
    margin-bottom: 16px;
  }

  .footer-cta-block__link {
    margin-top: 16px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__text {
    margin-bottom: 80px;
  }

  .footer .row {
    row-gap: 80px;
  }

  .footer-soc__title {
    font-size: 25px;
    line-height: 27px;
  }

  .footer-soc__description {
    margin-bottom: 16px;
  }

  .page-heading {
    margin-bottom: 40px;
  }
}
