* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::-webkit-input-placeholder,
*:-moz-placeholder,
*::-moz-placeholder,
*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
a {
  text-decoration: none;
}
img,
svg {
  display: block;
}
:root {
  --container-width: calc(1290px + 30px);
  --font-main: "e-Ukraine", sans-serif;
  --font-secondary: "";
}
.container {
  max-width: var(--container-width);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.clear-list {
  list-style: none;
}
html {
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
  overflow-x: hidden;
  color: #000;
}
button,
input {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  box-shadow: none;
  font-family: var(--font-main);
  display: inline-block;
}
.df {
  display: flex;
}
.aic {
  align-items: center;
}
.jcc {
  justify-content: center;
}
.jcsb {
  justify-content: space-between;
}
.--gap-7 {
  gap: 7px;
}
.--gap-10 {
  gap: 10px;
}
.--gap-20 {
  gap: 20px;
}
.--gap-30 {
  gap: 30px;
}
.--mt-5 {
  margin-top: 5px;
}
.--mt-10 {
  margin-top: 10px;
}
.--mt-15 {
  margin-top: 15px;
}
.--mt-20 {
  margin-top: 20px;
}
.--mt-30 {
  margin-top: 30px;
}
.--color-grey {
  color: #717172;
}

/* Texts */
h1,
.h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 55px; /* 114.286% */
}
#single-post.--page h1 {
  font-size: 38px;
  font-weight: 500;
  line-height: 40px; /* 105.263% */
}
h2,
.h2,
.card.--big.--bigger .card__title {
  font-size: 38px;
  font-weight: 500;
  line-height: 44px; /* 105.263% */
}
.articles-grid.--with-big > .card:nth-child(1) .card__title,
.articles-grid.--with-big > .card:nth-child(2) .card__title,
.articles-grid.--with-big > .card:nth-child(8n + 1) .card__title,
.articles-grid.--with-big > .card:nth-child(8n + 2) .card__title,
.card.--big .card__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}
h3,
.h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 32px; /* 114.286% */
}
h4,
.h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
}
h5,
.h5,
.card .card__title,
.main-block__articles-list .card.--text .card__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px; /* 120% */
}
.card.--text .card__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
.h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}

.h7 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.h8 {
  font-size: 13px;
  line-height: 18px; /* 138.462% */
}

.--small {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.--tiny {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

.button {
  cursor: pointer;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.button:not(.--black):hover {
  color: #777778;
}
.current-menu-item .button {
  color: #777778;
}
.button.--grey {
  background: #282828;
}
.button.--green {
  background: #d7f64d;
  color: #000;
}

.button.--light {
  background: #edeeef;
  color: #000;
}
.button.--light:hover {
  color: #777778;
}
.button.--outline {
  color: #000;
  background: none;
  border: 1px solid #000;
}
.button.--outline:hover {
  color: #777778;
}
.button.--full {
  width: 100%;
}
.button.--big {
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 16px;
  line-height: 24px; /* 150% */
}
.button.--big.--outline {
  border-width: 2px;
}
.button.--label-new,
.menu-item.--new .button {
  position: relative;
}
.button.--label-new:after,
.menu-item.--new .button:after {
  content: "new";
  border-radius: 5px;
  background: #ffdb4d;
  padding: 2px 5px;

  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  position: absolute;
  top: -10px;
  right: 10px;
}

/* Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
  /* border-radius: 0px 0px 30px 30px; */
  background: #000;
  padding: 15px 0;
  transition: border-radius 0.4s;
}
header:has(.header-inner__toggle.--active) {
  border-radius: 0px 0px 0px 0px;
}
.header-inner__left {
  gap: 30px;
}
.header-menu ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card {
  position: relative;
}
.card * {
  z-index: 1;
  position: relative;
}
.card:after {
  display: none !important;
  content: "";
  position: absolute;
  z-index: 0;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: -12px;
  border-radius: 15px;
  border: 2px solid #000;
  background: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover:after {
  opacity: 1;
}
.card .card__title {
  transition: color 0.3s;
}
.card:hover .card__title {
  color: #777778;
}
/* .card.--text:after {
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  top: -15px;
  left: -15px;
  border-radius: 20px;
} */
.card.--text:after {
  display: none;
}
.card.--text:hover .card__title {
  color: #777778;
}

.card.--big:after {
  border-radius: 20px;
}
.card.--big.--bigger:after {
  border-radius: 30px;
}
.card a {
  color: #000;
}
.card__img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 300 / 168;
  overflow: hidden;
  border-radius: 15px;
  display: block;
}
.card.--big .card__img {
  border-radius: 20px;
}
.card.--big.--bigger .card__img {
  border-radius: 30px;
}
.--text .card__img {
  display: none;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__title {
  display: block;
  transition: color 0.3s;
}
.card:not(.--text) .card__title {
  margin-top: 10px;
}
.card.--big {
}

.main-block {
  display: grid;
  grid-template-columns: 1.69fr 1fr;
  grid-gap: 30px;
}

.card__meta {
  margin-top: 10px;
}

.card-meta {
  gap: 7px;
}

.card-meta__categories {
  display: flex;
  align-items: center;
  gap: 7px;
}

.card-meta__categories a,
.label {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  border-radius: 5px;
  background: #d7f64d;
  padding: 2px 5px;
  color: #000;
}
.label {
  background: #edeeef;
}
.label.--green {
  background: #d7f64d;
}
.label.--red {
  background: #ff3800;
  color: #fff;
}
.card-meta__date {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  border-radius: 5px;
  background: #edeeef;
  padding: 2px 5px;
}

#main {
  padding: 90px 0 0px;
}
.articles-list-body {
  display: none;
}
.articles-list-body.--active {
  display: block;
}
.articles-list-wrapper {
  border-radius: 30px;
  background: #f9f9f9;
  padding: 30px;
}

.articles-list.--columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 50px;
}
.articles-list li {
  padding: 15px 0;
}

.articles-list li:not(:last-child) {
  border-bottom: 1px solid #e1e5ec;
}

.socials-banner {
  border-radius: 30px;
  background: #d6fa51;
  position: relative;
}
#socials-banner {
  padding: 80px 0 100px;
  position: relative;
}
.socials-banner__inner {
  padding: 70px 60px;
  display: flex;
  gap: 45px;
  position: relative;
  z-index: 1;
}
.socials-banner__left {
  max-width: 425px;
}
/* .socials-banner__right img{} */
.socials-banner__right img {
  max-width: 781px;
  position: absolute;
  right: 0;
  top: -60px;
  display: block;
}

.socials-banner__socials {
  margin: 20px 0;
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials-banner__social {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  color: #000;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 10px;
  background: #fff;

  transition: color 0.3s, background 0.3s;
}

.socials-banner__social:hover {
  color: #777778;
}

.socials-banner__decors {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.socials-banner__decor2 {
  position: absolute;
  right: 0;
  bottom: 0;

  border-radius: 0 0 30px 0;
}
.socials-banner__decor1 {
  position: absolute;
  right: 56%;
  bottom: 0;
}
section.section {
  padding: 70px 0;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px 30px;
}
.articles-grid-3 {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 30px;
  max-width: var(--container-width);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.articles-grid > .card {
  grid-column: span 2;
}
.articles-grid.--big > .card {
  grid-column: span 1;
}
/* .articles-grid:has(.--first-big) > .card:nth-child(1),
.articles-grid:has(.--first-big) > .card:nth-child(2) {
  grid-column: span 2;
} */
/* .grid-item:nth-child(5n + 1),
        .grid-item:nth-child(5n + 2),
        .grid-item:nth-child(5n + 9),
        .grid-item:nth-child(5n + 10)  */
.articles-grid.--with-big > .card {
  grid-column: span 2;
}
.articles-grid.--with-big > .card:nth-child(1),
.articles-grid.--with-big > .card:nth-child(2),
.articles-grid.--with-big > .card:nth-child(8n + 1),
.articles-grid.--with-big > .card:nth-child(8n + 2) {
  grid-column: span 3;
}
.gray-box {
  border-radius: 30px;
  background: #f9f9f9;
  padding: 60px;
}

.articles-grid.--big {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px 30px;
}

.subscribe-banner {
  border-radius: 30px;
  background: #d6fa51;
  padding: 60px;
  overflow: hidden;
  position: relative;
}
.subscribe-banner__inner {
  display: grid;
  grid-template-columns: 1.67fr 1fr;
  align-items: center;
  grid-gap: 50px;
  position: relative;
  z-index: 1;
}
.subscribe-banner__inner.--success{
  grid-template-columns: 1fr;
  text-align: center;
}
.input-text {
  width: 100%;
  border-radius: 15px;
  border: 2px solid #000;
  background: #fff;
  padding: 14px 20px;
  color: #000;

  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
  outline: none;
}

.input-subtext a {
  color: #007eff;
  text-decoration: underline;
}
.input-subtext a:hover {
  text-decoration: none;
}
.subscribe-banner__decor-1,
.subscribe-banner__decor-2,
.subscribe-banner__decor-3,
.subscribe-banner__decor-4 {
  position: absolute;
  bottom: 0;
  z-index: 0;
}
.subscribe-banner__decor-1 {
  left: 40px;
}
.subscribe-banner__decor-2 {
  left: 104px;
}
.subscribe-banner__decor-3 {
  left: 50%;
  transform: translateX(-50%);
}
.subscribe-banner__decor-4 {
  left: auto;
  right: 4px;
}

footer {
  padding: 47px 0 30px;
  /* border-radius: 30px 30px 0px 0px; */
  background: #000;
}

.footer-socials__list {
  gap: 10px;
}
.footer-socials a {
  transition: filter 0s;
}
.footer-socials a:hover {
  filter: brightness(0) saturate(100%) invert(100%) sepia(20%) saturate(6475%) hue-rotate(10deg) brightness(99%) contrast(94%);
}
.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid #282828;
}
.footer-bottom {
  padding-top: 30px;
}
.footer-copyright {
  max-width: 220px;
  color: #fff;
}
.footer-bottom__links{
  flex: 0 0 43.4%;
}
.footer-bottom__links a {
  color: #fff;
  text-decoration-line: underline;
}

.footer-bottom__links a:hover {
  text-decoration: none;
}
.footer-pwd {
  color: #fff;
  text-align: right;
  max-width: 190px;
}
.footer-pwd a {
  color: #fff;
  text-decoration: underline;
}
.footer-pwd a:hover {
  text-decoration: none;
}
.single-meta__categories a {
}
.single-post__image img {
  width: 100%;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

#single-post {
  padding-top: 90px;
}
.container-post {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-content {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px; /* 150% */
}
.text-content.--black {
  color: #fff;
}
.text-content p,
.text-content li {
}
.text-content p {
  margin: 24px 0;
}
.text-content a {
  color: #007eff;
  /* text-decoration: underline; */
}
.text-content a:hover {
  text-decoration: underline;
}
.wp-block-image .aligncenter > figcaption {
  text-align: center;
}
.text-content img {
  max-width: 100%;
}
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5 {
  margin: 40px 0 20px;
}
.wp-element-caption {
  color: #aaacae;
  /* text-align: center; */

  font-size: 12px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}
.wp-block-image {
  margin: 20px 0;
}
.wp-block-separator {
  margin: 50px 0;
}
#single-post {
  padding-bottom: 70px;
}
.post-share {
  border-radius: 20px;
  background: #d7f64d;
  padding: 20px;
}
.post-share li {
  filter: invert(1);
  display: flex;
  transition: transform 0.3s;
}
.post-share li:has(.not-invert) {
  filter: none;
} 
.post-share li:hover {
  transform: scale(1.03);
}
.post-share li img {
  width: 36px;
  height: 36px;
}
.post-share .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.post-share .share-btn:hover {
  background: #333;
  transform: scale(1.03);
}
.post-share .copy-link-btn {
  /* background: #333; */
  font-size: 9px;
  cursor: pointer;
}
.post-share .copy-link-btn:hover {
  /* background: #555; */
}
.post-share__left {
  max-width: 365px;
}
.single-post__share {
  margin: 20px 0 10px;
}
.post-author {
  border-radius: 20px;
  background: #000;
  padding: 15px 20px;
  color: #fff;
}
.post-author__photo {
  width: 46px;
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
}
.post-author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-search {
  position: relative;
}
.header-search input {
  border-radius: 10px;
  /* border: 2px solid #fff; */
  padding: 11px 12px;
  color: #fff;
  background: #282828;
  outline: none;
}
.header-search input:focus::placeholder {
  /* outline: 1px solid #fff; */
  /* color: #fff; */
}
.header-search button {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -2px;
  cursor: pointer;
}
#archive-articles {
  padding: 90px 0;
}

/* .toggle__open */
.toggle__close {
  display: none;
}
.header-inner__toggle {
  display: none;
}
.toggle.--active .toggle__close {
  display: block;
}
.toggle.--active .toggle__open {
  display: none;
}
.mobile-menu {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  z-index: 1;
  top: -1000vh;
  opacity: 0;
  padding: 68px 15px 25px;

  transition: top 0s 0.4s, opacity 0.4s;

  /* display: none; */
}
.mobile-menu.--active {
  top: 0;
  opacity: 1;
  transition: top 0.4s, opacity 0.4s;
}
.header-inner {
  position: relative;
  z-index: 2;
}

.mobile-menu__menu li {
}
.mobile-menu__menu li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.32px;
  padding: 12px 0;
  border-top: 1px solid #282828;
  display: block;
}
.mobile-menu__menu li:last-child a {
  border-bottom: 1px solid #282828;
}
.mobile-menu__search {
  margin-top: 15px;
}
.mobile-menu__search input {
  width: 100%;
}
.mobile-menu__socials {
  margin-top: 30px;
}
#all-articles {
  padding-top: 0;
}
#all-articles h2 {
  margin-bottom: 30px;
}
.footer-pwd.mobile {
  display: none;
}
.single-meta__youtube a {
  display: block;
}

.wp-block-image img {
  border-radius: 20px;
}
.wp-block-embed-youtube {
  margin-top: 20px;
}
.wp-block-embed-youtube iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 17 / 9;
  border-radius: 20px;
}
.text-content ul,
.text-content ol {
  padding-left: 20px;
}
.text-content .wp-block-list {
  margin: 20px 0;
}
.toc {
  border-radius: 20px;
  background: #d7f64d;
  padding: 25px 20px;
  margin: 20px 0;
}
.toc h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.toc li a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
  text-decoration-line: underline;
}

.wp_swiper__navigation .swiper-button-prev,
.wp_swiper__navigation .swiper-button-next {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2044_5205)'%3E%3Cpath d='M5.4975 18L3.375 15.8782L10.3793 8.997L3.375 2.12175L5.4975 1.1094e-06L14.625 8.997L5.4975 18Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2044_5205'%3E%3Crect width='18' height='18' fill='white' transform='translate(18 18) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: center;
  display: flex !important;
  filter: grayscale(1) brightness(0);
}
.wp_swiper__navigation .swiper-button-prev {
  transform: rotate(180deg);
}
.wp_swiper__navigation .swiper-button-prev:after,
.wp_swiper__navigation .swiper-button-next:after {
  content: unset;
}
.wp-swiper__wrapper .swiper-pagination {
  /* display: none !important; */

  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.wp-swiper__wrapper .swiper-container {
  padding-bottom: 20px;
}

.wp-swiper__wrapper .swiper-pagination-bullet-active {
  background-color: #d7f64d;
}

.search-header__count {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
}
.search-articles {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.search-articles .card {
  padding: 20px;
  border-radius: 20px;
  background: #f9f9f9;
}

.search-articles .card:hover:after {
  content: unset;
}
.search-articles .card .card__title {
  font-size: 24px;
}
.search-articles .card:hover .card__title {
  color: #777778;
}

.post-share__left,
.post-author__name {
  font-weight: 400;
}

.page-template-page-about {
  background: #000;
  color: #fff;
}
.about-page {
  padding: 90px 0 70px;
}
.about-page .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}

.about-page__image {
  position: relative;
}
.about-page__image img {
  border-radius: 25px;
  max-width: 100%;
}
.about-page__socials {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
}
.about-page__socials a {
}

.about-page__right p {
  margin: 20px 0;
}

#posts-articles,
#archive-articles {
  padding-bottom: 0;
}
#posts-articles {
  padding-top: 90px;
}
#we-recommend{
  padding-bottom: 0;
}
#we-recommend .card {
  /* display: none; */
}
#we-recommend .card {
  /* display: none; */
}

.wp-block-image img {
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0);
  opacity: 1;
  transition: all 0.2s ease;
}
.wp-block-image img:hover {
  border: 2px solid #000;
  opacity: 0.8;
}
.header-search-button,
.header-mob__burger {
  border-radius: 10px;
  background: #282828;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-inner__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-socials img {
  width: 34px;
  height: 34px;
}
.header-search {
  position: absolute;
  right: 48px;
  width: 400px;
}

.header-search input {
  width: 100%;
}
.header-search-button {
  position: relative;
}
.header-search-button:after {
  content: "";
  background: center / cover
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6639_9958)'%3E%3Cpath d='M7.17889 0C3.21004 0 0 3.13646 0 7.01433C0 10.8922 3.21004 14.0287 7.17889 14.0287C8.59586 14.0287 9.90726 13.6225 11.0191 12.9327L16.2053 18L18 16.2464L12.8798 11.2564C13.8002 10.0766 14.3578 8.61479 14.3578 7.01433C14.3578 3.13646 11.1477 0 7.17889 0ZM7.17889 1.65043C10.219 1.65043 12.6686 4.04388 12.6686 7.01433C12.6686 9.98478 10.219 12.3782 7.17889 12.3782C4.13875 12.3782 1.68915 9.98478 1.68915 7.01433C1.68915 4.04388 4.13875 1.65043 7.17889 1.65043Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6639_9958'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  display: block;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.header-search-button.active:after {
  background: center / cover url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.55936 0L0 1.56511L5.4492 7L0 12.4349L1.55936 14L7.00857 8.56511L12.4578 14L14 12.4349L8.56793 7L14 1.56511L12.4578 0L7.00857 5.43489L1.55936 0Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 14px;
  height: 14px;
}

.mobile-menu__subtext{
  color: #FFF;
text-align: center;
font-size: 12px;
font-weight: 400;
line-height: 14px; /* 116.667% */
margin-top: 15px;
}
.mobile-menu__subtext a{
  color: #007EFF;

}
.mobile-menu__menu li:first-child a{
  border-top: none
}
.header-mob{
  display: none;
}

.--zaglushka .subscribe-banner__inner{
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.--zaglushka .subscribe-banner__right{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.--zaglushka .subscribe-banner__decor-1,
.--zaglushka .subscribe-banner__decor-2{
  display: none;
}
.--zaglushka .subscribe-banner__decor-3{

  left: 50px;
  transform: none;
}
.--zaglushka .subscribe-banner__decor-3 svg{
  width: 253px;
  height: auto;
}
.--zaglushka .subscribe-banner__decor-4{
right: 30px;
}
.--zaglushka .subscribe-banner__decor-4 svg{
  width: 205px;
  height: auto;
}
#subscribe.--zaglushka.--shop{
  padding-top: 150px;
  padding-bottom: 130px;

}
.subscribe-banner_s1,
.subscribe-banner_s2,
.subscribe-banner_s3,
.subscribe-banner_s4{
  position: absolute;
}
.subscribe-banner_s1{
  bottom: -30px;
  right: 100px;
  width: 200px;
}
.subscribe-banner_s2{
  bottom: -29px;
  left: 100px;
  width: 209px;
}
.subscribe-banner_s3{

  top: -30px;
  left: 30px;
  width: 204px;
}
.subscribe-banner_s4{

  top: -31px;
  right: 30px;
  width: 234px;
}


.--zaglushka .subscribe-banner__inner{
  gap: 30px
}
#subscribe.--zaglushka.--shop .subscribe-banner{
  overflow: unset;
  padding: 50px
}
.header-socials a{

}
.header-socials a:hover {
  filter: brightness(0) saturate(100%) invert(100%) sepia(20%) saturate(6475%) hue-rotate(10deg) brightness(99%) contrast(94%);
}
.search-articles{
  padding-bottom: 100px;
}
.wp-swiper__wrapper .swiper-container {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.post-share__left, .post-author__name{
  line-height: 22px;
}
.only-mob{
  display: none;
}
.single-post__meta .label{
  display: block;
}
.articles-list-header.--top{
  display: none;
}
.header-mob__search{
  display: none !important;
}