@charset "UTF-8";
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-ExtraLight.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Muller";
  src: url("../fonts/Muller/MullerRegular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Muller";
  src: url("../fonts/Muller/MullerMedium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_18pt-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_18pt-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_18pt-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_18pt-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
* {
  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: #211f21;
  position: relative;
  font-weight: 400;
  font-family: "Muller", 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 8px;
}
@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: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}

section {
  padding: 32px 0;
}
@media (min-width: 1280px) {
  section {
    padding: 48px 0;
  }
}

.buttons-likes {
  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: 12px;
}
@media (min-width: 1280px) {
  .buttons-likes {
    -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: 12px;
  }
}
@media (min-width: 768px) {
  .buttons-likes.buttons-likes-border li {
    border-right: 1px solid #e8e8e8;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 1280px) {
  .buttons-likes.buttons-likes-border li {
    border-right: 1px solid #e8e8e8;
  }
}
.buttons-likes li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-right: 1px solid #e8e8e8;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.buttons-likes li:last-child {
  border-right: none;
}
@media (min-width: 768px) {
  .buttons-likes li {
    border-right: none;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.buttons-likes a {
  position: relative;
  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;
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #666;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1280px) {
  .buttons-likes a:hover {
    color: #211f21;
  }
  .buttons-likes a:hover img {
    -webkit-filter: invert(1) brightness(0);
    filter: invert(1) brightness(0);
  }
  .buttons-likes a:hover .info-btn {
    visibility: visible;
    opacity: 1;
  }
}
.buttons-likes a .info-btn {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #151515;
  border-radius: 8px;
  padding: 6px 8px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-transform: none;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.buttons-likes a .info-btn::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #151515;
  pointer-events: none;
  z-index: 1;
}
.buttons-likes a img {
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}

.breadcrumbs {
  margin-top: 8px;
}
@media (min-width: 1280px) {
  .breadcrumbs {
    margin-top: 48px;
  }
}
.breadcrumbs__list {
  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;
}
.breadcrumbs__item:not(:first-child) {
  position: relative;
  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;
}
.breadcrumbs__item:not(:first-child)::before {
  content: "—";
  font-family: "Muller", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #bdbdbd;
}
.breadcrumbs__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #bdbdbd;
}

.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: 122px;
  }
}
.article__header {
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
@media (min-width: 1280px) {
  .article__header {
    padding-bottom: 40px;
  }
}
.article__header--image {
  width: 100%;
  border-radius: 24px;
  height: 264px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .article__header--image {
    width: 100%;
    border-radius: 24px;
    height: 400px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .article__header--image {
    width: 100%;
    border-radius: 24px;
    height: 600px;
    margin-bottom: 40px;
  }
}
.article__header--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}
.article__header--title {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  color: #211f21;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .article__header--title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 24px;
  }
}
@media (min-width: 1280px) {
  .article__header--title {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 32px;
  }
}
.article__header--more {
  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;
}
@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: "Muller", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #bdbdbd;
  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: 48px;
    gap: 40px;
    width: 793px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 793px;
    flex: 0 0 793px;
  }
}
.article .info {
  position: relative;
  margin-top: 24px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 24px;
}
@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: 20px;
}
@media (min-width: 1280px) {
  .article .info-wrap {
    position: sticky;
    top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 38px;
  }
}
.article .info .author {
  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 .author {
    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 .author__image {
  width: 64px;
  height: 64px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64px;
  flex: 0 0 64px;
}
@media (min-width: 768px) {
  .article .info .author__image {
    width: 64px;
    height: 64px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px;
  }
}
@media (min-width: 1280px) {
  .article .info .author__image {
    width: 64px;
    height: 64px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px;
  }
}
.article .info .author__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 .author__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 .author__title, .article .info .author__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #211f21;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .article .info .author__title, .article .info .author__subtitle {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (min-width: 1280px) {
  .article .info .author__title, .article .info .author__subtitle {
    font-size: 16px;
    line-height: 1.2;
  }
}
.article .info .author__subtitle {
  color: #666;
  font-weight: 400;
}
.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: 20px;
}
@media (min-width: 1280px) {
  .article .info .tab-paper {
    gap: 20px;
  }
}
.article .info .tab-paper__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #211f21;
  position: relative;
}
@media (min-width: 1280px) {
  .article .info .tab-paper__title {
    font-size: 16px;
    line-height: 1.2;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
  }
}
.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: 20px;
}
@media (min-width: 1280px) {
  .article .info .tab-paper__list {
    gap: 20px;
  }
}
.article .info .tab-paper__list li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #211f21;
  -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: #1a84b9;
  }
  .article .info .tab-paper__list li a:hover {
    color: #353335;
  }
}
.article__share {
  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;
  margin-top: 32px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 24px;
}
@media (min-width: 1280px) {
  .article__share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 42px;
  }
}
.article__share--title {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #bdbdbd;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .article__share--title {
    color: #666;
    font-size: 23px;
    line-height: 1.2;
    text-transform: unset;
  }
}
.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: 12px;
}
@media (min-width: 1280px) {
  .article__share--soc {
    gap: 20px;
  }
}
.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;
  border: 1px solid #e8e8e8;
  border-radius: 100px;
  padding: 12px;
  width: 76px;
  height: 48px;
}
@media (min-width: 1280px) {
  .article__share--soc a {
    border-radius: 100px;
    padding: 12px;
    width: 183px;
    height: 64px;
  }
  .article__share--soc a:hover svg {
    fill: #211f21;
  }
}
.article__share--soc a svg {
  width: 24px;
  height: 24px;
  fill: #666;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
@media (min-width: 1280px) {
  .article__share--soc a svg {
    width: 24px;
    height: 24px;
  }
}
.article__share--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;
}
@media (min-width: 768px) {
  .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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.article article strong {
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .article article strong {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  .article article strong {
    font-size: 20px;
    line-height: 1.3;
  }
}
.article article h2 {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  color: #211f21;
  display: inline-block;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .article article h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
}
.article article h2:not(:first-of-type) {
  margin-top: 16px;
}
@media (min-width: 1280px) {
  .article article h2:not(:first-of-type) {
    margin-top: 24px;
  }
}
.article article p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #211f21;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media (min-width: 1280px) {
  .article article p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.article article p + ul {
  margin-top: -16px;
}
@media (min-width: 1280px) {
  .article article p + ul {
    margin-top: -16px;
  }
}
.article article q, .article article div.notice {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #211f21;
  font-size: 18px;
  line-height: 1.4;
  margin: 8px 0 24px;
  padding-left: 20px;
}
@media (min-width: 1280px) {
  .article article q, .article article div.notice {
    font-size: 18px;
    line-height: 1.4;
    margin: 16px 0 32px;
    padding-left: 20px;
  }
}
.article article q::before, .article article div.notice::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 4px;
  border-radius: 12px;
  background-color: #1a84b9;
}
@media (min-width: 1280px) {
  .article article q::before, .article article div.notice::before {
    background-color: #e6f2f8;
  }
}
.article article q::after, .article article div.notice::after {
  display: none;
}
.article article blockquote {
  position: relative;
  background: #e6f2f8;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #211f21;
  font-size: 18px;
  line-height: 1.4;
  border-radius: 12px;
  padding: 12px;
  margin-top: 76px;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .article article blockquote {
    border-radius: 12px;
    padding: 12px;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 76px;
    margin-bottom: 16px;
  }
}
.article article blockquote::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  top: -60px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_15106_19684)'%3E%3Cpath d='M10.548 21C12.6247 21 14.6548 21.6158 16.3815 22.7696C18.1082 23.9233 19.454 25.5632 20.2487 27.4818C21.0435 29.4004 21.2514 31.5117 20.8462 33.5485C20.4411 35.5853 19.4411 37.4562 17.9726 38.9246C16.5042 40.3931 14.6332 41.3931 12.5964 41.7982C10.5596 42.2034 8.44845 41.9955 6.52982 41.2007C4.6112 40.406 2.97132 39.0602 1.81757 37.3335C0.663814 35.6068 0.048 33.5767 0.048 31.5L0 30C0 24.4305 2.21249 19.089 6.15076 15.1508C10.089 11.2125 15.4305 9 21 9V15C19.0293 14.9947 17.0771 15.3801 15.2563 16.134C13.4355 16.8879 11.7822 17.9952 10.392 19.392C9.8516 19.9312 9.35315 20.5109 8.901 21.126C9.439 21.04 9.987 20.997 10.545 20.997L10.548 21ZM37.548 21C39.6247 21 41.6548 21.6158 43.3815 22.7696C45.1082 23.9233 46.454 25.5632 47.2487 27.4818C48.0435 29.4004 48.2514 31.5117 47.8462 33.5485C47.4411 35.5853 46.4411 37.4562 44.9726 38.9246C43.5042 40.3931 41.6333 41.3931 39.5965 41.7982C37.5596 42.2034 35.4484 41.9955 33.5298 41.2007C31.6112 40.406 29.9713 39.0602 28.8176 37.3335C27.6638 35.6068 27.048 33.5767 27.048 31.5L27 30C27 24.4305 29.2125 19.089 33.1508 15.1508C37.089 11.2125 42.4305 9 48 9V15C46.0293 14.9947 44.0771 15.3801 42.2563 16.134C40.4355 16.8879 38.7822 17.9952 37.392 19.392C36.8516 19.9312 36.3531 20.5109 35.901 21.126C36.439 21.04 36.988 21 37.548 21Z' fill='%23EDEBFF' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_15106_19684'%3E%3Crect width='48' height='48' fill='white' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1280px) {
  .article article blockquote::before {
    width: 48px;
    height: 48px;
    top: -60px;
    left: 0;
  }
}
.article article figure {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .article article figure {
    margin-bottom: 16px;
  }
}
.article article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 24px;
}

.block-author__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .block-author__wrap {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.block-author__title {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #211f21;
  margin-bottom: 28px;
}
@media (min-width: 1280px) {
  .block-author__title {
    font-size: 64px;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .block-author__content {
    width: 793px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 793px;
    flex: 0 0 793px;
  }
}
.block-author .author {
  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) {
  .block-author .author {
    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: 20px;
  }
}
.block-author .author__image {
  width: 164px;
  height: 164px;
}
@media (min-width: 768px) {
  .block-author .author__image {
    width: 183px;
    height: 183px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 183px;
    flex: 0 0 183px;
  }
}
.block-author .author__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 100px;
}
.block-author .author__content {
  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;
}
.block-author .author__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: 4px;
}
.block-author .author__name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #211f21;
}
.block-author .author__subname {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
}
.block-author .author__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
}
.block-author .author__info {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
}
.block-author .author__info strong {
  font-weight: 500;
  color: #211f21;
}
.block-author .buttons-likes {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 23px;
  margin-top: 24px;
}
@media (min-width: 1280px) {
  .block-author .buttons-likes {
    margin-top: 32px;
  }
}

.footer {
  padding: 0 0 32px;
}
@media (min-width: 1280px) {
  .footer {
    padding: 0 0 68px;
  }
}
.footer .container {
  position: relative;
}
.footer__logo {
  width: 159px;
  height: 48px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
@media (min-width: 1280px) {
  .footer__logo {
    width: 159px;
    height: 48px;
  }
}
.footer__menu-mob {
  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: 72px;
}
@media (min-width: 768px) {
  .footer__menu-mob {
    display: none;
  }
}
.footer__menu-mob ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.footer__menu-mob ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #666;
}
.footer__menu {
  display: none;
}
@media (min-width: 768px) {
  .footer__menu {
    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;
    gap: 172px;
  }
}
.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1280px) {
  .footer__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.footer__menu ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #666;
  -webkit-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 1px solid transparent;
}
@media (min-width: 1280px) {
  .footer__menu ul li a:hover {
    color: #211f21;
    border-color: #211f21;
  }
}
.footer__content {
  border-top: 1px solid #e6e6e6;
  padding: 29px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-bottom: 44px;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__content {
    padding: 39px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin-bottom: 58px;
    gap: 50px;
  }
}
@media (min-width: 1280px) {
  .footer__content {
    padding: 39px 0 0;
    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;
    margin-bottom: 58px;
  }
}
.footer__apps {
  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;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__apps {
    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;
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .footer__apps {
    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;
    gap: 10px;
  }
}
.footer__apps .app {
  border: 1px solid #e8e8e8;
  border-radius: 100px;
  padding: 12px;
  width: 101px;
  height: 48px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .footer__apps .app {
    border: 1px solid #e8e8e8;
    border-radius: 100px;
    padding: 12px;
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1280px) {
  .footer__apps .app {
    border: 1px solid #e8e8e8;
    border-radius: 100px;
    padding: 12px;
    width: 48px;
    height: 48px;
  }
  .footer__apps .app:hover {
    border-color: #211f21;
  }
}
.footer__apps .app img {
  width: 100%;
  height: 100%;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__bottom {
    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;
  }
}
@media (min-width: 1280px) {
  .footer__bottom {
    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;
  }
}
.footer__bottom a,
.footer__bottom p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #d3d3d3;
}
.footer__bottom a {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1280px) {
  .footer__bottom a:hover {
    color: #211f21;
  }
}

.header {
  padding: 20px 0 0;
}
@media (min-width: 768px) {
  .header {
    padding: 28px 0 0;
  }
}
@media (min-width: 1024px) {
  .header {
    padding: 28px 0 0;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 28px 0 0;
  }
}
.header.open-search {
  width: 100%;
}
.header.open-search .header__burger {
  display: none !important;
}
.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;
  color: #333;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33333;
  color: #211f21;
  width: 100%;
}
.header__search-form-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  border-radius: 100%;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  padding: 12px;
}
.header__search-form-close.active {
  display: inline-block;
}
@media (min-width: 1280px) {
  .header__search-form-close:hover {
    background-color: #e6f2f8;
  }
}
.header__search-form-close img {
  width: 24px;
  height: 24px;
  -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-close img {
    width: 24px;
    height: 24px;
  }
}
.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: #e6f2f8;
  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;
  border-radius: 100px;
  padding: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33333;
  color: #211f21;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
@media (min-width: 1280px) {
  .header__search-form-btn:hover {
    color: #fff;
    background: #4a9dd4;
  }
}
.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;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 1024px) {
  .header__top {
    padding-bottom: 20px;
  }
}
.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__text {
  display: none;
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #211f21;
}
.header__text-center {
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #211f21;
  padding-top: 21px;
  padding-bottom: 21px;
}
@media (min-width: 768px) {
  .header__text-center {
    font-size: 65px;
    padding-top: 20px;
    padding-bottom: 7px;
    line-height: 1;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .header__text-center {
    font-size: 85px;
    padding-top: 25px;
    padding-bottom: 12px;
  }
}
@media (min-width: 1280px) {
  .header__text-center {
    padding-top: 35px;
    padding-bottom: 21px;
    font-size: 106px;
    letter-spacing: 0.01em;
  }
}
.header__burger {
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: #e6f2f8;
  background-size: 200% 100%;
  -webkit-transition: background-position 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background-position 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background-position 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: background-position 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  border-radius: 100%;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
}
.header__burger span {
  display: block;
  width: 50%;
  margin: 0 auto;
  height: 2px;
  background: #211f21;
  border-radius: 100px;
  -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) {
  .header__burger {
    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: 159px;
  height: 48px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 159px;
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    width: 159px;
    height: 48px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    width: 159px;
    height: 48px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .header__logo.hide-logo {
    display: none !important;
  }
}
.header__inner {
  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;
}
@media (min-width: 768px) {
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: сolumn-reverse;
    flex-direction: сolumn-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .header__inner {
    gap: 14px;
    -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;
  }
}
@media (min-width: 1280px) {
  .header__inner {
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.header__menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 84px;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 2;
  padding: 0 16px 16px;
  overflow-y: auto;
  height: calc(100vh - 84px);
}
@media (min-width: 768px) {
  .header__menu {
    position: static;
    left: unset;
    right: unset;
    bottom: unset;
    top: unset;
    background-color: unset;
    z-index: unset;
    padding: unset;
    width: unset;
    height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-item-align: center;
    align-self: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 24px 0;
    border-bottom: 1px solid #e8e8e8;
  }
}
@media (min-width: 1024px) {
  .header__menu {
    gap: 12px;
    -ms-flex-item-align: unset;
    align-self: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1280px) {
  .header__menu {
    gap: 12px;
  }
}
.header__menu-link {
  background: #fff;
  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: 10px;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  border: 1px solid #eeeef3;
  border-radius: 12px;
  padding: 8px 12px 8px 8px;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .header__menu-link {
    font-size: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .header__menu-link {
    gap: 10px;
    border-radius: 12px;
    padding: 8px 12px 8px 8px;
    font-size: 16px;
    line-height: 1;
  }
}
.header__menu-link.active {
  background: #1a84b9;
  color: #fff;
  border: 1px solid #1a84b9;
}
.header__menu-link.active .count {
  color: #fff;
  background: #4a9dd4;
}
.header__menu-link:active, .header__menu-link:hover {
  border: 1px solid #e8e8e8;
}
.header__menu-link:active .count, .header__menu-link:hover .count {
  background: #e8e8e8;
}
.header__menu-link .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}
@media (min-width: 1024px) {
  .header__menu-link .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
}
.header__menu-link .icon img {
  width: 100%;
  height: 100%;
}
.header__menu-link .count {
  background: #f6f6f6;
  border-radius: 8px;
  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;
  padding: 4px 6px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #9191bc;
  margin-left: auto;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .header__menu-link .count {
    margin-left: unset;
    border-radius: 8px;
    padding: 4px 6px;
  }
}
.header__search {
  background: #e6f2f8;
  -webkit-transition: background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  cursor: pointer;
  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-radius: 100px;
  padding: 15px;
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .header__search {
    border-radius: 100px;
    padding: 15px;
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1280px) {
  .header__search {
    border-radius: 100px;
    padding: 15px;
  }
  .header__search:hover {
    background: #4a9dd4;
  }
  .header__search:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
.header__search img {
  width: 20px;
  height: 20px;
  -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 img {
    width: 18px;
    height: 18px;
  }
}
.header__btn {
  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;
  background: linear-gradient(86deg, #4a9dd4 0%, #0f6ba3 50%, #4a9dd4 100%);
  background-size: 200% 100%;
  -webkit-transition: background-position 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background-position 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background-position 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: background-position 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  font-family: "Muller", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
}
.header__btn span {
  display: none;
}
@media (min-width: 768px) {
  .header__btn {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 161px;
    flex: 0 0 161px;
  }
  .header__btn span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .header__btn {
    font-size: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
  }
}
@media (min-width: 1280px) {
  .header__btn {
    border-radius: 60px;
    padding: 12px 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 174px;
    flex: 0 0 174px;
  }
  .header__btn:hover {
    background-position: 105% 100%;
  }
}
.header__btn:active {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

body.open-menu {
  overflow: hidden;
}
body.open-menu .header__text-center {
  border-top: none;
}
body.open-menu .header__logo {
  z-index: 3;
}
body.open-menu .header__search {
  z-index: 3;
}
body.open-menu .header__burger {
  z-index: 3;
  position: relative;
}
body.open-menu .header__burger span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
body.open-menu .header__burger span:nth-child(2) {
  opacity: 0;
}
body.open-menu .header__burger span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
body.open-menu .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-card__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .block-card__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 358px));
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .block-card__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 305px));
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1280px) {
  .block-card__content {
    grid-template-columns: repeat(auto-fill, minmax(320px, 385px));
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 48px;
  }
}
.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 #e6f2f8;
  border-radius: 8px;
  padding: 8px 8px 5px 8px;
  font-family: "Muller", 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: #1a84b9;
}
.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;
}

.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: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .card {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .card {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .card {
    gap: 20px;
  }
  .card:hover .card__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .card:hover .card__tag {
    background-color: #1a84b9;
    color: #fff;
  }
  .card:hover .card__title {
    color: #4a9dd4;
  }
  .card:hover .card__text {
    color: #211f21;
  }
}
.card__image {
  overflow: hidden;
  width: 100%;
  height: 273px;
  border-radius: 24px;
}
@media (min-width: 1280px) {
  .card__image {
    width: 387px;
    height: 387px;
  }
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 24px;
  -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__tag {
  background: #e6f2f8;
  border-radius: 8px;
  padding: 8px 8px 5px 8px;
  font-family: "Muller", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #211f21;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  font-size: 13px;
  line-height: 1.2;
}
@media (min-width: 1280px) {
  .card__tag {
    font-size: 13px;
    line-height: 1.2;
  }
}
.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__title {
  display: inline-block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #211f21;
}
@media (min-width: 1280px) {
  .card__title {
    font-size: 23px;
    line-height: 1.2;
  }
}
.card__title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.card .card__text {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #bdbdbd;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 14px;
  line-height: 1.2;
}
@media (min-width: 1280px) {
  .card .card__text {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) {
  .card.card-big {
    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;
  }
}
@media (min-width: 1280px) {
  .card.card-big {
    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;
    gap: 20px;
  }
  .card.card-big:hover .card__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .card.card-big:hover .card__title {
    color: #1a84b9;
  }
  .card.card-big:hover .card__text {
    color: #211f21;
  }
}
.card.card-big .card__image {
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (min-width: 1280px) {
  .card.card-big .card__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 590px;
    flex: 0 0 590px;
    width: 590px;
    height: 420px;
    border-radius: 24px;
  }
}
.card.card-big .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 24px;
}
.card.card-big .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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 1280px) {
  .card.card-big .card__content {
    padding: 12px 0;
  }
}
.card.card-big .card__content--bottom {
  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;
}
.card.card-big .card__title {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  color: #211f21;
}
@media (min-width: 1280px) {
  .card.card-big .card__title {
    font-size: 32px;
    line-height: 1.2;
  }
}

.more-articles {
  margin: 40px 0 0;
}
@media (min-width: 1280px) {
  .more-articles {
    margin: 48px 0 0;
  }
}
.more-articles__title .title-more {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  color: #211f21;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .more-articles__title .title-more {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media (min-width: 1280px) {
  .more-articles__title .title-more {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .more-articles__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 385px));
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 48px;
  }
}
.more-articles__cards {
  display: none;
}
@media (min-width: 1280px) {
  .more-articles__cards {
    display: block;
  }
}
.more-articles__cards.likes {
  display: block;
}
@media (min-width: 1280px) {
  .more-articles__cards.likes {
    display: block;
  }
}
.more-articles__cards.likes .more-articles__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .more-articles__cards.likes .more-articles__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 358px));
    gap: 20px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .more-articles__cards.likes .more-articles__content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 305px));
    gap: 20px;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .more-articles__cards.likes .more-articles__content {
    grid-template-columns: repeat(auto-fit, minmax(320px, 385px));
    gap: 20px;
    margin-bottom: 48px;
  }
}
.more-articles__cards.slider {
  display: block;
  position: relative;
}
@media (min-width: 1280px) {
  .more-articles__cards.slider {
    display: none;
  }
}
.more-articles__cards.slider .card {
  width: 343px;
}
.more-articles__cards.slider .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;
  position: absolute;
  right: 0;
  top: -40px;
}
.more-articles__cards.slider .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;
}
.more-articles__cards.slider .owl-dots .owl-dot.active {
  border-radius: 1000px;
  width: 16px;
  height: 8px;
  background-color: #1a84b9;
}

.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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.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;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 8px;
  width: 40px;
  height: 51px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #666;
  position: relative;
}
.pagination li.active {
  color: #1a84b9;
}
@media (min-width: 1280px) {
  .pagination li:has(> a):hover {
    background-color: #f5f5f5;
  }
}
.pagination li.arrow {
  stroke: #666;
  width: 44px;
  height: 44px;
  display: block;
}
.pagination li.arrow .disabled {
  stroke: transparent;
}

.pagination li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.search-block {
  padding-top: 28px;
}
@media (min-width: 768px) {
  .search-block {
    padding-top: 48px;
  }
}
.search-block__count {
  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;
}
@media (min-width: 1280px) {
  .search-block__count {
    gap: 12px;
  }
}
.search-block__count h2 {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #211f21;
}
.search-block__count p {
  font-family: "Muller", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #211f21;
}
@media (min-width: 1280px) {
  .search-block__count p {
    font-size: 18px;
    line-height: 1.2;
  }
}
.search-block__count p strong {
  font-weight: 500;
}
.search-block__top {
  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: 12px;
}
.search-block__title {
  font-family: "Muller", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #211f21;
  position: relative;
}
.search-block__title::after {
  content: " ";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2229%22%20viewBox%3D%220%200%2028%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10.5%2012.1667H10.5117M17.5%2012.1667H17.5117M11.0833%2019.1667C13.1731%2017.8583%2015.6237%2017.2457%2018.0833%2017.4167M3.5%2014.5C3.5%2015.8789%203.77159%2017.2443%204.29926%2018.5182C4.82694%2019.7921%205.60036%2020.9496%206.57538%2021.9246C7.55039%2022.8996%208.70791%2023.6731%209.98182%2024.2007C11.2557%2024.7284%2012.6211%2025%2014%2025C15.3789%2025%2016.7443%2024.7284%2018.0182%2024.2007C19.2921%2023.6731%2020.4496%2022.8996%2021.4246%2021.9246C22.3996%2020.9496%2023.1731%2019.7921%2023.7007%2018.5182C24.2284%2017.2443%2024.5%2015.8789%2024.5%2014.5C24.5%2013.1211%2024.2284%2011.7557%2023.7007%2010.4818C23.1731%209.20791%2022.3996%208.05039%2021.4246%207.07538C20.4496%206.10036%2019.2921%205.32694%2018.0182%204.79927C16.7443%204.27159%2015.3789%204%2014%204C12.6211%204%2011.2557%204.27159%209.98182%204.79927C8.70791%205.32694%207.55039%206.10036%206.57538%207.07538C5.60036%208.05039%204.82694%209.20791%204.29926%2010.4818C3.77159%2011.7557%203.5%2013.1211%203.5%2014.5Z%22%20stroke%3D%22%23211F21%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.search-block__subtitle {
  font-family: "Muller", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #211f21;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 46px 24px;
  margin-top: 24px;
  margin-bottom: 46px;
}
@media (min-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 358px));
    gap: 46px 24px;
    margin-top: 24px;
    margin-bottom: 46px;
  }
}
@media (min-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 305px));
    gap: 46px 24px;
    margin-top: 24px;
    margin-bottom: 46px;
  }
}
@media (min-width: 1280px) {
  .cards-container {
    grid-template-columns: repeat(auto-fill, minmax(320px, 385px));
    gap: 56px 24px;
    margin-top: 24px;
    margin-bottom: 56px;
  }
}

section + section {
  padding-top: 0;
}