:root {
  --main-color: #00acbf;
  /* Accent Colors */
  --accent-green: #0abf6c;
  --accent-black: #1a1a1a;
  /* Secondary Colors */
  --secondary-red: #fa6060;
  --secondary-orange: #ffa040;
  --secondary-purple: #9b59b6;
  /* Additional Colors */
  --gray-lightest: #fafafa;
  --gray-lighter: #f5f5f5;
  --gray-medium: #ececec;
  --gray-darker: #888888;
  --gray-darkest: #7c7c7c;
  /* Color Palette - Lighten for Hovers/Focus */
  --main-color-lighter-1: #d8fbff;
  --main-color-lighter-2: #f2feff;
  --accent-green-lighter-1: #b3fbda;
  --accent-green-lighter-2: #e4fef2;
  --secondary-red-lighter-1: #fdc3c3;
  --secondary-red-lighter-2: #fff4f4;
  --secondary-orange-lighter-1: #ffdfbf;
  --secondary-orange-lighter-2: #fff9f2;
  --secondary-purple-lighter-1: #dbc3e5;
  --secondary-purple-lighter-2: #f0e7f4;
  /* Color Palette - Darken for Hovers/Focus */
  --main-color-darken-1: #0095a5;
  --main-color-darken-2: #007e8c;
  --accent-green-darken-1: #09a75e;
  --accent-green-darken-2: #078f51;
  --secondary-red-darken-1: #f94747;
  --secondary-red-darken-2: #d40707;
  --secondary-orange-darken-1: #ff870d;
  --secondary-orange-darken-2: #f27a00;
  --secondary-purple-darken-1: #804399;
  --secondary-purple-darken-2: #623475;
}

.style-fs-29 {
  font-size: 29px;
}

.style-fs-22 {
  font-size: 22px;
}

.style-fs-18 {
  font-size: 18px;
}

.style-fs-16 {
  font-size: 16px;
}

.style-fs-14 {
  font-size: 14px;
}

@media screen and (max-width: 1350px) {
  .style-fs-29 {
    font-size: 27px;
  }
  .style-fs-22 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1070px) {
  .style-fs-29 {
    font-size: 22px;
  }
  .style-fs-22 {
    font-size: 18px;
  }
}
.hover__black-img img {
  transition: filter 0.5s ease;
}
.hover__black-img:hover img {
  filter: brightness(0) invert(0%) sepia(46%) saturate(16%) hue-rotate(333deg) brightness(137%) contrast(80%);
}

.style-green-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: fit-content;
  background: var(--accent-green);
  transition: background 0.5s ease;
  border: 0;
  border-radius: 4px;
  padding: 0.375em 1.5em;
  color: white;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.style-green-button:hover {
  background: var(--accent-green-darken-1);
}
.style-green-button:focus {
  background: var(--accent-green-darken-2);
}

.style-blue-brd-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: fit-content;
  background: white;
  border-radius: 4px;
  border: 2px solid var(--main-color);
  padding: 0.375em 1em;
  color: var(--main-color);
  font-weight: 600;
  line-height: 1.5;
  transition: border 0.5s ease, color 0.5s ease;
}
.style-blue-brd-button svg {
  margin-left: 8px;
}
.style-blue-brd-button path {
  transition: stroke 0.5s ease;
}
.style-blue-brd-button:hover {
  border: 2px solid var(--main-color-darken-1);
  color: var(--main-color-darken-1);
}
.style-blue-brd-button:hover path {
  stroke: var(--main-color-darken-1);
}
.style-blue-brd-button:focus {
  border: 2px solid var(--main-color-darken-2);
  color: var(--main-color-darken-2);
}
.style-blue-brd-button:focus path {
  stroke: var(--main-color-darken-2);
}

.style-readmore {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.5s ease;
  width: fit-content;
}
.style-readmore img {
  margin-top: 4px;
}
.style-readmore .icon {
  position: relative;
  margin-left: 8px;
  transition: margin 0.5s ease, transform 0.5s ease;
}
.style-readmore .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.style-readmore.grey {
  color: #888;
}
.style-readmore:hover {
  color: var(--main-color-darken-1);
}
.style-readmore:hover .icon {
  margin-left: 12px;
}
.style-readmore:hover .hover {
  opacity: 1;
}

.global-breadcrumbs {
  padding-top: 4em;
}
.global-breadcrumbs .breadcrumbs__container > * {
  display: inline;
  vertical-align: middle;
}
.global-breadcrumbs .breadcrumbs__link {
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1.5;
}
.global-breadcrumbs .breadcrumbs__seperator {
  margin: 2px 9px 0;
}
.global-breadcrumbs .breadcrumbs__current {
  font-weight: 400;
  line-height: 1.5;
  color: #888;
}

.component-post:focus .component-post__title {
  color: var(--main-color);
}
.component-post__image {
  position: relative;
  padding-top: 56%;
}
.component-post__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.component-post__details {
  margin-top: 16px;
  color: #888;
  font-weight: 400;
  line-height: 1.5;
}
.component-post__details > * {
  vertical-align: middle;
}
.component-post__details .dot {
  width: 3px;
  height: 3px;
  background: #888;
  border-radius: 100%;
  margin: 2.5px 8px 0;
  display: inline-block;
  vertical-align: middle;
}
.component-post__title {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--accent-black);
  margin-top: 11px;
  transition: color 0.5s ease;
}
.component-post__category {
  font-weight: 700;
  line-height: 1.5;
  color: var(--main-color);
  margin-top: 6px;
}
.component-post.with-category .component-post__title {
  margin-top: 6px;
}

.global-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-pagination .page-numbers {
  margin-right: 6px;
  margin-top: 68px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  color: #888;
  font-weight: 400;
  transition: background 0.5s ease, color 0.5s ease;
}
.global-pagination .page-numbers.current {
  background: var(--accent-green);
  color: white;
  font-weight: 600;
  pointer-events: none;
}
.global-pagination .page-numbers.prev, .global-pagination .page-numbers.next {
  display: none;
}
.global-pagination .page-numbers.previous {
  margin-left: 0;
  margin-right: 16px;
}
.global-pagination .page-numbers.previous img {
  transform: rotate(180deg);
}
.global-pagination .page-numbers.nextt, .global-pagination .page-numbers.previous {
  background: var(--gray-lighter);
}
.global-pagination .page-numbers.nextt img, .global-pagination .page-numbers.previous img {
  transition: filter 0.5s ease;
}
.global-pagination .page-numbers.nextt:hover, .global-pagination .page-numbers.previous:hover {
  background: var(--accent-green);
}
.global-pagination .page-numbers.nextt:hover img, .global-pagination .page-numbers.previous:hover img {
  filter: brightness(0) invert(1);
}
.global-pagination .page-numbers.nextt.disabled, .global-pagination .page-numbers.previous.disabled {
  pointer-events: none;
  background: none;
}
.global-pagination .page-numbers.nextt.disabled img, .global-pagination .page-numbers.previous.disabled img {
  filter: brightness(0) invert(95%) sepia(1%) saturate(1963%) hue-rotate(320deg) brightness(112%) contrast(79%);
}
.global-pagination .page-numbers.nextt {
  margin-left: 8px;
}
.global-pagination .page-numbers:last-child {
  margin-right: 0;
}
.global-pagination .page-numbers:not(.dots, .nextt, .previous):hover {
  background: var(--accent-green-lighter-2);
  color: var(--accent-green);
}

.global-invalid {
  margin-top: 8px;
  color: var(--secondary-red);
  font-weight: 400;
  line-height: 1.5;
}
.global-invalid span {
  font-weight: 700;
}

/* Mediavine mobile fix CSS */
@media only screen and (max-width: 359px) {
  li .mv-ad-box {
    margin-left: -15px;
  }
}
@media only screen and (max-width: 359px) {
  html {
    min-width: unset;
  }
  .section-single > .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section-single__content .content-grid {
    grid-template-columns: 100%;
  }
}
/* End Mediavine mobile fix CSS */
@media screen and (max-width: 1070px) {
  .component-post__details > * {
    display: block;
  }
  .component-post__details .dot {
    display: none;
  }
  .component-post__details .reading-time {
    margin-top: 2px;
  }
  .component-post__title {
    margin-top: 6px;
  }
  .component-post__details {
    margin-top: 10px;
  }
  .component-post.with-category .component-post__details .reading-time {
    display: none;
  }
  .global-pagination .page-numbers {
    margin-top: 64px;
  }
}
@media screen and (max-width: 450px) {
  .global-breadcrumbs {
    padding-top: 24px;
  }
  .global-breadcrumbs > * {
    font-size: 14px;
  }
  .component-post__details > * {
    display: inline;
    font-size: 12px;
  }
  .component-post__details .dot {
    display: inline-block;
    margin: 2px 8px 0;
  }
  .component-post__details .reading-time {
    margin-top: 0;
  }
  .component-post__title {
    margin-top: 8px;
  }
  .component-post__category {
    font-size: 14px;
  }
  .component-post.mobile-different {
    display: grid;
    grid-template-columns: 0.521fr 1fr;
    align-items: start;
    grid-gap: 8px;
  }
  .component-post.mobile-different .component-post__image {
    padding-top: 100%;
  }
  .component-post.mobile-different .component-post__details {
    margin-top: 0;
  }
  .component-post.mobile-different .component-post__details .dot, .component-post.mobile-different .component-post__details .reading-time {
    display: none;
  }
  .component-post.mobile-different .component-post__title {
    font-size: 16px;
  }
  .global-pagination .page-numbers {
    margin-top: 58px;
  }
}
.global-affiliate {
  background: var(--gray-lighter);
  padding: 5.5px 0;
  position: relative;
  z-index: 2;
  font-size: 10px;
}
.global-affiliate .affiliate__content {
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray-darker);
}
.global-affiliate .affiliate__content * {
  font-family: "acumin-pro", sans-serif;
}
.global-affiliate .affiliate__content a {
  text-decoration: underline;
}

.global-submenu {
  display: none;
  position: absolute;
  top: 100%;
  height: 100svh;
  max-height: 100svh;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease;
  font-size: 10px;
  overflow: auto;
  scrollbar-width: none;
  flex-direction: column;
  margin-top: -7px;
  padding-top: 7px;
}
.global-submenu::-webkit-scrollbar {
  display: none;
}
.global-submenu .submenu__container {
  max-height: calc(100% - 10px);
  overflow: auto;
}
.global-submenu .submenu__background {
  background: rgba(26, 26, 26, 0.3);
  flex-grow: 1;
}
.global-submenu .submenu__category-content {
  transition: transform 0.5s ease, height 0.5s ease;
}
.global-submenu .submenu__transform-container {
  max-width: calc(100% - 81px);
  overflow: hidden;
  background: var(--gray-lighter);
  border-radius: 4px;
}
.global-submenu .submenu__close {
  position: absolute;
  top: 0;
  right: 30px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-submenu .submenu__close img {
  width: 12px;
}
.global-submenu * {
  font-family: "acumin-pro", sans-serif;
}
.global-submenu .sub-menu {
  display: block;
  background: white;
}
.global-submenu .sub-menu__item {
  margin-top: 1.6em;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.global-submenu .sub-menu__item:nth-of-type(1) {
  margin-top: 0;
}
.global-submenu .sub-menu__item:nth-last-of-type(1) .sub-menu__category-readmore {
  display: flex;
  flex-basis: 100%;
}
.global-submenu .sub-menu .sub-menu__right {
  display: none;
}
.global-submenu .sub-menu__subcategory {
  border: 1.5px solid #E4E4E4;
  border-radius: 4px;
  padding: 12px 1.75em;
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  width: 100%;
  transition: border 0.5s ease, color 0.5s ease, font-weight 0.5s ease;
  max-width: calc(100% - 13px);
}
.global-submenu .sub-menu__subcategory:hover {
  border: 1.5px solid var(--main-color);
  color: var(--main-color);
}
.global-submenu .sub-menu__subcategory.active {
  border: 1.5px solid var(--main-color);
  color: var(--main-color);
  font-weight: 700;
  pointer-events: none;
}
.global-submenu .sub-menu__subcategory.active .sub-menu__white-arrow {
  opacity: 1;
  right: -38px;
  width: 12px;
}
.global-submenu .sub-menu__subcategory.active .sub-menu__arrow {
  right: -12px;
  width: 12px;
}
.global-submenu .sub-menu__arrow, .global-submenu .sub-menu__white-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0;
  transition: right 0.3s ease, width 0.3s ease;
}
.global-submenu .sub-menu__white-arrow {
  right: 0;
  width: 0;
  opacity: 0;
}
.global-submenu .sub-menu:not(.changed-subcategory) .sub-menu__item:nth-of-type(1) .sub-menu__subcategory {
  border: 1.5px solid var(--main-color);
  color: var(--main-color);
  font-weight: 700;
  pointer-events: none;
}
.global-submenu .sub-menu:not(.changed-subcategory) .sub-menu__item:nth-of-type(1) .sub-menu__subcategory .sub-menu__arrow {
  right: -12px;
  width: 12px;
  opacity: 1;
}
.global-submenu .sub-menu:not(.changed-subcategory) .sub-menu__item:nth-of-type(1) .sub-menu__subcategory .sub-menu__white-arrow {
  opacity: 1;
  right: -38px;
  width: 12px;
}
.global-submenu .sub-menu__right {
  display: grid;
  grid-template-columns: 284px 1fr;
  grid-gap: 2em;
  border-radius: 4px;
  padding: 1.6em 2.4em 2.4em;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.global-submenu .sub-menu__right.active {
  opacity: 1;
}
.global-submenu .sub-menu__title {
  font-weight: 500;
  color: var(--accent-black);
  margin-bottom: 1em;
}
.global-submenu .sub-menu__topics {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1em;
}
.global-submenu .sub-menu__category-readmore {
  margin-left: 28px;
  margin-top: 24px;
  display: none;
}
.global-submenu .sub-menu__category-readmore .icon img {
  width: 7px;
  height: 11px;
}
.global-submenu .sub-menu__topic {
  border-radius: 22px;
  border: 1px solid #888;
  padding: 9px 1.5em 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--accent-black);
  margin-top: 1em;
  margin-right: 0.875em;
  line-height: 1;
  transition: border 0.5s ease, color 0.5s ease, background 0.5s ease;
}
.global-submenu .sub-menu__topic:hover {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background: var(--main-color-lighter-2);
}
.global-submenu .sub-menu__topic:nth-last-of-type(1) {
  margin-right: 0;
}
.global-submenu .sub-menu__readmore {
  margin-top: 1.71em;
}
.global-submenu .sub-menu__readmore img {
  width: 7px;
  height: 11px;
}
.global-submenu .sub-menu__readmore.no-topics {
  margin-top: 0;
}
.global-submenu .sub-menu__article {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 2.4em;
  padding: 8px 12px 8px 8px;
  background: white;
  transition: background 0.5s ease;
  margin-top: 8px;
  border-radius: 4px;
}
.global-submenu .sub-menu__article:nth-of-type(1) {
  margin-top: 0;
}
.global-submenu .sub-menu__article:hover {
  background: var(--main-color-lighter-2);
}
.global-submenu .sub-menu__article:hover .sub-menu__article__readmore {
  color: var(--main-color);
}
.global-submenu .sub-menu__article:hover .sub-menu__article__readmore .icon {
  margin-left: 8px;
  transform: translateX(4px);
}
.global-submenu .sub-menu__article:hover .sub-menu__article__readmore .hover {
  opacity: 1;
}
.global-submenu .sub-menu__article__image {
  position: relative;
  padding-top: 82.67%;
  align-self: start;
}
.global-submenu .sub-menu__article__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}
.global-submenu .sub-menu__article__details {
  display: flex;
  flex-direction: column;
}
.global-submenu .sub-menu__article__tags {
  display: flex;
  align-items: center;
}
.global-submenu .sub-menu__article__tag {
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.5;
  vertical-align: middle;
  transition: color 0.5s ease;
}
.global-submenu .sub-menu__article__tag-seperator {
  width: 2px;
  height: 14px;
  background: var(--main-color);
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.global-submenu .sub-menu__article__title {
  margin-top: 4px;
  display: block;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 15px;
}
.global-submenu .sub-menu__article__readmore {
  margin-top: auto;
  margin-left: auto;
}
.global-submenu .sub-menu__article__readmore img {
  margin-top: 2px;
  width: 7px;
  height: 10px;
}
.global-submenu .sub-menu__article__readmore .icon {
  margin-right: 4px;
}
.global-submenu .sub-menu__article__readmore:hover {
  color: var(--main-color);
}
.global-submenu .sub-menu__article__readmore:hover .icon {
  margin-left: 8px;
  transform: translateX(4px);
}
.global-submenu .submenu__container {
  background: white;
  transition: height 0.3s ease;
}
.global-submenu .submenu__arrow {
  width: 15.5px;
  position: absolute;
  background: white;
  top: 0;
  transform: translateX(-50%);
  transition: left 0.5s ease;
}
.global-submenu .submenu__grid {
  display: grid;
  grid-template-columns: 294px 1fr;
  grid-gap: 15px;
  align-items: start;
  padding-top: 1.6em;
  padding-bottom: 2.4em;
  position: relative;
}
.global-submenu.not-subcategories .submenu__grid {
  display: block;
  padding-top: 3.2em;
  padding-bottom: 5.4em;
}
.global-submenu.not-subcategories .submenu__transform-container {
  background: none;
}
.global-submenu.not-subcategories .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2.4em;
}
.global-submenu.not-subcategories .sub-menu__item {
  margin-top: 0;
}
.global-submenu.not-subcategories .sub-menu__link {
  width: 100%;
  line-height: 1;
  padding: 1em 1.75em;
  color: var(--accent-black);
  font-weight: 400;
  border-bottom: 1px solid #E4E4E4;
  transition: color 0.5s ease, border 0.5s ease;
}
.global-submenu.not-subcategories .sub-menu__link:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

header {
  font-size: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
}
header * {
  font-family: "acumin-pro", sans-serif;
}
header .cookies {
  background: var(--secondary-orange-lighter-2);
  border-bottom: 1px solid #E4E4E4;
  display: none;
}
header .cookies__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
}
header .cookies__content {
  font-weight: 400;
  line-height: 1.5;
  color: var(--accent-black);
  padding: 7.5px 0;
  margin-right: 1.71em;
}
header .cookies__button {
  flex-shrink: 0;
  padding-top: 5px;
  padding-bottom: 7px;
}
header .header {
  padding: 10px 0;
  border-bottom: 1px solid #E4E4E4;
}
header .header__main-logo {
  margin-right: 6em;
}
header .header__main-logo img {
  width: 165px;
}
header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header__left {
  display: flex;
  align-items: center;
}
header .header__right {
  display: flex;
  align-items: center;
}
header .header__menu {
  display: flex;
  list-style: none;
}
header .header__subscribe-button {
  padding-top: 5px;
  padding-bottom: 7px;
}
header .header__li__first {
  padding: 10px 0;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-darkest);
  margin-right: 2.5em;
  vertical-align: middle;
  transition: color 0.5s ease;
}
header .header__li__first:hover {
  color: var(--accent-black);
}
header .header__li__first.menu-item-has-children > a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .header__li__first.menu-item-has-children > a::after {
  content: url("./images/li_arrow.svg");
  object-fit: contain;
  margin-left: 8px;
  transition: filter 0.5s ease, transform 0.5s ease;
  width: 10px;
  height: 24px;
}
header .header__li__first.menu-item-has-children:hover > a::after {
  filter: brightness(0) invert(0%) sepia(46%) saturate(16%) hue-rotate(333deg) brightness(137%) contrast(80%);
}
header .header__li__first:nth-last-of-type(1) {
  margin-right: 0;
}
header .header__li__first.active-submenu {
  color: var(--accent-black);
}
header .header__li__first.active-submenu > a::after {
  filter: brightness(0) invert(0%) sepia(46%) saturate(16%) hue-rotate(333deg) brightness(137%) contrast(80%);
  transform: rotate(180deg) translateY(-3.5px);
}
header .header__search-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 16px;
}
header .header__search-button img {
  width: 20px;
  height: 20px;
}
header .header__search-button.active {
  filter: brightness(0) invert(0%) sepia(46%) saturate(16%) hue-rotate(333deg) brightness(137%) contrast(80%);
}
header .header__language-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 38px;
}
header .header__language-button.active {
  filter: brightness(0) invert(0%) sepia(46%) saturate(16%) hue-rotate(333deg) brightness(137%) contrast(80%);
}
header .header__language-button.no-margin {
  margin-right: 0;
}
header .header__language-button img {
  width: 20px;
  height: 20px;
}
header .sub-menu {
  display: none;
}
header .search {
  background: white;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.1);
  display: none;
  position: absolute;
  width: 100%;
}
header .search__arrow {
  width: 15.5px;
  position: absolute;
  background: white;
  top: -7px;
  transform: translateX(-50%);
}
header .search__container {
  padding: 2em 0;
}
header .search__form {
  max-width: 510px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  border: 1px solid var(--accent-green);
  border-radius: 6px;
  padding: 4px;
}
header .search__input {
  min-height: 2.5em;
  color: var(--accent-black);
  font-weight: 400;
  padding: 0 12px;
  flex-grow: 1;
  border: 0;
  outline: 0;
  background: white;
}
header .search__input::placeholder {
  color: #888;
}
header .languages {
  background: white;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.1);
  display: none;
  position: absolute;
  width: 100%;
}
header .languages__arrow {
  width: 15.5px;
  position: absolute;
  background: white;
  top: -7px;
  transform: translateX(-50%);
}
header .languages__container {
  padding: 3.2em 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .languages__language {
  font-weight: 400;
  line-height: 1.5;
  color: #888;
}
header .languages__language.active {
  pointer-events: none;
  color: var(--accent-black);
}
header .languages__seperator {
  margin: 2px 2.4em 0;
  width: 1px;
  height: 16px;
  background: #888;
}

@media screen and (max-width: 1350px) {
  .global-affiliate {
    font-size: 9px;
  }
  .global-submenu {
    font-size: 9px;
  }
  .global-submenu .submenu__grid {
    grid-template-columns: 250px 1fr;
  }
  .global-submenu .submenu__right {
    grid-template-columns: 276px 1fr;
  }
  .global-submenu .sub-menu__article {
    grid-template-columns: 130px 1fr;
  }
  .global-submenu .submenu__transform-container {
    max-width: calc(100% - 30px);
  }
  .global-submenu .submenu__close {
    right: -15px;
  }
  header {
    font-size: 9px;
  }
  header .header__main-logo {
    margin-right: 4em;
  }
  header .header__li__first {
    margin-right: 2em;
  }
  header .header__search-button {
    margin-right: 0.5em;
  }
  header .header__language-button {
    margin-right: 1.5em;
  }
}
@media screen and (min-width: 1071px) {
  header .header__mobile-left {
    display: none;
  }
  header .header__hamburger {
    display: none;
  }
  .global-mobile-menu {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  .global-submenu {
    display: none !important;
  }
  header .cookies__container {
    padding: 4px 48px;
  }
  header .languages__container {
    padding: 34px 48px;
    justify-content: flex-start;
  }
  header .search__container {
    padding: 20px 24px;
  }
  header .header__menu {
    display: none;
  }
  header .header .hide-on-tablet {
    display: none;
  }
  header .header__main-logo {
    margin: 0;
  }
  header .header__main-logo img {
    width: 160px;
  }
  header .header__search-button {
    margin-right: 16px;
  }
  header .header__language-button {
    margin-right: 0;
  }
  header .header__hamburger {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 26px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -7px;
  }
  header .header__hamburger .hamburger-close-icon {
    display: none;
  }
  header .header__hamburger.active .hamburger-icon {
    display: none;
  }
  header .header__hamburger.active .hamburger-close-icon {
    display: block;
  }
  header .header__left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  header .header__right {
    max-width: 200px;
  }
  header .header__subscribe-button {
    word-break: break-word;
  }
  .global-mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.3);
    z-index: 99;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s ease, top 0.3s ease;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .global-mobile-menu::-webkit-scrollbar {
    display: none;
  }
  .global-mobile-menu.active {
    transform: translateX(0);
  }
  .global-mobile-menu * {
    font-family: "acumin-pro", sans-serif;
  }
  .global-mobile-menu .sub-menu__arrow, .global-mobile-menu .sub-menu__white-arrow {
    display: none;
  }
  .global-mobile-menu .mobile-menu {
    width: 100%;
    max-width: 405px;
    height: 300px;
    background: white;
    margin-left: auto;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    transition: transform 0.5s ease;
  }
  .global-mobile-menu .mobile-menu.inactive {
    transform: translateX(100%);
  }
  .global-mobile-menu .mobile-menu__other {
    background: var(--gray-lighter);
    padding: 40px 26px 40px 48px;
    flex-grow: 1;
  }
  .global-mobile-menu .mobile-menu__socialmedia {
    margin-bottom: 48px;
  }
  .global-mobile-menu .mobile-menu__socialmedia__heading {
    font-weight: 700;
    line-height: 1.5;
    color: var(--accent-black);
  }
  .global-mobile-menu .mobile-menu__socialmedia__links {
    display: flex;
    margin-top: 25px;
    align-items: center;
  }
  .global-mobile-menu .mobile-menu__socialmedia__link {
    margin-right: 18px;
  }
  .global-mobile-menu .mobile-menu__socialmedia__link:nth-last-of-type(1) {
    margin-right: 0;
  }
  .global-mobile-menu .mobile-menu__without-subcategory {
    background: var(--gray-lightest);
    padding: 12px 48px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--accent-black);
    display: block;
  }
  .global-mobile-menu .mobile-menu__no-subcategory:nth-last-of-type(1) .mobile-menu__without-subcategory {
    padding-bottom: 0;
  }
  .global-mobile-menu .mobile-menu__other-menu {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
  }
  .global-mobile-menu .mobile-menu__other-menu li {
    font-weight: 400;
    line-height: 1.5;
    font-size: 14px;
    color: #888;
  }
  .global-mobile-menu .mobile-menu .sub-menu {
    display: none;
  }
  .global-mobile-menu .mobile-menu .sub-menu__right {
    display: none;
  }
  .global-mobile-menu .mobile-menu__menu {
    list-style: none;
  }
  .global-mobile-menu .mobile-menu__menu__li__first {
    background: white;
  }
  .global-mobile-menu .mobile-menu__menu__li__first > a {
    font-size: 18px;
    color: var(--gray-darkest);
    font-weight: 600;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    position: relative;
    transition: color 0.5s ease;
  }
  .global-mobile-menu .mobile-menu__menu__li__first > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 48px;
    width: calc(100% - 96px);
    height: 1px;
    background: #e4e4e4;
  }
  .global-mobile-menu .mobile-menu__menu__li__first.menu-item-has-children > a::after {
    content: url("./images/mobile-menu-arrow.svg");
    transform: translateY(0px);
    transition: transform 0.5s ease, filter 0.5s ease;
    flex-shrink: 0;
    margin-lefT: 20px;
    display: block;
  }
  .global-mobile-menu .mobile-menu__menu__li__first.menu-item-has-children > a.active {
    color: var(--accent-black);
  }
  .global-mobile-menu .mobile-menu__menu__li__first.menu-item-has-children > a.active::before {
    display: none;
  }
  .global-mobile-menu .mobile-menu__menu__li__first.menu-item-has-children > a.active::after {
    transform: rotate(180deg) translateY(-3.5px);
    filter: brightness(0) invert(0%) sepia(46%) saturate(16%) hue-rotate(333deg) brightness(137%) contrast(80%);
  }
  .global-mobile-menu .mobile-menu__menu .sub-menu {
    background: var(--gray-lightest);
    padding-bottom: 24px;
    list-style: none;
    position: relative;
  }
  .global-mobile-menu .mobile-menu__menu .sub-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 48px;
    width: calc(100% - 96px);
    height: 1px;
    background: #e4e4e4;
  }
  .global-mobile-menu .mobile-menu__menu__subcategory {
    list-style: none;
    padding: 12px 48px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--accent-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .global-mobile-menu .mobile-menu__menu__subcategory::after {
    content: url("./images/frame_21.svg");
    width: 11px;
    height: 5px;
    flex-shrink: 0;
    margin-left: 20px;
    transform: translateY(-10px);
  }
  .global-mobile-menu .mobile-menu__menu__category-readmore {
    display: none;
  }
  .global-mobile-menu .mobile-menu__menu__category-readmore img {
    width: 7px;
    height: 11px;
  }
  .global-mobile-menu .mobile-menu__menu__category:nth-last-of-type(1) .mobile-menu__menu__category-readmore {
    display: flex;
    margin-left: 48px;
    margin-top: 8px;
  }
  .global-mobile-menu .mobile-menu__menu__category:nth-last-of-type(1) .mobile-menu__menu__category-readmore img {
    margin-top: 2px;
    width: 7px;
    height: 11px;
  }
  .global-mobile-menu .subcategory-menu {
    width: 100%;
    max-width: 405px;
    background: white;
    margin-left: auto;
    display: none;
    flex-grow: 1;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .global-mobile-menu .subcategory-menu.active {
    transform: translateX(0);
  }
  .global-mobile-menu .subcategory-menu__back {
    display: flex;
    align-items: center;
    background: white;
    border: none;
    outline: none;
    padding: 20px 48px;
    color: var(--accent-black);
    font-weight: 600;
    line-height: normal;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .global-mobile-menu .subcategory-menu__back img {
    margin-right: 20px;
    margin-top: 4px;
    width: 10px;
    height: 17px;
  }
  .global-mobile-menu .subcategory-menu__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .global-mobile-menu .subcategory-menu .sub-menu__right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .global-mobile-menu .subcategory-menu__first-block {
    background: var(--gray-lightest);
    padding: 20px 48px 24px 48px;
  }
  .global-mobile-menu .subcategory-menu__name {
    font-weight: 700;
    color: var(--accent-black);
    line-height: 1.5;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
  }
  .global-mobile-menu .subcategory-menu__search-topic {
    margin-top: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--accent-black);
  }
  .global-mobile-menu .subcategory-menu__topics {
    margin-top: 20px;
  }
  .global-mobile-menu .subcategory-menu__topic {
    display: block;
    width: fit-content;
    padding: 10px 0;
    line-height: 1.5;
    font-weight: 400;
    color: #888;
  }
  .global-mobile-menu .subcategory-menu__readmore {
    margin-top: 10px;
  }
  .global-mobile-menu .subcategory-menu__readmore img {
    width: 7px;
    height: 11px;
  }
  .global-mobile-menu .subcategory-menu__second-block {
    background: var(--gray-lighter);
    padding: 20px 48px 40px;
    flex-grow: 1;
  }
  .global-mobile-menu .subcategory-menu__featured-articles {
    color: var(--accent-black);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .global-mobile-menu .subcategory-menu__article {
    margin-top: 8px;
    background: white;
    padding: 16px;
    display: block;
  }
  .global-mobile-menu .subcategory-menu__image {
    display: none;
  }
  .global-mobile-menu .subcategory-menu__tags {
    display: flex;
    align-items: center;
  }
  .global-mobile-menu .subcategory-menu__tag {
    font-weight: 700;
    line-height: 1.5;
    color: var(--main-color);
  }
  .global-mobile-menu .subcategory-menu__tag-seperator {
    width: 2px;
    height: 14px;
    background: var(--main-color);
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
  }
  .global-mobile-menu .subcategory-menu__title {
    margin-top: 8px;
    color: var(--accent-black);
    font-weight: 400;
    line-height: 1.5;
  }
  .global-mobile-menu .subcategory-menu__readmore-article {
    margin-top: 8px;
    margin-left: auto;
  }
  .global-mobile-menu .subcategory-menu__readmore-article img {
    margin-top: 1px;
  }
}
@media screen and (max-width: 700px) {
  header .cookies__container {
    padding: 4px 24px;
  }
  header .languages__container {
    padding: 34px 24px;
  }
  header .search__container {
    padding: 20px 24px;
  }
}
@media screen and (max-width: 610px) {
  header .languages__container {
    justify-content: flex-end;
  }
  header .header__mobile-left {
    display: none;
  }
  header .header__left {
    position: static;
    transform: none;
  }
  header .header .hide-on-tablet {
    display: flex;
  }
  header .header__right {
    max-width: none;
  }
  header .header__search-button {
    order: 2;
    margin-right: 8px;
  }
  header .header__language-button {
    order: 3;
  }
  header .header__hamburger {
    order: 4;
    margin-left: 8px;
  }
  header .header__subscribe-button {
    margin-right: 16px;
  }
}
@media screen and (min-width: 531px) {
  .global-mobile-menu .mobile-menu__language-container {
    display: none;
  }
  header .search__mobile-button {
    display: none;
  }
}
@media screen and (max-width: 530px) {
  .global-affiliate {
    padding: 7px 0;
  }
  .global-affiliate .affiliate__content {
    padding: 0 23px;
  }
  header .cookies__container {
    padding: 9.5px 24px;
  }
  header .cookies__content {
    margin-right: 16px;
  }
  header .cookies__button {
    padding: 8px 16px;
    font-size: 14px;
  }
  header .search__button {
    display: none;
  }
  header .search__mobile-button {
    display: flex;
    padding: 7px 1.5em 9px;
  }
  header .header {
    padding: 16px 0;
  }
  header .header__language-button.hide-on-tablet {
    display: none;
  }
  header .header__hamburger {
    width: 38px;
  }
  header .header__hamburger .hamburger-icon {
    width: 18px;
  }
  header .header__main-logo img {
    width: 145px;
  }
  header .header__search-button {
    margin-right: 0;
  }
  header .header__search-button img {
    width: 16.8px;
    height: 16.8px;
  }
  header .header__subscribe-button {
    padding: 7px 16px 9px;
    font-size: 14px;
  }
  .global-mobile-menu .subcategory-menu {
    max-width: none;
  }
  .global-mobile-menu .subcategory-menu__back {
    padding: 20px 24px;
  }
  .global-mobile-menu .subcategory-menu__first-block {
    padding: 20px 24px 24px;
  }
  .global-mobile-menu .subcategory-menu__second-block {
    padding: 20px 24px 40px;
  }
  .global-mobile-menu .mobile-menu {
    max-width: none;
  }
  .global-mobile-menu .mobile-menu.inactive {
    transform: translateX(-100%);
  }
  .global-mobile-menu .mobile-menu__language-container {
    margin-top: 38px;
    border-top: 1px solid #E4E4E4;
    padding-top: 32px;
  }
  .global-mobile-menu .mobile-menu__language-title {
    display: flex;
    align-items: center;
    color: var(--accent-black);
    font-weight: 400;
    line-height: 1.5;
  }
  .global-mobile-menu .mobile-menu__language-title img {
    flex-shrink: 0;
    margin-right: 8px;
    width: 20px;
    height: 21px;
  }
  .global-mobile-menu .mobile-menu__languages {
    margin-top: 24px;
    display: flex;
    align-items: center;
  }
  .global-mobile-menu .mobile-menu__language {
    font-weight: 400;
    line-height: 1.5;
    color: #888;
  }
  .global-mobile-menu .mobile-menu__language.active {
    color: var(--accent-black);
    pointer-events: none;
  }
  .global-mobile-menu .mobile-menu__languages-seperator {
    width: 1px;
    height: 16px;
    background: #888;
    margin: 2px 24px 0;
  }
  .global-mobile-menu .mobile-menu__other {
    padding: 40px 24px;
  }
  .global-mobile-menu .mobile-menu__without-subcategory {
    padding: 12px 24px;
  }
  .global-mobile-menu .mobile-menu__menu__li__first > a {
    padding: 20px 24px;
  }
  .global-mobile-menu .mobile-menu__menu__li__first > a::before {
    left: 24px;
    width: calc(100% - 48px);
  }
  .global-mobile-menu .mobile-menu__menu__li__first.active {
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .global-mobile-menu .mobile-menu__menu__subcategory {
    padding: 12px 24px;
  }
  .global-mobile-menu .mobile-menu__menu .sub-menu::before {
    left: 24px;
    width: calc(100% - 48px);
  }
  .global-mobile-menu .mobile-menu__menu__category:nth-last-of-type(1) .mobile-menu__menu__category-readmore {
    margin-left: 24px;
  }
}
@media screen and (max-width: 430px) {
  header .cookies__button {
    font-size: 13px;
  }
  header .header__main-logo img {
    width: 121px;
  }
  header .header__subscribe-button {
    font-size: 13px;
  }
  header .search__container {
    padding: 16px 24px;
  }
}
@media screen and (max-width: 385px) {
  header .cookies__button {
    font-size: 12px;
  }
  header .header__subscribe-button {
    font-size: 12px;
  }
}
.page-search {
  padding-bottom: 6.4em;
}

.page-post-category {
  font-size: 10px;
}
.page-post-category * {
  font-family: "acumin-pro", sans-serif;
}
.page-post-category .subcategory {
  padding: 5.6em 0;
}
.page-post-category .subcategory:nth-of-type(even) {
  background: var(--gray-lightest);
  padding: 6.4em 0;
}
.page-post-category .subcategory:nth-last-of-type(1) {
  padding-bottom: 8em;
}
.page-post-category .subcategory:nth-of-type(1) {
  padding-top: 16px;
}
.page-post-category .subcategory__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.page-post-category .subcategory__heading {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-post-category .subcategory__posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
  margin-top: 20px;
}
.page-post-category .subcategory__all-articles {
  flex-shrink: 0;
  margin-left: 30px;
  padding-top: 5px;
  padding-bottom: 7px;
}
.page-post-category .subcategory__all-articles svg {
  margin-top: 2px;
}
.page-post-category .subcategory-inner {
  margin-top: 3.4em;
}
.page-post-category .subcategory-inner.tag-page {
  padding-bottom: 8em;
}
.page-post-category .subcategory-inner__heading {
  font-weight: 700;
  color: var(--accent-black);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-post-category .subcategory-inner__sections > :first-child {
  padding-top: 0;
  margin-top: 21px;
}
.page-post-category .subcategory-inner__sections > * {
  padding: 5.6em 0;
}
.page-post-category .subcategory-inner__sections > *:nth-child(even) {
  background: var(--gray-lightest);
  padding: 6.4em 0;
}
.page-post-category .subcategory-inner__sections > .subcategory-inner__posts {
  background: white;
}
.page-post-category .subcategory-inner__tags {
  position: sticky;
  overflow: hidden;
  top: var(--navbar-height);
  background: white;
  z-index: 2;
  transition: top 0.3s ease;
}
.page-post-category .subcategory-inner .swiper:not(.swiper-initialized) .swiper-wrapper::before, .page-post-category .subcategory-inner .swiper:not(.swiper-initialized) .swiper-wrapper::after {
  display: none;
}
.page-post-category .subcategory-inner .swiper-button-next {
  display: none;
}
.page-post-category .subcategory-inner .swiper-button-next:not(.swiper-button-disabled) + .swiper-wrapper::before, .page-post-category .subcategory-inner .swiper-button-next:not(.swiper-button-disabled) + .swiper-wrapper::after {
  display: block;
}
.page-post-category .subcategory-inner__slider {
  display: flex;
  justify-content: flex-start;
  padding: 24px 0;
  position: relative;
}
.page-post-category .subcategory-inner__slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -24px;
  width: 200px;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  cursor: pointer;
  height: auto;
  margin: 0;
  z-index: 2;
  transition: opacity 0.2s ease;
  display: none;
}
.page-post-category .subcategory-inner__slider::after {
  content: url("./images/arrow-tags.svg");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 3;
  transition: opacity 0.2s ease;
  display: none;
  animation: 1s moveleft infinite;
}
@keyframes moveleft {
  0% {
    transform: translate(-5px, -50%);
  }
  50% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-5px, -50%);
  }
}
.page-post-category .subcategory-inner__slider.swiped::before, .page-post-category .subcategory-inner__slider.swiped::after {
  opacity: 0;
}
.page-post-category .subcategory-inner__tag-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}
.page-post-category .subcategory-inner__tag {
  border-radius: 22px;
  border: 1px solid #888;
  padding: 9px 1.5em 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1;
  margin-right: 24px;
  transition: border 0.5s ease, color 0.5s ease, background 0.5s ease;
  flex-shrink: 0;
  width: fit-content;
}
.page-post-category .subcategory-inner__tag:nth-last-of-type(1) {
  margin-right: auto;
}
.page-post-category .subcategory-inner__tag:nth-of-type(1) {
  margin-left: auto;
}
.page-post-category .subcategory-inner__tag:hover {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background: var(--main-color-lighter-2);
}
.page-post-category .subcategory-inner__tag.active {
  color: white;
  border: 1px solid var(--main-color);
  background: var(--main-color);
}
.page-post-category .subcategory-inner__featured {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
  grid-row-gap: 40px;
  margin-top: 24px;
}
.page-post-category .subcategory-inner__featured-heading {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-post-category .subcategory-inner__featured-heading.no-subcategories {
  margin-top: 21px;
}
.page-post-category .subcategory-inner__tag-section .subcategory__heading {
  color: var(--main-color);
}
.page-post-category .subcategory-inner__posts.no-subcategories {
  margin-top: 5.6em;
}
.page-post-category .subcategory-inner__posts.not-first-page {
  padding-top: 0;
  margin-top: 21px;
}

@media screen and (max-width: 1070px) {
  .page-search {
    padding-bottom: 4em;
  }
  .page-post-category .subcategory {
    padding: 4em 0;
  }
  .page-post-category .subcategory:nth-of-type(even) {
    padding: 4em 0;
  }
  .page-post-category .subcategory:nth-last-of-type(1) {
    padding-bottom: 6em;
  }
  .page-post-category .subcategory__posts {
    margin-top: 30px;
  }
  .page-post-category .subcategory-inner__sections > * {
    padding: 4em 0;
  }
  .page-post-category .subcategory-inner__sections > *:nth-child(even) {
    padding: 4em 0;
  }
  .page-post-category .subcategory-inner__featured {
    grid-row-gap: 24px;
  }
  .page-post-category .subcategory-inner__posts.no-subcategories {
    margin-top: 4em;
  }
  .page-post-category .subcategory-inner__tag {
    margin-right: 16px;
  }
}
@media screen and (max-width: 760px) {
  .page-post-category .subcategory__posts {
    grid-template-columns: 1fr 1fr;
  }
  .page-post-category .subcategory-inner__featured {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 451px) {
  .page-post-category .subcategory__all-articles.mobile {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .page-post-category .subcategory__posts {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .page-post-category .subcategory__all-articles {
    display: none;
  }
  .page-post-category .subcategory__all-articles.mobile {
    display: flex;
    margin: 24px auto 0;
  }
  .page-post-category .subcategory-inner {
    margin-top: 16px;
  }
  .page-post-category .subcategory-inner.tag-page {
    padding-bottom: 6.4em;
  }
  .page-post-category .subcategory-inner__featured {
    grid-template-columns: 1fr;
  }
  .page-post-category .subcategory-inner__tag-section .subcategory__posts {
    margin-top: 24px;
  }
  .page-post-category .subcategory-inner__tag {
    margin-right: 10px;
    padding: 9px 1.5em 11px;
  }
}
.global-newsletter-popup * {
  font-family: "acumin-pro", sans-serif;
}
.global-newsletter-popup .container {
  max-width: 824px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.674fr 1fr;
  grid-gap: 34px;
  background: var(--main-color-lighter-2);
}
.global-newsletter-popup .container__button {
  padding-top: 5px;
  padding-bottom: 7px;
}
.global-newsletter-popup .container__image {
  position: relative;
  padding-top: 123.27%;
}
.global-newsletter-popup .container__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}
.global-newsletter-popup .container__content {
  position: relative;
  padding-top: 60px;
  padding-right: 34px;
  padding-bottom: 40px;
  display: flex;
}
.global-newsletter-popup .container__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 77.5px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.global-newsletter-popup .container__close img {
  width: 12px;
}
.global-newsletter-popup .container__heading {
  padding-right: 50px;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-black);
}
.global-newsletter-popup .container__paragraph {
  color: var(--black);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 16px;
}
.global-newsletter-popup .container__form {
  border-radius: 6px;
  border: 1px solid var(--accent-green);
  background: white;
  display: flex;
  padding: 4px;
  margin-top: 24px;
  transition: border 0.5s ease;
}
.global-newsletter-popup .container__form.invalid {
  border: 1px solid var(--secondary-red);
}
.global-newsletter-popup .container__form.invalid .container__input::placeholder {
  color: var(--secondary-red) !important;
}
.global-newsletter-popup .container__invalid {
  margin-left: 14px;
}
.global-newsletter-popup .container__input {
  background: white;
  border: 0;
  outline: 0;
  min-height: 40px;
  flex-grow: 1;
  font-weight: 400;
  line-height: 1;
  padding: 0 10px;
  color: var(--accent-black);
}
.global-newsletter-popup .container__input::placeholder {
  color: #888;
  transition: color 0.5s ease;
}
.global-newsletter-popup .container__disclaimer {
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #888;
}
.global-newsletter-popup .container__after-submit {
  display: none;
  margin: auto;
  text-align: center;
}
.global-newsletter-popup .container__thankyou__image {
  margin: 0 auto;
}
.global-newsletter-popup .container__thankyou__heading {
  margin-top: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--accent-black);
}
.global-newsletter-popup .container__thankyou__paragraph {
  margin-top: 8px;
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  .global-newsletter-popup .container {
    display: block;
  }
  .global-newsletter-popup .container__image {
    display: none;
  }
  .global-newsletter-popup .container__content {
    padding: 60px 34px 40px;
  }
}
@media screen and (max-width: 630px) {
  .global-newsletter-popup .container__content {
    padding: 40px 24px 30px;
  }
  .global-newsletter-popup .container__close {
    width: 50px;
    height: 50px;
  }
  .global-newsletter-popup .container__heading {
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .global-newsletter-popup .container__form {
    flex-direction: column;
    border: 0;
    background: none;
    padding: 0;
  }
  .global-newsletter-popup .container__input {
    border: 1px solid var(--accent-green);
    border-radius: 6px;
  }
  .global-newsletter-popup .container__button {
    margin-top: 16px;
    width: 100%;
    min-height: 40px;
  }
}
.page-homepage {
  padding-bottom: 16px;
}
.page-homepage * {
  font-family: "acumin-pro", sans-serif;
}
.page-homepage__hero {
  padding-top: 40px;
  padding-bottom: 85px;
}
.page-homepage__hero .container__heading {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--accent-black);
}
.page-homepage__hero .container__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 24px;
  margin-top: 24px;
}
.page-homepage__hero .container__post:nth-of-type(1), .page-homepage__hero .container__post:nth-of-type(2) {
  grid-column: span 2;
  margin-bottom: 8px;
}
.page-homepage__hero .container__post:nth-of-type(1) .component-post__details, .page-homepage__hero .container__post:nth-of-type(2) .component-post__details {
  margin-top: 16px;
}
.page-homepage__hero .component-post__details {
  margin-top: 12px;
}
.page-homepage__seen {
  background: var(--gray-lightest);
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-homepage__seen .splide__arrows, .page-homepage__seen .splide__pagination {
  display: none;
}
.page-homepage__seen .splide__track {
  overflow: visible;
}
.page-homepage__seen .swiper-slide {
  width: 100%;
  height: 100%;
  display: block;
}
.page-homepage__seen .container__heading {
  text-align: center;
  color: var(--accent-black);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.page-homepage__seen .container__flex {
  display: flex;
  align-items: center;
  margin-top: 58px;
}
.page-homepage__seen .container__logo {
  object-fit: contain;
  max-height: 33px;
  max-width: none;
}
.page-homepage__categories {
  padding-top: 56px;
  padding-bottom: 64px;
}
.page-homepage__categories .container {
  display: grid;
  grid-template-columns: 294px 1fr;
  grid-gap: 25px;
}
.page-homepage__categories .container__heading {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-homepage__categories .container__paragraph {
  margin-top: 16px;
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1.5;
}
.page-homepage__categories .container__right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 24px;
}
.page-homepage__categories .container__link {
  border-radius: 4px;
  background: var(--gray-lighter);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px;
  text-align: center;
  transition: background 0.5s ease;
}
.page-homepage__categories .container__link:hover {
  background: var(--main-color-lighter-2);
}
.page-homepage__categories .container__link:hover .container__title {
  color: var(--main-color);
}
.page-homepage__categories .container__link:hover .container__icon.hover {
  opacity: 1;
}
.page-homepage__categories .container__link:hover .container__icon {
  opacity: 0;
}
.page-homepage__categories .container__title {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.5s ease;
}
.page-homepage__categories .container__icon {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  margin-top: 12px;
  transition: opacity 0.5s ease;
}
.page-homepage__categories .container__icon.hover {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.page-homepage__categories .container__icon-container {
  position: relative;
}
.page-homepage__category {
  background: var(--gray-lightest);
  padding: 56px 0;
}
.page-homepage__category.white {
  background: white;
}
.page-homepage__category .container__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page-homepage__category .container__heading {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-homepage__category .container__button {
  padding-top: 5px;
  padding-bottom: 7px;
}
.page-homepage__category .container__button svg {
  margin-left: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
.page-homepage__category .container__posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 24px;
  grid-gap: 24px;
}
.page-homepage__experts {
  padding: 56px 0;
}
.page-homepage__experts .container {
  display: grid;
  grid-template-columns: 294px 1fr;
  grid-gap: 25px;
}
.page-homepage__experts .container__heading {
  color: var(--accent-black);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.page-homepage__experts .container__paragraph {
  margin-top: 16px;
  font-weight: 400;
  color: var(--accent-black);
  line-height: 1.5;
}
.page-homepage__experts .container__button {
  margin-top: 24px;
}
.page-homepage__experts .container__button svg {
  margin-left: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
.page-homepage__experts .container__right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 24px;
}
.page-homepage__experts .container__expert {
  border-radius: 4px;
  background: var(--gray-lighter);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 28px;
  transition: background 0.5s ease;
}
.page-homepage__experts .container__expert:hover {
  background: var(--main-color-lighter-2);
}
.page-homepage__experts .container__expert:hover .container__expert__read-more svg {
  margin-left: 12px;
}
.page-homepage__experts .container__expert__image {
  flex-shrink: 0;
  margin-right: 16px;
}
.page-homepage__experts .container__expert__image img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  object-position: center center;
  object-fit: cover;
}
.page-homepage__experts .container__expert__name {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.2;
}
.page-homepage__experts .container__expert__read-more {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 6px;
}
.page-homepage__experts .container__expert__read-more svg {
  flex-shrink: 0;
  margin-left: 8px;
  margin-top: 2px;
  transition: margin 0.5s ease;
}
.page-homepage__newsletter {
  padding-top: 56px;
}
.page-homepage__newsletter .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  background: var(--main-color-lighter-2);
  min-height: 305px;
}
.page-homepage__newsletter .container__left {
  position: relative;
  padding-top: 49.83%;
}
.page-homepage__newsletter .container__left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}
.page-homepage__newsletter .container__right {
  align-self: center;
  padding-right: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}
.page-homepage__newsletter .container__heading {
  color: var(--accent-black);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-homepage__newsletter .container__paragraph {
  margin-top: 16px;
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1.5;
}
.page-homepage__newsletter .container__form {
  display: flex;
  border-radius: 6px;
  border: 1px solid var(--accent-green);
  background: white;
  padding: 4px;
  margin-top: 24px;
  max-width: 494px;
}
.page-homepage__newsletter .container__input {
  flex-grow: 1;
  background: white;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--accent-black);
  font-weight: 400;
  min-height: 40px;
}
.page-homepage__newsletter .container__input::placeholder {
  color: #888;
}
.page-homepage__newsletter .container__button {
  flex-shrink: 0;
  padding-top: 5px;
  padding-bottom: 7px;
  min-height: 40px;
}
.page-homepage__newsletter .container__disclaimer {
  margin-top: 16px;
  color: #888;
  font-weight: 400;
  line-height: 1.5;
}
.page-homepage__newsletter .container__content {
  display: flex;
}
.page-homepage__newsletter .container__after-submit {
  display: none;
  margin: auto;
  text-align: center;
}
.page-homepage__newsletter .container__thankyou__image {
  margin: 0 auto;
}
.page-homepage__newsletter .container__thankyou__heading {
  margin-top: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--accent-black);
}
.page-homepage__newsletter .container__thankyou__paragraph {
  margin-top: 8px;
  color: var(--accent-black);
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1150px) {
  .page-homepage__experts .container__expert {
    padding: 26px 14px;
  }
  .page-homepage__experts .container__expert__image img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1071px) {
  .page-homepage__experts .container__mobile-button {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  .page-homepage__hero .container__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-homepage__hero .container__post:nth-of-type(1), .page-homepage__hero .container__post:nth-of-type(2) {
    grid-column: auto;
    margin-bottom: 16px;
  }
  .page-homepage__hero .container__post:nth-of-type(1) .component-post__details > *, .page-homepage__hero .container__post:nth-of-type(2) .component-post__details > * {
    display: inline-block;
  }
  .page-homepage__hero .container__post:nth-of-type(1) .reading-time, .page-homepage__hero .container__post:nth-of-type(2) .reading-time {
    margin-top: 0;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 16px;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) .component-post__image {
    padding-top: 100%;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) .component-post__details {
    margin-top: 0;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) .component-post__category {
    margin-top: 2px;
  }
  .page-homepage__seen {
    padding-top: 52px;
    padding-bottom: 74px;
  }
  .page-homepage__seen .container__logo {
    max-height: 22px;
  }
  .page-homepage__seen .container__flex {
    margin-top: 43px;
  }
  .page-homepage__categories {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  .page-homepage__categories .container {
    grid-template-columns: 1fr;
  }
  .page-homepage__categories .container__link {
    padding: 24px;
  }
  .page-homepage__categories .container__left {
    text-align: center;
    max-width: 484px;
    margin: 0 auto;
  }
  .page-homepage__categories .container__icon {
    max-height: 56px;
  }
  .page-homepage__category {
    padding: 40px 0;
  }
  .page-homepage__experts {
    padding: 40px 0;
  }
  .page-homepage__experts .container {
    grid-template-columns: 1fr;
  }
  .page-homepage__experts .container__left {
    text-align: center;
    max-width: 484px;
    margin: 0 auto;
  }
  .page-homepage__experts .container__button {
    display: none;
  }
  .page-homepage__experts .container__mobile-button .container__button {
    display: flex;
    margin: 24px auto 0;
  }
  .page-homepage__experts .container__expert {
    justify-content: flex-start;
    padding: 32px 24px;
  }
  .page-homepage__newsletter {
    padding-top: 0;
  }
  .page-homepage__newsletter .container {
    grid-template-columns: 230px 1fr;
    grid-gap: 24px;
  }
  .page-homepage__newsletter .container__left {
    padding-top: 133%;
  }
  .page-homepage__newsletter .container__right {
    padding-right: 40px;
  }
}
@media screen and (max-width: 850px) {
  .page-homepage__experts .container__right {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 760px) {
  .page-homepage__category .container__posts {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .page-homepage__newsletter .container {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-homepage__newsletter .container__left {
    display: none;
  }
  .page-homepage__newsletter .container__right {
    padding: 36px 0;
  }
  .page-homepage__newsletter .container__form {
    max-width: none;
  }
}
@media screen and (max-width: 650px) {
  .page-homepage__categories .container__right {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 551px) {
  .page-homepage__category .container__button.mobile {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .page-homepage__hero {
    padding-top: 24px;
    padding-bottom: 50px;
  }
  .page-homepage__hero .container__grid {
    grid-template-columns: 1fr;
  }
  .page-homepage__hero .container__post:nth-of-type(1), .page-homepage__hero .container__post:nth-of-type(2) {
    margin-bottom: 0;
  }
  .page-homepage__hero .container__post:nth-of-type(1) .component-post__details, .page-homepage__hero .container__post:nth-of-type(2) .component-post__details {
    margin-top: 10px;
  }
  .page-homepage__hero .container__post:nth-of-type(1) .component-post__details > *, .page-homepage__hero .container__post:nth-of-type(2) .component-post__details > * {
    font-size: 12px;
  }
  .page-homepage__hero .container__post:nth-of-type(1) .component-post__category, .page-homepage__hero .container__post:nth-of-type(2) .component-post__category {
    margin-top: 2px;
    font-size: 14px;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) {
    grid-template-columns: 112px 1fr;
    grid-gap: 8px;
  }
  .page-homepage__seen {
    padding-top: 38px;
    padding-bottom: 60px;
  }
  .page-homepage__seen .container__flex {
    margin-top: 40px;
  }
  .page-homepage__categories {
    padding-bottom: 40px;
  }
  .page-homepage__categories .container__paragraph {
    margin-top: 12px;
  }
  .page-homepage__categories .container__link {
    padding: 14px;
  }
  .page-homepage__categories .container__right {
    grid-gap: 16px;
  }
  .page-homepage__categories .container__title {
    font-size: 16px;
  }
  .page-homepage__categories .container__icon {
    max-height: 40px;
    max-width: 50px;
    margin-top: 10px;
  }
  .page-homepage__category .container__posts {
    grid-template-columns: 1fr;
  }
  .page-homepage__category .container__posts .component-post__details > * {
    display: inline-block;
  }
  .page-homepage__category .container__posts .component-post__details .reading-time {
    display: inline-block;
    margin-top: 0;
  }
  .page-homepage__category .container__button {
    display: none;
  }
  .page-homepage__category .container__button.mobile {
    display: flex;
    margin: 24px auto 0;
  }
  .page-homepage__experts .container__right {
    grid-template-columns: 1fr;
  }
  .page-homepage__experts .container__expert {
    padding: 18px 24px;
  }
  .page-homepage__experts .container__expert__name {
    font-size: 16px;
  }
  .page-homepage__experts .container__expert__read-more {
    margin-top: 4px;
  }
}
@media screen and (max-width: 500px) {
  .page-homepage__newsletter .container__form {
    border: 0;
    display: block;
    background: none;
    padding: 0;
  }
  .page-homepage__newsletter .container__input {
    width: 100%;
    border: 1px solid var(--accent-green);
    border-radius: 4px;
  }
  .page-homepage__newsletter .container__button {
    margin-top: 16px;
    padding-top: 7px;
    padding-bottom: 9px;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .page-homepage__hero .container__post:nth-of-type(1) .component-post__title, .page-homepage__hero .container__post:nth-of-type(2) .component-post__title {
    font-size: 18px;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) .component-post__title {
    font-size: 16px;
  }
  .page-homepage__hero .container__post:not(.page-homepage__hero .container__post:nth-of-type(1)):not(.page-homepage__hero .container__post:nth-of-type(2)) .dot {
    display: none;
  }
}
.new-wrapper {
  max-width: 1248px;
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

main {
  overflow-x: visible !important;
}

@media screen and (max-width: 1350px) {
  .new-wrapper {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1150px) {
  .new-wrapper {
    max-width: 1040px;
  }
}
@media screen and (max-width: 1070px) {
  .new-wrapper {
    padding: 0 48px;
    max-width: none;
  }
}
@media screen and (max-width: 700px) {
  .new-wrapper {
    padding: 0 24px;
  }
}

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