:root {
  --container-padding: 42px;
  --container-size: 1420px;
  --section-spacer: 75px;
  --section-header-margin: 35px;
  --section-content-margin: 100px;
  --title-big:50px;
  --title-base: 40px;
  --title-middle: 35px;
  --title-small: 30px;
  --title-tiny: 22px;
  --text-base: 16px;
  --text-middle: 18px;
  --text-big: 20px;
  --color-white: #fff;
  --color-grey: #687173;
  --color-grey-lighter: #F0F2F3;
  --color-grey-dark: #C8CECF;
  --color-grey-light: #909697;
  --color-dark: #25292A;
  --color-dark-light: #424647;
  --card-padding: 30px;
  --card-padding-small: 20px;
  --card-padding-big: 40px;
  --card-padding-biggest: 50px;
  --card-radius: 40px;
  --card-gap: 20px;
  --font-main: "IBM Plex Sans";
  --fix-font: 40%;
}

@media screen and (max-width: 1240px) {
  :root {
    --section-spacer: 60px;
    --section-content-margin: 80px;
    --title-big:45px;
    --title-small: 25px;
    --title-base: 35px;
    --title-tiny: 20px;
    --text-big: 18px;
    --card-padding-big: 30px;
    --card-padding-biggest: 30px;
    --card-padding-small: 20px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 20px;
    --section-content-margin: 40px;
    --section-spacer: 40px;
    --section-header-margin: 20px;
    --title-big:35px;
    --title-base: 25px;
    --title-middle: 25px;
    --title-small: 20px;
    --title-tiny: 16px;
    --card-padding: 20px;
    --card-padding-big: 20px;
    --card-padding-biggest: 20px;
    --card-radius: 30px;
    --card-gap: 15px;
    --card-padding-small: 10px;
    --text-base: 16px;
    --text-big: 16px;
    --text-middle: 16px;
  }
}
html, body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.1;
  font-size: var(--text-base);
  color: var(--color-dark);
  scrollbar-gutter: stable;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

body.no-scroll .header.visible .header-top {
  padding-right: var(--scrollbar-width);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}

.container {
  max-width: calc(var(--container-size) + var(--container-padding) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
}
.button:hover {
  cursor: pointer;
}
.button--small {
  padding: 16px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
  border-radius: 15px;
  height: 45px;
  --icon-size: 13px;
  gap: 10px;
}
.button--small--form {
  height: 50px;
}
@media screen and (max-width: 767px) {
  .button--small {
    padding: 12px;
    font-size: 16px;
    border-radius: 12px;
    height: 40px;
  }
  .button--small--mobile--big {
    padding: 15px;
    font-size: 16px;
  }
}
.button--bordered {
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  transition: 0.3s background-color, 0.3s color;
}
.button--bordered:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
}
.button--tg {
  color: var(--color-white);
  background: #3390EC;
  transition: 0.3s color, 0.3s background-color;
}
.button--tg:hover {
  color: #fff;
  background-color: var(--color-dark);
}
.button--green {
  color: #ffffff;
  background-color: #4DAD33;
  transition: 0.3s color, 0.3s background-color;
}
.button--green:hover {
  color: #fff;
  background-color: var(--color-dark);
}
.button__icon {
  flex-shrink: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  transform: translateY(10%);
}
@media screen and (max-width: 1240px) {
  .button__text--desktop {
    display: none;
  }
}

.title--big {
  font-weight: 700;
  font-size: var(--title-big);
  line-height: 1.1;
}
.title--base {
  font-weight: 700;
  font-size: var(--title-base);
  line-height: 1.1;
}
.title--small {
  font-weight: 700;
  line-height: 1.1;
  font-size: var(--title-small);
}
.title--middle {
  font-weight: 700;
  line-height: 1.1;
  font-size: var(--title-middle);
}
@media screen and (max-width: 767px) {
  .title--middle--mobile--small {
    font-size: 20px;
  }
}
.title--tiny {
  font-weight: 700;
  line-height: 1.1;
  font-size: var(--title-tiny);
}
.title--regular {
  font-weight: 400;
}
.title--medium {
  font-weight: 500;
}
.title--white {
  color: var(--color-white);
}
.title--dark--light {
  color: var(--color-dark-light);
}
.title--lh--big {
  line-height: 1.3;
}

.text--base {
  font-size: var(--text-base);
}
.text--big {
  font-size: var(--text-big);
}
@media screen and (max-width: 767px) {
  .text--big--mobile--small {
    font-size: 16px;
  }
}
.text--middle {
  font-size: var(--text-middle);
}
.text--grey {
  color: var(--color-grey);
}
.text--grey--light {
  color: var(--color-grey-light);
}
.text--grey--lighter {
  color: var(--color-grey-lighter);
}
.text--grey--white {
  color: #B1B7B8;
}
.text--white {
  color: var(--color-white);
}
.text--dark {
  color: var(--color-dark);
}
.text--dark--light {
  color: var(--color-dark-light);
}
.text--accent {
  color: #4DAD33;
}
.text--underline {
  text-decoration: underline;
}
.text--medium {
  font-weight: 500;
}
.text--semibold {
  font-weight: 600;
}
.text--uppercase {
  text-transform: uppercase;
}
.text--spacing {
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .text--footer {
    font-size: 12px;
  }
}
.text--link {
  transition: 0.3s color;
}
.text--link:hover {
  color: #4DAD33;
}
.text--right {
  text-align: right;
}
.text--lh--big {
  line-height: 1.3;
}

.content .section:first-child .section__wrapper {
  padding-top: 0;
}

.content {
  padding: 25px 0 var(--section-spacer) 0;
}

.header {
  width: 100%;
  top: 0;
  z-index: 10;
  background: var(--color-white);
  transition: 0.3s transform;
}
.header.fixed .header-top {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
}
.header.visible .header-top {
  transform: translateY(0);
}
@media screen and (max-width: 1240px) {
  .header.visible .header__logo {
    display: none;
  }
  .header.visible .header__logo--fixed {
    opacity: 1;
    display: block;
  }
}
.header.visible .header-top {
  transition: 0.3s transform;
}
.header.visible .header-top__info {
  display: none;
}
.header.visible .header-top__wrapper {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .header.visible .header-top__category {
    display: block;
  }
}
.header__logo {
  width: 360px;
  height: 25px;
}
.header__logo--fixed {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__logo {
    order: 2;
    width: 184px;
    height: 13px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s opacity;
  }
  .header__logo--fixed {
    width: 50px;
    height: 20px;
    display: block;
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__burger {
    order: 3;
  }
}
.header-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-list--column {
  gap: 25px;
  flex-direction: column;
  align-items: flex-start;
}
.header-list__link {
  color: var(--color-dark-light);
  font-size: var(--text-middle);
  transition: 0.3s color;
}
.header-list__link:hover {
  color: #4DAD33;
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .header-list__link--menu {
    font-size: 20px;
  }
}
.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: var(--color-grey-lighter);
  color: #B1B7B8;
  flex-shrink: 0;
}
.header-search:hover .header-search__icon {
  color: #4DAD33;
}
.header-search__icon {
  width: 25px;
  height: 25px;
  transition: 0.3s color;
}
@media screen and (max-width: 767px) {
  .header-search__icon {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header-search {
    width: 30px;
    border-radius: 12px;
    height: 30px;
  }
}
.header-top {
  position: relative;
  z-index: 10;
  background-color: var(--color-white);
}
.header-top__wrapper {
  padding: 35px 0;
  border-bottom: 1px solid var(--color-dark-light);
  display: flex;
  align-items: center;
  gap: 120px;
  transition: 0.3s padding;
}
@media screen and (max-width: 1240px) {
  .header-top__wrapper {
    gap: 70px;
  }
}
@media screen and (max-width: 991px) {
  .header-top__wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header-top__wrapper {
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
  }
}
.header-top__category {
  display: none;
}
.header-top__block {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header-top__block {
    margin-left: 0;
  }
}
.header-top__info {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .header-top__info {
    display: none;
  }
}
@media screen and (max-width: 1240px) {
  .header-top__list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header-bottom {
    display: none;
  }
}
.header-bottom__wrapper {
  padding: 35px 0;
}
.header-category {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-category--gap--small {
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .header-category--gap--small {
    gap: 20px;
  }
}
.header-category--column {
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}
.header-category__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--title-tiny);
  font-weight: 600;
  transition: 0.3s color;
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .header-category__link--menu {
    font-size: 20px;
  }
}
.header-category__link--small {
  font-size: var(--text-big);
}
.header-category__link:hover {
  color: #4DAD33;
}
.header-category__link .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #4DAD33;
  transform: translateY(10%);
}

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  max-width: 590px;
  width: 100%;
  z-index: 12;
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s visibility, 0.5s opacity;
}
.menu.active {
  visibility: visible;
}
.menu.active .menu__wrapper {
  transform: translateX(0);
}
@media screen and (max-width: 1240px) {
  .menu {
    max-width: 768px;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    max-width: 300px;
  }
}
.menu__wrapper {
  background: var(--color-white);
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: auto;
  transform: translateX(100%);
  transition: 0.5s transform;
  scrollbar-width: none;
}
.menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1240px) {
  .menu__wrapper {
    gap: 50px;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .menu__wrapper {
    gap: 25px;
    padding: 25px 20px;
  }
}
.menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__logo {
  max-width: 300px;
  height: 20px;
}
@media screen and (max-width: 1240px) {
  .menu__logo {
    height: 30px;
    max-width: 455px;
  }
}
@media screen and (max-width: 767px) {
  .menu__logo {
    height: 13px;
    max-width: 184px;
  }
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .menu-list {
    gap: 15px;
  }
}
.menu-list__link {
  font-size: var(--text-middle);
  font-weight: 500;
  color: var(--color-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-list__link:hover .icon {
  transform: rotate(0);
  color: var(--color-grey);
}
@media screen and (max-width: 1240px) and (min-width: 767px) {
  .menu-list__link {
    font-size: 20px;
  }
}
.menu-list__link--copyright {
  color: var(--color-grey-dark);
}
.menu-list__link .icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: var(--color-grey-dark);
  transform: rotate(-45deg);
  transition: 0.3s transform, 0.3s color;
}
.menu-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.menu-info__title {
  font-size: 25px;
}
@media screen and (max-width: 1240px) {
  .menu-info__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .menu-info__title {
    font-size: 16px;
  }
}
.menu-info__text {
  font-size: 22px;
}
@media screen and (max-width: 1240px) {
  .menu-info__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .menu-info__text {
    font-size: 16px;
  }
}
.menu__close {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .menu__close {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .menu__close {
    width: 16px;
    height: 16px;
  }
}
.menu__close::before, .menu__close::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  background: var(--color-grey);
  width: 100%;
  height: 2px;
  transition: 0.3s background-color;
}
.menu__close:hover::before, .menu__close:hover::after {
  background-color: #4DAD33;
}
.menu__close::before {
  transform: rotate(45deg);
}
.menu__close::after {
  transform: rotate(-45deg);
}
.menu-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 1240px) {
  .menu-content {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .menu-content {
    gap: 25px;
  }
}
.menu-search {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  border-radius: 15px;
  background: var(--color-grey-lighter);
  font-weight: 500;
  font-size: 18px;
  border: 1px solid transparent;
  transition: 0.3s border-color;
}
.menu-search:hover, .menu-search:has(:focus) {
  border-color: #4DAD33;
}
@media screen and (max-width: 1240px) {
  .menu-search {
    height: 55px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu-search {
    height: 45px;
    font-size: 16px;
  }
}
.menu-search__input {
  width: 100%;
  height: 100%;
}
.menu-search__input::placeholder {
  color: #B1B7B8;
}
.menu-search__icon {
  width: 22px;
  height: 22px;
  color: var(--color-grey-dark);
  flex-shrink: 0;
  transition: 0.3s color;
}
.menu-search__icon:hover {
  color: #4DAD33;
}
@media screen and (max-width: 767px) {
  .menu-search__icon {
    width: 16px;
    height: 16px;
  }
}

.section__wrapper {
  padding: var(--section-spacer) 0;
}
.section__title {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .section__title {
    gap: 10px;
  }
}
.section__title .hash {
  color: var(--color-grey-dark);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transform: translateY(10%);
}
@media screen and (max-width: 767px) {
  .section__title .hash {
    width: 14px;
    height: 14px;
  }
}
.section__subtext {
  max-width: 820px;
  width: 100%;
}
.section__column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .section__column {
    gap: 30px;
  }
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section__header:not(:last-child) {
  margin: 0 0 var(--section-header-margin) 0;
}
.section__content:not(:last-child) {
  margin: 0 0 var(--section-content-margin) 0;
}

.burger {
  display: flex;
  align-items: center;
  gap: 15px;
}
.burger:hover .burger__item {
  background-color: #4DAD33;
}
.burger__text {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s color;
}
@media screen and (max-width: 767px) {
  .burger__text {
    display: none;
  }
}
.burger__wrapper {
  width: 45px;
  height: 23px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .burger__wrapper {
    width: 30px;
    height: 16px;
  }
}
.burger__item {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--color-grey);
  transition: 0.3s background-color;
}
.burger__item:nth-child(2) {
  top: calc(50% - 1px);
  width: 70%;
}
.burger__item:nth-child(3) {
  top: calc(100% - 2px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  grid-auto-rows: 1fr;
  --gap: 20px;
}
.grid--gap--small {
  --gap: 10px;
}
.grid--auto {
  grid-auto-rows: auto;
}
@media screen and (max-width: 767px) {
  .grid {
    gap: 10px;
    grid-auto-rows: auto;
  }
}
.grid__card--full {
  flex-grow: 1;
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .grid-list__fourth {
    grid-row-start: 3;
  }
}
.grid__column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.grid__column--full {
  grid-column: 1/-1;
}
.grid__column--third {
  grid-column-end: span 4;
}
@media screen and (max-width: 1240px) {
  .grid__column--third {
    grid-column-end: span 6;
  }
}
.grid__column--half {
  grid-column-end: span 6;
}
@media screen and (max-width: 1240px) {
  .grid__column--half {
    grid-column-end: span 12;
  }
  .grid__column--half--tablet {
    grid-column-end: span 6;
  }
}
.grid__column--quarter {
  grid-column-end: span 3;
}
@media screen and (max-width: 1240px) {
  .grid__column--quarter {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 767px) {
  .grid__column {
    grid-column-end: span 12;
  }
}

.card {
  background: var(--color-grey-lighter);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  position: relative;
  overflow: hidden;
  transition: 0.3s background-color;
  --bg-color-hover: var(--color-grey-lighter);
  --icon-color: var(--color-grey-dark);
  --date-color: var(--color-grey-light);
  --title-color: var(--color-dark);
  --title-color-hover: #4DAD33;
  --text-color: var(--color-dark-light);
  --card-tag-date:#B1B7B8;
  --card-tag-circle:#C8CECF;
  --card-tag-category:#909697;
}
.card:hover {
  background: var(--bg-color-hover);
}
.card:hover .card-img__item, .card:hover .card-bg__item {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .card-article__hashtag {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .card-article__author {
    order: 3;
  }
}
@media screen and (max-width: 1240px) {
  .card--desktop {
    display: none;
  }
}
.card--rectangle {
  aspect-ratio: 0.8;
}
.card--rectangle--big {
  min-height: 535px;
}
@media screen and (max-width: 1240px) {
  .card--rectangle {
    aspect-ratio: unset;
    min-height: auto;
  }
}
.card--advice {
  min-height: 460px;
}
@media screen and (max-width: 1240px) {
  .card--advice {
    min-height: auto;
  }
}
@media screen and (min-width: 768px) {
  .card--hero {
    min-height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .card--hero--big {
    min-height: 400px;
  }
}
.card--dark {
  --bg-color-hover: var(--color-dark);
  background: var(--color-dark-light);
  --icon-color: var(--color-grey-dark);
  --date-color: var(--color-grey-dark);
  --title-color: var(--color-white);
  --title-color-hover: var(--color-white);
  --text-color: var(--color-white);
}
.card--accent {
  --bg-color-hover: #687173;
  background: #4DAD33;
  --icon-color: var(--color-white);
  --date-color: var(--color-white);
  --title-color: var(--color-white);
  --title-color-hover: var(--color-white);
  --text-color: var(--color-white);
}
.card--grey {
  background: var(--color-grey);
  --bg-color-hover: var(--color-dark);
  --icon-color: var(--color-white);
  --date-color: var(--color-grey-dark);
  --title-color: var(--color-white);
  --title-color-hover: #4DAD33;
  --text-color: var(--color-grey-lighter);
  --card-tag-date:#B1B7B8;
  --card-tag-circle:#909697;
  --card-tag-category:#C8CECF;
}
.card--bg {
  --icon-color: var(--color-white);
  --date-color: var(--color-white);
  --title-color: var(--color-white);
  --title-color-hover: var(--color-white);
  --text-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .card--bg--mobile {
    min-height: 330px;
    --icon-color: var(--color-white);
    --date-color: var(--color-white);
    --title-color: var(--color-white);
    --title-color-hover: var(--color-white);
    --text-color: var(--color-white);
  }
}
.card--article {
  height: 600px;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .card--article {
    height: auto;
    --bg-color-hover: transparent;
    color: var(--color-dark);
    --title-color: var(--color-dark);
    --title-color-hover: var(--color-dark);
    --icon-color: #B1B7B8;
    --date-color: #B1B7B8;
    border-radius: 0;
    background-color: transparent;
  }
  .card--article .card__wrapper {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
}
.card--article:hover .card-img__item, .card:hover .card-bg__item {
  transform: scale(1);
}
.card:hover {
  --title-color: var(--title-color-hover);
}
.card__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.card__wrapper {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  height: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .card__wrapper--mobile--rectangle .card__text {
    padding-bottom: 40%;
  }
}
.card__wrapper--gap--big {
  gap: 50px;
}
.card__wrapper--padding--small {
  padding: var(--card-padding-small);
}
.card__wrapper--padding--big {
  padding: var(--card-padding-big);
}
.card__wrapper--padding--biggest {
  padding: var(--card-padding-biggest);
}
@media screen and (max-width: 767px) {
  .card__wrapper--padding--bg {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .card__wrapper--row {
    flex-direction: row;
  }
}
.card__wrapper--row--mobile {
  flex-direction: row;
}
.card-tags {
  display: flex;
  align-items: center;
}
.card-tags__category {
  color: var(--card-tag-category);
  font-weight: 600;
  position: relative;
  z-index: 6;
  transition: 0.3s color;
}
.card-tags__category:hover {
  color: #4DAD33;
}
.card-tags__date {
  color: var(--card-tag-date);
}
.card-tags__item {
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .card-tags__item {
    font-size: 12px;
  }
}
.card-tags__item + .card-tags__item::before {
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  display: block;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--card-tag-circle);
  transform: translateY(30%);
}
.card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 28, 28, 0.2) 0%, rgba(26, 28, 28, 0.8) 100%);
  z-index: 3;
}
.card-bg--dark::before {
  background: rgba(37, 41, 42, 0.6);
}
.card-bg--clear::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .card-bg--desktop--hidden {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .card-bg--desktop {
    position: relative;
    border-radius: 30px;
    overflow-y: hidden;
  }
  .card-bg--desktop::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .card-bg--mobile--hidden {
    display: none;
  }
}
.card-bg__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s transform;
  z-index: 1;
}
.card-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  height: 45px;
  gap: 10px;
  z-index: 3;
  font-size: var(--text-middle);
  font-weight: 600;
  border-radius: 15px;
  background-color: #fff;
  color: var(--color-dark);
  width: max-content;
  max-width: 100%;
  transition: 0.3s color;
}
@media screen and (max-width: 767px) {
  .card-tag--mobile--grey {
    background-color: #F0F2F3;
  }
}
@media screen and (max-width: 767px) {
  .card-tag {
    height: 35px;
    border-radius: 12px;
    padding: 10px;
  }
}
.card-tag__icon {
  color: #4DAD33;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transform: translateY(10%);
}
@media screen and (max-width: 767px) {
  .card-tag__icon {
    width: 12px;
    height: 12px;
  }
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  flex-grow: 1;
  position: relative;
  z-index: 2;
}
.card__content--gap--small {
  gap: 15px;
}
.card__content--gap--middle {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .card__content--gap--middle {
    gap: 20px;
  }
}
.card__content--gap--big {
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .card__content--gap--big {
    gap: 25px;
  }
}
.card__content--padding {
  padding: var(--card-padding-small) 0;
}
@media screen and (max-width: 767px) {
  .card__content--padding {
    padding: var(--card-padding-small);
    padding-top: 0;
  }
}
.card__content--padding--small {
  padding: 10px;
  padding-top: 0;
}
.card__content--padding--big {
  padding: 20px;
  padding-top: 0;
}
@media screen and (max-width: 1240px) {
  .card__content--padding--big {
    padding: 10px;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .card__content--padding--right {
    padding-right: 20px;
  }
}
.card__title {
  line-height: 1.1;
  color: var(--title-color);
  transition: 0.3s color;
}
.card__title--lh--big {
  line-height: 1.3;
}
.card__title--article {
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .card__title--mobile--big {
    font-size: 18px;
  }
}
@media screen and (min-width: 1241px) {
  .card__title--desktop--small {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .card__title--tablet--small {
    font-size: 18px;
  }
}
.card__title--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__title--clamp--small {
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .card__title--facts {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.card__text {
  color: var(--text-color);
  line-height: 1.1;
}
.card__text--lh--big {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .card__text--desktop {
    display: none;
  }
}
.card__text--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__text--mobile--small {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-img--rounded + .card__content {
  margin-top: auto;
  flex-grow: 0;
}
.card-bg + .card__content {
  margin-top: auto;
  flex-grow: 0;
}
.card-img--rectangle + .card__content {
  margin-top: auto;
  flex-grow: 0;
}
.card-img--rounded + .card__content--full, .card-img--rectangle + .card__content--full, .card-bg + .card__content--full {
  flex-grow: 1;
  margin-top: 0;
}
.card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .card-img {
    border-radius: 20px;
  }
}
.card-img--fit {
  height: 100%;
  width: 265px;
}
@media screen and (max-width: 1240px) {
  .card-img--fit {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .card-img--fit {
    height: 130px;
    width: 100%;
  }
}
.card-img--rectangle {
  width: 100%;
  height: 225px;
}
.card-img--rectangle--big {
  height: 315px;
}
@media screen and (max-width: 1240px) {
  .card-img--rectangle--big {
    height: 225px;
  }
}
@media screen and (max-width: 767px) {
  .card-img--rectangle {
    height: 130px;
  }
}
.card-img--square {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
  .card-img--square {
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .card-img--square {
    height: auto;
    width: 100%;
    aspect-ratio: 2;
  }
}
.card-img--big {
  border-radius: 30px;
  max-width: 560px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .card-img--big {
    max-width: 370px;
  }
}
.card-img--big img, .card-img--big picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.card-img--rounded {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
@media screen and (max-width: 1240px) {
  .card-img--rounded {
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 767px) {
  .card-img--rounded {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .card-img--rounded--tablet--small {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .card-img--bg--mobile {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-img--bg--mobile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 28, 28, 0.2) 0%, rgba(26, 28, 28, 0.8) 100%);
    z-index: 3;
  }
}
.card-img__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 75%;
}
@media screen and (max-width: 1240px) {
  .card-img__wrapper {
    padding-bottom: 100%;
  }
}
.card-img__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s transform;
}
.card__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__column--mobile {
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .card__column--mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .card__column--desktop {
    display: none;
  }
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--card-gap);
  position: relative;
  z-index: 4;
  margin-top: auto;
}
.card__footer--small {
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .card__footer--mobile--divider {
    padding-top: 20px;
    border-top: 1px solid #687173;
  }
}
.card-date {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.1;
  color: var(--date-color);
}
.card-date--big {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .card-date {
    font-size: 12px;
  }
}
.card-icon {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--icon-color);
  font-size: var(--text-middle);
}
.card-icon--end {
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .card-icon {
    font-size: 12px;
  }
  .card-icon--desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .card-icon--mobile {
    display: none;
  }
}
.card-icon .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transform: translateY(10%);
}
.card-icon + .card-icon {
  margin-left: auto;
}

a.card-tag:hover {
  color: #4DAD33;
}

.mailing__wrapper {
  padding: 70px 0;
  border-top: 1px solid var(--color-dark-light);
  border-bottom: 1px solid var(--color-dark-light);
}
@media screen and (max-width: 1240px) {
  .mailing__wrapper {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .mailing__wrapper {
    padding: 40px 0;
  }
}
.mailing__wrapper--grey {
  border: none;
  background-color: #F0F2F3;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .mailing__wrapper--grey {
    border-radius: 30px;
  }
}
.mailing__wrapper--small {
  padding: 36px 30px;
}
@media screen and (max-width: 767px) {
  .mailing__wrapper--small {
    padding: 25px 20px;
  }
}
.mailing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 570px;
  gap: 70px;
}
@media screen and (max-width: 1240px) {
  .mailing__grid {
    gap: 100px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .mailing__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}
.mailing__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .mailing__header {
    gap: 15px;
  }
}
.mailing-subtext {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .mailing-subtext {
    padding: 10px 0;
  }
}
.mailing-subtext__icon {
  width: 15px;
  height: 15px;
  color: #4DAD33;
  flex-shrink: 0;
}
.mailing-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 15px;
}
.mailing-form__wrapper--clear {
  padding-top: 0;
}
@media screen and (max-width: 1240px) {
  .mailing-form__wrapper {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mailing-form__wrapper {
    gap: 20px;
    padding-top: 0;
  }
}
.mailing-form__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1240px) {
  .mailing-form__content {
    gap: 15px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .hero__grid {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 1240px) {
  .hero__column {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hero__column {
    gap: 25px;
  }
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox:has(:checked) .checkbox__checkmark {
  color: #4DAD33;
}
.checkbox:hover .checkbox__checkmark {
  border-color: #4DAD33;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .checkbox__input {
    width: 15px;
    height: 15px;
  }
}
.checkbox__checkmark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-dark);
  color: transparent;
  transform: translateY(5%);
  transition: 0.3s border-color;
}
.checkbox__checkmark .icon {
  width: 10px;
  height: 10px;
  transition: 0.3s color;
}
@media screen and (max-width: 767px) {
  .checkbox__checkmark {
    width: 15px;
    height: 15px;
  }
}

.input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  height: 50px;
  border-radius: 15px;
  background-color: var(--color-grey-lighter);
  border: 1px solid var(--color-grey-dark);
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
}
.input--white {
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .input {
    padding: 12px 15px;
    height: 40px;
    font-size: 16px;
    border-radius: 12px;
  }
}
.input__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--color-grey-dark);
  transform: translateY(10%);
}
@media screen and (max-width: 767px) {
  .input__icon {
    width: 12px;
    height: 12px;
  }
}
.input__item {
  width: 100%;
  height: 100%;
}
.input__item::placeholder {
  color: #B1B7B8;
}

.form__title {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .form__title {
    font-size: 20px;
  }
}
.form__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1240px) {
  .form__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.form__row--tablet {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .form__row--tablet {
    flex-direction: column;
  }
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .form__button--grow {
    flex-grow: 1;
  }
}

.footer__wrapper {
  padding: 120px 0 60px 0;
}
@media screen and (max-width: 1240px) {
  .footer__wrapper {
    padding: 80px 0 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding: 40px 0 40px 0;
  }
}
.footer__logo {
  max-width: 340px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 250px;
    height: 18px;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 70px;
}
@media screen and (max-width: 1240px) {
  .footer__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .footer__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright--desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .footer__copyright--mobile {
    display: none;
  }
}
.footer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
}
.footer-list__link {
  font-size: var(--text-big);
  transition: 0.3s color;
}
.footer-list__link:hover {
  color: #4DAD33;
}
.footer-block {
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer-block--desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .footer-block--mobile {
    display: none;
  }
}
.footer-block__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-block__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  height: 100%;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-list__item {
  flex-shrink: 0;
}
.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 15px;
  transition: 0.3s background-color;
}
.social-link--tg:hover {
  background-color: #3390EC;
}
.social-link--vk:hover {
  background-color: #0077FF;
}
.social-link--yt:hover {
  background-color: #FF0033;
}
.social-link--link:hover {
  background-color: #9747FF;
}
.social-link__icon {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .social-link {
    width: 55px;
    height: 55px;
  }
}

.last-articles__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 30px;
}
@media screen and (max-width: 1240px) {
  .last-articles__wrapper {
    gap: 25px;
    padding: 20px 25px;
  }
}
@media screen and (max-width: 767px) {
  .last-articles__wrapper {
    padding: 0;
    gap: 20px;
  }
}
.last-articles__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .last-articles__list {
    gap: 20px;
  }
}

.article-small {
  position: relative;
}
.article-small__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.article-small:hover .article-small__title {
  color: #4DAD33;
}
.article-small__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s color;
}
.article-small__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .article-small__wrapper {
    gap: 15px;
  }
}
.article-small__category {
  transition: 0.3s color;
  position: relative;
  z-index: 6;
}
.article-small__category:hover {
  color: #4DAD33;
}
.article-small__tags {
  display: flex;
  align-items: center;
}
.article-small__tag + .article-small__tag {
  display: flex;
  align-items: center;
}
.article-small__tag + .article-small__tag::before {
  content: "";
  background: var(--color-grey-dark);
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  margin: 0 10px;
  transform: translateY(var(--fix-font));
}

.news-tg__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  flex-grow: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-tg__image {
    order: 2;
    padding-bottom: 100%;
    border-radius: 20px;
    background: #DFE3E5;
    overflow: hidden;
  }
}
.news-tg__picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  position: absolute;
  left: 0%;
  top: 0;
}
.news-tg__picture img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translate(0);
}
.news-tg__wrapper {
  display: flex;
  align-items: stretch;
  background: var(--color-grey-lighter);
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-tg__wrapper {
    flex-direction: column;
    padding: 10px;
    border-radius: 30px;
    gap: 10px;
  }
}
.news-tg__link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: var(--text-big);
}
.news-tg__link .icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  transform: translateY(10%);
}
.news-tg__box {
  padding: 70px 50px 70px 35px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
  .news-tg__box {
    padding: 50px;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news-tg__box {
    padding: 15px 10px;
    gap: 20px;
  }
}
.news-tg__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1240px) {
  .news-tg__header {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .news-tg__header {
    gap: 15px;
  }
}
.news-tg__content {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 530px;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
  .news-tg__content {
    gap: 55px;
    max-width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .news-tg__content {
    gap: 25px;
  }
}

.pulse-block {
  background: url("../../images/pulse/bgwebp.webp") center center/cover no-repeat;
  border-radius: 40px;
  background-color: var(--color-dark);
  overflow: hidden;
  height: 140px;
  padding: 20px 50px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1240px) {
  .pulse-block {
    background: url("../../images/pulse/bg-tablet.webp") center center/cover no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .pulse-block {
    background: url("../../images/pulse/bg-m.webp") center center/cover no-repeat;
    padding: 20px;
    height: 190px;
    align-items: flex-end;
    border-radius: 30px;
  }
}
.pulse-block:hover .pulse-block__button .icon {
  transform: rotate(0);
}
.pulse-block__row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 400px) {
  .pulse-block__title {
    font-size: 20px;
  }
}
.pulse-block__circle {
  width: 10px;
  height: 10px;
  background-color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transform: translateY(var(--fix-font));
}
@media screen and (max-width: 767px) {
  .pulse-block__circle {
    position: absolute;
    top: 26px;
    left: 26px;
  }
}
.pulse-block__circle::after, .pulse-block__circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
}
.pulse-block__circle::before {
  opacity: 0.1;
  animation: pulseAnimationFirst 1s linear infinite;
}
.pulse-block__circle::after {
  opacity: 0.2;
  animation: pulseAnimationSecond 1s linear infinite;
}
.pulse-block__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: var(--color-white);
  margin-left: auto;
  border-radius: 15px;
}
.pulse-block__button .icon {
  width: 16px;
  height: 16px;
  color: #4DAD33;
  transition: 0.3s transform;
  transform: rotate(-45deg);
}

@keyframes pulseAnimationFirst {
  25% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 200%;
    height: 200%;
  }
  75% {
    width: 300%;
    height: 300%;
  }
  100% {
    width: 300%;
    height: 300%;
  }
}
@keyframes pulseAnimationSecond {
  25% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 200%;
    height: 200%;
  }
  75% {
    width: 200%;
    height: 200%;
  }
  100% {
    width: 200%;
    height: 200%;
  }
}
@media screen and (max-width: 767px) {
  .pagination__button {
    order: 2;
  }
}
.pagination__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .pagination__wrapper {
    flex-wrap: wrap;
  }
}
.pagination-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination-list {
    gap: 5px;
    order: 1;
    width: 100%;
  }
}
.pagination-list__item {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-grey-light);
  border: 1px solid transparent;
  border-radius: 15px;
  transition: 0.3s border-color, 0.3s background-color, 0.3s color;
}
.pagination-list__item:hover {
  border-color: #4DAD33;
  color: #4DAD33;
}
@media screen and (max-width: 767px) {
  .pagination-list__item {
    width: 35px;
    height: 35px;
    font-size: 16px;
    border-radius: 12px;
  }
}
.pagination-list__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--color-grey-lighter);
}
@media screen and (max-width: 767px) {
  .pagination-list__link {
    border-radius: 12px;
  }
}
.pagination-list__link.active {
  color: #fff;
  background-color: #4DAD33;
}

.breadcrumbs__wrapper {
  padding: 0 0 20px 0;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.breadcrumbs-list__item:not(:last-child) {
  display: flex;
  align-items: center;
}
.breadcrumbs-list__item:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #B1B7B8;
  margin: 0 15px;
  transform: translateY(30%);
}
@media screen and (max-width: 767px) {
  .breadcrumbs-list__item:not(:last-child)::after {
    margin: 0 10px;
  }
}
.breadcrumbs-list__link {
  font-size: 16px;
  color: #B1B7B8;
}
@media screen and (max-width: 767px) {
  .breadcrumbs-list__link {
    font-size: 12px;
  }
}

.text-highlighted {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 30px;
  background-color: #D6F2CF;
  border-radius: 40px;
}
.text-highlighted::before {
  content: "";
  width: 2px;
  height: auto;
  background-color: #4DAD33;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .text-highlighted {
    padding: 20px;
    border-radius: 30px;
  }
  .text-highlighted::before {
    display: none;
  }
}

.article-table {
  overflow: auto;
  padding-bottom: 25px;
}
.article-table::before {
  background: #4DAD33;
}
.article-table__wrapper {
  display: flex;
  flex-shrink: 0;
  border-radius: 25px;
}
.article-table__column {
  flex-shrink: 0;
  flex-grow: 1;
}
.article-table__column:not(:last-child) {
  border-right: 1px solid #C8CECF;
}
.article-table__column:first-child {
  border-radius: 25px 0 0 25px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-table__column:first-child {
    border-radius: 25px 0 0 25px;
  }
}
.article-table__column:last-child {
  border-radius: 0 25px 25px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-table__column:last-child {
    border-radius: 0 25px 25px 0;
  }
}
.article-table__block {
  padding: 20px;
  background-color: #F0F2F3;
  font-size: 18px;
}
.article-table__block:not(:last-child) {
  border-bottom: 1px solid #C8CECF;
}
@media screen and (max-width: 767px) {
  .article-table__block {
    padding: 15px 20px;
    font-size: 16px;
  }
}
.article-table__block--title {
  background-color: #687173;
  font-weight: 600;
  color: var(--color-white);
}
.article-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-dark-light);
}
@media screen and (min-width: 1241px) {
  .article-block--mobile {
    display: none;
  }
}
.article-block-input {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.article-block:has(.article-block-input:checked) .article-block-toggle {
  display: none;
}
.article-block:has(.article-block-input:checked) .article-block__header .icon {
  transform: rotate(180deg);
}
.article-block:has(.article-block-input) .article-block__header {
  color: var(--color-dark);
}
.article-block:has(.article-block-input) .article-block__header .icon {
  color: #909697;
}
.article-block:has(.article-block-input) .article-block__header:hover {
  cursor: pointer;
  color: #4DAD33;
}
.article-block:has(.article-block-input) .article-block__header:hover .icon {
  color: #4DAD33;
}
.article-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: 0.3s color;
}
.article-block__header:has(.article-block__header-input):hover {
  cursor: pointer;
}
.article-block__header .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: 0.3s transform, 0.3s color;
}
.article-block--card {
  padding: 35px;
  background-color: #F0F2F3;
  border-radius: 40px;
}
.article-block--card--small {
  padding: 25px 30px;
}
.article-block--card--white {
  background-color: var(--color-white);
}
.article-block--card--grey {
  background-color: #687173;
}
.article-block--card--grey p {
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .article-block--card {
    border-radius: 30px;
    padding: 20px;
  }
  .article-block--card--small {
    border-radius: 20px;
  }
}
.article-block h3 {
  font-size: var(--title-small);
  font-weight: 700;
  color: var(--color-dark);
}
.article-block h4 {
  font-size: var(--text-big);
  font-weight: 700;
  color: var(--color-dark);
}
.article-block p a {
  color: #4DAD33;
  text-decoration: underline;
}
.article-block ul, .article-block ol {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .article-block ul, .article-block ol {
    gap: 10px;
  }
}
.article-block ol.article-nav {
  color: var(--color-dark);
}
.article-block ol.article-nav li {
  transition: 0.3s color;
}
.article-block ol.article-nav li::before {
  color: var(--color-dark);
}
.article-block ol.article-nav li:hover {
  color: #4DAD33;
}
.article-block ol.article-nav li:hover::before {
  color: #4DAD33;
}
.article-block ul li {
  padding-left: 15px;
  position: relative;
}
.article-block ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #4DAD33;
  transform: translateY(220%);
}
.article-block ul.list-white,
.article-block .list-white {
  color: #F0F2F3;
}
.article-block ul.list-white li::before,
.article-block .list-white ul li::before {
  background-color: #B1B7B8;
}
.article-block ol {
  counter-reset: article-ol;
}
.article-block ol li {
  padding-left: 30px;
  position: relative;
  counter-increment: article-ol;
}
@media screen and (max-width: 767px) {
  .article-block ol li {
    padding-left: 15px;
  }
}
.article-block ol li::before {
  content: counter(article-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #4DAD33;
}
.article-content {
  font-size: var(--text-middle);
  color: #424647;
  line-height: 1.3;
}
.article-content__img {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  color: #687173;
  line-height: 1.3;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .article-content__img {
    font-size: 16px;
  }
}
.article-content__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .article-content__img img {
    border-radius: 30px;
  }
}
.article-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .article-content__wrapper {
    gap: 35px;
  }
}
.article-content__item {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .article-content__item {
    gap: 25px;
  }
}
.article-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 90px;
}
@media screen and (max-width: 1240px) {
  .article-content__grid {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .article-content__aside {
    grid-row-start: 1;
  }
}
@media screen and (max-width: 767px) {
  .article-content__aside {
    position: sticky;
    bottom: 10px;
  }
}
.article-footer__block {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .article-footer__block {
    padding: 20px 0;
  }
}
.article-footer__block--social {
  border-top: 1px solid #C8CECF;
  border-bottom: 1px solid #C8CECF;
}
.article-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .article-footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.article-author {
  display: flex;
  align-items: center;
  gap: 30px;
}
.article-author:hover .article-author__title {
  color: #4DAD33;
}
.article-author__title {
  transition: 0.3s color;
}
.article-author--small {
  gap: 20px;
}
.article-author--small .article-author__img {
  width: 70px;
  height: 70px;
}
.article-author--small .article-author__content {
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .article-author {
    gap: 16px;
  }
}
.article-author__img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .article-author__img {
    width: 50px;
    height: 50px;
  }
}
.article-author__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .article-author__content {
    gap: 10px;
  }
}
.article__container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.article__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .article__wrapper {
    gap: 35px;
  }
}

.quote {
  padding: 30px;
  border-radius: 40px;
  background-color: #F0F2F3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.quote::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 30px;
  right: 30px;
  background: url("../../images/quote.svg") center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .quote::before {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .quote {
    padding: 20px;
    border-radius: 30px;
    gap: 16px;
  }
}
.quote__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quote__person {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .quote__person {
    gap: 10px;
  }
}
.quote__img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .quote__img {
    width: 50px;
    height: 50px;
  }
}
.quote__name {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-dark);
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .quote__name {
    font-size: 16px;
  }
}
.quote__label {
  font-size: 16px;
  color: #909697;
}
@media screen and (max-width: 767px) {
  .quote__label {
    font-size: 16px;
  }
}
.quote__text {
  font-size: 18px;
  line-height: 1.3;
  font-style: italic;
  color: var(--color-dark-light);
}
@media screen and (max-width: 767px) {
  .quote__text {
    font-size: 16px;
  }
}

.hashtag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .hashtag-list--mobile--scroll {
    flex-wrap: nowrap;
    padding-bottom: 20px;
    overflow: auto;
  }
  .hashtag-list--mobile--scroll::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #F0F2F3;
    border-radius: 2px;
  }
  .hashtag-list--mobile--scroll::-webkit-scrollbar-thumb {
    background-color: #4DAD33;
    border-radius: 2px;
  }
  .hashtag-list--mobile--scroll::-webkit-scrollbar-track {
    background-color: #F0F2F3;
    border-radius: 2px;
  }
}
.hashtag-list__item {
  flex-shrink: 0;
}
.hashtag-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 10px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #C8CECF;
  font-size: 16px;
  color: var(--color-dark);
  transition: 0.3s border-color;
}
.hashtag-link:hover {
  border-color: #4DAD33;
}
@media screen and (min-width: 768px) {
  .hashtag-link--transparent--mobile {
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.01);
    color: vaR(--color-white);
  }
  .hashtag-link--transparent--mobile .icon {
    color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .hashtag-link {
    font-size: 12px;
    height: 30px;
  }
}
.hashtag-link .text {
  transform: translateY(-10%);
}
.hashtag-link .icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: #C8CECF;
}
@media screen and (max-width: 767px) {
  .hashtag-link .icon {
    width: 8px;
    height: 8px;
  }
}

.article-content__aside {
  position: relative;
}
@media screen and (max-width: 767px) {
  .article-content__aside {
    position: sticky;
    bottom: 10px;
    z-index: 4;
  }
}

.header-active .article-menu__wrapper {
  top: var(--header-height);
}

.article-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-menu__wrapper {
  z-index: 4;
  position: sticky;
  top: 20px;
  transition: 0.3s top;
}
.article-menu__box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1240px) {
  .article-menu__box {
    display: none;
  }
}
.article-menu__block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.article-menu__block:first-child {
  justify-content: center;
}
.article-menu__block .card {
  position: sticky;
  top: 120px;
  transition: 0.3s top;
}

.header-active .article-menu__block .card {
  top: calc(var(--header-height) + 100px);
}

.page-404__content {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 1240px) {
  .page-404__content {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-404__content {
    gap: 25px;
  }
}
.page-404__info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 1240px) {
  .page-404__info {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-404__info {
    gap: 20px;
  }
}
.page-404__img {
  max-width: 700px;
  width: 100%;
  border-radius: 40px;
}
@media screen and (max-width: 1240px) {
  .page-404__img {
    border-radius: 30px;
  }
}
.page-404__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .page-404__grid {
    flex-direction: column;
    gap: 40px;
  }
}

.author-info {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .author-info {
    order: 2;
  }
}
.author-info__about {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .author-info__about {
    gap: 15px;
  }
}
.author-info__wrapper {
  padding: 50px;
  border-radius: 40px;
  background-color: #F0F2F3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 1240px) {
  .author-info__wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .author-info__wrapper {
    background-color: transparent;
    padding: 0;
  }
}
.author-info__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .author-info__header {
    flex-direction: column;
    gap: 15px;
  }
}
.author-info__text {
  max-width: 770px;
  width: 100%;
}
.author-info__count {
  padding: 16px;
  border-radius: 15px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .author-info__count {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 1240px) {
  .author-info__count {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .author-info__count {
    font-size: 16px;
    background-color: #F0F2F3;
    padding: 12px 10px;
  }
}
.author-info__count span {
  color: #4DAD33;
}
.author__grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .author__grid {
    flex-direction: column;
  }
}
.author__img {
  width: 340px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .author__img {
    border-radius: 30px;
    width: 110px;
    height: 110px;
  }
}
.author__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search.focus .search-fast {
  opacity: 1;
  visibility: visible;
}
.search__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .search__wrapper {
    gap: 30px;
  }
}
.search-animation::before {
  content: "";
  font-weight: 600;
  font-size: var(--text-middle);
  color: var(--color-dark);
  animation: 1s search-animation infinite;
}
.search-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .search-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.search-item__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-light);
  transition: 0.3s color;
}
.search-item__title:hover {
  color: #4DAD33;
}
@media screen and (max-width: 1240px) {
  .search-item__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .search-item__title {
    font-size: 16px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.search-item__category {
  font-size: 16px;
  font-weight: 600;
  color: #909697;
  transition: 0.3s color;
}
.search-item__category:hover {
  color: #4DAD33;
}
@media screen and (max-width: 767px) {
  .search-item__category {
    font-size: 12px;
  }
}
.search-item__date {
  font-size: 16px;
  font-weight: 500;
  color: #B1B7B8;
}
@media screen and (max-width: 767px) {
  .search-item__date {
    font-size: 12px;
  }
}
.search-item__tags {
  flex-shrink: 0;
  display: flex;
}
.search-item__tag {
  display: flex;
  align-items: center;
}
.search-item__tag + .search-item__tag::before {
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #C8CECF;
  margin: 0 10px;
}
.search-form__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1240px) {
  .search-form__row {
    gap: 15px;
  }
}
.search-form__input {
  flex-grow: 1;
  position: relative;
}
.search-form__button {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #4DAD33;
}
.search-form__button:hover {
  cursor: pointer;
}
.search-form__button:hover .icon {
  transform: rotate(0);
}
@media screen and (max-width: 767px) {
  .search-form__button {
    display: none;
  }
}
.search-form__button .icon {
  width: 16px;
  height: 16px;
  color: #fff;
  transform: rotate(-45deg);
  transition: 0.3s transform;
}
.search-empty {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .search-empty {
    gap: 15px;
  }
}
.search-empty__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--color-dark);
}
@media screen and (max-width: 767px) {
  .search-empty__icon {
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 10px;
  }
}
.search-empty__text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .search-empty__text {
    font-size: 16px;
  }
}
.search-fast {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 4;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity;
}
.search-fast.active .search-fast-result {
  display: block;
}
.search-fast.active .search-fast-animation {
  display: none;
}
.search-fast-result {
  display: none;
}
.search-fast__title {
  font-size: 16px;
  font-weight: 600;
  color: #909697;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .search-fast__title {
    font-size: 16px;
  }
}
.search-fast__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-fast__column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .search-fast__column {
    gap: 20px;
  }
}
.search-fast__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 25px 20px;
  border-radius: 15px;
  background: #F0F2F3;
}
@media screen and (max-width: 767px) {
  .search-fast__wrapper {
    gap: 20px;
    padding: 20px;
  }
}
.search-fast__link {
  font-size: 16px;
  font-weight: 500;
  color: #4DAD33;
  transition: 0.3s color;
}
@media screen and (max-width: 1280px) {
  .search-fast__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .search-fast__link {
    font-size: 16px;
  }
}
.search-fast__link:hover {
  color: var(--color-dark);
}
.search-input {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: #F0F2F3;
  height: 70px;
  padding: 25px 20px;
  border: 1px solid transparent;
  transition: 0.3s border;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .search-input {
    padding: 15px;
    height: 45px;
  }
}
.search-input:hover, .search-input:has(:focus) {
  border-color: #4DAD33;
}
.search-input__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #B1B7B8;
  transform: translateY(10%);
}
@media screen and (max-width: 767px) {
  .search-input__icon {
    width: 14px;
    height: 14px;
    order: 2;
  }
  .search-input__icon--desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .search-input__button {
    display: none;
  }
}
.search-input__item {
  flex-grow: 1;
  font-size: 25px;
  font-weight: 500;
  color: var(--color-dark);
}
@media screen and (max-width: 767px) {
  .search-input__item {
    font-size: 16px;
  }
}
.search-input__item::placeholder {
  color: #B1B7B8;
}

@keyframes search-animation {
  0% {
    content: ".";
    opacity: 0;
  }
  25% {
    content: ".";
    opacity: 1;
  }
  50% {
    content: "..";
    opacity: 1;
  }
  75% {
    content: "...";
    opacity: 1;
  }
  100% {
    content: ".";
    opacity: 0;
  }
}
.simplebar-scrollbar::before {
  background-color: #4DAD33;
  height: 4px;
  opacity: 1;
}

.article-block h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-dark);
}
.article-block h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-dark);
}
.article-block h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}

/*# sourceMappingURL=index.css.map */