@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-ExtraLight.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}
*::after, *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
}

input {
  border: none;
  padding: 0;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}
button::-ms-clear, button::-ms-reveal,
input::-ms-clear,
input::-ms-reveal,
textarea::-ms-clear,
textarea::-ms-reveal,
select::-ms-clear,
select::-ms-reveal {
  display: none;
}
button::-moz-focus-inner, button::-moz-focus-outer,
input::-moz-focus-inner,
input::-moz-focus-outer,
textarea::-moz-focus-inner,
textarea::-moz-focus-outer,
select::-moz-focus-inner,
select::-moz-focus-outer {
  border: 0;
}

input,
textarea {
  cursor: text;
}

input[type=radio],
input[type=checkbox] {
  cursor: pointer;
}

svg {
  pointer-events: none;
  display: block;
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  color: inherit;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes hover-rotation {
  0% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
}
@keyframes hover-rotation {
  0% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
}
:root {
  --app-height: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  color: #222;
  position: relative;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.modal-open {
  overflow: hidden;
}
body.menu-opened {
  overflow: hidden;
}

/* Убираем стандартный курсор */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 740px;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0;
    max-width: 1184px;
    width: 100%;
    margin: 0 auto;
  }
}

.button {
  background: #e04049;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .button {
    width: unset;
  }
}
@media (min-width: 1280px) {
  .button:hover {
    background: #c2373f;
  }
}

.pagintaion-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .pagintaion-wrapper {
    margin-top: 40px;
  }
}

.article__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 1280px) {
  .article__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
  }
}
.article__header {
  padding-bottom: 24px;
  border-bottom: 1px solid #dde0e5;
}
@media (min-width: 1280px) {
  .article__header {
    padding-bottom: 24px;
  }
}
.article__header--image {
  width: 100%;
  border-radius: 16px;
  height: 202px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .article__header--image {
    width: 100%;
    height: 400px;
  }
}
@media (min-width: 1280px) {
  .article__header--image {
    width: 100%;
    height: 666px;
    margin-bottom: 24px;
  }
}
.article__header--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}
.article__header--title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: #222;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .article__header--title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.article__header--more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) {
  .article__header--more {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.article__header--more .date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #aaaeb5;
  font-size: 14px;
  line-height: 1.2;
}
.article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
}
@media (min-width: 1280px) {
  .article__content {
    margin-top: 24px;
    gap: 24px;
    width: 884px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 884px;
    flex: 0 0 884px;
  }
}
.article .info {
  position: relative;
  margin-top: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (min-width: 1280px) {
  .article .info {
    border-bottom: unset;
    padding-bottom: unset;
    margin-top: 48px;
  }
}
.article .info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  background: #f0f2f7;
  border-radius: 16px;
  padding: 16px;
}
@media (min-width: 1280px) {
  .article .info-wrap {
    position: sticky;
    top: 48px;
  }
}
.article .info .title-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
}
@media (min-width: 1280px) {
  .article .info .title-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px;
  }
}
.article .info .title-content__image {
  width: 48px;
  height: 48px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
}
.article .info .title-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 100%;
}
.article .info .title-content__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.article .info .title-content__title, .article .info .title-content__subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #222;
}
.article .info .tab-paper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.article .info .tab-paper__title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222;
  position: relative;
}
.article .info .tab-paper__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.article .info .tab-paper__list li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #222;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1280px) {
  .article .info .tab-paper__list li a {
    font-size: 16px;
    line-height: 1.2;
  }
  .article .info .tab-paper__list li a.active {
    color: #e04049;
  }
  .article .info .tab-paper__list li a:hover {
    color: #c2373f;
  }
}
.article__share {
  border-bottom: 1px solid #dde0e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .article__share {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .article__share {
    gap: 24px;
  }
}
.article__share--title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
  color: #aaaeb5;
}
.article__share--soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px;
}
@media (min-width: 1280px) {
  .article__share--soc {
    gap: 8px;
  }
}
.article__share--soc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f0f2f7;
  border-radius: 100px;
  padding: 0;
  width: 32px;
  height: 32px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
@media (min-width: 1280px) {
  .article__share--soc a:hover {
    background: #e4e7ed;
  }
}
.article__share--soc a img {
  width: 16px;
  height: 16px;
}
.article__share .buttons-likes {
  margin-left: auto;
}
.article__share--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .article__share--wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.article article strong {
  font-weight: 600;
}
.article article h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #222;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .article article h2 {
    font-size: 26px;
  }
}
.article article h2:not(:first-of-type) {
  margin-top: 24px;
}
@media (min-width: 1280px) {
  .article article h2:not(:first-of-type) {
    margin-top: 24px;
  }
}
.article article h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #222;
  margin-bottom: 12px;
}
.article article h3:not(:first-of-type) {
  margin-top: 24px;
}
@media (min-width: 1280px) {
  .article article h3:not(:first-of-type) {
    margin-top: 24px;
  }
}
.article article p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 24px;
}
.article article p br {
  display: inline;
  font-size: 16px;
  line-height: 0.5;
}
.article article p + ul {
  margin-top: -24px;
}
@media (min-width: 1280px) {
  .article article p + ul {
    margin-top: -24px;
  }
}
.article article ul {
  list-style: none;
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .article article ul {
    margin-bottom: 24px;
  }
}
.article article ul li {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  padding-left: 1.5em;
}
.article article ul li::before {
  content: "-";
  display: inline;
  position: absolute;
  left: 0;
}
.article article .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .article article .wp-block-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.article article figure.wp-block-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .article article figure.wp-block-image {
    width: calc(50% - 12px);
  }
}
.article article figure.wp-block-image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  height: 100%;
  width: 100%;
}
@media (min-width: 1280px) {
  .article article figure.wp-block-image a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.article article figure.wp-block-image figcaption {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  bottom: 0;
  left: 0;
  max-height: 100%;
  position: absolute;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  margin: 0;
  overflow: auto;
  padding: 1em;
  scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  text-align: center;
  text-shadow: 0 0 1.5px #000;
  will-change: transform;
  background: none;
  pointer-events: none;
}
.article article figure.wp-block-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  will-change: transform;
}

.buttons-likes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}
.buttons-likes li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}
.buttons-likes li .count {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #aaaeb5;
}
.buttons-likes li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 360px;
  width: 32px;
  height: 32px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.buttons-likes li a img,
.buttons-likes li a svg {
  width: 16px;
  height: 16px;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.buttons-likes li a.like {
  background: #f1ffe8;
}
.buttons-likes li a.like svg {
  fill: #7dc025;
}
@media (min-width: 1280px) {
  .buttons-likes li a.like:hover {
    background: #ddf0d1;
  }
  .buttons-likes li a.like:hover svg {
    fill: #5f9912;
  }
}
.buttons-likes li a.like:active {
  background: #c3dbb4;
}
.buttons-likes li a.like:active svg {
  fill: #46700d;
}
.buttons-likes li a.dislike {
  background: #fff0f1;
}
.buttons-likes li a.dislike svg {
  fill: #e04049;
}
@media (min-width: 1280px) {
  .buttons-likes li a.dislike:hover {
    background: #f5dcde;
  }
  .buttons-likes li a.dislike:hover svg {
    fill: #c2373f;
  }
}
.buttons-likes li a.dislike:active {
  background: #e0bcbf;
}
.buttons-likes li a.dislike:active svg {
  fill: #99292f;
}

.footer {
  background: #f0f2f7;
  margin-top: 60px;
}
.footer .container {
  position: relative;
}
.footer__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 360px) {
  .footer__content-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .footer__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
}
.footer__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  padding: 48px 0;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__socials {
    gap: 32px;
  }
}
.footer__socials li a {
  display: block;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .footer__socials li a {
    width: 28px;
    height: 28px;
  }
}
.footer__socials li a img {
  width: 100%;
  height: 100%;
}
.footer__logo {
  width: 104px;
  height: 24px;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 122px;
    height: 28px;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
}
@media (min-width: 650px) {
  .footer__menu {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__menu ul li {
  margin-bottom: 16px;
}
.footer__menu ul li:nth-child(1) {
  margin-bottom: 24px;
}
.footer__menu ul li:nth-child(1) a {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #222;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1280px) {
  .footer__menu ul li:nth-child(1) a:hover {
    color: #7a7e85;
  }
  .footer__menu ul li:nth-child(1) a:hover svg {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
}
.footer__menu ul li:nth-child(1) a svg {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.footer__menu ul li:last-child {
  margin-bottom: 0;
}
.footer__menu ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #7a7e85;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1280px) {
  .footer__menu ul li a:hover {
    color: #222;
  }
}
.footer__menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 24px;
}
@media (min-width: 650px) {
  .footer__menu-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .footer__menu-wrap {
    gap: 60px;
  }
}
@media (min-width: 1280px) {
  .footer__menu-wrap {
    gap: 80px;
  }
}
.footer__bottom {
  background: #e1e4eb;
  padding: 16px 0;
}
.footer__bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.footer__bottom a,
.footer__bottom p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #7a7e85;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1280px) {
  .footer__bottom a:hover {
    color: #222;
  }
}

.header {
  padding: 18px 0;
  border-bottom: 1px solid #dde0e5;
}
@media (min-width: 768px) {
  .header {
    padding: 24px 0;
  }
}
@media (min-width: 1024px) {
  .header {
    padding: 24px 0;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 24px 0;
  }
}
.header.open-search {
  width: 100%;
}
.header.open-search .header__logo {
  display: none !important;
}
.header.open-search .header__search {
  display: none !important;
}
.header.open-search .header__text {
  display: none !important;
}
.header.open-search .header__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
}
.header.open-search .header__top--right {
  display: none !important;
}
.header__search-form {
  position: relative;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  background-color: #fff;
  max-height: 48px;
}
@media (min-width: 1280px) {
  .header__search-form {
    max-height: 48px;
  }
}
.header__search-form-input {
  border: none;
  outline: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #222;
  width: 100%;
}
.header__search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.header__search-form-btn {
  background: #e04049;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 40px;
  height: 40px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .header__search-form-btn {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .header__search-form-btn:hover {
    background: #c2373f;
  }
}
.header__search-form-btn:active {
  background: #99292f;
}
.header__search-form-btn img {
  width: 16px;
  height: 16px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.2s ease-in-out;
  transition: -webkit-filter 0.2s ease-in-out;
  transition: filter 0.2s ease-in-out;
  transition: filter 0.2s ease-in-out, -webkit-filter 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .header__search-form-btn img {
    width: 16px;
    height: 16px;
  }
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
  min-width: 159px;
}
@media (min-width: 768px) {
  .header__top--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
  }
}
@media (min-width: 1024px) {
  .header__top--right {
    gap: 16px;
    -ms-flex-item-align: unset;
    align-self: unset;
  }
}
@media (min-width: 1280px) {
  .header__top--right {
    gap: 16px;
  }
}
.header.header-article .header__text {
  display: none;
}
@media (min-width: 1024px) {
  .header.header-article .header__text {
    display: block;
  }
}
.header.header-article .header__text-center {
  display: none;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__logo {
  width: 189px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 215px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    width: 215px;
    height: 32px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    width: 215px;
    height: 32px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__logo a {
  display: block;
  position: relative;
}
.header__logo a:nth-child(2) {
  top: 4px;
}
@media (min-width: 1024px) {
  .header__logo.hide-logo {
    display: none !important;
  }
}
.header__search {
  background: #fff0f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 40px;
  height: 40px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .header__search {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .header__search:hover {
    background: #f5dcde;
  }
}
.header__search:active {
  background: #e0bcbf;
}
.header__search img {
  width: 16px;
  height: 16px;
}
@media (min-width: 1024px) {
  .header__search img {
    width: 16px;
    height: 16px;
  }
}

.block-card__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .block-card__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .block-card__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  .block-card__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.block-card__more-cards {
  display: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding-top: 21px;
  padding-bottom: 33px;
  border-top: 1px solid #e6e6e6;
}
.block-card__more-cards.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1280px) {
  .block-card__more-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #e6e6e6;
  }
  .block-card__more-cards.slider {
    display: none;
  }
}
.block-card__more-cards .owl-stage-outer {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 24px;
  margin-bottom: 16px;
}
.block-card__more-cards + div {
  margin-top: 48px;
}
.block-card__more-cards--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.block-card__more-cards--tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #edebff;
  border-radius: 8px;
  padding: 8px 8px 5px 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #211f21;
}
.block-card__more-cards .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 4px;
}
.block-card__more-cards .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: rgba(189, 189, 189, 0.3);
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
.block-card__more-cards .owl-dots .owl-dot.active {
  border-radius: 1000px;
  width: 16px;
  height: 8px;
  background-color: #7837df;
}
.block-card__more-cards .card-small {
  border-right: 1px solid #e6e6e6;
  width: 285px;
}
@media (min-width: 1280px) {
  .block-card__more-cards .card-small {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: auto;
  }
}
.block-card__more-cards .card-small:last-child {
  border-right: none;
}
.block-card__more-cards .owl-item .card-small {
  border-right: 1px solid #e6e6e6;
}
.block-card__more-cards .owl-item:last-child .card-small {
  border-right: none;
}

.tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  margin: 0 -15px 24px;
  padding: 0 15px;
  width: 100vw;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tags ul::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .tags ul {
    width: unset;
    padding: unset;
    margin: unset;
    overflow: unset;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
  }
}
.tags ul li.current-menu-item a {
  background-color: #e04049;
  color: #fff;
}
.tags a {
  background: #f0f2f7;
  border-radius: 12px;
  padding: 9px 16px;
  display: block;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .tags a {
    padding: 11px 16px;
  }
}
.tags a:active {
  background: #c9ccd4;
}
@media (min-width: 1280px) {
  .tags a:hover {
    background: #e4e7ed;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding: 8px;
  border-radius: 8px;
  margin: -8px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
@media (min-width: 768px) {
  .card {
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .card {
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .card {
    gap: 12px;
  }
  .card:hover .card__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .card:hover .card__title {
    color: #e04049;
  }
}
.card__image {
  overflow: hidden;
  width: 100%;
  height: 270px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .card__image {
    width: 100%;
    height: 283px;
  }
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  will-change: transform;
}
.card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.card__tags span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 6px;
  background: #f0f2f7;
  border-radius: 6px;
  padding: 5px 8px;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #7a7e85;
}
.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}
.card__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
.card__title {
  display: inline-block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #222;
}
.card__title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.card__text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #7a7e85;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .card__info {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #aaaeb5;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.more-articles {
  margin: 40px 0 0;
}
@media (min-width: 1280px) {
  .more-articles {
    margin: 48px 0 0;
  }
}
.more-articles__title {
  margin-bottom: 24px;
}
.more-articles__title .title-more {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #222;
}
@media (min-width: 768px) {
  .more-articles__title .title-more {
    font-size: 26px;
  }
}
.more-articles__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
@media (min-width: 768px) {
  .more-articles__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .more-articles__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  .more-articles__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pagintaion-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 4px;
}
.pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #e04049;
  background: #fff0f1;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.pagination li.active {
  background: #e04049;
  color: #fff;
}
@media (min-width: 1280px) {
  .pagination li:has(> a):hover {
    background: #f5dcde;
  }
}
.pagination li:has(> a):active {
  background: #e0bcbf;
}

.tour-widget {
  margin: 32px 0;
}
.tour-widget-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #222;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .tour-widget-title {
    font-size: 24px;
  }
}
.tour-widget .tour-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}
@media (min-width: 768px) {
  .tour-widget .tour-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
  }
}
.tour-widget .tour-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 8px 8px 16px 8px;
  max-width: calc(50% - 4px);
  width: 180px;
}
@media (min-width: 768px) {
  .tour-widget .tour-item {
    max-width: 280px;
    width: 280px;
    padding: 8px;
  }
}
.tour-widget .tour-item:hover {
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
}
.tour-widget .tour-item img {
  max-width: 100%;
}
.tour-widget .tour-item__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.tour-widget .tour-item__badge span {
  text-align: left;
  max-width: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  color: #fff;
  background: #aaaeb5;
  height: 28px;
  min-width: 28px;
  padding: 5px 12px;
  line-height: 16px;
  border-radius: 14px;
  gap: 4px;
}
.tour-widget .tour-item__badge span img, .tour-widget .tour-item__badge span svg {
  width: 16px;
  height: 18px;
}
.tour-widget .tour-item__badge span.new {
  color: #222;
  background: #ceffaf;
}
.tour-widget .tour-item__image {
  position: relative;
  margin-bottom: 12px;
  border-radius: 12px;
  background-size: cover;
  background-color: #505050;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  height: 220px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tour-widget .tour-item__image {
    height: 303px;
  }
}
.tour-widget .tour-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 11px;
}
.tour-widget .tour-item__complexity {
  position: absolute;
  top: 188px;
  right: 18px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border: solid 1px #fff;
  height: 28px;
  min-width: 28px;
  padding: 5px 12px;
  line-height: 16px;
  border-radius: 14px;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .tour-widget .tour-item__complexity {
    top: 267px;
    right: 20px;
    font-size: 12px;
  }
}
.tour-widget .tour-item__org {
  width: 48px;
  height: 48px;
  top: 172px;
  left: 18px;
  position: absolute;
  padding: 2px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
  position: absolute;
  pointer-events: all;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 768px) {
  .tour-widget .tour-item__org {
    left: 20px;
    width: 60px;
    height: 60px;
    top: 239px;
    padding: 3px;
  }
}
.tour-widget .tour-item__org img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
}
.tour-widget .tour-item__org:hover {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.tour-widget .tour-item__title {
  color: #000;
  font-size: 16px;
  line-height: 120%;
  min-height: 40px;
  font-weight: 500;
  margin-bottom: 7px;
  overflow: hidden;
  display: -webkit-box;
  z-index: 2;
  height: 40px;
}
.tour-widget .tour-item__title a:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tour-widget .tour-params {
  color: #7a7e85;
  font-size: 12px;
  line-height: 1.5;
}
.tour-widget .tour-params-icon {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 6px;
}
.tour-widget .tour-params__price {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding-right: 3px;
}
.tour-widget .tour-params__price span {
  padding-left: 8px;
  color: #787d88;
  font-size: 12px;
  font-weight: 500;
}

main {
  margin-top: 16px;
}
@media (min-width: 768px) {
  main {
    margin-top: 40px;
  }
}

.breadcrumbs {
  margin-bottom: 16px;
}
.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  color: #7a7e85;
}
.breadcrumbs > span span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #7a7e85;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}
.breadcrumbs > span span a {
  color: #7a7e85;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.breadcrumbs > span span a:hover {
  color: #e04049;
}
.breadcrumbs > span span.breadcrumb_last {
  color: #e04049;
}
.breadcrumbs > span span.breadcrumb_last span {
  color: #e04049;
}

h1.page-title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  h1.page-title {
    font-size: 32px;
    line-height: 1.2;
  }
}