@charset "UTF-8";
@font-face {
  font-family: "Nekst";
  src:
    url("/wp-content/themes/itcatalog/assets/fonts/Nekst-Regular.woff2") format("woff2"),
    url("/wp-content/themes/itcatalog/assets/fonts/Nekst-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nekst";
  src:
    url("/wp-content/themes/itcatalog/assets/fonts/Nekst-Medium.woff2") format("woff2"),
    url("/wp-content/themes/itcatalog/assets/fonts/Nekst-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
* {
  box-sizing: border-box;
  outline: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Nekst, sans-serif;
  font-style: normal;
  font-weight: 400;
}

h1 {
  margin: 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 54px;
  color: #005baa;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
  color: #ffffff;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
  color: #000000;
}

h4 {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}
.container--flex {
  display: flex;
}

.button {
  display: block;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s;
}
.button--search {
  display: flex;
  padding: 8px 9px 7px 9px;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 0px 2px 2px 0px;
}
.button--white {
  padding: 13px 0;
  color: #3c388d;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 0px 2px 2px 0px;
}
.button--green {
  padding: 14px 16px;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  background-color: #9fc53a;
  border-color: #9fc53a;
  border-radius: 2px;
}
#cancelIcon {
  display: none;
  stroke: #3c388d;
}

.categories {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  gap: 3px;
}
.categories-icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}

#info {
  display: block;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.header {
  padding: 30px 0;
  border-bottom: 1px solid #3c388d;
}
.header-logo {
  max-width: 382px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.search {
  padding: 40px 0;
  background-color: #3c388d;
}
.search-title {
  margin-bottom: 10px;
}
.search-form {
  margin-bottom: 20px;
  display: flex;
  width: 100%;
}
.search-form_input {
  padding-left: 14px;
  flex-grow: 1;
  font-size: 16px;
  line-height: 19px;
  color: #acabc2;
  background-color: transparent;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 2px 0px 0px 2px;
}
.search-form_input::placeholder {
  color: #acabc2;
}
.search-form_button {
  width: 182px;
}
.search-filter {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 15px;
}
.search-filter_item {
  /* скрываем стоковый квадратик чекбокса и стилизуем текст */
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.search-filter_item:checked + label::before {
  /* вид чекбокса в стостоянии :checked */
  border-color: #ffffff;
  background-color: #ffffff;
  background-image: url("/wp-content/themes/itcatalog/assets/icons/icon_check.svg");
}
.search-filter_item:not(:disabled):not(:checked) + label:hover::before {
  /* стили при наведении курсора на checkbox */
  background: rgba(255, 255, 255, 0.1);
}
.search-filter_item + label {
  /* центрирование квадратика чекбокса и подписи, стилизуем подпись */
  position: relative;
  display: inline-flex;
  padding-right: 10px;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  align-items: center;
  cursor: pointer;
}
.search-filter_item + label::before {
  /* рисуем кастомный чекбокс */
  content: "";
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.search-filter_item + label::after {
  /* треугольничек в уголке */
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background: linear-gradient(225deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%);
}

.catalog {
  padding: 40px 0;
  flex-grow: 1;
}
.catalog-filter {
  margin-bottom: 20px;
  display: flex;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.catalog-filter_item {
  display: none;
}
.catalog-filter_item:checked ~ span {
  background-color: #3c388d;
  color: #ffffff;
}
.catalog-filter_item + span {
  display: block;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  cursor: pointer;
}

.catalog-items,
.catalog-all-items {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.catalog-all-items {
  margin-bottom: 10px;
}

.catalog-empty {
  text-align: center;
}

.catalog-button {
  padding: 16px 34px;
  margin-right: auto;
  margin-left: auto;
}

.mobile-filter {
  display: none;
}

.item {
  position: relative;
  padding: 25px;
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  -moz-column-gap: 25px;
  column-gap: 25px;
  border-radius: 2px;
  background-color: #f0f0f6;
  text-decoration: none;
}
.item:last-child {
  margin-bottom: 0;
}
.item-image {
  width: 250px;
  height: 160px;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}
.item-content {
  flex-grow: 1;
}
.item-content_labels {
  right: 25px;
  top: 25px;
}
.item-content_title {
  margin-top: 15px;
  margin-bottom: 15px;
}
.item-content_text {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.content {
  flex-grow: 1;
  padding-top: 32px;
  padding-bottom: 40px;
}
.content .container {
  position: relative;
}
.content-back {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  color: #005baa;
}
.content-back_icon {
  width: 15px;
  height: 9px;
  fill: #005baa;
}
.content-labels {
  right: 0;
  top: 0;
}
.content-title {
  margin-bottom: 25px;
}
.content-title a {
  text-decoration: none;
  color: inherit;
}
.content-desc {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 24px;
}
.content-desc + ul {
  margin-bottom: 25px;
  list-style-position: inside;
  list-style-image: url("/wp-content/themes/itcatalog/assets/icons/icon_list_item.svg");
}
.content-desc + ul > li {
  margin-bottom: 10px;
}
.content-desc + ul + p {
  margin-bottom: 35px;
}
.content-subtitle {
  margin-bottom: 10px;
}
.content-list {
  padding-left: 35px;
  margin-bottom: 25px;
  list-style-image: url("/wp-content/themes/itcatalog/assets/icons/icon_list_item.svg");
}
.content-list:last-of-type {
  margin-bottom: 35px;
}
.content-list_item {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}
.content-gallery {
  margin-bottom: 25px;
}
.content-gallery_viewport.is-draggable .content-gallery_slide {
  cursor: grab;
}
.content-gallery_track {
  gap: 10px;
}
.content-gallery_slide {
  width: auto;
  cursor: pointer;
}
.content-gallery_image {
  height: 223px;
  -o-object-fit: contain;
  object-fit: contain;
}
.content-button {
  padding: 16px 23px;
}

.footer {
  padding: 30px 0;
  background: linear-gradient(93.54deg, #3c388d 41.1%, #652580 88.81%);
}
.footer-logo {
  max-width: 380px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.search {
  transition: all 0.2s;
}
.search-form_input:hover {
  background: rgba(255, 255, 255, 0.1);
}
.search-form_input:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.search-filter_item:hover::before {
  background: rgba(255, 255, 255, 0.1);
}
.search-filter_item--checked:hover::before {
  background-color: #ffffff;
  background-image: url("/wp-content/themes/itcatalog/assets/icons/icon_check.svg");
  background-repeat: no-repeat;
  background-size: 14px 10px;
  background-position: 50% 50%;
}

.catalog-filter_label:hover {
  background-color: #3c388d;
}
.catalog-filter_label:hover span {
  color: #ffffff;
}

.button--white:hover {
  color: #ffffff;
  background-color: transparent;
}
.button--green:hover {
  color: #9fc53a;
  background-color: transparent;
}
button:has(#cancelIcon:hover) {
  background-color: transparent;
  border-color: #ffffff;
}
#cancelIcon:hover {
  stroke: #ffffff;
}

.content-back:hover {
  text-decoration: underline;
}
.content-title:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.content-gallery_slide {
  transition: all 0.4s;
}
.content-gallery_slide:hover {
  transform: scale(1.05);
}

.not-found_content__link:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

.page-load-status {
  display: none; /* hidden by default */
  padding-bottom: 20px;
  text-align: center;
  color: #777;
}

.pagination {
  list-style: none;
  display: flex;
}

.pagination li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  line-height: 150%;
  color: #025dae;
}

.pagination li span {
  color: #ffffff;
  background: #c2c1db;
}

.pagination li:hover > * {
  color: #ffffff;
  background: #c2c1db;
}

.not-found {
  display: flex;
  flex-grow: 1;
  padding: 50px 0;
}

.not-found .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background-image: url("/wp-content/themes/itcatalog/assets/icons/404_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 86%;
}

.not-found_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.not-found_content__image {
  max-width: 372px;
  width: 100%;
  object-fit: contain;
}

.not-found_content__message {
  font-size: 20px;
  line-height: 30px;
}

.not-found_content__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #005baa;
  font-size: 18px;
  line-height: 27px;
}

.not-found_content__icon {
  width: 21px;
  height: 11px;
  fill: #005baa;
}

@media (max-width: 735px) {
  .search-form_input:hover {
    background: transparent;
  }
  .search-form_input:focus {
    background: transparent;
  }
  .search-filter_item:hover::before {
    background: transparent;
  }
  .search-filter_item--checked:hover::before {
    background-color: #ffffff;
    background-image: url("/wp-content/themes/itcatalog/assets/icons/icon_check.svg");
    background-repeat: no-repeat;
    background-size: 14px 10px;
    background-position: 50% 50%;
  }
  .catalog-filter_label:hover {
    background-color: transparent;
  }
  .catalog-filter_label:hover span {
    color: #000000;
  }
  .catalog-filter_label:hover .catalog-filter_item:checked ~ span {
    color: #ffffff;
  }
  .button--white:hover {
    color: #3c388d;
    background-color: #ffffff;
  }
  .button--green:hover {
    color: #ffffff;
    background-color: #9fc53a;
  }
  .content-back:hover {
    text-decoration: none;
  }
  .content-title:hover {
    text-decoration: none;
    text-decoration-thickness: 2px;
  }
  .content-gallery_slide {
    transition: all 0.4s;
  }
  .content-gallery_slide:hover {
    transform: none;
  }
  .not-found_content__link:hover {
    text-decoration: none;
  }
}
@media (max-width: 1250px) {
  h4 {
    font-size: calc(16px + 4 * (100vw - 320px) / 930);
    line-height: calc(24px + 6 * (100vw - 320px) / 930);
  }
  .container {
    max-width: 91%;
  }
  .header-logo {
    max-width: calc(290px + 92 * (100vw - 320px) / 930);
  }
  .search {
    padding-top: calc(20px + 20 * (100vw - 320px) / 930);
    padding-bottom: calc(15px + 25 * (100vw - 320px) / 930);
  }
  .search-title {
    font-size: calc(22px + 2 * (100vw - 320px) / 930);
    line-height: calc(26px + 3 * (100vw - 320px) / 930);
  }
  .search-form_input {
    font-size: calc(14px + 2 * (100vw - 320px) / 930);
    line-height: calc(17px + 2 * (100vw - 320px) / 930);
  }
  .search-filter_item {
    padding-left: calc(22px + 12 * (100vw - 320px) / 930);
    height: calc(16px + 8 * (100vw - 320px) / 930);
    font-size: calc(14px + 2 * (100vw - 320px) / 930);
    line-height: calc(17px + 2 * (100vw - 320px) / 930);
  }
  .search-filter_item::before {
    width: calc(14px + 8 * (100vw - 320px) / 930);
    height: calc(14px + 8 * (100vw - 320px) / 930);
  }
  .catalog {
    padding-top: calc(30px + 10 * (100vw - 320px) / 930);
    padding-bottom: calc(30px + 10 * (100vw - 320px) / 930);
  }
  .catalog-filter_item {
    font-size: calc(14px + 2 * (100vw - 320px) / 930);
    line-height: calc(17px + 2 * (100vw - 320px) / 930);
  }
  .item-content_title {
    margin-bottom: calc(10px + 5 * (100vw - 320px) / 930);
    font-size: calc(20px + 2 * (100vw - 320px) / 930);
    line-height: calc(30px + 3 * (100vw - 320px) / 930);
  }
  .content {
    padding-top: calc(30px + 2 * (100vw - 320px) / 930);
    padding-bottom: calc(22px + 18 * (100vw - 320px) / 930);
  }
  .content-back {
    margin-bottom: calc(15px + 10 * (100vw - 320px) / 930);
  }
  .content-title {
    margin-bottom: calc(15px + 10 * (100vw - 320px) / 930);
    font-size: calc(24px + 12 * (100vw - 320px) / 930);
    line-height: calc(36px + 18 * (100vw - 320px) / 930);
  }
  .content-desc {
    margin-bottom: calc(15px + 10 * (100vw - 320px) / 930);
    font-size: calc(14px + 2 * (100vw - 320px) / 930);
    line-height: calc(21px + 3 * (100vw - 320px) / 930);
  }
  .content-subtitle {
    margin-bottom: calc(5px + 5 * (100vw - 320px) / 930);
  }
  .content-list {
    margin-bottom: calc(15px + 20 * (100vw - 320px) / 930);
  }
  .content-list_item {
    font-size: calc(14px + 2 * (100vw - 320px) / 930);
    line-height: calc(21px + 3 * (100vw - 320px) / 930);
  }
  .content-gallery_image {
    height: calc(176px + 47 * (100vw - 320px) / 930);
  }
  .footer-logo {
    max-width: calc(290px + 90 * (100vw - 320px) / 930);
  }
  .not-found {
    padding-top: calc(30px + 20 * (100vw - 320px) / 930);
    padding-bottom: calc(30px + 20 * (100vw - 320px) / 930);
  }
  .not-found_content {
    gap: calc(8px + 12 * (100vw - 320px) / 930);
  }
  .not-found_content__message {
    font-size: calc(18px + 2 * (100vw - 320px) / 930);
    line-height: calc(27px + 3 * (100vw - 320px) / 930);
  }
  .not-found_content__link {
    font-size: calc(16px + 2 * (100vw - 320px) / 930);
    line-height: calc(24px + 3 * (100vw - 320px) / 930);
  }
}
@media (max-width: 1100px) {
  .catalog-filter {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .item-content_labels {
    position: relative;
    top: 0;
    right: 0;
  }
  .item-content_title {
    margin-top: 10px;
  }
  .content-labels {
    margin-bottom: 10px;
    position: relative;
    justify-content: flex-start;
  }
  .not-found .container {
    background-size: contain;
  }
}
@media (max-width: 876px) {
  .item-image {
    display: none;
  }
  .not-found__robot {
    width: 45%;
    object-fit: contain;
  }
  .not-found_content {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .catalog-filter {
    display: none;
  }
  .active {
    background-color: transparent;
    color: #000000;
  }
  .mobile-filter {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 0;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 2px 2px 0 0;
  }
  .mobile-filter_action {
    padding: 0;
    position: absolute;
    right: 0;
    width: 46px;
    height: 46px;
    border: none;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
    background-color: #3c388d;
  }
  .mobile-filter_action > svg {
    width: 20px;
    height: 11px;
    transform: rotate(0deg);
    transition: transform 0.5s;
  }
  .mobile-filter_input:checked + span {
    background-color: #ececf4;
    color: #3c388d;
  }
  .mobile-filter_label span {
    padding: 13px 10px;
    display: block;
  }
  .mobile-filter_selected {
    border: 1px solid #3c388d;
    border-radius: 2px;
    cursor: pointer;
  }
  .mobile-filter_dropdown {
    position: absolute;
    left: 0px;
    right: 0px;
    display: flex;
    width: 100%;
    flex-direction: column;
    pointer-events: none;
    background-color: #ffffff;
    top: 45px;
    border: 1px solid darkblue;
    opacity: 0;
  }
  .mobile-filter:has(.mobile-filter_dropdown.open) .mobile-filter_selected {
    display: flex;
    border-radius: 2px 2px 0 0;
  }
  .mobile-filter:has(.mobile-filter_dropdown.open) .mobile-filter_action > svg {
    transform: rotate(180deg);
  }
  .mobile-filter_dropdown.open {
    z-index: 99999;
    pointer-events: all;
    opacity: 1;
  }
  .item-content_labels {
    justify-content: flex-start;
  }
  .not-found .container {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .not-found__robot {
    width: 73%;
    margin-bottom: -13%;
  }
  .not-found_content {
    width: 100%;
    align-items: center;
  }
  .not-found_content__image {
    width: 75%;
  }
  .not-found_content__message {
    text-align: center;
  }
}
@media (max-width: 460px) {
  .search-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-button {
    width: 100%;
  }
  .content-button {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 320px) {
  .header-logo {
    max-width: 100%;
  }
  .content-button {
    width: 100%;
  }
  .footer-logo {
    max-width: 100%;
  }
} /*# sourceMappingURL=style.css.map */
