@font-face {
  font-family: DMSans;
  font-display: swap;
  src: url("../fonts/DMSans-Bold.woff2") format("woff2"), url("../fonts/DMSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: DMSans;
  font-display: swap;
  src: url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: DMSans;
  font-display: swap;
  src: url("../fonts/DMSans-Regular.woff2") format("woff2"), url("../fonts/DMSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/**
help classes/styles start
 */
img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  word-break: break-word;
}
@media (min-width: 350px) {
  .container {
    max-width: 336px;
    word-break: unset;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 728px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    max-width: 984px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1202px;
  }
}

.hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.d-none {
  display: none;
}

.hide-text {
  font-size: 0 !important;
  line-height: 0;
  overflow: hidden;
}

/**
help classes/styles end
 */
/**
headers
 */
.h1 {
  font-size: 2.5rem;
  line-height: 1.35;
  font-weight: 700;
}

/**
pagination start
 */
.pagination {
  text-align: center;
  margin: 1.75rem -2px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 8px;
  margin: 0 2px;
  transition: all 0.25s ease-in-out;
}
.pagination .page-numbers.current {
  background-color: #000;
  color: #fff;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  background-color: #f8f8f8;
  font-size: 20px;
}
.pagination a.page-numbers:hover,
.pagination a.page-numbers:focus,
.pagination .page-numbers.prev:hover,
.pagination .page-numbers.prev:focus {
  background-color: #2579f6;
  color: #fff;
}

/**
pagination end
 */
/**
breadcrumbs start
 */
.breadcrumbs {
  padding: 25px 0 15px;
  font-size: 14px;
  color: #777777;
}
@media (min-width: 768px) {
  .breadcrumbs {
    padding: 15px 0;
  }
}
.breadcrumbs a {
  color: #2579f6;
}

/**
breadcrumbs end
 */
/**
chips start
 */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}

.chip-list__item {
  font-size: 12px;
  line-height: 1.25;
  padding: 2px 10px;
  background-color: #FFEE94;
  border-radius: 12px;
}

/**
chips end
 */
/**
cards start
 */
.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px 10px;
  word-break: break-word;
}
@media (min-width: 768px) {
  .cards {
    gap: 18px 22px;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border-collapse: separate;
  border: 1px solid #dedede;
  transition: all 0.2s ease-in-out;
  width: calc(50% - 10px + 2px);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .card {
    width: calc(33.3% - 22px + 4px);
  }
}
@media (min-width: 1024px) {
  .card {
    width: calc(25% - 22px + 3px);
  }
}
.card:hover, .card:focus {
  margin-bottom: 6px;
  margin-top: -6px;
  border: 1px solid #2579f6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.card:hover .card__hover-block, .card:focus .card__hover-block {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.card__img-wrap {
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  height: 98px;
}
@media (min-width: 768px) {
  .card__img-wrap {
    height: 172px;
  }
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.card__text-wrap {
  padding: 12px;
  font-size: 16px;
  line-height: 20px;
}

.card__text {
  display: inline-block;
  font-size: 12px;
  line-height: 1.33;
  margin-bottom: 12px;
}

.card__text--colored {
  color: #777777;
}

.card__hover-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
}

.card__name {
  text-align: left;
  vertical-align: baseline;
  margin-bottom: 4px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .card__name {
    font-size: 20px;
    line-height: 20px;
  }
}

@media (min-width: 768px) {
  .card__description {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .card__description {
    font-size: 12px;
    line-height: 20px;
  }
}

.card__link {
  font-size: 12px !important;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .card__link {
    font-size: 16px !important;
  }
}
.card__link:last-of-type {
  margin-bottom: 0;
}

.card__categories {
  margin-top: 0.875rem;
}

/**
cards end
 */
/**
filter bar start
 */
.filter-bar {
  overflow-y: auto;
  height: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .filter-bar {
    position: absolute;
  }
}
@media (min-width: 768px) {
  .filter-bar {
    position: relative;
  }
  .filter-bar::-webkit-scrollbar {
    width: 5px;
  }
  .filter-bar::-webkit-scrollbar-button {
    display: none;
  }
  .filter-bar::-webkit-scrollbar-thumb {
    background-color: #2579f6;
    border-radius: 20px;
  }
  .filter-bar::-webkit-scrollbar-track {
    background-color: #f8f8f8;
    border-radius: 20px;
  }
}
.filter-bar .filter-bar__content {
  position: absolute;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
@media (min-width: 768px) {
  .filter-bar .filter-bar__content {
    left: -100%;
  }
}

@media (max-width: 767px) {
  .filter-bar__content {
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: absolute;
    left: 0;
    width: 100%;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 2;
  }
}

.filter-bar__btn {
  outline: none;
  border: none;
  padding: 0;
  font-family: DMSans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.filter-bar__btn:nth-of-type(2n) {
  margin-left: 20px;
}

.filter-bar__btn--simple {
  background-color: transparent;
  color: #2579f6;
  padding: 4px 0;
}

.filter-bar__form {
  margin: 1.25rem 0;
}

.filter-bar__item {
  margin-bottom: 1rem;
}

.filter-bar__label,
.filter-bar__checkmark {
  cursor: pointer;
}

.filter-bar.active {
  height: 100%;
}
@media (max-width: 767px) {
  .filter-bar.active {
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
  }
}
@media (min-width: 768px) {
  .filter-bar.active {
    width: 229px;
  }
}
@media (min-width: 1024px) {
  .filter-bar.active {
    width: 231px;
  }
}
@media (min-width: 1440px) {
  .filter-bar.active {
    width: 267px;
  }
}
.filter-bar.active .filter-bar__content {
  visibility: visible;
  opacity: 1;
  height: auto;
  left: 0;
}
@media (max-width: 767px) {
  .filter-bar.active .filter-bar__content .filter-bar__form {
    margin: 0;
  }
  .filter-bar.active .filter-bar__content .filter-bar__actions {
    display: flex;
    justify-content: space-between;
  }
  .filter-bar.active .filter-bar__content .filter-bar__actions {
    margin: 14px 15px;
  }
  .filter-bar.active .filter-bar__content .filter-bar__item {
    margin: 0;
    padding: 12px 15px;
    border-top: 1px solid #dedede;
  }
  .filter-bar.active .filter-bar__content .filter-bar__item:last-of-type {
    border-bottom: 1px solid #dedede;
  }
  .filter-bar.active .filter-bar__content .filter-bar__mobile-btn {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .filter-bar.active .filter-bar__content .filter-bar__mobile-btn:after {
    filter: brightness(0) invert(1);
    transform: rotate(180deg) translateY(-60%);
  }
}
/**
filter bar end
 */
input, input:active, input:focus,
textarea, textarea:active, textarea:focus {
  border: none;
  outline: none;
  box-sizing: border-box;
}

.input_gray .input-label {
  color: #000;
}
.input_gray .input-field {
  background-color: #f8f8f8;
  color: #000;
  border-bottom: 1px solid #000;
}
.input_gray .input-field::placeholder {
  color: #777;
  white-space: nowrap;
}

.input_white .input-label {
  color: #3f3f3f;
}
.input_white .input-field {
  background-color: #fff;
  color: #3f3f3f;
  border-bottom: 1px solid #3f3f3f;
}
.input_white .input-field::placeholder {
  color: #3f3f3f;
  white-space: nowrap;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.input-wrapper .input-field {
  padding: 9px 13px;
  border-radius: 0 8px 0 0;
  font-size: 18px;
  line-height: 24px;
}

.input-error,
.input-label {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.input_error .input-field {
  border-bottom: 1px solid #ff0000 !important;
}
.input_error .input-error {
  color: #ff0000;
}

.ginput_container {
  position: relative;
}
.ginput_container input {
  height: 42px !important;
}
.ginput_container textarea {
  height: 110px !important;
}
.ginput_container input, .ginput_container textarea {
  padding: 9px 13px !important;
  background-color: #fff;
  border-bottom: 1px solid #aeaeae;
  border-radius: 0 8px 0 0;
  font-size: 16px !important;
  line-height: 24px !important;
  transition: all 0.1s ease-in-out;
}
.ginput_container .label-above-input {
  position: absolute;
}
.ginput_container .input_hidden-placeholder::placeholder {
  color: rgba(0, 0, 0, 0) !important;
}

.gform_footer {
  display: flex;
  justify-content: flex-end;
  padding: 0 !important;
  margin: 10px 0 0 0 !important;
}
.gform_footer .gform_ajax_spinner {
  display: none !important;
}
.gform_footer .gform_button {
  position: relative;
  padding-left: 40px;
  padding-right: 20px;
  margin: 0;
  height: 36px;
  border-radius: 38px;
  background: url("../img/arrow_b.png") no-repeat, #000;
  background-position: 17px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
}

.gfield_error .ginput_container input, .gfield_error .ginput_container textarea {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #ff0000 !important;
}
.gfield_error .validation_message {
  margin-top: 4px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  color: #ff0000 !important;
  font-size: 14px !important;
  line-height: 18px !important;
}

select, select:active, select:focus {
  border: none;
  outline: none;
  box-sizing: border-box;
}

.select_gray .select-label {
  color: #000;
}
.select_gray .select-field {
  border-bottom: 1px solid #000;
}
.select_gray .select-field .select-field__label {
  background-color: #f8f8f8;
  color: #000;
}

.select_white .select-label {
  color: #3f3f3f;
}
.select_white .select-field {
  border-bottom: 1px solid #3f3f3f;
}
.select_white .select-field .select-field__label {
  background-color: #fff;
  color: #3f3f3f;
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.select-wrapper .select-error,
.select-wrapper .select-label {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.select-wrapper .select-field {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
  cursor: pointer;
}
.select-wrapper .select-field .select-field__label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 13px;
  border-radius: 0 8px 0 0;
  overflow: hidden;
  padding: 9px 13px;
}
.select-wrapper .select-field .select-field__label span {
  flex-grow: 1;
  display: block;
}
.select-wrapper .select-field .select-field__label .select-field__label__chevron {
  width: 20px;
  height: 20px;
  background-image: url("../img/chevron-down.svg");
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.select-wrapper .select-field .select-field__options {
  position: absolute;
  flex-direction: column;
  z-index: 2;
  top: 46px;
  max-width: 500px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 8px;
  background-color: #f8f8f8;
  filter: drop-shadow(0px 7px 16px rgba(0, 0, 0, 0.25));
}
.select-wrapper .select-field .select-field__options .select-options__item {
  display: flex;
  transition: all 0.2s ease-in-out;
}
.select-wrapper .select-field .select-field__options .select-options__item label {
  padding: 9px 13px;
  width: 100%;
  cursor: pointer;
}
.select-wrapper .select-field .select-field__options .select-options__item input {
  display: none;
}
.select-wrapper .select-field .select-field__options .select-options__item:hover {
  background-color: #dedede;
}

.select-wrapper__active .select-field__options {
  display: flex;
}

.select-wrapper__inactive .select-field__options {
  display: none;
}

.select_error .select-field {
  border-bottom: 1px solid #ff0000 !important;
}
.select_error .select-error {
  color: #ff0000;
}

.button {
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0px 4px 17px rgba(154, 120, 120, 0.25);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.button_bg-blue-black {
  background-color: #2579f6;
}
.button_bg-blue-black:hover {
  background-color: #000;
}

.button_bg-transp-white {
  background-color: rgba(0, 0, 0, 0);
}
.button_bg-transp-white:hover {
  background-color: #fff;
}

.button_bg-transp-blue {
  background-color: rgba(0, 0, 0, 0);
}
.button_bg-transp-blue:hover {
  background-color: #2579f6;
}

.button_font-white-white {
  color: #fff;
}
.button_font-white-white:hover {
  color: #fff;
}

.button_font-white-black {
  color: #fff;
}
.button_font-white-black:hover {
  color: #000;
}

.button_font-blue-white {
  color: #2579f6;
}
.button_font-blue-white:hover {
  color: #fff;
}

.button_border-blue {
  border: 1px solid #2579f6;
}

.button_border-white {
  border: 1px solid #fff;
}

.button_large {
  font-size: 18px;
  padding: 12px 24px;
}

.button_medium {
  font-size: 16px;
  padding: 8px 20px;
}

.button_small {
  font-size: 14px;
  padding: 4px 16px;
}

.button_decoration-left_large_white-white {
  padding-left: 48px;
}
.button_decoration-left_large_white-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  left: 19px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_large_white-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-left_large_white-black {
  padding-left: 48px;
}
.button_decoration-left_large_white-black::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  left: 19px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_large_white-black:hover::before {
  background-image: url("../img/check_black.svg");
}

.button_decoration-left_large_blue-white {
  padding-left: 48px;
}
.button_decoration-left_large_blue-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  left: 19px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_blue.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_large_blue-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-left_medium_white-white {
  padding-left: 44px;
}
.button_decoration-left_medium_white-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 15px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_medium_white-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-left_medium_white-black {
  padding-left: 44px;
}
.button_decoration-left_medium_white-black::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 15px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_medium_white-black:hover::before {
  background-image: url("../img/check_black.svg");
}

.button_decoration-left_medium_blue-white {
  padding-left: 44px;
}
.button_decoration-left_medium_blue-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 15px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_blue.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_medium_blue-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-left_small_white-white {
  padding-left: 32px;
}
.button_decoration-left_small_white-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 13px;
  left: 14px;
  width: 12px;
  height: 9px;
  background-image: url("../img/check_white.svg");
  background-size: 12px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_small_white-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-left_small_white-black {
  padding-left: 32px;
}
.button_decoration-left_small_white-black::before {
  content: "";
  position: absolute;
  display: block;
  top: 13px;
  left: 14px;
  width: 12px;
  height: 9px;
  background-image: url("../img/check_white.svg");
  background-size: 12px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_small_white-black:hover::before {
  background-image: url("../img/check_black.svg");
}

.button_decoration-left_small_blue-white {
  padding-left: 32px;
}
.button_decoration-left_small_blue-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 13px;
  left: 14px;
  width: 12px;
  height: 9px;
  background-image: url("../img/check_blue.svg");
  background-size: 12px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-left_small_blue-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-right_large_white-white {
  padding-right: 48px;
}
.button_decoration-right_large_white-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  right: 19px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_large_white-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-right_large_white-black {
  padding-right: 48px;
}
.button_decoration-right_large_white-black::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  right: 19px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_large_white-black:hover::before {
  background-image: url("../img/check_black.svg");
}

.button_decoration-right_large_blue-white {
  padding-right: 48px;
}
.button_decoration-right_large_blue-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  right: 19px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_blue.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_large_blue-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-right_medium_white-white {
  padding-right: 44px;
}
.button_decoration-right_medium_white-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  right: 15px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_medium_white-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-right_medium_white-black {
  padding-right: 44px;
}
.button_decoration-right_medium_white-black::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  right: 15px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_white.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_medium_white-black:hover::before {
  background-image: url("../img/check_black.svg");
}

.button_decoration-right_medium_blue-white {
  padding-right: 44px;
}
.button_decoration-right_medium_blue-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  right: 15px;
  width: 15px;
  height: 11px;
  background-image: url("../img/check_blue.svg");
  background-size: 15px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_medium_blue-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-right_small_white-white {
  padding-right: 32px;
}
.button_decoration-right_small_white-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 13px;
  right: 14px;
  width: 12px;
  height: 9px;
  background-image: url("../img/check_white.svg");
  background-size: 12px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_small_white-white:hover::before {
  background-image: url("../img/check_white.svg");
}

.button_decoration-right_small_white-black {
  padding-right: 32px;
}
.button_decoration-right_small_white-black::before {
  content: "";
  position: absolute;
  display: block;
  top: 13px;
  right: 14px;
  width: 12px;
  height: 9px;
  background-image: url("../img/check_white.svg");
  background-size: 12px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_small_white-black:hover::before {
  background-image: url("../img/check_black.svg");
}

.button_decoration-right_small_blue-white {
  padding-right: 32px;
}
.button_decoration-right_small_blue-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 13px;
  right: 14px;
  width: 12px;
  height: 9px;
  background-image: url("../img/check_blue.svg");
  background-size: 12px 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.button_decoration-right_small_blue-white:hover::before {
  background-image: url("../img/check_white.svg");
}

button, button:active {
  border: none;
  outline: none;
  box-sizing: border-box;
}

.button_blue_animated {
  position: relative;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  background-color: #2579f6;
  box-shadow: 0px 4px 17px rgba(154, 120, 120, 0.25);
  overflow: hidden;
}
.button_blue_animated span {
  white-space: nowrap;
  margin-right: 0;
  margin-left: 0;
  transition: all 0.5s ease-in-out;
}
.button_blue_animated::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/ornament-button.svg") no-repeat;
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
}
.button_blue_animated::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/arrow_white.png") no-repeat;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.button_blue_animated:hover::before {
  transform: rotate(0);
}
.button_blue_animated:hover span {
  margin-right: -10px;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .button_blue_animated {
    padding: 20px 62px;
    font-size: 20px;
    line-height: 26px;
  }
  .button_blue_animated::before {
    left: -72px;
    bottom: -20px;
    width: 72px;
    height: 72px;
    background-size: 72px 72px;
  }
  .button_blue_animated::after {
    right: 25px;
    top: 42%;
    width: 16px;
    height: 12px;
    background-size: 16px 12px;
  }
  .button_blue_animated:hover::before {
    left: -20px;
  }
  .button_blue_animated:hover::after {
    opacity: 1;
  }
}

.button_bg-blue-black:hover {
  border-color: #000;
}

.button_border-blue {
  box-shadow: none;
}

.btn-as-select {
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0 4px 17px rgba(154, 120, 120, 0.25);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  font-size: 16px;
  padding: 8px 35px 8px 20px;
}
.btn-as-select:after {
  content: "";
  background-image: url("../img/chevron-down-blue.svg");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 35%;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .btn-as-select::after {
    transform: rotate(0deg);
  }
}
@media (min-width: 768px) {
  .btn-as-select::after {
    transform: rotate(270deg);
  }
}

.btn-as-select--primary {
  color: #2579f6;
  background-color: #fff;
  border: 1px solid #2579f6;
}
.btn-as-select--primary:after {
  content: url("../img/chevron-down-blue.svg");
}
.btn-as-select--primary:focus {
  color: #fff;
  background-color: #2579f6;
}
.btn-as-select--primary:focus:after {
  filter: brightness(0) invert(1);
}
.btn-as-select--primary:hover, .btn-as-select--primary:active {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-as-select--primary:hover:after, .btn-as-select--primary:active:after {
  filter: brightness(0) invert(1);
}

.search-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.search-form input {
  flex-grow: 1;
}
.search-form button {
  width: 61px;
  height: 42px;
  border-radius: 0 8px 0 0;
  background: url("../img/search.png") no-repeat, #000;
  background-size: 25px 25px;
  background-position: 50% 50%;
  cursor: pointer;
}
@media (min-width: 1440px) {
  .search-form {
    width: 793px;
  }
  .search-form input {
    width: 732px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .search-form {
    width: 732px;
  }
  .search-form input {
    width: 671px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .search-form {
    width: 541px;
  }
  .search-form input {
    width: 480px;
  }
}
@media (max-width: 767px) {
  .search-form {
    width: 337px;
  }
  .search-form input {
    width: 276px;
  }
}

.callback-form_wrapper .gform_validation_errors {
  display: none !important;
}

.callback-form {
  width: 100%;
  padding: 0 !important;
}
@media (max-width: 630px) {
  .callback-form {
    width: 100%;
  }
}

.block-products .products-list, .block-categories .products-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.block-products .products-list .products-item, .block-categories .products-list .products-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border-collapse: separate;
  border: 1px solid #dedede;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.block-products .products-list .products-item:hover, .block-products .products-list .products-item:focus, .block-categories .products-list .products-item:hover, .block-categories .products-list .products-item:focus {
  margin-bottom: 6px;
  margin-top: -6px;
  border: 1px solid #2579f6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.block-products .products-list .products-item:hover .products-item-hover, .block-products .products-list .products-item:focus .products-item-hover, .block-categories .products-list .products-item:hover .products-item-hover, .block-categories .products-list .products-item:focus .products-item-hover {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}
.block-products .products-list .products-item .products-item-hover, .block-categories .products-list .products-item .products-item-hover {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 37, 78, 0.9);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
}
.block-products .products-list .products-item .products-item-image-wrapper, .block-categories .products-list .products-item .products-item-image-wrapper {
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.block-products .products-list .products-item .products-item-image-wrapper img, .block-categories .products-list .products-item .products-item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.block-products .products-list .products-item .products-item-text-wrapper, .block-categories .products-list .products-item .products-item-text-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.block-products .products-list .products-item .products-item-text-wrapper .products-item-name, .block-categories .products-list .products-item .products-item-text-wrapper .products-item-name {
  text-align: left;
  vertical-align: baseline;
}
.block-products .products-list-button, .block-categories .products-list-button {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .block-products .products-list, .block-categories .products-list {
    gap: 18px 22px;
  }
  .block-products .products-list .products-item .products-item-text-wrapper, .block-categories .products-list .products-item .products-item-text-wrapper {
    padding: 12px;
    font-size: 16px;
    line-height: 20px;
  }
  .block-products .products-list .products-item .products-item-text-wrapper .products-item-name__product, .block-categories .products-list .products-item .products-item-text-wrapper .products-item-name__product {
    font-size: 16px;
    line-height: 20px;
  }
  .block-products .products-list .products-item .products-item-image-wrapper, .block-categories .products-list .products-item .products-item-image-wrapper {
    height: 179px;
  }
  .block-products .products-list-button, .block-categories .products-list-button {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .block-products .products-list .products-item, .block-categories .products-list .products-item {
    width: calc(25% - 22px + 3px);
  }
  .block-products .products-list .products-item .products-item-text-wrapper .products-item-name__category, .block-categories .products-list .products-item .products-item-text-wrapper .products-item-name__category {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block-products .products-list .products-item, .block-categories .products-list .products-item {
    width: calc(33.3% - 22px + 4px);
  }
  .block-products .products-list .products-item .products-item-text-wrapper .products-item-name__category, .block-categories .products-list .products-item .products-item-text-wrapper .products-item-name__category {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .block-products .products-list, .block-categories .products-list {
    gap: 18px 10px;
  }
  .block-products .products-list .products-item, .block-categories .products-list .products-item {
    width: calc(50% - 10px + 2px);
  }
  .block-products .products-list .products-item .products-item-text-wrapper, .block-categories .products-list .products-item .products-item-text-wrapper {
    padding: 8px;
  }
  .block-products .products-list .products-item .products-item-text-wrapper .products-item-name__product,
.block-products .products-list .products-item .products-item-text-wrapper .products-item-name__category, .block-categories .products-list .products-item .products-item-text-wrapper .products-item-name__product,
.block-categories .products-list .products-item .products-item-text-wrapper .products-item-name__category {
    font-size: 14px;
    line-height: 16px;
  }
  .block-products .products-list .products-item .products-item-image-wrapper, .block-categories .products-list .products-item .products-item-image-wrapper {
    height: 135px;
  }
  .block-products .products-list-button, .block-categories .products-list-button {
    justify-content: flex-start;
  }
  .block-products .products-list-button .view-more-btn, .block-categories .products-list-button .view-more-btn {
    padding: 8px 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
  .block-products .products-list-button .view-more-btn:hover, .block-categories .products-list-button .view-more-btn:hover {
    background-color: #000;
  }
  .block-products .products-list-button .view-more-btn:hover span, .block-categories .products-list-button .view-more-btn:hover span {
    margin: 0;
  }
  .block-products .products-list-button .view-more-btn::after, .block-categories .products-list-button .view-more-btn::after {
    display: none;
  }
  .block-products .products-list-button .view-more-btn::before, .block-categories .products-list-button .view-more-btn::before {
    display: none;
  }
}

.block-products .products-item-image-wrapper:hover img {
  filter: blur(4px);
}

.product-bestseller::after {
  content: "Best seller";
  display: block;
  position: absolute;
  z-index: 3;
  padding: 0 8px;
  top: 14px;
  right: -8px;
  background-color: #f3d917;
  font-size: 14px;
  line-height: 24px;
}

.checkbox-wrapper .checkbox__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
}
.checkbox-wrapper .checkbox__item input {
  display: none;
}
.checkbox-wrapper .checkbox__item input:checked ~ .checkbox__checkmark::after {
  opacity: 1;
}
.checkbox-wrapper .checkbox__item .checkbox__label {
  font-size: 16px;
  line-height: 20px;
}
.checkbox-wrapper .checkbox__item .checkbox__checkmark {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 1px solid #000;
}
.checkbox-wrapper .checkbox__item .checkbox__checkmark::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("../img/check_black.svg");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: 50% 50%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.checkbox-wrapper .checkbox__item.checkbox__item_no-label .checkbox__label {
  display: none;
}

select, select:active, select:focus {
  border: none;
  outline: none;
  box-sizing: border-box;
}

.multiselect_gray .multiselect-label {
  color: #000;
}
.multiselect_gray .multiselect-field {
  border-bottom: 1px solid #000;
  background-color: #f8f8f8;
}
.multiselect_gray .multiselect-field .multiselect__lables {
  color: #000;
}

.multiselect_white .multiselect-label {
  color: #3f3f3f;
}
.multiselect_white .multiselect-field {
  border-bottom: 1px solid #3f3f3f;
  background-color: #fff;
}
.multiselect_white .multiselect-field .multiselect__lables {
  color: #3f3f3f;
}

.multiselect-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.multiselect-wrapper .multiselect-error,
.multiselect-wrapper .multiselect-label {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.multiselect-wrapper .multiselect-field {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
  border-radius: 0 8px 0 0;
  cursor: pointer;
}
.multiselect-wrapper .multiselect__lables {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 13px;
  min-height: 34px;
  padding: 9px 13px;
}
.multiselect-wrapper .multiselect__lables__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  padding: 5px 8px 5px 15px;
  border-radius: 15px;
  cursor: default;
}
.multiselect-wrapper .multiselect__lables__item input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}
.multiselect-wrapper .multiselect__lables__item button {
  width: 15px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  cursor: pointer;
  background-image: url("../img/multiply.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.multiselect-wrapper .multiselect-field__label__chevron {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 9px 13px;
}
.multiselect-wrapper .multiselect-field__label__chevron span {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/chevron-down.svg");
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.multiselect-wrapper .multiselect-field__options {
  position: absolute;
  flex-direction: column;
  z-index: 2;
  top: 58px;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 8px;
  background-color: #f8f8f8;
  filter: drop-shadow(0px 7px 16px rgba(0, 0, 0, 0.25));
  cursor: default;
}
.multiselect-wrapper .multiselect-options__item {
  transition: all 0.2s ease-in-out;
}
.multiselect-wrapper .multiselect-options__item:hover {
  background-color: #dedede;
}
.multiselect-wrapper .multiselect-options__item label {
  display: block;
  padding: 9px 13px;
  width: calc(100% - 26px);
  cursor: pointer;
}
.multiselect-wrapper .multiselect-options__item input {
  display: none;
}
.multiselect-wrapper .multiselect-options__item_disabled {
  background-color: #dedede;
}
.multiselect-wrapper .multiselect-options__item_disabled label {
  cursor: default;
}

.multiselect-wrapper__active .multiselect-field__options {
  display: flex;
}

.multiselect-wrapper__inactive .multiselect-field__options {
  display: none;
}

.multiselect_error .multiselect-field {
  border-bottom: 1px solid #ff0000 !important;
}
.multiselect_error .multiselect-error {
  color: #ff0000;
}

.block-header-search .inner-block-wrapper .block-header-search__desc {
  font-weight: 400;
}
.block-header-search .inner-block-wrapper .block-header-search__explanation {
  position: relative;
  margin-top: 8px;
  padding-left: 24px;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 18px;
}
.block-header-search .inner-block-wrapper .block-header-search__explanation::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("../img/tag_ornament.png");
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
@media (min-width: 1024px) {
  .block-header-search {
    padding-top: 54px;
    padding-bottom: 85px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__title {
    width: 610px;
    font-size: 75px;
    line-height: 84px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__desc {
    margin-top: 21px;
    width: 777px;
    font-size: 24px;
    line-height: 31px;
  }
  .block-header-search .inner-block-wrapper > form {
    margin-top: 45px;
  }
}
@media (min-width: 1440px) {
  .block-header-search {
    background-position: right top -70px !important;
  }
  .block-header-search .inner-block-wrapper {
    max-width: 1202px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__desc {
    width: 777px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .block-header-search {
    background-position: right -70px top -70px !important;
  }
  .block-header-search .inner-block-wrapper {
    max-width: 984px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__desc {
    width: 733px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block-header-search {
    padding-top: 48px;
    padding-bottom: 54px;
    background-position: right -200px top -70px !important;
  }
  .block-header-search .inner-block-wrapper {
    max-width: 728px;
  }
  .block-header-search .inner-block-wrapper > h1 {
    width: 530px;
    font-size: 65px;
    line-height: 74px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__desc {
    margin-top: 20px;
    width: 550px;
    font-size: 18px;
    line-height: 28px;
  }
  .block-header-search .inner-block-wrapper > form {
    margin-top: 29px;
  }
}
@media (max-width: 767px) {
  .block-header-search {
    padding-top: 50px;
    padding-bottom: 50px;
    background-size: 230px !important;
    background-position: right -125px top !important;
  }
  .block-header-search .inner-block-wrapper {
    max-width: 336px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__title {
    width: 290px;
    font-size: 35px;
    line-height: 44px;
  }
  .block-header-search .inner-block-wrapper .block-header-search__desc {
    margin-top: 20px;
    width: 280px;
    font-size: 16px;
    line-height: 21px;
  }
  .block-header-search .inner-block-wrapper > form {
    margin-top: 25px;
    max-width: 100%;
  }
}

.callback-form-block {
  background-color: #f8f8f8 !important;
}
.callback-form-block .inner-block-wrapper {
  display: grid;
  grid-template-rows: auto auto;
}
.callback-form-block .inner-block-wrapper > h2 {
  grid-area: header;
  display: flex;
  color: #3d3d3d;
}
.callback-form-block .inner-block-wrapper > p {
  grid-area: text;
  width: 280px;
  font-size: 14px;
  line-height: 24px;
  color: #3f3f3f;
}
.callback-form-block .inner-block-wrapper .callback-form_wrapper {
  grid-area: form;
  padding-top: 7px;
}
.callback-form-block .inner-block-wrapper .gform_confirmation_message {
  grid-area: thank;
  width: 260px;
  padding: 10px 16px;
  background-color: #80EA9D;
  border-radius: 8px;
  color: #000;
}
@media (min-width: 768px) {
  .callback-form-block .inner-block-wrapper > h2 {
    font-size: 53px;
    line-height: 69px;
  }
}
@media (min-width: 1024px) {
  .callback-form-block {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .callback-form-block .inner-block-wrapper {
    gap: 14px 25px;
    grid-template-areas: "header ." "text form" "thank .";
  }
  .callback-form-block .inner-block-wrapper > h2 {
    flex-direction: column;
  }
  .callback-form-block .inner-block-wrapper > h2 > span:nth-child(1) {
    margin: 0 -108px;
  }
  .callback-form-block .inner-block-wrapper .gform_confirmation_message {
    width: 260px;
  }
}
@media (min-width: 1440px) {
  .callback-form-block {
    padding-left: 426px;
    padding-right: 222px;
  }
  .callback-form-block .inner-block-wrapper {
    grid-template-columns: 280px 488px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form-block {
    padding-left: 214px;
    padding-right: 105px;
    background-position: left -125px bottom, right -125px top !important;
  }
  .callback-form-block .inner-block-wrapper {
    grid-template-columns: 280px 410px;
  }
  .callback-form-block .inner-block-wrapper .callback-form_wrapper {
    padding-top: 7px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form-block {
    padding: 45px 20px;
    background-position: left -125px bottom -90px, right -225px top !important;
  }
  .callback-form-block .inner-block-wrapper {
    grid-template-areas: "header header" "text form" "thank .";
  }
  .callback-form-block .inner-block-wrapper > h2 {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .callback-form-block {
    padding: 30px 13px;
    background-position: left -125px bottom -90px, right -390px top !important;
  }
  .callback-form-block .inner-block-wrapper {
    grid-template-areas: "header" "text" "form" "thank";
  }
  .callback-form-block .inner-block-wrapper > p {
    line-height: 19px;
  }
  .callback-form-block .inner-block-wrapper > h2 {
    font-size: 30px;
    line-height: 34px;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 5px;
  }
  .callback-form-block .inner-block-wrapper .callback-form_wrapper {
    padding-top: 25px;
  }
}

.block-categories, .block-products {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.block-categories h2, .block-products h2 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .block-categories h2, .block-products h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (min-width: 1440px) {
  .block-categories, .block-products {
    max-width: 1202px;
    gap: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .block-categories, .block-products {
    max-width: 984px;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block-categories, .block-products {
    max-width: 728px;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .block-categories, .block-products {
    max-width: 336px;
    gap: 20px;
  }
  .block-categories h2, .block-products h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

.block-products {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .block-products {
    margin-top: 60px;
  }
}

.purpose-block {
  color: #3f3f3f;
}
.purpose-block .inner-block-wrapper > h2 {
  font-size: 30px;
  line-height: 34px;
}
.purpose-block .inner-block-wrapper .purpose-text_1 p {
  font-size: 16px;
  line-height: 24px;
}
.purpose-block .inner-block-wrapper .purpose-text_1 p:nth-child(2) {
  margin-top: 8px;
}
.purpose-block .inner-block-wrapper .purpose-text_1 p strong {
  color: #000;
  font-weight: 700;
}
.purpose-block .inner-block-wrapper .purpose-text_1 h3 {
  font-size: 24px;
  line-height: 26px;
}
.purpose-block .inner-block-wrapper .purpose-text_2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.purpose-block .inner-block-wrapper .purpose-text_2 div p {
  margin-top: 8px;
}
.purpose-block .inner-block-wrapper .purpose-text_3 {
  margin-top: 53px;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .purpose-block .inner-block-wrapper .purpose-text_1 {
    margin-top: 37px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_1 h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 {
    gap: 50px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 p {
    font-size: 20px;
    line-height: 26px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_3 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1440px) {
  .purpose-block {
    padding-top: 150px;
    padding-bottom: 105px;
  }
  .purpose-block .inner-block-wrapper {
    width: 800px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_1 h3 {
    margin-top: 35px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 {
    margin-top: 50px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_3 {
    margin-top: 55px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .purpose-block {
    padding-top: 95px;
    padding-bottom: 110px;
  }
  .purpose-block .inner-block-wrapper {
    width: 650px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_1 h3 {
    margin-top: 30px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 {
    margin-top: 35px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_3 {
    margin-top: 55px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .purpose-block {
    padding-top: 65px;
    padding-bottom: 50px;
    background-position: left -50px top -50px, right -50px bottom !important;
  }
  .purpose-block .inner-block-wrapper {
    width: 540px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_1 h3 {
    margin-top: 35px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2,
.purpose-block .inner-block-wrapper .purpose-text_3 {
    margin-top: 35px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .purpose-block {
    padding-top: 60px;
    padding-bottom: 60px;
    background: none !important;
  }
  .purpose-block .inner-block-wrapper {
    width: 340px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_1 {
    margin-top: 20px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_1 h3 {
    margin-top: 30px;
    font-size: 20px;
    line-height: 28px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 {
    margin-top: 30px;
    gap: 30px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_2 p {
    font-size: 14px;
    line-height: 21px;
  }
  .purpose-block .inner-block-wrapper .purpose-text_3 {
    margin-top: 30px;
    font-size: 14px;
    line-height: 21px;
  }
}

.single-shop__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
}
.single-shop__description h1, .single-shop__description h2, .single-shop__description h3, .single-shop__description h4, .single-shop__description h5, .single-shop__description h6 {
  color: #000;
}
.single-shop__description p {
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
}
.single-shop__description h2 {
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
  color: #000;
}

.single-shop-brief .single-shop-top-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.single-shop-brief .single-shop-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-shop-brief .single-shop-top-img div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/single-shop-ornament1.png"), url("../img/single-shop-ornament2.png");
  background-position: left top, right top;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.single-shop-brief .inner-block-wrapper {
  display: flex;
  flex-direction: column;
}
.single-shop-brief .inner-block-wrapper .single-shop-header {
  display: grid;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__logo {
  grid-area: logo;
  border-radius: 8px;
  border: 1px solid #dedede;
  box-sizing: border-box;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__logo img {
  object-fit: cover;
  object-position: center;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin: 8px 0;
  max-width: 100%;
  overflow-x: auto;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__tags__item {
  position: relative;
  padding: 6px 12px;
  padding-left: 35px;
  border-radius: 22px;
  background-color: #f8f8f8;
  font-size: 12px;
  line-height: 16px;
  transition: all 0.2s ease-in-out;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__tags__item:hover {
  background-color: #FEF3F3;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__tags__item::before {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 12px;
  width: 15px;
  height: 15px;
  background-image: url("../img/tag_ornament.png");
  background-repeat: no-repeat;
  background-size: 15px 15px;
}
.single-shop-brief .inner-block-wrapper .single-shop-header__title {
  grid-area: title;
  display: flex;
  align-items: flex-start;
  max-width: 100%;
}
.single-shop-brief .inner-block-wrapper .buttons-block {
  grid-area: btn;
}
.single-shop-brief .inner-block-wrapper .buttons-block_1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.single-shop-brief .inner-block-wrapper .buttons-block_2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 155px;
}
.single-shop-brief .inner-block-wrapper .buttons-block_2 .button {
  padding: 8px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.single-shop-brief .inner-block-wrapper .buttons-block_2 .button::after {
  display: none;
}
.single-shop-brief .inner-block-wrapper .buttons-block_2 .button::before {
  display: none;
}
.single-shop-brief .inner-block-wrapper .buttons-block_2 .button:hover span {
  margin: 0;
}
.single-shop-brief .inner-block-wrapper .buttons-block_3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "btn1 btn1" "btn2 btn3";
  gap: 8px;
  width: 280px;
}
.single-shop-brief .inner-block-wrapper .buttons-block_3 .button {
  padding: 8px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.single-shop-brief .inner-block-wrapper .buttons-block_3 .button::after {
  display: none;
}
.single-shop-brief .inner-block-wrapper .buttons-block_3 .button::before {
  display: none;
}
.single-shop-brief .inner-block-wrapper .buttons-block_3 .button:hover span {
  margin: 0;
}
.single-shop-brief .inner-block-wrapper .btn1 {
  display: flex;
  align-self: flex-end;
  justify-content: center;
  grid-area: btn1;
}
.single-shop-brief .inner-block-wrapper .btn2 {
  display: flex;
  align-self: flex-start;
  justify-content: center;
  grid-area: btn2;
}
.single-shop-brief .inner-block-wrapper .btn3 {
  display: flex;
  align-self: flex-start;
  justify-content: center;
  grid-area: btn3;
}
.single-shop-brief .single-shop__keywords a::after {
  content: ",";
}
.single-shop-brief .single-shop__keywords a:last-of-type::after {
  content: none;
}
.single-shop-brief .single-shop__keywords a:hover,
.single-shop-brief .single-shop__keywords a:active,
.single-shop-brief .single-shop__keywords a:focus {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .single-shop-brief .single-shop-top-img {
    margin-bottom: 32px;
  }
  .single-shop-brief .inner-block-wrapper {
    gap: 30px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "logo tags btn" "logo title btn";
    gap: 8px 31px;
  }
}
@media (min-width: 1440px) {
  .single-shop-brief .single-shop-top-img {
    height: 358px;
  }
  .single-shop-brief .inner-block-wrapper {
    max-width: 1202px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__logo {
    height: 110px;
    width: 182px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__title h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button {
    display: flex;
    align-self: center;
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .single-shop-brief .single-shop-top-img {
    height: 255px;
  }
  .single-shop-brief .single-shop-top-img div {
    background-position: left top, right -100px top;
  }
  .single-shop-brief .inner-block-wrapper {
    max-width: 984px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__logo {
    height: 110px;
    width: 182px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__title h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button {
    display: flex;
    align-self: center;
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-shop-brief .single-shop-top-img {
    height: 194px;
  }
  .single-shop-brief .single-shop-top-img div {
    background-position: left top, right -330px top;
  }
  .single-shop-brief .inner-block-wrapper {
    max-width: 728px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__logo {
    height: 110px;
    width: 182px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__title h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button {
    display: flex;
    align-self: center;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button::after {
    display: none;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button::before {
    display: none;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button:hover span {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .single-shop-brief .single-shop-top-img {
    margin-bottom: 35px;
  }
  .single-shop-brief .single-shop-top-img {
    height: 141px;
  }
  .single-shop-brief .single-shop-top-img div {
    background: none;
  }
  .single-shop-brief .inner-block-wrapper {
    gap: 20px;
    max-width: 336px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "logo tags" "logo title" "btn btn";
    gap: 8px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__logo {
    height: 62px;
    width: 103px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__title {
    margin-bottom: 3px;
  }
  .single-shop-brief .inner-block-wrapper .single-shop-header__title h1 {
    font-size: 20px;
    line-height: 20px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 {
    justify-content: flex-start;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button {
    padding: 8px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button::after {
    display: none;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button::before {
    display: none;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_1 .button:hover span {
    margin: 0;
  }
  .single-shop-brief .inner-block-wrapper .buttons-block_3 {
    margin: 0 auto;
  }
}

.single-shop-products .products-list .products-item {
  pointer-events: none;
}
.single-shop-products .buttons-block {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
}
.single-shop-products .buttons-block_2 .button::after,
.single-shop-products .buttons-block_3 .button::after {
  display: none;
}
.single-shop-products .buttons-block_2 .button::before,
.single-shop-products .buttons-block_3 .button::before {
  display: none;
}
.single-shop-products .buttons-block_2 .button:hover span,
.single-shop-products .buttons-block_3 .button:hover span {
  margin: 0;
}
@media (min-width: 1024px) {
  .single-shop-products {
    margin-top: 50px;
  }
}
@media (max-width: 1023px) {
  .single-shop-products {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .single-shop-products .buttons-block_1 .button {
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-products .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
  .single-shop-products .buttons-block_2 .button,
.single-shop-products .buttons-block_3 .button {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .single-shop-products .buttons-block_1 .button {
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-products .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
  .single-shop-products .buttons-block_2 .button,
.single-shop-products .buttons-block_3 .button {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-shop-products .buttons-block_1 .button {
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-products .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
  .single-shop-products .buttons-block_2 .button,
.single-shop-products .buttons-block_3 .button {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .single-shop-products .buttons-block {
    justify-content: start;
  }
  .single-shop-products .buttons-block_1 .button {
    padding: 8px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .single-shop-products .buttons-block_1 .button::after {
    display: none;
  }
  .single-shop-products .buttons-block_1 .button::before {
    display: none;
  }
  .single-shop-products .buttons-block_1 .button:hover span {
    margin: 0;
  }
  .single-shop-products .buttons-block_3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "btn1 btn1" "btn2 btn3";
    gap: 8px;
  }
  .single-shop-products .btn1 {
    grid-area: btn1;
  }
  .single-shop-products .btn2 {
    grid-area: btn2;
  }
  .single-shop-products .btn3 {
    grid-area: btn3;
  }
  .single-shop-products .buttons-block_2 .button,
.single-shop-products .buttons-block_3 .button {
    padding: 8px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

.single-shop-about {
  margin: 0 auto;
}
.single-shop-about .media-container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.single-shop-about .media-container .media-item .image-wrapper {
  height: 306px;
}
.single-shop-about .media-container .media-item .image-wrapper iframe {
  width: 100%;
  height: 100%;
}
.single-shop-about .media-container .media-item .image-wrapper img {
  object-fit: cover;
}
.single-shop-about .media-container .media-item .media-description {
  margin-top: 16px;
}
.single-shop-about .media-container .media-item .media-description span {
  display: block;
  width: 100%;
  font-size: 16px;
  font-style: italic;
  line-height: 24px;
  text-align: center;
  color: #979797;
}
.single-shop-about .shop-additional-description {
  margin-top: 60px;
}
.single-shop-about .shop-additional-description p, .single-shop-about .shop-additional-description ul {
  margin-bottom: 16px;
}
.single-shop-about .buttons-block {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
  margin-top: 40px;
}
.single-shop-about .buttons-block_2 .button::after,
.single-shop-about .buttons-block_3 .button::after {
  display: none;
}
.single-shop-about .buttons-block_2 .button::before,
.single-shop-about .buttons-block_3 .button::before {
  display: none;
}
.single-shop-about .buttons-block_2 .button:hover span,
.single-shop-about .buttons-block_3 .button:hover span {
  margin: 0;
}
@media (min-width: 768px) {
  .single-shop-about .media-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .single-shop-about .media-container .media-item {
    width: calc(50% - 20px);
  }
  .single-shop-about .media-container .media-item .image-wrapper img {
    object-fit: cover;
  }
}
@media (min-width: 1440px) {
  .single-shop-about {
    padding-top: 50px;
    padding-bottom: 110px;
    max-width: 1200px;
  }
  .single-shop-about .buttons-block_1 .button {
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-about .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
  .single-shop-about .buttons-block_2 .button,
.single-shop-about .buttons-block_3 .button {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .single-shop-about {
    padding-top: 50px;
    padding-bottom: 110px;
    max-width: 984px;
  }
  .single-shop-about .buttons-block_1 .button {
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-about .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
  .single-shop-about .buttons-block_2 .button,
.single-shop-about .buttons-block_3 .button {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-shop-about {
    padding-top: 40px;
    padding-bottom: 50px;
    max-width: 728px;
  }
  .single-shop-about .buttons-block_1 .button {
    padding: 20px 61px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .single-shop-about .buttons-block_1 .button:hover {
    background-color: #2579f6;
  }
  .single-shop-about .buttons-block_2 .button,
.single-shop-about .buttons-block_3 .button {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .single-shop-about {
    padding-top: 40px;
    padding-bottom: 50px;
    max-width: 336px;
  }
  .single-shop-about .buttons-block_1 .button {
    padding: 8px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .single-shop-about .buttons-block_1 .button::after {
    display: none;
  }
  .single-shop-about .buttons-block_1 .button::before {
    display: none;
  }
  .single-shop-about .buttons-block_1 .button:hover span {
    margin: 0;
  }
  .single-shop-about .buttons-block_3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "btn1 btn1" "btn2 btn3";
    gap: 8px;
  }
  .single-shop-about .btn1 {
    grid-area: btn1;
  }
  .single-shop-about .btn2 {
    grid-area: btn2;
  }
  .single-shop-about .btn3 {
    grid-area: btn3;
  }
  .single-shop-about .buttons-block_2 .button,
.single-shop-about .buttons-block_3 .button {
    padding: 8px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .single-shop-about .media-container {
    flex-direction: column;
  }
}

.add-shop-thank-you {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.add-shop-thank-you__title {
  display: flex;
  gap: 10px 15px;
}
.add-shop-thank-you__title h2 {
  font-weight: 500;
}
.add-shop-thank-you__title img {
  height: 34px;
}
.add-shop-thank-you__form {
  display: flex;
  margin: 0 auto;
  border: 1px solid #dedede;
  border-radius: 8px;
}
.add-shop-thank-you__form_left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-shop-thank-you__form_left p {
  text-align: center;
}
.add-shop-thank-you__form_center {
  box-shadow: 1px 1px #dedede;
}
.add-shop-thank-you__form_right {
  display: flex;
  align-self: center;
}
.add-shop-thank-you__form_right .gform_wrapper .gform_validation_errors {
  display: none;
}
.add-shop-thank-you__form_right .gform_wrapper .gform_fields {
  display: flex !important;
  flex-direction: column !important;
}
.add-shop-thank-you__form_right .gform_wrapper .ginput_container input, .add-shop-thank-you__form_right .gform_wrapper .ginput_container textarea {
  background-color: #f8f8f8;
  border-bottom: 1px solid #000;
}
.add-shop-thank-you__form_right .gform_wrapper .gform_footer {
  margin-top: 25px !important;
}
.add-shop-thank-you__form_right .gform_wrapper .gform_footer .gform_button {
  height: 40px;
  padding: 0px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  background-color: #2579f6;
  background-image: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.add-shop-thank-you__form_right .gform_wrapper .gform_footer .gform_button:hover {
  background-color: #000;
}
@media (min-width: 768px) {
  .add-shop-thank-you {
    gap: 59px;
    margin-top: 32px;
  }
  .add-shop-thank-you__title {
    flex-direction: row;
    align-items: center;
  }
  .add-shop-thank-you__title h2 {
    font-size: 30px;
    line-height: 34px;
  }
  .add-shop-thank-you__form {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .add-shop-thank-you__form__left p {
    font-size: 24px;
    line-height: 26px;
  }
  .add-shop-thank-you__form_center {
    width: 1px;
    min-height: 100%;
  }
}
@media (min-width: 1440px) {
  .add-shop-thank-you {
    margin-bottom: 80px;
    width: 1096px;
  }
  .add-shop-thank-you__form {
    gap: 42px;
    padding: 40px 40px 60px 40px;
  }
  .add-shop-thank-you__form_left {
    gap: 54px;
  }
  .add-shop-thank-you__form_left p {
    width: 488px;
  }
  .add-shop-thank-you__form_right {
    width: 344px;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_fields {
    gap: 43px !important;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_footer {
    margin-top: 25px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .add-shop-thank-you {
    margin-bottom: 75px;
    width: 984px;
  }
  .add-shop-thank-you__form {
    gap: 42px;
    padding: 40px 40px 60px 40px;
  }
  .add-shop-thank-you__form_left {
    gap: 54px;
  }
  .add-shop-thank-you__form_left p {
    width: 488px;
  }
  .add-shop-thank-you__form_right {
    width: 332px;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_fields {
    gap: 43px !important;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_footer {
    margin-top: 25px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .add-shop-thank-you {
    margin-bottom: 68px;
    width: 728px;
  }
  .add-shop-thank-you__form {
    gap: 35px;
    padding: 20px 20px 40px 20px;
  }
  .add-shop-thank-you__form_left {
    gap: 54px;
  }
  .add-shop-thank-you__form_right {
    width: 283px;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_fields {
    gap: 34px !important;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_footer {
    margin-top: 16px !important;
  }
}
@media (max-width: 767px) {
  .add-shop-thank-you {
    gap: 41px;
    margin-top: 24px;
    margin-bottom: 48px;
    width: 325px;
  }
  .add-shop-thank-you__title {
    flex-direction: column;
    align-items: flex-start;
  }
  .add-shop-thank-you__title h2 {
    font-size: 26px;
    line-height: 20px;
  }
  .add-shop-thank-you__form {
    flex-direction: column;
    gap: 32px;
    padding: 20px 20px 32px 20px;
  }
  .add-shop-thank-you__form_left {
    gap: 45px;
  }
  .add-shop-thank-you__form_left p {
    font-size: 20px;
    line-height: 26px;
  }
  .add-shop-thank-you__form_center {
    width: 100%;
    height: 1px;
  }
  .add-shop-thank-you__form_right {
    width: 283px;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_fields {
    gap: 34px !important;
  }
  .add-shop-thank-you__form_right .gform_wrapper .gform_footer {
    margin-top: 16px !important;
  }
}

.hidden {
  display: none !important;
}

.upload-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 auto;
  max-width: 100%;
}

.upload-card-image {
  position: relative;
  width: 248px;
  height: 151px;
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.upload-card-image__label {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 151px;
  text-align: center;
  color: #2579f6;
  cursor: pointer;
}

.upload-card-image__input {
  display: none;
}

.upload-card-image__holder {
  z-index: -1;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.upload-card-image__image {
  object-position: center;
  object-fit: contain;
}

.upload-card_error .upload-card-image {
  border-color: #ff0000;
}

.upload-card-error {
  color: #ff0000;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.upload-banner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.upload-banner-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 281px;
  background-color: #f8f8f8;
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .upload-banner-image {
    height: 281px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .upload-banner-image {
    height: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .upload-banner-image {
    height: 194px;
  }
}
@media (max-width: 767px) {
  .upload-banner-image {
    height: 178px;
  }
}

.upload-banner-image__label {
  z-index: 2;
}
.upload-banner-image__label span {
  font-size: 10px;
  line-height: 14px;
}

.upload-banner-image__input {
  display: none;
}

.upload-banner-image__holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.upload-banner-image__image {
  object-fit: cover;
  object-position: center;
}

.upload-banner_error .upload-banner-image {
  border-color: #ff0000;
}

.upload-banner-error {
  color: #ff0000;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.step__title h2 {
  font-size: 24px;
  line-height: 40px;
}
.step__title p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
}

.shop-products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
}

.shop-products__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 38px 32px 40px;
  border: 1px solid #dedede;
  border-radius: 8px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .shop-products__item {
    padding: 25px 20px 33px;
  }
}
.shop-products__item .shop-products__remove {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-radius: 0 8px 0 8px;
}
.shop-products__item .shop-products__remove span {
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("../img/multiply_blue.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.shop-products__item .shop-products__remove:hover span {
  background-image: url("../img/multiply_white.svg");
}
.shop-products__item .upload-card {
  max-width: 100%;
}
.shop-products__item .upload-card-image {
  width: 282px;
  height: 178px;
}
.shop-products__item .upload-card-image__label {
  line-height: 178px;
}
.shop-products__item .input-wrapper {
  width: 321px;
  max-width: 100%;
}

.shop-media {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
}

.shop-media__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 33px;
  border: 1px solid #dedede;
  border-radius: 8px;
  box-sizing: border-box;
}
.shop-media__item .upload-card-image,
.shop-media__item .shop-media__video-block {
  width: 343px;
  height: 195px;
  max-width: 100%;
}
.shop-media__item .upload-card-image__label {
  line-height: 195px;
}
.shop-media__item .shop-media__video-block,
.shop-media__item .upload-card__label,
.shop-media__item .upload-card__image {
  background-color: #f8f8f8;
}
.shop-media__item .upload-card .upload-card__label {
  line-height: 195px;
}
.shop-media__item .shop-media__video-block {
  border: 1px solid #dedede;
  border-radius: 8px;
  box-sizing: border-box;
}
.shop-media__item .input-wrapper {
  width: 343px;
  max-width: 100%;
}

.shop-media__media {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.add-shop-form {
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .add-shop-form {
    width: 1201px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .add-shop-form {
    width: 982px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .add-shop-form {
    width: 728px;
  }
}
@media (max-width: 767px) {
  .add-shop-form {
    width: 336px;
  }
}
.add-shop-form .add-product-button button {
  min-height: 40px;
}
.add-shop-form .add-product-button .button + .button {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .add-shop-form .add-product-button .button + .button {
    margin-left: 0;
    margin-top: 20px;
  }
}

.add-shop-form__title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.add-shop-form__title h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
}
.add-shop-form__title .image-holder {
  width: 225px;
  height: 34px;
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-size: fill;
}
@media (min-width: 768px) {
  .add-shop-form__title {
    margin-top: 32px;
  }
  .add-shop-form__title h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .add-shop-form__title {
    margin-top: 25px;
  }
  .add-shop-form__title h2 {
    font-size: 26px;
    line-height: 26px;
  }
}

.add-shop-form__progressbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
}
.add-shop-form__progressbar .form-stepper-list {
  position: relative;
}
.add-shop-form__progressbar .form-stepper-list:nth-last-child(1)::after {
  display: none;
}
@media (min-width: 768px) {
  .add-shop-form__progressbar {
    gap: 27px;
    margin-top: 45px;
  }
  .add-shop-form__progressbar span:nth-last-child(1) {
    display: none;
  }
  .add-shop-form__progressbar .form-stepper-list {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .add-shop-form__progressbar .form-stepper-list::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: -27px;
    width: 27px;
    height: 2px;
    background-color: #2579f6;
  }
}
@media (max-width: 767px) {
  .add-shop-form__progressbar {
    gap: 16px;
    margin-top: 30px;
  }
  .add-shop-form__progressbar span:nth-child(1) {
    display: none;
  }
  .add-shop-form__progressbar .form-stepper-active span:nth-child(1) {
    display: block;
  }
  .add-shop-form__progressbar .form-stepper-active span:nth-child(2) {
    display: none;
  }
  .add-shop-form__progressbar .button {
    padding: 4px 16px;
  }
  .add-shop-form__progressbar .button_decoration-left_medium_white-white {
    padding: 4px 16px 4px 32px;
  }
  .add-shop-form__progressbar .button_decoration-left_medium_white-white::before {
    width: 12px;
    height: 8px;
    right: 14px;
    background-size: 12px 8px;
  }
  .add-shop-form__progressbar span {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  .add-shop-form__progressbar .form-stepper-list::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: -16px;
    width: 16px;
    height: 2px;
    background-color: #2579f6;
  }
}

.add-shop-form__step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 35px;
  margin-bottom: 35px;
}
.add-shop-form__step .step__header {
  width: 100%;
}
.add-shop-form__step .step__main,
.add-shop-form__step .step__footer {
  margin: 0 auto;
  box-sizing: border-box;
}
.add-shop-form__step input::placeholder,
.add-shop-form__step textarea::placeholder {
  font-size: 16px;
  line-height: 1.35;
  vertical-align: middle;
  max-width: 100%;
  white-space: pre-line !important;
}
.add-shop-form__step .select-field__options {
  width: 100%;
}
.add-shop-form__step textarea {
  min-height: 77px;
  max-width: 100%;
  box-sizing: border-box;
  resize: none;
  overflow-x: hidden;
}
@media (min-width: 1440px) {
  .add-shop-form__step {
    width: 1201px;
  }
  .add-shop-form__step .step__main,
.add-shop-form__step .step__footer {
    width: 794px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .add-shop-form__step {
    width: 982px;
  }
  .add-shop-form__step .step__main,
.add-shop-form__step .step__footer {
    width: 816px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .add-shop-form__step {
    width: 728px;
  }
  .add-shop-form__step .step__main,
.add-shop-form__step .step__footer {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-shop-form__step {
    width: 336px;
  }
  .add-shop-form__step .step__main,
.add-shop-form__step .step__footer {
    width: 100%;
  }
}

.step__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 4px;
  margin: 0 auto;
  width: 100%;
  background-color: #f8f8f8;
  border: 1px solid #dedede;
  border-radius: 8px;
}
.step__footer .button {
  position: relative;
}
.step__footer .controls__next::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 17px;
  background-image: url("../img/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.step__footer .controls__prev::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 17px;
  background-image: url("../img/arrow_blue.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.step__footer .controls__prev:hover::before {
  background-image: url("../img/arrow_white.svg");
  transform: scaleX(-1);
}
@media (min-width: 768px) {
  .step__footer .button {
    font-size: 18px;
  }
  .step__footer .controls__next {
    padding: 12px 48px 12px 24px;
  }
  .step__footer .controls__next::before {
    top: 12px;
    right: 18px;
  }
  .step__footer .controls__prev {
    padding: 12px 24px 12px 48px;
  }
  .step__footer .controls__prev::before {
    top: 12px;
    left: 18px;
  }
  .step__footer .controls__submit {
    padding: 12px 24px;
  }
}
@media (max-width: 767px) {
  .step__footer {
    font-size: 16px;
  }
  .step__footer .controls__next {
    padding: 8px 44px 8px 20px;
  }
  .step__footer .controls__next::before {
    top: 8px;
    right: 16px;
  }
  .step__footer .controls__prev {
    padding: 8px 20px 8px 44px;
  }
  .step__footer .controls__prev::before {
    top: 8px;
    left: 16px;
  }
  .step__footer .controls__submit {
    padding: 8px 20px;
    font-weight: 400;
  }
}

#add-shop-form__step_1 .step__main {
  display: grid;
  gap: 20px;
}
#add-shop-form__step_1 .shop-logo {
  grid-area: logo;
}
#add-shop-form__step_1 .shop-name {
  grid-area: name;
  margin-top: 5px;
}
#add-shop-form__step_1 .shop-link {
  grid-area: link;
  margin-bottom: 5px;
}
#add-shop-form__step_1 .shop-link-retailer_1 {
  grid-area: retailer-1;
  margin-top: 5px;
}
#add-shop-form__step_1 .shop-link-retailer_2 {
  grid-area: retailer-2;
  margin-top: 5px;
}
#add-shop-form__step_1 .shop-link-retailer_3 {
  grid-area: retailer-3;
  margin-top: 5px;
}
#add-shop-form__step_1 .category-select {
  grid-area: category;
  margin-top: 5px;
}
#add-shop-form__step_1 .shop-introduction {
  grid-area: intro;
  margin-top: 13px;
}
#add-shop-form__step_1 .shop-keywords {
  grid-area: keywords;
  margin-top: 13px;
}
#add-shop-form__step_1 .shop-keywords__example {
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
}
#add-shop-form__step_1 .shop-keywords__example span {
  text-decoration: underline;
}
#add-shop-form__step_1 .step__footer {
  justify-content: end;
}
@media (max-width: 767px) {
  #add-shop-form__step_1 .step__main {
    grid-template-columns: repeat(1, auto);
    grid-template-rows: repeat(9, auto);
    grid-template-areas: "logo" "name" "link" "retailer-1" "retailer-2" "retailer-3" "category" "intro" "keywords";
  }
  #add-shop-form__step_1 .shop-name,
#add-shop-form__step_1 .shop-link {
    width: 336px;
  }
  #add-shop-form__step_1 .shop-link .input-field,
#add-shop-form__step_1 .shop-link-retailer_1 .input-field,
#add-shop-form__step_1 .shop-link-retailer_2 .input-field {
    min-height: 66px;
  }
  #add-shop-form__step_1 .shop-link .input-field::placeholder,
#add-shop-form__step_1 .shop-link-retailer_1 .input-field::placeholder,
#add-shop-form__step_1 .shop-link-retailer_2 .input-field::placeholder {
    position: relative;
    top: -7px;
  }
  #add-shop-form__step_1 .shop-introduction .input-field {
    min-height: 77px;
  }
  #add-shop-form__step_1 .shop-keywords .input-field {
    min-height: 90px;
  }
}
@media (min-width: 768px) {
  #add-shop-form__step_1 .step__main {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(7, auto);
    grid-template-areas: "logo name" "logo link" "retailer-1 retailer-1" "retailer-2 retailer-2" "category category" "intro intro" "keywords keywords";
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #add-shop-form__step_1 .shop-name,
#add-shop-form__step_1 .shop-link {
    width: 460px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #add-shop-form__step_1 .shop-name,
#add-shop-form__step_1 .shop-link {
    width: 548px;
  }
}
@media (min-width: 1440px) {
  #add-shop-form__step_1 .shop-name,
#add-shop-form__step_1 .shop-link {
    width: 525px;
  }
}

#add-shop-form__step_2 .shop-products__item--md-w50,
#add-shop-form__step_2 .shop-media__item--md-w50,
#add-shop-form__step_3 .shop-products__item--md-w50,
#add-shop-form__step_3 .shop-media__item--md-w50 {
  max-width: 100%;
}
@media (min-width: 768px) {
  #add-shop-form__step_2 .shop-products__item--md-w50,
#add-shop-form__step_2 .shop-media__item--md-w50,
#add-shop-form__step_3 .shop-products__item--md-w50,
#add-shop-form__step_3 .shop-media__item--md-w50 {
    max-width: calc(50% - 10px);
  }
}
#add-shop-form__step_2 .upload-card-image__image,
#add-shop-form__step_3 .upload-card-image__image {
  object-fit: cover;
}

#add-shop-form__step_2 .step__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#add-shop-form__step_2 .upload-card__label {
  background-color: #f8f8f8;
  line-height: 178px;
}
#add-shop-form__step_2 .upload-card__image {
  background-color: #f8f8f8;
}

#add-shop-form__step_3 .step__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  #add-shop-form__step_3 .step__footer {
    margin-top: 12px;
  }
}

@media (min-width: 1440px) {
  .directory {
    position: relative;
    overflow: hidden;
  }
}
@media (min-width: 1440px) {
  .directory::after {
    position: absolute;
    content: "";
    background-image: url("../img/page-ornament-top-right.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    transform: rotate(180deg);
    width: 586px;
    height: 474px;
    bottom: -15px;
    left: -427px;
  }
}
.directory .main-title {
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .directory .main-title {
    grid-column: 1/-1;
    grid-row: 1/1;
  }
}
.directory .category-description {
  line-height: 24px;
}
@media (min-width: 768px) {
  .directory .category-description {
    grid-column: 1/-1;
    grid-row: 2/2;
  }
}
.directory .select-cat-btn {
  margin: 24px 0;
  color: #2579f6;
  background-color: #fff;
  border: 1px solid #2579f6;
  width: 100%;
  width: max-content;
}
@media (max-width: 767px) {
  .directory .select-cat-btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .directory .select-cat-btn {
    grid-column: 1/1;
    grid-row: 3/3;
  }
}
.directory .select-cat-btn.btn-as-select.active {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.directory .select-cat-btn.btn-as-select.active::after {
  background-image: url("../img/chevron-down-white.svg");
}
@media (max-width: 767px) {
  .directory .select-cat-btn.btn-as-select.active::after {
    transform: rotate(180deg);
  }
}
@media (min-width: 768px) {
  .directory .select-cat-btn.btn-as-select.active::after {
    transform: rotate(90deg);
  }
}
@media (min-width: 768px) {
  .directory .filter-bar {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
@media (min-width: 768px) {
  .directory .block-shops {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}
@media (min-width: 768px) {
  .directory .block-shops.filter-active {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}
.directory .pagination {
  margin: 40px 0 0;
}
@media (min-width: 768px) {
  .directory .pagination {
    grid-column: 1/-1;
    grid-row: 5/6;
  }
}

.directory__wrap {
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .directory__wrap {
    display: grid;
    grid-template-columns: 267px 1fr;
    grid-template-rows: repeat(3, auto);
    padding-bottom: 60px;
  }
}

.block-shops {
  transition: margin-left 0.2s ease-in-out;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block-shops .card {
    width: calc(33.3% - 22px + 4px);
  }
}
@media (min-width: 1024px) {
  .block-shops .card {
    width: calc(25% - 22px + 2px);
  }
}
.block-shops .card__hover-block {
  background-color: rgba(9, 37, 78, 0.9);
  border-radius: 8px;
}
.block-shops .card__img-wrap {
  box-sizing: border-box;
}
.block-shops .card__img-wrap img {
  object-fit: cover;
}
.block-shops .card:hover,
.block-shops .card:focus {
  box-shadow: 0 4px 20px rgba(70, 95, 158, 0.2);
}

@media (min-width: 768px) {
  .block-shops.filter-active {
    margin-left: 249px;
  }
}
@media (min-width: 1024px) {
  .block-shops.filter-active {
    margin-left: 251px;
  }
}
@media (min-width: 1440px) {
  .block-shops.filter-active {
    margin-left: 291px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block-shops.filter-active .card {
    width: calc(50% - 22px + 4px);
  }
}
@media (min-width: 1024px) {
  .block-shops.filter-active .card {
    width: calc(33.3% - 22px + 3px);
  }
}

@media (min-width: 768px) {
  .search-results {
    background-image: url("../img/page-ornament-top-right.svg");
    background-repeat: no-repeat;
    background-position: right -281px top -132px;
  }
}
@media (min-width: 1024px) {
  .search-results {
    background-position: right -220px top -130px;
  }
}
@media (min-width: 1440px) {
  .search-results {
    background-position: right -5px top -165px;
  }
}

.search-res {
  padding: 2rem 0;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .search-res {
    padding: 5.4rem 0 3.75rem;
  }
}
.search-res .pagination {
  margin: 2.5rem 0 0;
}
@media (min-width: 1440px) {
  .search-res .pagination {
    margin: 3.75rem 0 0;
  }
}
.search-res .search-form {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .search-res .search-form {
    margin-bottom: 2rem;
  }
}
.search-res .h2 {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .search-res .h2 {
    margin-bottom: 2rem;
  }
}

/**
Search results list styles
 */
.search-res__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .search-res__list {
    max-width: 815px;
  }
}

.search-res__item {
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 12px;
}
@media (min-width: 768px) {
  .search-res__item {
    grid-template-columns: 167px 1fr;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 22px;
  }
}
@media (min-width: 1024px) {
  .search-res__item {
    grid-template-columns: 182px 1fr;
  }
}
.search-res__item .search-res__item_thumb {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .search-res__item .search-res__item_thumb {
    grid-row: 1/-1;
  }
}
.search-res__item .search-res__item_name {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: center;
}
.search-res__item .search-res__item_text {
  grid-column: 1/-1;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .search-res__item .search-res__item_text {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.search-res__item .search-res__item_keywords {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .search-res__item .search-res__item_keywords {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}

.search-res__item {
  margin-bottom: 1.25rem;
}
.search-res__item:last-of-type {
  margin-bottom: 0;
}

.search-res__item_thumb {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
  height: 62px;
}
@media (min-width: 768px) {
  .search-res__item_thumb {
    height: 102px;
  }
}
.search-res__item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.search-res__item_name {
  font-size: 20px;
  font-weight: 700;
  color: #2579f6;
  word-break: break-word;
}
@media (min-width: 768px) {
  .search-res__item_name {
    font-size: 24px;
  }
}

.search-res__item_text {
  margin-top: 0.625rem;
}
@media (min-width: 768px) {
  .search-res__item_text {
    margin-top: 0.5rem;
  }
}

.search-res__item_keywords {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .page-template-tmpl-legal {
    background-image: url("../img/page-ornament-top-right.svg");
    background-repeat: no-repeat;
    background-position: right -281px top -132px;
  }
}
@media (min-width: 1024px) {
  .page-template-tmpl-legal {
    background-position: right -220px top -130px;
  }
}
@media (min-width: 1440px) {
  .page-template-tmpl-legal {
    background-position: right -5px top -165px;
  }
}

.legal {
  padding: 2rem 0;
}
.legal h1, .legal h2, .legal h3, .legal h4 {
  font-family: DMSans, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
.legal h1 {
  font-size: 35px;
  line-height: 1.25;
  margin-bottom: 21px;
}
@media (min-width: 768px) {
  .legal h1 {
    font-size: 65px;
  }
}
.legal h2 {
  font-size: 24px;
  line-height: 1.4;
  margin: 30px 0 20px;
}
@media (min-width: 768px) {
  .legal h2 {
    font-size: 30px;
    margin: 38px 0 24px;
  }
}
.legal p {
  font-size: 16px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .legal .legal__wrap {
    max-width: 815px;
  }
}
.legal a {
  color: #2579f6;
  text-decoration: none;
}
.legal a:hover, .legal a:focus, .legal a:active {
  text-decoration: underline;
}
.legal ul {
  margin-bottom: 1.5rem;
}
.legal li {
  margin-bottom: 0.65rem;
}
.legal li:last-of-type {
  margin-bottom: 0;
}

.error {
  padding: 115px 0 160px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.error:before, .error:after {
  position: absolute;
  content: "";
  background-image: url("../img/page-ornament-top-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.error:before {
  width: 586px;
  height: 474px;
  top: -204px;
  right: -356px;
}
@media (min-width: 1024px) {
  .error:before {
    top: -190px;
    right: -215px;
  }
}
@media (min-width: 1440px) {
  .error:before {
    right: -122px;
  }
}
.error:after {
  width: 293px;
  height: 237px;
  bottom: -110px;
  left: -61px;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .error:after {
    width: 586px;
    height: 474px;
    bottom: -222px;
    left: -122px;
  }
}

.error__title {
  font-size: 120px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .error__title {
    font-size: 180px;
  }
}

.error__desc {
  font-size: 14px;
}
@media (min-width: 768px) {
  .error__desc {
    font-size: 20px;
  }
}

.error__btn {
  display: inline-block;
  margin-top: 30px;
}

p, ul, ol, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

input, textarea {
  font-family: DMSans;
}

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

body {
  box-sizing: border-box;
  margin: 0;
  background-color: #fff;
  font-family: DMSans, sans-serif;
  font-size: 16px;
  line-height: 24px;
  max-width: 100%;
  overflow-x: hidden;
}

.image-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inner-block-wrapper {
  margin: 0 auto;
}

header ul, footer ul {
  list-style: none;
  padding: 0;
}

.header {
  display: flex;
  flex-direction: row;
  margin: 0 !important;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dedede;
  box-sizing: border-box;
  background-color: #fff;
}
@media (min-width: 1440px) {
  .header {
    gap: 40px;
    padding: 0 40px;
    height: 66px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .header {
    gap: 40px;
    padding: 0 20px;
    height: 66px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    gap: 40px;
    padding: 0 20px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .header {
    gap: 20px;
    padding: 0 12px;
    height: 55px;
  }
}

.header__logo {
  flex-grow: 1;
}
.header__logo .logo {
  display: block;
}
@media (min-width: 768px) {
  .header__logo .logo {
    width: 225px;
    height: 34px;
    background-image: url("../img/logo.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767px) {
  .header__logo .logo {
    width: 75px;
    height: 34px;
    background-image: url("../img/logo_short.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.header__burger-button {
  width: 21px;
  height: 21px;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center;
  display: inherit;
}
.header__burger-button_hidden {
  background-image: url("../img/burger.svg");
  background-size: 21px 17px;
}
.header__burger-button_visible {
  background-image: url("../img/multiply.svg");
  background-size: 13px 13px;
}
@media (min-width: 1024px) {
  .header__burger-button {
    display: none;
  }
}

.header__menu {
  font-size: 18px;
  height: 100%;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  bottom: 0;
  background-color: #fff;
}
@media (min-width: 1440px) {
  .header__menu {
    line-height: 65px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .header__menu {
    line-height: 65px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__menu {
    position: absolute;
    z-index: 5;
    left: 0;
    padding: 0 34px;
    height: 88px;
    line-height: 88px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__menu {
    position: absolute;
    z-index: 5;
    left: 0;
    padding: 58px 0;
    height: 384px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__menu_hidden {
    top: -88px;
  }
}
@media (max-width: 767px) {
  .header__menu_hidden {
    top: -500px;
  }
}

.header__menu_visible {
  box-shadow: 0 10px 20px rgba(70, 95, 158, 0.2);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__menu_visible {
    top: 66px;
  }
}
@media (max-width: 767px) {
  .header__menu_visible {
    top: 55px;
  }
}

.menu-main-menu-container {
  height: 100%;
  width: 100%;
}

#menu-main-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background-color: #fff;
}
@media (min-width: 1024px) {
  #menu-main-menu {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #menu-main-menu {
    flex-direction: row;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  #menu-main-menu {
    flex-direction: column;
    gap: 50px;
  }
}

.header .menu-item {
  position: relative;
}
.header .menu-item::before {
  content: "";
  position: absolute;
  display: block;
  left: -15px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #2579f6;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.header .menu-item:hover::before {
  opacity: 1;
}
@media (min-width: 1440px) {
  .header .menu-item::before {
    top: 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .header .menu-item::before {
    top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header .menu-item::before {
    top: 40px;
  }
}
@media (max-width: 767px) {
  .header .menu-item::before {
    top: 8px;
  }
}

@media (min-width: 1025px) {
  .menu-item:nth-child(3):hover > .categories-list-menu {
    opacity: 1;
    display: flex;
  }
}

.categories-list-menu {
  position: absolute;
  display: flex;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 3;
  gap: 1px;
  top: 57px;
  right: -140px;
  width: 710px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  opacity: 0;
  box-shadow: 0px 14px 30px rgba(9, 37, 78, 0.37);
}
.categories-list-menu li {
  width: 236px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px #dedede;
}
.categories-list-menu li a {
  display: block;
  padding: 9px 13px;
  color: #000;
  transition: background-color 0.2s ease-in-out;
}
.categories-list-menu li a:hover, .categories-list-menu li a:focus, .categories-list-menu li a:active {
  background-color: #dedede;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #2c2c2c;
  color: #fff;
}
footer .footer__text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
footer .footer__logo {
  margin-left: 8px;
}
footer .footer-separator {
  margin: 0 20px;
  height: 18px;
  border-right: 1px solid #797979;
}
footer .footer__text,
footer #menu-footer-menu a {
  color: #fff;
}
footer #menu-footer-menu {
  display: flex;
  flex-direction: row;
}
@media (min-width: 361px) {
  footer {
    line-height: 24px;
    font-size: 14px;
  }
  footer #menu-footer-menu {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  footer {
    padding: 0 120px;
    height: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  footer {
    padding-left: 85px;
    padding-right: 15px;
    height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer {
    padding: 0 20px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  footer {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 11px;
    height: 93px;
    line-height: 24px;
    font-size: 12px;
  }
  footer #menu-footer-menu {
    gap: 10px;
  }
}
/*# sourceMappingURL=maps/style.css.map */
