/*!
Theme Name: Mediacenter2025
Author: PLUSONE
Version: 1.45
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mediacenter
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&family=Oswald:wght@700&display=swap");
@font-face {
  font-display: swap;
  font-family: "Spaceland";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/spaceland-ten.woff") format("woff2");
}
/*md

# @function rem

Convert px values into rem and return the value. Can accept more than one value

```scss_example
.b-block {
    padding: rem(13 24 12);
}
```
*/
/*md

# @mixin transition

Mixin for different transitions properties

Parameters:

- @param `$tr-property` - transition property name (default: all)
- @param `$tr-duration` - transition duration time (default: 0.15s)
- @param `$tr-function` - transition function (default: ease-in)
- @param `$tr-delay` - transition dealy before start (default: 0s)

```scss_example
@include transition(
    all,
    0.15s,
    ease-in,
    0s
);
```
*/
.typography-primary {
  font: 500 1.125rem "Noto Sans", sans-serif;
  line-height: 1;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-primary {
    font-size: 1.5rem;
  }
}

.typography-secondary {
  font: normal 2.5rem "Spaceland", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .typography-secondary {
    font-size: 5rem;
  }
}

.typography-third {
  font: 500 2.5rem "Spaceland", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .typography-third {
    font-size: 7.5rem;
  }
}

.typography-fourth {
  font: 500 0.75rem "Noto Sans", sans-serif;
  line-height: 1;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-fourth {
    font-size: 1.25rem;
  }
}

.typography-fifth {
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.1;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-fifth {
    font-size: 1.375rem;
  }
}

.typography-sixth {
  font: 500 0.75rem "Oswald", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .typography-sixth {
    font-size: 1.125rem;
  }
}

.typography-seventh {
  font: 500 0.75rem "Oswald", sans-serif;
  line-height: 1;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-seventh {
    font-size: 1rem;
  }
}

.typography-eighth {
  font: 500 3.125rem "Spaceland", sans-serif;
  line-height: 0.75;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-eighth {
    font-size: 6.25rem;
  }
}

.typography-nineth {
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-nineth {
    font-size: 1.875rem;
  }
}

.typography-tenth {
  font: normal 2.5rem "Spaceland", sans-serif;
  line-height: 0.9;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .typography-tenth {
    font-size: 4.6875rem;
  }
}

html,
body {
  color: #1b1d3c;
  font-family: "Noto Sans", sans-serif;
  font-size: 4.25vw;
  height: 100%;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  html,
  body {
    font-size: 1.05vw;
  }
}
@media (min-width: 1200px) {
  html,
  body {
    font-size: 0.85vw;
  }
}

* {
  box-sizing: border-box;
}

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

*:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0 0 1em 0;
}

ul {
  padding-left: 1em;
}

embed,
iframe,
object {
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 1em 0;
}

b,
strong {
  font-weight: bold;
}

h1 {
  font: normal 2.5rem "Spaceland", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #1b1d3c;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  h1 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  h1 {
    margin-bottom: 2.5rem;
  }
}

h2 {
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .hidden-to-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hidden-from-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .hidden-to-desktop {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .hidden-from-desktop {
    display: none !important;
  }
}

.container {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 93.75%;
  }
}
.container.container_grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
}

.header {
  position: relative;
  background: #1b1d3c;
  padding: 0.625rem 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .header {
    padding: 1.25rem 0;
  }
}
.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 998;
}
.header .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header .container {
    justify-content: space-between;
  }
}
.header #site-navigation {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .header #site-navigation {
    width: 100%;
  }
}
.header #site-navigation span.menu {
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-right: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .header #site-navigation span.menu {
    display: none;
  }
}
.header #site-navigation .menu-toggle {
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  margin-left: 0.3125rem;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 1025px) {
  .header #site-navigation .menu-toggle {
    display: none;
  }
}
.header #site-navigation .menu-toggle span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}
.header #site-navigation .menu-toggle span:nth-child(2) {
  margin: 0.3125rem 0;
}
@media screen and (max-width: 1024px) {
  .header #site-navigation .nav-menu-container {
    display: none;
    width: 100%;
    height: calc(100vh - 2.72rem);
    height: calc(var(--vh, 1vh) * 100 - 2.72rem);
    position: absolute;
    left: 0;
    top: 100%;
    color: #1b1d3c;
    background-color: #ffffff;
    padding: 1rem 1.2rem;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 999;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .header #site-navigation .nav-menu-container {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .header #site-navigation .nav-menu-container {
    width: 100%;
  }
}
.header #site-navigation .nav-menu-container .menu-container-inner {
  display: flex;
  margin: auto;
  flex-direction: column;
  align-items: center;
}
@media screen and (orientation: portrait) {
  .header #site-navigation .nav-menu-container .menu-container-inner {
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .header #site-navigation .nav-menu-container .menu-container-inner {
    flex-direction: row;
  }
  .header #site-navigation .nav-menu-container .menu-container-inner .social {
    display: flex;
    align-items: center;
    gap: 0 1.25rem;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header #site-navigation .nav-menu-container .social {
    padding: 0.625rem 0 0 0;
    margin-top: 0.9375rem;
    text-align: center;
    border-top: 1px solid #1b1d3c;
  }
  .header #site-navigation .nav-menu-container .social .follow-us {
    font-weight: 700;
    font-size: 0.6875rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .header #site-navigation .nav-menu-container .social .social-menu ul li {
    margin: 0 0.3125rem;
  }
  .header #site-navigation .nav-menu-container .social .social-menu ul li a {
    filter: invert(1);
  }
  .header #site-navigation .nav-menu-container .social .languages-list {
    padding-bottom: 0.625rem;
    margin-bottom: 0.9375rem;
    border-bottom: 1px solid #1b1d3c;
  }
  .header #site-navigation .nav-menu-container .social .languages-list li {
    color: #1b1d3c;
    font-size: 1.125rem;
  }
}
.header #site-navigation .close-menu {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 2.5rem;
  right: 1.3rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header #site-navigation .close-menu {
    top: 2.8rem;
    right: 2.4rem;
  }
}
.header #site-navigation.toggled .nav-menu-container {
  display: flex;
}
.header #site-navigation.toggled .menu-toggle span:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header #site-navigation.toggled .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header #site-navigation.toggled .menu-toggle span:nth-child(3) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header .languages-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .header .languages-list {
    margin-left: 0.625rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .languages-list li {
    font-size: 1.25rem;
  }
}
.header .languages-list li:not(:first-child) {
  margin-left: 0.5rem;
}
.header .languages-list li a {
  transition: all 0.15s ease-in 0s;
  cursor: pointer;
  font: 700 1.125rem "Oswald", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
.header .languages-list li a:link {
  color: #1b1d3c;
  text-decoration: none;
}
.header .languages-list li a:visited {
  color: #1b1d3c;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .header .languages-list li a:hover {
    color: #1b1d3c;
    text-decoration: none;
  }
}
.header .languages-list li a:active {
  color: #1b1d3c;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .header .languages-list li a {
    transition: all 0.15s ease-in 0s;
    cursor: pointer;
  }
  .header .languages-list li a:link {
    color: #ffffff;
    text-decoration: none;
  }
  .header .languages-list li a:visited {
    color: #ffffff;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) and (min-width: 992px) {
  .header .languages-list li a:hover {
    color: #ffffff;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) {
  .header .languages-list li a:active {
    color: #ffffff;
    text-decoration: none;
  }
}
.header .languages-list li.current-lang a {
  transition: all 0.15s ease-in 0s;
  cursor: pointer;
}
.header .languages-list li.current-lang a:link {
  color: #f7d135;
  text-decoration: none;
}
.header .languages-list li.current-lang a:visited {
  color: #f7d135;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .header .languages-list li.current-lang a:hover {
    color: #f7d135;
    text-decoration: none;
  }
}
.header .languages-list li.current-lang a:active {
  color: #f7d135;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .header .languages-list li.current-lang a {
    transition: all 0.15s ease-in 0s;
    cursor: pointer;
  }
  .header .languages-list li.current-lang a:link {
    color: #f7d135;
    text-decoration: none;
  }
  .header .languages-list li.current-lang a:visited {
    color: #f7d135;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) and (min-width: 992px) {
  .header .languages-list li.current-lang a:hover {
    color: #f7d135;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) {
  .header .languages-list li.current-lang a:active {
    color: #f7d135;
    text-decoration: none;
  }
}
.header .show-search {
  padding: 0.3125rem;
  margin-left: 1.25rem;
  cursor: pointer;
  color: #ffffff;
}
.header .show-search svg {
  display: block;
  width: 1.0625rem;
  height: auto;
}
.header .search-form-wrap {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 87%;
  height: 100%;
  padding: 1.25rem;
  background: #282a57;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .header .search-form-wrap {
    width: auto;
    height: auto;
    left: initial;
    top: 100%;
    right: 7.5rem;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}
.header .search-form-wrap.visible {
  display: block;
}
.header .search-form-wrap form {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .search-form-wrap input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  -webkit-appearance: none;
}
@media screen and (max-width: 1024px) {
  .header .search-form-wrap input {
    color: #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  .header .search-form-wrap input {
    font-size: 1.375rem;
  }
}
.header .search-form-wrap input ::-webkit-input-placeholder {
  color: #979797;
  opacity: 0.5;
}
@media screen and (min-width: 1025px) {
  .header .search-form-wrap input ::-webkit-input-placeholder {
    opacity: 0.3;
  }
}
.header .search-form-wrap button {
  border: none;
  background: transparent;
  padding: 0.3125rem;
  margin-right: -0.3125rem;
}
@media screen and (max-width: 1024px) {
  .header .search-form-wrap button {
    color: #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  .header .search-form-wrap button {
    padding: 0.625rem;
    margin-right: -0.625rem;
  }
}
.header .search-form-wrap button svg {
  display: block;
  width: 1.125rem;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header .search-form-wrap button svg {
    width: 1.4375rem;
  }
}
.header.toggled-in .news-open {
  opacity: 0;
}
.header.toggled-in .search-form-wrap {
  display: block;
}

.header__logo {
  display: block;
  margin-right: auto;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 4.375rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__logo {
    flex-shrink: 0;
    margin: -0.3125rem 0 0;
    width: 6.4375rem;
  }
}

.header__logo-image {
  height: auto;
  width: 100%;
}

.header__main-menu {
  flex-shrink: 0;
}
.header__main-menu #primary-menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .header__main-menu #primary-menu {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 3.75rem 0 2.5rem;
    width: 100%;
  }
}
.header__main-menu ul.nav-menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .header__main-menu ul.nav-menu {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 3.75rem 0 2.5rem;
    width: 100%;
  }
}
.header__main-menu ul.sub-menu {
  display: none;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .header__main-menu ul.sub-menu {
    margin: 0.625rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .header__main-menu ul.sub-menu {
    background: #1b1d3c;
    padding: 0.75rem;
    left: -0.625rem;
    position: absolute;
    top: 100%;
    margin: 0;
    min-width: 11.25rem;
  }
}
.header__main-menu ul.sub-menu li {
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .header__main-menu ul.sub-menu li {
    margin: 0;
    text-align: left;
    padding: 0.3125rem;
  }
}
.header__main-menu li {
  margin: 0.625rem 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .header__main-menu li {
    flex: none;
    margin: 0 1.0625rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .header__main-menu li:last-child {
    margin-right: 0;
  }
}
.header__main-menu li.current-menu-item a {
  color: #f7d135;
}
.header__main-menu li.menu-item-has-children {
  position: relative;
}
.header__main-menu li.menu-item-has-children:hover ul.sub-menu, .header__main-menu li.menu-item-has-children.focus ul.sub-menu {
  display: block;
}
.header__main-menu li.menu-item-has-children:hover > a::before, .header__main-menu li.menu-item-has-children.focus > a::before {
  transform: translateY(-50%) rotate(180deg);
}
.header__main-menu li.menu-item-has-children > a {
  position: relative;
  margin-right: 1.375rem;
}
.header__main-menu li.menu-item-has-children > a::before {
  content: "";
  width: 0.8125rem;
  height: 0.4375rem;
  background: url("images/arrow.svg") no-repeat center;
  background-size: contain;
  transition: all 0.3s;
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .header__main-menu li.menu-item-has-children > a::before {
    background: url("images/arrow_white.svg") no-repeat center;
    background-size: contain;
  }
}
.header__main-menu a {
  transition: all 0.15s ease-in 0s;
  color: #1b1d3c;
  font-family: "Oswald", sans-serif;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .header__main-menu a {
    font-size: 0.875rem;
    color: #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  .header__main-menu a::after {
    transition: all 0.15s ease-in 0s;
    background: currentColor;
    content: "";
    height: 0.0625rem;
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
  }
}
@media screen and (min-width: 1025px) {
  .header__main-menu a:hover {
    color: #f7d135;
  }
}
@media screen and (min-width: 1025px) {
  .header__main-menu a:hover::after {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header__news-btn.btn-primary_small-xs-sm {
    margin: 0 1.125rem 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .social-wrap {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .social-wrap {
    margin-left: auto;
  }
}
.social-wrap > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-wrap > div:nth-child(n+3) {
  display: none;
}
@media screen and (max-width: 1024px) {
  .social-wrap > div:not(:last-child) {
    margin-bottom: 0.3125rem;
    border-bottom: 1px solid #1b1d3c;
    padding-bottom: 0.3125rem;
  }
  .social-wrap > div:not(:last-child) .social-menu ul {
    min-width: 10rem;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .social-wrap > div {
    position: relative;
    display: inline-block;
    margin-right: 1.25rem;
  }
  .social-wrap > div .name {
    display: inline;
    margin: 0;
  }
  .social-wrap > div:after {
    content: "";
    display: inline-block;
    width: 0.8125rem;
    height: 0.4375rem;
    margin-left: 0.3125rem;
    background: url("images/arrow_yellow.svg") no-repeat center;
    background-size: contain;
    transition: all 0.3s;
  }
  .social-wrap > div .social-menu {
    position: absolute;
    display: none;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    padding: 0.625rem 1.25rem;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .social-wrap > div .social-menu ul {
    min-width: initial;
  }
  .social-wrap > div .social-menu ul li a {
    filter: invert(1);
  }
  .social-wrap > div:hover:after {
    transform: rotate(180deg);
  }
  .social-wrap > div:hover .social-menu {
    display: block;
    z-index: 10;
  }
}
.social-wrap .name {
  font: 700 1rem "Oswald", sans-serif;
  display: block;
  text-transform: uppercase;
  color: #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .social-wrap .name {
    font-size: 1rem;
    margin: 0 1rem 0 0;
    color: #f7d135;
  }
}

.social-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .social-menu ul {
    min-width: 12.3125rem;
    justify-content: flex-start;
  }
}
.social-menu ul li:not(:last-child) {
  margin-right: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .social-menu ul li:not(:last-child) {
    margin-right: 0.625rem;
  }
}
.social-menu ul li a {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  font-size: 0;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .social-menu ul li a {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.social-menu ul li.youtube a {
  background-image: url("images/youtube.svg");
}
.social-menu ul li.twitter a {
  background-image: url("images/twitter.svg");
}
.social-menu ul li.telegram a {
  background-image: url("images/telegram.svg");
}
.social-menu ul li.facebook a {
  background-image: url("images/facebook.svg");
}
.social-menu ul li.whatsapp a {
  background-image: url("images/whatsapp.svg");
}

.btn-primary {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  transition: all 0.15s ease-in 0s;
  align-items: center;
  background: #f7d135;
  color: #1b1d3c;
  display: inline-flex;
  gap: 0.625rem;
  font: 700 0.875rem "Oswald", sans-serif;
  justify-content: center;
  padding: 0.8125rem 1.5625rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-primary:active, .btn-primary:hover {
  outline: none;
}
@media screen and (min-width: 1025px) {
  .btn-primary:hover {
    background: #1b1d3c;
    color: #f7d135;
    outline: 0.0625rem solid #f7d135;
  }
}
.btn-primary svg,
.btn-primary img {
  height: 1.875rem;
  width: auto;
}

@media screen and (max-width: 767px) {
  .btn-primary_small-xs-sm {
    padding: 0.625rem 1.25rem;
  }
}

.btns-block {
  justify-content: center;
  display: flex;
  gap: 0.9375rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .btns-block {
    gap: 2.5rem;
  }
}

.banner {
  position: relative;
}

.banner__img {
  width: 100%;
}

.banner__content {
  color: var(--banner-content-color-mdc, inherit);
  width: var(--banner-content-width-mdc, 100%);
}
@media screen and (min-width: 1025px) {
  .banner__content {
    color: var(--banner-content-color-ddc, inherit);
    width: var(--banner-content-width-ddc, 100%);
  }
}
.banner__content.banner__content-container {
  padding: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content-container {
    padding: 0 3.125%;
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_position-over-mdc {
    position: absolute;
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_vertical-top-mdc {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_vertical-middle-mdc {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_vertical-bottom-mdc {
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_horizontal-left-mdc {
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_horizontal-center-mdc {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_horizontal-center-mdc.banner__content_vertical-middle-mdc {
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .banner__content.banner__content_horizontal-right-mdc {
    right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_position-over-ddc {
    position: absolute;
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_vertical-top-ddc {
    top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_vertical-middle-ddc {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_vertical-bottom-ddc {
    bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_horizontal-left-ddc {
    left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_horizontal-center-ddc {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_horizontal-center-ddc.banner__content_vertical-middle-ddc {
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1025px) {
  .banner__content.banner__content_horizontal-right-ddc {
    right: 0;
  }
}
.banner__content h1,
.banner__content h2 {
  font: 500 3.125rem "Spaceland", sans-serif;
  line-height: 0.75;
  text-transform: none;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .banner__content h1,
  .banner__content h2 {
    font-size: 6.25rem;
  }
}

.content-section {
  background: var(--section-bg, transparent);
  margin: var(--section-margin-mdc, 0);
  overflow: var(--section-overflow-mdc);
  padding: var(--section-padding-mdc, 2.5rem 0);
}
@media screen and (min-width: 1025px) {
  .content-section {
    margin: var(--section-margin-ddc, 0);
    overflow: var(--section-overflow-ddc);
    padding: var(--section-padding-ddc, 5rem 0);
  }
}

.content-section__title h1,
.content-section__title h2 {
  font: normal 2.5rem "Spaceland", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  color: var(--section-title-color-mdc, #1b1d3c);
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .content-section__title h1,
  .content-section__title h2 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .content-section__title h1,
  .content-section__title h2 {
    color: var(--section-title-color-ddc, var(--section-title-color-mdc, #1b1d3c));
  }
}

.content-section__subtitle p {
  font: 500 1rem "Noto Sans", sans-serif;
  line-height: 1.25;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .content-section__subtitle p {
    font-size: 1.9375rem;
  }
}

.content-section__content {
  display: grid;
  gap: var(--section-gap-mdc, 1.25rem);
  grid-template-columns: var(--section-gtc-mdc, minmax(0, 1fr));
  color: var(--section-content-color-mdc, #1b1d3c);
}
@media screen and (min-width: 1025px) {
  .content-section__content {
    color: var(--section-content-color-ddc, var(--section-content-color-mdc, #1b1d3c));
    gap: var(--section-gap-ddc, 1.875rem);
    grid-template-columns: var(--section-gtc-ddc, minmax(0, 1fr));
  }
}
.content-section__content.content-section__content-flex {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.content-section__title + .content-section__content {
  margin-top: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .content-section__title + .content-section__content {
    margin-top: 2.5rem;
  }
}

.content-section_live .news-tile a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxIiBoZWlnaHQ9IjYxIiB2aWV3Qm94PSIwIDAgMTAxIDYxIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KPHJlY3Qgd2lkdGg9IjEwMC41ODQiIGhlaWdodD0iNjAuOTE2OCIgcng9IjE1LjU4MzQiIGZpbGw9IiNGRjAwMDAiLz4NCjxwYXRoIGQ9Ik02NS4xNjY4IDI5Ljc0OTlMNDEuNzkxOCA0My4yNDU1TDQxLjc5MTggMTYuMjU0M0w2NS4xNjY4IDI5Ljc0OTlaIiBmaWxsPSJ3aGl0ZSIvPg0KPC9zdmc+DQo=") no-repeat center;
  background-size: cover;
  content: "";
  width: 6.3125rem;
  height: 3.8125rem;
}

.content-rows {
  display: grid;
  gap: 0.9375rem 0;
  grid-template-columns: minmax(0, 1fr);
  margin: 1.875rem 0;
}
@media screen and (min-width: 1025px) {
  .content-rows {
    gap: 3.75rem 0;
    margin: 6.25rem 0;
  }
}
.content-section + .content-rows {
  margin-top: 0;
}

.content-rows__item {
  display: grid;
}
@media screen and (min-width: 1025px) {
  .content-rows__item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1024px) {
  .content-rows__thumb {
    order: 1;
  }
}
.content-rows__thumb img {
  width: 100%;
}

.content-rows__content {
  background: #ffffff;
  box-shadow: 0 0 5px #c4c4c4;
  padding: 0.9375rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem 0;
}
@media screen and (min-width: 1025px) {
  .content-rows__content {
    padding: 2.1875rem;
  }
}
@media screen and (max-width: 1024px) {
  .content-rows__content {
    order: 2;
  }
}

.content-rows__date {
  color: #c4c4c4;
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .content-rows__date {
    font-size: 1.875rem;
  }
}

.content-rows__title {
  font: normal 2.5rem "Spaceland", sans-serif;
  line-height: 0.9;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .content-rows__title {
    font-size: 4.6875rem;
  }
}

.content-rows__text {
  font: 500 1.125rem "Noto Sans", sans-serif;
  line-height: 1;
  text-transform: none;
  line-height: 1.25;
  margin-top: auto;
}
@media screen and (min-width: 1025px) {
  .content-rows__text {
    font-size: 1.5rem;
  }
}

.short-news {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .short-news .short-news-wrap {
    padding: 1.25rem 3.0625rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    overflow: auto;
  }
}
.short-news .short-news-wrap::-webkit-scrollbar {
  width: 11px;
  /* width of the entire scrollbar */
}
.short-news .short-news-wrap::-webkit-scrollbar-track {
  background: transparent;
  border-left: 1px solid #c4c4c4;
  /* color of the tracking area */
}
.short-news .short-news-wrap::-webkit-scrollbar-thumb {
  background: #1b1d3c;
  /* color of the scroll thumb */
}
.short-news .more {
  position: absolute;
  display: flex;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 1.875rem 1.25rem 0.625rem 1.25rem;
  background: linear-gradient(179.37deg, rgba(255, 255, 255, 0) 0.54%, #ffffff 60.53%);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .short-news .more {
    padding: 6.25rem 3.0625rem 1.25rem 3.0625rem;
  }
}
.short-news .more a {
  width: 7.5rem;
  font-weight: 700;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .short-news .more a {
    width: 13.75rem;
  }
}

.hero-link {
  transition: all 0.15s ease-in 0s;
  transition: all 0.15s ease-in 0s;
  cursor: pointer;
  aspect-ratio: 640/320;
  background: var(--link-bg, #ffffff);
  display: block;
  position: relative;
  opacity: 1;
}
.hero-link:link {
  color: var(--link-color, #1b1d3c);
  text-decoration: none;
}
.hero-link:visited {
  color: var(--link-color, #1b1d3c);
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .hero-link:hover {
    color: var(--link-color, #1b1d3c);
    text-decoration: none;
  }
}
.hero-link:active {
  color: var(--link-color, #1b1d3c);
  text-decoration: none;
}
.hero-link:hover {
  opacity: 0.85;
}

.hero-link__title {
  font: normal 2.5rem "Spaceland", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  left: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .hero-link__title {
    font-size: 5rem;
  }
}

.info-number {
  background: #ffffff;
  box-shadow: 0 0 5px #c4c4c4;
  padding: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .info-number {
    padding: 4.0625rem 3.75rem 3.125rem;
  }
}

.info-number__title {
  font: 500 2.5rem "Spaceland", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 0.125rem solid #f7d135;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 1025px) {
  .info-number__title {
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .info-number__title {
    border-bottom: 0.3125rem solid #f7d135;
    padding-bottom: 0.75rem;
    margin-bottom: 0.875rem;
  }
}

.info-number__description {
  font: 500 0.75rem "Noto Sans", sans-serif;
  line-height: 1;
  text-transform: none;
  text-transform: lowercase;
}
@media screen and (min-width: 1025px) {
  .info-number__description {
    font-size: 1.25rem;
  }
}

.swiper {
  --swiper-theme-color: #1b1d3c;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  transition: all 0.15s ease-in 0s;
  background: #ffffff;
  height: 1.875rem !important;
  margin-top: 0 !important;
  transform: translateY(-50%);
  width: 1.875rem !important;
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 2.75rem !important;
    width: 2.75rem !important;
  }
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev:hover::after,
  .swiper-button-next:hover::after {
    color: #56c2e8;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  transition: all 0.15s ease-in 0s;
  color: #1b1d3c;
  font-size: 0.875rem !important;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.5rem !important;
  }
}

.swiper-button-prev {
  left: 1.25rem !important;
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev {
    left: -6.25rem !important;
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) {
  .swiper:hover .swiper-button-prev {
    left: 1.25rem !important;
    opacity: 1;
  }
}
.swiper:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5 !important;
}

.swiper-button-next {
  right: 1.25rem !important;
}
@media screen and (min-width: 1025px) {
  .swiper-button-next {
    right: -6.25rem !important;
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) {
  .swiper:hover .swiper-button-next {
    right: 1.25rem !important;
    opacity: 1;
  }
}
.swiper:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.5 !important;
}

.news-list__wrapper {
  background: #ffffff;
}
@media screen and (min-width: 1025px) {
  .news-list__wrapper {
    box-shadow: 0 0 0.0625rem #c4c4c4;
    max-height: 51.25rem;
    overflow-y: auto;
  }
  .news-list__wrapper::-webkit-scrollbar {
    height: auto;
    width: 0.625rem;
  }
  .news-list__wrapper::-webkit-scrollbar-track {
    background: #ffffff;
  }
  .news-list__wrapper::-webkit-scrollbar-thumb {
    background: #1b1d3c;
    border-radius: 0.625rem;
  }
}

.news-list__more {
  display: flex;
  justify-content: center;
  padding-top: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .news-list__more {
    padding-top: 1.875rem;
  }
}

.news-tile {
  background: #ffffff;
  position: relative;
  margin: var(--margin-mdc, 0);
}
@media screen and (min-width: 1025px) {
  .news-tile {
    margin: var(--margin-ddc, 0);
  }
}
.news-tile.news-tile_boxed {
  box-shadow: 0 0 0.0625rem #c4c4c4;
}
.news-tile.news-tile_centered {
  text-align: center;
}
.swiper .news-tile {
  height: 100%;
}
.news-list .news-tile {
  transition: all 0.15s ease-in 0s;
  display: grid;
  gap: 0.625rem;
  padding: 0.625rem 0;
}
@media screen and (max-width: 1024px) {
  .news-list .news-tile {
    border-top: 0.0625rem solid #eeeeee;
  }
}
@media screen and (min-width: 1025px) {
  .news-list .news-tile {
    gap: 0.9375rem;
    padding: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .news-list .news-tile:not(:first-child) {
    border-top: 0.0625rem solid #eeeeee;
  }
}
@media screen and (max-width: 1024px) {
  .news-list .news-tile:last-child {
    border-bottom: 0.0625rem solid #eeeeee;
  }
}
.news-list .news-tile:hover {
  background: #EDF6FF;
}

.news-tile__thumbnail img {
  width: 100%;
}

.news-tile__img {
  width: 100%;
}

.news-tile__content {
  display: grid;
  gap: 0.625rem;
  padding: 0.9375rem;
  box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1025px) {
  .news-tile__content {
    gap: 1.25rem;
    padding: 1.5625rem;
    min-height: 8.75rem;
  }
}

.news-tile__date {
  font: 500 0.75rem "Oswald", sans-serif;
  line-height: 1;
  text-transform: none;
  color: #c4c4c4;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .news-tile__date {
    font-size: 1rem;
  }
}

.news-tile__time {
  color: #c4c4c4;
  margin-right: 0.625rem;
}

.news-tile__title {
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.1;
  text-transform: none;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .news-tile__title {
    font-size: 1.375rem;
  }
}
.news-tile__title a {
  transition: all 0.15s ease-in 0s;
  cursor: pointer;
}
.news-tile__title a:link {
  color: #1b1d3c;
  text-decoration: none;
}
.news-tile__title a:visited {
  color: #1b1d3c;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .news-tile__title a:hover {
    color: #56c2e8;
    text-decoration: none;
  }
}
.news-tile__title a:active {
  color: #56c2e8;
  text-decoration: none;
}
.news-tile_large .news-tile__title {
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .news-tile_large .news-tile__title {
    font-size: 1.875rem;
  }
}

.news-tile__link {
  transition: all 0.15s ease-in 0s;
  cursor: pointer;
  font: 500 0.75rem "Oswald", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.news-tile__link:link {
  color: #56c2e8;
  text-decoration: none;
}
.news-tile__link:visited {
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .news-tile__link:hover {
    color: #56c2e8;
    text-decoration: none;
  }
}
.news-tile__link:active {
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .news-tile__link {
    font-size: 1.125rem;
  }
}
.news-tile__link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

footer#footer {
  background: #1b1d3c;
  padding: 1.875rem 0;
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  footer#footer {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1025px) {
  footer#footer {
    font-size: 1rem;
    padding: 1.875rem 0;
  }
}
@media screen and (min-width: 1025px) {
  footer#footer .container {
    display: grid;
    grid-template-columns: 8fr 2fr;
    grid-column-gap: 10%;
    grid-row-gap: 0.4375rem;
  }
}
@media screen and (max-width: 1024px) {
  footer#footer .contact-item:not(:last-child) {
    margin-bottom: 1rem;
  }
  footer#footer .contact-item:not(:last-child) .links {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  footer#footer .contact-item:not(:last-child) {
    display: flex;
    align-items: center;
  }
  footer#footer .contact-item:not(:last-child) .links {
    width: 70%;
    display: flex;
    align-items: center;
  }
  footer#footer .contact-item:not(:last-child) .links .contacts div {
    margin-right: 6.25rem;
  }
}
@media screen and (min-width: 1025px) {
  footer#footer .contact-item:last-child {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 5;
    display: block;
    text-align: right;
  }
  footer#footer .contact-item:last-child .links .name {
    margin-right: 0;
  }
  footer#footer .contact-item:last-child .links .contacts {
    display: block;
  }
  footer#footer .contact-item:last-child .links .follow-us,
  footer#footer .contact-item:last-child .links .social-menu ul {
    justify-content: flex-end;
  }
}
footer#footer .text {
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  footer#footer .text {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  footer#footer .text {
    font-size: 1rem;
  }
}
footer#footer .text a:hover {
  text-decoration: underline;
}
footer#footer .text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  footer#footer .links .contacts {
    margin-bottom: 0.75rem;
  }
  footer#footer .links .contacts div:not(:last-child) {
    margin-bottom: 0.1875rem;
  }
}
@media screen and (min-width: 768px) {
  footer#footer .links .contacts {
    display: flex;
  }
}
@media screen and (min-width: 1025px) {
  footer#footer .links .contacts {
    flex: auto;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  footer#footer .links .contacts div {
    margin-right: 1.25rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  footer#footer .links .contacts div {
    margin-right: 1.25rem;
  }
}
footer#footer .links .contacts a:hover {
  text-decoration: underline;
}
footer#footer .links .follow-us {
  display: flex;
  align-items: center;
}
footer#footer .links .name {
  text-transform: uppercase;
  color: #f7d135;
  margin-right: 0.5625rem;
}
@media screen and (min-width: 1025px) {
  footer#footer .links .name {
    margin-right: 1.5625rem;
  }
}
footer#footer a {
  color: currentColor;
  text-decoration: none;
}

#subscribe {
  display: none;
}
#subscribe .subscribe-wrap {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(27, 29, 60, 0.6);
  padding: 1.25rem;
  z-index: 999;
}
#subscribe #mc_embed_signup {
  position: relative;
  margin: auto;
  background: #ffffff;
  padding: 2.5rem 1.25rem;
  max-width: 25rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup {
    padding: 4.375rem 2.5rem;
    max-width: 32.6875rem;
  }
}
#subscribe #mc_embed_signup .close {
  width: 0.9375rem;
  position: absolute;
  right: 1.1875rem;
  top: 1.1875rem;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup .close {
    width: 1.4375rem;
    right: 1.875rem;
    top: 1.875rem;
  }
}
#subscribe #mc_embed_signup .close img {
  display: block;
  width: 100%;
}
#subscribe #mc_embed_signup .thank-you {
  display: none;
  padding: 0.625rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup .thank-you {
    font-size: 2.125rem;
    padding: 1.25rem;
  }
}
#subscribe #mc_embed_signup .thank-you span {
  display: block;
  color: #f7d135;
}
#subscribe #mc_embed_signup h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 0.625rem 0;
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup h2 {
    font-size: 2.125rem;
    margin-bottom: 0.875rem;
  }
}
#subscribe #mc_embed_signup .text {
  font-size: 0.875rem;
  line-height: 1.14;
  text-align: center;
  margin-bottom: 1.0625rem;
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup .text {
    font-size: 1.125rem;
    margin-bottom: 2.1875rem;
  }
}
#subscribe #mc_embed_signup input.email {
  width: 100%;
  border: 1px solid #1b1d3c;
  font-size: 0.75rem;
  line-height: 1;
  color: #1b1d3c;
  padding: 0.9375rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  #subscribe #mc_embed_signup input.email {
    width: 90%;
  }
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup input.email {
    font-size: 1.125rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}
#subscribe #mc_embed_signup #mce-error-response {
  padding-top: 0.5em;
  color: red;
  font-size: 0.875rem;
  line-height: 1.14;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #subscribe #mc_embed_signup #mce-error-response {
    font-size: 1.125rem;
  }
}
#subscribe .btn-primary {
  margin: 0 auto;
  max-width: 100%;
  width: 90%;
}

.page-back {
  margin: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .page-back {
    margin: 1.25rem 0;
  }
}
.page-back .js-back {
  align-items: center;
  color: #1b1d3c;
  cursor: pointer;
  display: flex;
  gap: 0 0.9375rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}
@media screen and (min-width: 1025px) {
  .page-back .js-back:hover img {
    transform: translateX(-0.3125rem);
  }
}
@media screen and (min-width: 1025px) {
  .page-back .js-back {
    font-size: 1.125rem;
  }
}
.page-back .js-back img {
  width: 0.375rem;
}
@media screen and (min-width: 1025px) {
  .page-back .js-back img {
    transition: all 0.15s ease-in 0s;
    width: 0.5rem;
  }
}

.card {
  background: #ffffff;
  box-shadow: 0 0 5px #c4c4c4;
  padding: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .card {
    padding: 2.1875rem;
  }
}
.card.card_start {
  justify-content: flex-start;
}
.card.card_center {
  align-items: center;
  justify-content: center;
}
.card.card_text-align-center {
  text-align: center;
}
.card.no-space-between {
  justify-content: unset;
}
.card p {
  font-size: var(--font-size-mdc);
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .card p {
    font-size: var(--font-size-ddc);
  }
}

.card__heading {
  border-bottom: 0.3125rem solid #f7d135;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .card__heading {
    margin-bottom: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

@media screen and (max-width: 1024px) {
  .card__icon {
    height: 1.875rem;
    width: auto;
  }
}

.card__delimiter-vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .card__delimiter-vertical {
    gap: 4.375rem;
  }
}
.card__delimiter-vertical::after {
  background: #1b1d3c;
  content: "";
  position: absolute;
  width: 0.1875rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
}

.page-body {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-body {
    margin-top: 5rem;
  }
}

.page__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page__wrapper {
    display: grid;
    gap: var(--page-template-gap, 10rem);
    grid-template-columns: var(--page-template-columns, repeat(2, 1fr));
    margin-top: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .page__content {
    order: 2;
  }
}
.page__content h1 {
  text-align: left;
}
.page-template-page-sixth .page__content p {
  font: 500 1.125rem "Noto Sans", sans-serif;
  line-height: 1;
  text-transform: none;
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .page-template-page-sixth .page__content p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .page__thumbnail {
    order: 1;
  }
}
.page__thumbnail img {
  width: 100%;
}

.link-primary {
  transition: all 0.15s ease-in 0s;
  cursor: pointer;
}
.link-primary:link {
  color: #56c2e8;
  text-decoration: none;
}
.link-primary:visited {
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .link-primary:hover {
    color: #1b1d3c;
    text-decoration: none;
  }
}
.link-primary:active {
  color: #1b1d3c;
  text-decoration: none;
}

.history-tile {
  align-items: center;
  color: var(--history-tile-color, #ffffff);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .history-tile {
    gap: 0.9375rem;
  }
}
.history-tile h4 {
  font: 500 1.125rem "Oswald", sans-serif;
  line-height: 1.5;
  text-transform: none;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .history-tile h4 {
    font-size: 1.875rem;
  }
}
.history-tile h4 span {
  color: #f7d135;
}

.history-tile__image img {
  margin: 0 auto;
}

.history-tile__delimiter {
  height: 1.875rem;
  width: 1.875rem;
  border-radius: 1.875rem;
  background: #f7d135;
  margin: 3.125rem 0rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .history-tile__delimiter {
    display: none;
  }
}
.history-tile__delimiter::after {
  background: #f7d135;
  content: "";
  height: 0.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 624.9375rem;
}

.history-tile__content {
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .history-tile__content {
    gap: 1.25rem;
  }
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.wp-block-table {
  margin: 0 0 1.5em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-block-table {
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    padding: 1.375rem;
  }
}
.wp-block-table table {
  width: 100%;
}
.wp-block-table table tbody {
  vertical-align: initial;
}
.wp-block-table th,
.wp-block-table td {
  font-family: "Noto Sans", sans-serif;
  padding: 0.5625rem;
  text-align: left;
  border: 1px solid #c4c4c4;
  vertical-align: baseline;
}
@media screen and (min-width: 1025px) {
  .wp-block-table th,
  .wp-block-table td {
    padding: 1.25rem 0.9375rem;
  }
}
.wp-block-table th:last-child,
.wp-block-table td:last-child {
  border-right: 0;
}
.wp-block-table th:first-child,
.wp-block-table td:first-child {
  border-left: 0;
}
.wp-block-table tr:last-child td {
  border-bottom: 0;
}
.wp-block-table th {
  font-size: 0.625rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  text-transform: uppercase;
  color: #56c2e8;
  border-top: 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1025px) {
  .wp-block-table th {
    font-size: 1.125rem;
  }
}
.wp-block-table td {
  font-size: 0.75rem;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .wp-block-table td {
    font-size: 1.25rem;
  }
}

.youtube-video,
.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.youtube-video iframe,
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 75%;
}
.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

#page {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-main {
  position: relative;
  flex: auto;
}

#page-content h1:first-child,
#page-content h2:first-child,
#page-content h3:first-child,
#page-content h4:first-child,
#page-content h5:first-child,
#page-content h6:first-child {
  margin-top: 0;
}
#page-content p:last-child {
  margin-bottom: 0;
}
#page-content p.has-small-font-size {
  font-size: 0.8em;
}
#page-content p.has-medium-font-size {
  font-size: 1.33em;
}
#page-content p.has-large-font-size {
  font-size: 2em;
}
#page-content p.has-huge-font-size {
  font-size: 3em;
}
#page-content p,
#page-content ul,
#page-content .wp-block-table {
  margin: 0 0 1.5em 0;
}
#page-content p a,
#page-content ul a,
#page-content .wp-block-table a {
  color: #56c2e8;
  font-weight: bold;
  word-break: break-word;
}
#page-content p + ul {
  margin-top: -0.8em;
}
#page-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  color: #ffffff;
}
#page-content .wp-block-image,
#page-content .wp-block-gallery,
#page-content .wp-block-embed {
  margin: 2.8rem 0;
}
@media screen and (min-width: 768px) {
  #page-content .wp-block-image,
  #page-content .wp-block-gallery,
  #page-content .wp-block-embed {
    margin: 3.2rem 0 1.9rem 0;
  }
}
@media screen and (min-width: 1025px) {
  #page-content .wp-block-image,
  #page-content .wp-block-gallery,
  #page-content .wp-block-embed {
    margin: 4.6rem -6.7rem 2.9rem -6.7rem;
  }
}
#page-content .wp-block-image:last-child,
#page-content .wp-block-gallery:last-child,
#page-content .wp-block-embed:last-child {
  margin-bottom: 0;
}
#page-content .wp-block-image img,
#page-content .wp-block-gallery img,
#page-content .wp-block-embed img {
  display: block;
}
#page-content .wp-block-image figcaption,
#page-content .wp-block-gallery figcaption,
#page-content .wp-block-embed figcaption {
  width: 100%;
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: center;
  color: #626262;
  margin: 1.4rem 0 0 0;
}
@media screen and (min-width: 768px) {
  #page-content .wp-block-image figcaption,
  #page-content .wp-block-gallery figcaption,
  #page-content .wp-block-embed figcaption {
    font-size: 0.8rem;
    margin: 1.4rem 0 0 0;
  }
}
@media screen and (min-width: 1025px) {
  #page-content .wp-block-image figcaption,
  #page-content .wp-block-gallery figcaption,
  #page-content .wp-block-embed figcaption {
    font-size: 0.8rem;
    margin: 1.1rem 0 0 0;
  }
}
#page-content .wp-block-image figcaption strong,
#page-content .wp-block-gallery figcaption strong,
#page-content .wp-block-embed figcaption strong {
  font-weight: 700;
  font-size: 0.9rem;
}
#page-content .wp-block-column .wp-block-image,
#page-content .wp-block-column .wp-block-gallery,
#page-content .wp-block-column .wp-block-embed {
  margin: 0 0 2.8rem 0;
}
@media screen and (min-width: 768px) {
  #page-content .wp-block-column .wp-block-image,
  #page-content .wp-block-column .wp-block-gallery,
  #page-content .wp-block-column .wp-block-embed {
    margin: 0 0 1.9rem 0;
  }
}
@media screen and (min-width: 1025px) {
  #page-content .wp-block-column .wp-block-image,
  #page-content .wp-block-column .wp-block-gallery,
  #page-content .wp-block-column .wp-block-embed {
    margin: 0 0 2.9rem 0;
  }
}
#page-content .wp-block-gallery {
  margin: 2.9rem -1.5rem;
}
@media screen and (min-width: 768px) {
  #page-content .wp-block-gallery {
    margin: 3.2rem -1.9rem;
  }
}
@media screen and (min-width: 1025px) {
  #page-content .wp-block-gallery {
    margin: 4.6rem -17.8rem;
  }
}
#page-content .wp-block-gallery:last-child {
  margin-bottom: 0;
}
#page-content .wp-block-gallery .blocks-gallery-grid {
  flex-wrap: nowrap;
}
#page-content .wp-block-gallery .blocks-gallery-item {
  width: fit-content;
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
  margin: 0;
}
#page-content .wp-block-gallery .blocks-gallery-item figure {
  display: block;
}
#page-content .wp-block-gallery .blocks-gallery-item figure img {
  display: block;
  width: auto;
  height: 11.6rem;
}
@media screen and (min-width: 768px) {
  #page-content .wp-block-gallery .blocks-gallery-item figure img {
    height: 16.6rem;
  }
}
@media screen and (min-width: 1025px) {
  #page-content .wp-block-gallery .blocks-gallery-item figure img {
    height: 27rem;
  }
}
#page-content .wp-block-gallery .blocks-gallery-item figure figcaption {
  position: relative;
  padding: 0;
  background: transparent;
}

@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container {
    display: flex;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .page-template-home-page-new .site-main .container .home-link-blocks {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-home-page-new .site-main .container .home-link-blocks {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container .home-link-blocks {
    width: 65%;
    flex: none;
    margin-right: 1.5rem;
    grid-gap: 1.5rem;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks .block {
  height: 9.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #1b1d3c;
  text-decoration: none;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block {
    height: 12.5rem;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(1) {
  color: #ffffff;
  background: #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(1) {
    height: 26.125rem;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(2) {
  background: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(2) {
    height: 26.125rem;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(3) {
  background: #f7d135;
}
@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(3) {
    height: 14.1875rem;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(4) {
  background: #c4c4c4;
}
@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block:nth-child(4) {
    height: 14.1875rem;
  }
}
.page-template-home-page-new .site-main .container .home-link-blocks .block .name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block .name {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-home-page-new .site-main .container .home-link-blocks .block .name {
    font-size: 2.375rem;
  }
}

.news-item {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.2;
  border-bottom: 1px solid #c4c4c4;
  padding: 1rem 0;
}
@media screen and (min-width: 1025px) {
  .news-item {
    font-size: 1.375rem;
    padding: 1.375rem 0;
  }
}
.news-item .date {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: #56c2e8;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .news-item .date {
    font-size: 2.125rem;
  }
}
.news-item a {
  color: initial;
  text-decoration: none;
}
.news-item .time {
  float: left;
  margin-right: 0.5em;
  color: #bcbcbc;
}
.news-item p {
  margin: 0;
}
.news-item .read-more {
  margin-top: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .news-item .read-more {
    margin-top: 0.75rem;
  }
}
.news-item .read-more a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .news-item .read-more a {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1025px) {
  .single-page .flex {
    display: flex;
    justify-content: center;
  }
}
.single-page .thumbnail .description {
  color: #bcbcbc;
  font-size: 1rem;
  margin-top: 0.625rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .single-page .thumbnail .description {
    margin-top: 1.25rem;
  }
}
.single-page .thumbnail + .content {
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .single-page .thumbnail + .content {
    margin-left: 5.875rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .single-page .content {
    flex: none;
    width: 51rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.single-page .content .date.yellow-date {
  width: fit-content;
  background: #f7d135;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  padding: 0.1875rem 0.3125rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .single-page .content .date.yellow-date {
    font-size: 1.375rem;
    padding: 0.3125rem 0.4375rem;
    margin-bottom: 2.5rem;
  }
}
.single-page .content + .thumbnail {
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .single-page .content + .thumbnail {
    margin-left: 5.875rem;
    margin-bottom: 0;
  }
}

.single-page .content,
.announcement-page .content,
.analytics-page .content {
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .single-page .content,
  .announcement-page .content,
  .analytics-page .content {
    font-size: 1.375rem;
  }
}
.single-page .content h1,
.announcement-page .content h1,
.analytics-page .content h1 {
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .single-page .content h1,
  .announcement-page .content h1,
  .analytics-page .content h1 {
    margin-bottom: 1.5625rem;
  }
}

@media screen and (min-width: 1025px) {
  .news-list .container {
    width: 64%;
  }
}

.previous-events {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .previous-events {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .previous-events {
    margin-top: 4.375rem;
  }
}
.previous-events .container {
  border-top: 1px solid #c4c4c4;
}
.previous-events .container header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.25rem 0 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .previous-events .container header {
    padding: 1.875rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .previous-events .container header {
    padding: 2.5rem 0;
  }
}
.previous-events .container header h2 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .previous-events .container header h2 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .previous-events .container header h2 {
    font-size: 2.75rem;
  }
}
.previous-events .container header a.all {
  flex: none;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  margin-left: 1rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .previous-events .container header a.all {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .previous-events .container header a.all {
    font-size: 1.5rem;
  }
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .events-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .events-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2.625rem;
  }
}

#produce-slider {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  #produce-slider {
    padding-top: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #produce-slider {
    padding-top: 4.0625rem;
    padding-bottom: 3.125rem;
  }
}
#produce-slider .swiper-pagination {
  position: initial;
  margin-top: 0.625rem;
}
#produce-slider .swiper-pagination-bullet {
  background: #ffffff;
}
#produce-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #56c2e8;
}

.event-item .thumbnail,
.result-item .thumbnail,
.history-item .thumbnail {
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .event-item .thumbnail,
  .result-item .thumbnail,
  .history-item .thumbnail {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .event-item .thumbnail,
  .result-item .thumbnail,
  .history-item .thumbnail {
    margin-bottom: 1.125rem;
  }
}
.event-item .date,
.result-item .date,
.history-item .date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  color: #bcbcbc;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .event-item .date,
  .result-item .date,
  .history-item .date {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .event-item .date,
  .result-item .date,
  .history-item .date {
    font-size: 1.375rem;
  }
}
.event-item h2.title,
.event-item h3.title,
.result-item h2.title,
.result-item h3.title,
.history-item h2.title,
.history-item h3.title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1;
  color: #1b1d3c;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .event-item h2.title,
  .event-item h3.title,
  .result-item h2.title,
  .result-item h3.title,
  .history-item h2.title,
  .history-item h3.title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .event-item h2.title,
  .event-item h3.title,
  .result-item h2.title,
  .result-item h3.title,
  .history-item h2.title,
  .history-item h3.title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.event-item h2.title a,
.event-item h3.title a,
.result-item h2.title a,
.result-item h3.title a,
.history-item h2.title a,
.history-item h3.title a {
  color: inherit;
  text-decoration: none;
}
.event-item h3.title,
.result-item h3.title,
.history-item h3.title {
  color: #ffffff;
}
.event-item .read-more a,
.result-item .read-more a,
.history-item .read-more a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .event-item .read-more a,
  .result-item .read-more a,
  .history-item .read-more a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .event-item .read-more a,
  .result-item .read-more a,
  .history-item .read-more a {
    font-size: 1.125rem;
  }
}

.single-page .top-event .content {
  display: flex;
  flex-direction: column;
}
.single-page .top-event .date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  color: #bcbcbc;
  margin-bottom: 0.8em;
  background: none;
}
@media screen and (min-width: 768px) {
  .single-page .top-event .date {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .single-page .top-event .date {
    font-size: 2.125rem;
  }
}
.single-page .top-event h2.title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1;
  color: #1b1d3c;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .single-page .top-event h2.title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .single-page .top-event h2.title {
    font-size: 3.125rem;
    margin-bottom: 4.375rem;
  }
}
.single-page .top-event h2.title a {
  color: inherit;
  text-decoration: none;
}
.single-page .top-event .read-more {
  margin-top: auto;
}
.single-page .top-event .read-more a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .single-page .top-event .read-more a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .single-page .top-event .read-more a {
    font-size: 1.5rem;
  }
}

.nav-links {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .nav-links {
    margin-top: 3rem;
  }
}
.nav-links a,
.nav-links span {
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  margin: 0 0.2rem;
  color: #bcbcbc;
}
@media screen and (min-width: 1025px) {
  .nav-links a,
  .nav-links span {
    font-size: 1.4rem;
  }
}
.nav-links a.current,
.nav-links span.current {
  color: #1b1d3c;
}
.nav-links .prev,
.nav-links .next {
  width: 0.5rem;
  height: 0.7rem;
  background: url("images/arrow_left.svg") no-repeat center;
  background-size: contain;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .nav-links .prev,
  .nav-links .next {
    width: 0.6rem;
    height: 1rem;
  }
}
.nav-links .prev {
  margin-right: 0.5rem;
}
.nav-links .next {
  transform: rotate(180deg);
  margin-left: 0.5rem;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .timeline {
    flex-direction: column;
  }
}
@media screen and (min-width: 1025px) {
  .timeline {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.timeline .date {
  display: flex;
  align-items: center;
  padding: 0.7rem 1em;
  background: #ffffff;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .timeline .date {
    margin: 1rem 0 0 0;
  }
}
.timeline .date a {
  color: currentColor;
  text-decoration: none;
  padding: 0 0.5em;
}
.timeline .date a:first-child {
  margin-right: 0.5em;
  margin-left: -0.5em;
}
.timeline .date a:last-child {
  margin-left: 0.5em;
  margin-right: -0.5em;
}
.timeline .date a svg {
  display: block;
  width: 0.6rem;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .timeline .date a svg {
    width: 0.5rem;
  }
}
.timeline .switcher {
  display: flex;
  align-items: center;
}
.timeline .switcher span {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #1b1d3c;
  padding: 0.3em 0.7em;
  border: 2px solid #1b1d3c;
  border-radius: 1.1875rem;
  margin-right: 0.8125rem;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .timeline .switcher span {
    font-size: 1.25rem;
    border-width: 3px;
  }
}
.timeline .switcher span.current {
  color: #ffffff;
  background-color: #1b1d3c;
}
.timeline .switcher span:not(.current) {
  opacity: 0;
}

@media screen and (min-width: 1025px) {
  .announcement-page .container {
    width: 60%;
  }
}
.announcement-page.lviv .content .wp-block-table.kyiv,
.announcement-page.lviv .content .wp-block-table.kharkiv,
.announcement-page.lviv .content .wp-block-table.odesa {
  display: none;
}
.announcement-page.kyiv .content .wp-block-table.lviv,
.announcement-page.kyiv .content .wp-block-table.kharkiv,
.announcement-page.kyiv .content .wp-block-table.odesa {
  display: none;
}
.announcement-page.kharkiv .content .wp-block-table.lviv,
.announcement-page.kharkiv .content .wp-block-table.kyiv,
.announcement-page.kharkiv .content .wp-block-table.odesa {
  display: none;
}
.announcement-page.odesa .content .wp-block-table.lviv,
.announcement-page.odesa .content .wp-block-table.kyiv,
.announcement-page.odesa .content .wp-block-table.kharkiv {
  display: none;
}

@media screen and (min-width: 1025px) {
  .analytics-page .container {
    width: 42.5%;
  }
}
.analytics-page h2.post-title {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.9375rem 0;
  text-align: left;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .analytics-page h2.post-title {
    font-size: 2.125rem;
    margin-bottom: 1.5625rem;
  }
}

.page-template-session-page-archive header#masthead {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.page-template-session-page-archive .site-main {
  padding: 0;
}
.page-template-session-page-archive section#top {
  background-color: #1b1d3c;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top {
    padding-top: 6.25rem;
    padding-bottom: 8.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top .container {
    width: 89.58%;
  }
}
.page-template-session-page-archive section#top > .container {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top > .container {
    display: flex;
    margin-bottom: 4.375rem;
  }
}
.page-template-session-page-archive section#top h1 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.05;
  color: #f7d135;
  margin: 0 0 1.25rem 0;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top h1 {
    font-size: 5rem;
    margin: 0 1.25rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top h1 {
    width: 70%;
  }
}
.page-template-session-page-archive section#top h1 b {
  font-weight: 700;
}
.page-template-session-page-archive section#top .text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.38;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top .text {
    font-size: 2rem;
  }
}
.page-template-session-page-archive section#top .text ul {
  margin: 0;
}
.page-template-session-page-archive section#top .line {
  background-color: #f7d135;
  padding: 0.625rem 0;
}
.page-template-session-page-archive section#top .line .container {
  color: #1b1d3c;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.41;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#top .line .container {
    font-size: 4rem;
  }
}
.page-template-session-page-archive section#top .line .container span {
  display: inline-block;
}
.page-template-session-page-archive section#top .line .container span.divider {
  color: #ffffff;
  margin: 0 0.2em;
}
.page-template-session-page-archive section#blocks {
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#blocks {
    padding: 5.625rem 0;
  }
}
.page-template-session-page-archive section#blocks .container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .page-template-session-page-archive section#blocks .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#blocks .container {
    column-gap: 2.625rem;
    row-gap: 3.125rem;
  }
}
.page-template-session-page-archive section#blocks .block {
  background: #ffffff;
  box-shadow: 0px 0px 1.875rem rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#blocks .block {
    padding: 3.75rem 5.625rem;
  }
}
.page-template-session-page-archive section#blocks .block h3 {
  font-size: 1.375rem;
  line-height: 1.36;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 0.9375rem 0;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#blocks .block h3 {
    font-size: 2.75rem;
    margin: 0 0 1.25rem 0;
  }
}
@media screen and (max-width: 767px) {
  .page-template-session-page-archive section#blocks .block:nth-child(odd) h3 {
    color: #f7d135;
  }
}
@media screen and (min-width: 768px) {
  .page-template-session-page-archive section#blocks .block:nth-child(2) h3, .page-template-session-page-archive section#blocks .block:nth-child(3) h3 {
    color: #f7d135;
  }
}
.page-template-session-page-archive section#blocks .block .text {
  width: fit-content;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#blocks .block .text {
    font-size: 1.5rem;
  }
}
.page-template-session-page-archive section#blocks .block .text ul {
  margin: 0;
}
.page-template-session-page-archive section#speakers {
  color: #ffffff;
  background: #1b1d3c;
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers {
    padding: 5.625rem 0;
  }
}
.page-template-session-page-archive section#speakers h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers h2 {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -1.875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers .speakers-list {
    margin-right: -1.875rem;
    margin-bottom: -2.5rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list .speaker {
  margin-bottom: 1.875rem;
  max-width: 20rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers .speakers-list .speaker {
    max-width: 26.5625rem;
    margin-right: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list .speaker .photo {
  padding: 1.125rem;
  background: url("images/speaker_back_blue.png");
  background-size: 100% 100%;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers .speakers-list .speaker .photo {
    padding: 1.5625rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list .speaker .text {
  padding: 0 1.125rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers .speakers-list .speaker .text {
    padding: 0 1.5625rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list .speaker .name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: #f7d135;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers .speakers-list .speaker .name {
    font-size: 1.375rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list .speaker .position {
  font-size: 1rem;
  line-height: 1.1;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#speakers .speakers-list .speaker .position {
    font-size: 1.25rem;
  }
}
.page-template-session-page-archive section#speakers .speakers-list .speaker:nth-child(even) .photo {
  background-image: url("images/speaker_back_yellow.png");
}
.page-template-session-page-archive section#speakers .speakers-list .speaker:nth-child(even) .name {
  color: #56c2e8;
}
.page-template-session-page-archive section#schedule {
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule {
    padding: 5.625rem 0;
  }
}
.page-template-session-page-archive section#schedule h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule h2 {
    font-size: 2.75rem;
  }
}
.page-template-session-page-archive section#schedule .description {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule .description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-session-page-archive section#schedule .schedule-list {
  max-width: 61.25rem;
  margin: auto;
  background: #ffffff;
  box-shadow: 0px 0px 2.8125rem rgba(0, 0, 0, 0.1);
  padding: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule .schedule-list {
    padding: 1.25rem 5rem 5rem 5rem;
  }
}
.page-template-session-page-archive section#schedule .schedule-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule .schedule-list ul {
    margin-bottom: 3.75rem;
  }
}
.page-template-session-page-archive section#schedule .schedule-list ul li {
  padding: 0.9375rem 0;
  border-bottom: 1px solid #c4c4c4;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule .schedule-list ul li {
    padding: 2.1875rem 0;
    font-size: 2.375rem;
    border-width: 2px;
  }
}
.page-template-session-page-archive section#schedule .schedule-list ul li .date {
  display: inline-block;
  color: #56c2e8;
  margin-right: 0.625rem;
}
.page-template-session-page-archive section#schedule .schedule-list .link {
  display: block;
  position: relative;
  padding: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  color: #1b1d3c;
  background: url("images/back.png") no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page-archive section#schedule .schedule-list .link {
    font-size: 3.125rem;
    padding: 5.625rem;
  }
}
.page-template-session-page-archive section#schedule .schedule-list .link .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-template-session-page-archive section#schedule .schedule-list .link span {
  position: relative;
}

.page-template-session-page header#masthead {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.page-template-session-page .site-main {
  padding: 0;
}
.page-template-session-page section#top {
  background-color: #1b1d3c;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top {
    padding-top: 6.25rem;
    padding-bottom: 8.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top .container {
    width: 89.58%;
  }
}
.page-template-session-page section#top > .container {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top > .container {
    display: flex;
    margin-bottom: 4.375rem;
  }
}
.page-template-session-page section#top h1 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.05;
  color: #f7d135;
  margin: 0 0 1.25rem 0;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top h1 {
    font-size: 5rem;
    margin: 0 1.25rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top h1 {
    width: 70%;
  }
}
.page-template-session-page section#top h1 b {
  font-weight: 700;
}
.page-template-session-page section#top .text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.38;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top .text {
    font-size: 2rem;
  }
}
.page-template-session-page section#top .text ul {
  margin: 0;
}
.page-template-session-page section#top .text p + ul {
  margin-top: -1em;
}
.page-template-session-page section#top .line {
  background-color: #f7d135;
  padding: 0.625rem 0;
}
.page-template-session-page section#top .line .container {
  color: #1b1d3c;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.41;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#top .line .container {
    font-size: 4rem;
  }
}
.page-template-session-page section#top .line .container span {
  display: inline-block;
}
.page-template-session-page section#top .line .container span.divider {
  color: #ffffff;
  margin: 0 0.2em;
}
.page-template-session-page section.parts {
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.parts {
    padding: 5.625rem 0;
  }
}
.page-template-session-page section.blocks {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.blocks {
    margin-bottom: 5rem;
  }
}
.page-template-session-page section.blocks .container.grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .page-template-session-page section.blocks .container.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.blocks .container.grid {
    column-gap: 2.625rem;
    row-gap: 3.125rem;
  }
}
.page-template-session-page section.blocks .container.grid .block {
  margin: 0;
}
.page-template-session-page section.blocks .block {
  background: #ffffff;
  box-shadow: 0px 0px 1.875rem rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0.9375rem;
  max-width: 62.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.blocks .block {
    padding: 3.75rem 5.625rem;
  }
}
.page-template-session-page section.blocks .block h3 {
  font-size: 1.375rem;
  line-height: 1.36;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.blocks .block h3 {
    font-size: 2.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-template-session-page section.blocks .block:nth-child(2) h3, .page-template-session-page section.blocks .block:nth-child(3) h3 {
    color: #f7d135;
  }
}
.page-template-session-page section.blocks .block .text {
  width: fit-content;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0.9375rem auto 0 auto;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.blocks .block .text {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.blocks .block .text {
    font-size: 1.5rem;
  }
}
.page-template-session-page section.blocks .block .text ul {
  margin: 0;
}
.page-template-session-page section.speakers h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1.25rem 0;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers h2 {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-session-page section.speakers .speakers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -1.875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers .speakers-list {
    margin-right: -1.875rem;
    margin-bottom: -2.5rem;
  }
}
.page-template-session-page section.speakers .speakers-list .speaker {
  margin-bottom: 1.875rem;
  max-width: 20rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers .speakers-list .speaker {
    max-width: 26.25rem;
    margin-right: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-session-page section.speakers .speakers-list .speaker .photo {
  padding: 1.125rem;
  background: url("images/speaker_back_blue.png");
  background-size: 100% 100%;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers .speakers-list .speaker .photo {
    padding: 1.5625rem;
  }
}
.page-template-session-page section.speakers .speakers-list .speaker .text {
  padding: 0 1.125rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers .speakers-list .speaker .text {
    padding: 0 1.5625rem;
  }
}
.page-template-session-page section.speakers .speakers-list .speaker .name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers .speakers-list .speaker .name {
    font-size: 1.375rem;
  }
}
.page-template-session-page section.speakers .speakers-list .speaker .position {
  font-size: 1rem;
  line-height: 1.1;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section.speakers .speakers-list .speaker .position {
    font-size: 1.25rem;
  }
}
.page-template-session-page section.dark {
  color: #ffffff;
  background: #1b1d3c;
}
.page-template-session-page section.dark .block {
  background: #262746;
  box-shadow: 10px 10px 40px #000000;
}
.page-template-session-page section.dark .block h3 {
  color: #f7d135;
}
.page-template-session-page section.dark section.speakers h2 {
  color: #f7d135;
}
.page-template-session-page section.dark section.speakers .speakers-list .speaker .photo {
  background-image: url(images/speaker_back_yellow.png);
}
.page-template-session-page section.dark section.speakers .speakers-list .speaker .name {
  color: #f7d135;
}
.page-template-session-page section.evened section.blocks .block:nth-child(even) h3 {
  color: #f7d135;
}
.page-template-session-page section.evened section.speakers .speakers-list {
  justify-content: space-around;
}
.page-template-session-page section.evened section.speakers .speakers-list .speaker:nth-child(even) .photo {
  background-image: url(images/speaker_back_yellow.png);
}
.page-template-session-page section.evened section.speakers .speakers-list .speaker:nth-child(even) .name,
.page-template-session-page section.evened section.speakers .speakers-list .speaker:nth-child(even) h2 {
  color: #f7d135;
}
.page-template-session-page section#schedule {
  padding: 2.5rem 0;
  background: #e3e3e3;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule {
    padding: 5.625rem 0;
  }
}
.page-template-session-page section#schedule h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule h2 {
    font-size: 2.75rem;
  }
}
.page-template-session-page section#schedule .description {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule .description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-session-page section#schedule .schedule-list {
  max-width: 61.25rem;
  margin: auto;
  background: #ffffff;
  box-shadow: 0px 0px 2.8125rem rgba(0, 0, 0, 0.1);
  padding: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule .schedule-list {
    padding: 1.25rem 5rem 5rem 5rem;
  }
}
.page-template-session-page section#schedule .schedule-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule .schedule-list ul {
    margin-bottom: 3.75rem;
  }
}
.page-template-session-page section#schedule .schedule-list ul li {
  padding: 0.9375rem 0;
  border-bottom: 1px solid #c4c4c4;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule .schedule-list ul li {
    padding: 2.1875rem 0;
    font-size: 2.375rem;
    border-width: 2px;
  }
}
.page-template-session-page section#schedule .schedule-list ul li .date {
  display: inline-block;
  color: #56c2e8;
  margin-right: 0.625rem;
}
.page-template-session-page section#schedule .schedule-list .link {
  display: block;
  position: relative;
  padding: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  color: #1b1d3c;
  background: url("images/back.png") no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 1025px) {
  .page-template-session-page section#schedule .schedule-list .link {
    font-size: 3.125rem;
    padding: 5.625rem;
  }
}
.page-template-session-page section#schedule .schedule-list .link .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-template-session-page section#schedule .schedule-list .link span {
  position: relative;
}

.logo-together {
  width: 9.375rem;
  margin: 0 auto 1.6875rem auto;
}
@media screen and (min-width: 1025px) {
  .logo-together {
    position: absolute;
    width: 12.5rem;
    top: 3.375rem;
    left: 3.875rem;
  }
}

.theme-item {
  text-align: center;
}
.theme-item .title {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.1;
}
@media screen and (min-width: 1025px) {
  .theme-item .title {
    font-size: 1.25rem;
  }
}
.theme-item .title .date {
  color: #bcbcbc;
}
.theme-item .read-more {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #56c2e8;
  margin-top: 0.5rem;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .theme-item .read-more {
    font-size: 1rem;
    margin-top: 0.875rem;
  }
}
.theme-item .read-more img {
  width: 0.625rem;
  height: auto;
  margin-left: 0.125rem;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .theme-item .read-more img {
    width: 1rem;
    margin-left: 0.3125rem;
  }
}
.theme-item .read-more.active svg {
  transform: rotate(180deg);
}
.theme-item .text {
  display: none;
  padding-top: 1em;
  font-size: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .theme-item .text {
    font-size: 1.125rem;
  }
}
.theme-item .text p a {
  color: #56c2e8;
}
.theme-item .text ul.tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .theme-item .text ul.tags-list {
    margin-bottom: 0.5em;
  }
}

@media screen and (min-width: 1025px) {
  .themes-list .container {
    width: 72.5%;
  }
}
.themes-list .theme-item {
  padding: 1.0625rem;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (min-width: 1025px) {
  .themes-list .theme-item {
    padding: 1.875rem;
    border-width: 2px;
  }
}
.themes-list .theme-item:first-of-type {
  border-top: 1px solid #c4c4c4;
}
@media screen and (min-width: 1025px) {
  .themes-list .theme-item:first-of-type {
    border-width: 2px;
  }
}
.themes-list h2 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  .themes-list h2 {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
  }
}
.themes-list h2 span {
  color: #56c2e8;
}
.themes-list .search {
  margin: 0 auto 1.25rem auto;
}
@media screen and (min-width: 1025px) {
  .themes-list .search {
    width: 90%;
    margin-bottom: 2.5rem;
  }
}
.themes-list .search form {
  position: relative;
}
.themes-list .search form input {
  width: 100%;
  background: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.8em 3em 0.8em 1em;
  border: 1px solid #c4c4c4;
  -webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  .themes-list .search form input {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .themes-list .search form input {
    font-size: 1.75rem;
    border-width: 2px;
  }
}
.themes-list .search form .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .themes-list .search form .search-submit {
    padding: 0 1.25rem;
  }
}
.themes-list .search form .search-submit svg {
  width: 0.875rem;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .themes-list .search form .search-submit svg {
    width: 1.4375rem;
  }
}

ul.tags-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}
@media screen and (min-width: 1025px) {
  ul.tags-list {
    gap: 0.75rem;
  }
}
ul.tags-list li {
  flex: none;
}
ul.tags-list li a {
  display: block;
  border: 1px solid currentColor;
  border-radius: 0.8125rem;
  padding: 0.25rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1;
  color: currentColor;
  text-decoration: none;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  ul.tags-list li a {
    border-radius: 1.25rem;
    padding: 0.375rem 1.875rem;
    font-size: 1.125rem;
  }
}
ul.tags-list li a:hover {
  background: #56c2e8;
  border-color: #56c2e8;
  color: #1b1d3c;
}

.page-template-produce-page section#top {
  background-color: #1b1d3c;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#top {
    padding-top: 10rem;
    padding-bottom: 11.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#top .container {
    display: flex;
    width: 89.58%;
  }
}
.page-template-produce-page section#top h1 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.05;
  color: #f7d135;
  margin: 0 0 1.25rem 0;
  text-align: left;
  text-transform: initial;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#top h1 {
    font-size: 6.25rem;
    margin: 0 2.5rem 0 0;
    width: 55%;
    flex: none;
  }
}
.page-template-produce-page section#top h1 b {
  font-weight: 700;
}
.page-template-produce-page section#top .text {
  font-size: 1rem;
  line-height: 1.38;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#top .text {
    font-size: 2rem;
  }
}
.page-template-produce-page section#top .text ul {
  margin: 0;
}
.page-template-produce-page section#top .text p + ul {
  margin-top: -1em;
}
.page-template-produce-page section#stories {
  color: #ffffff;
  background-color: #1b1d3c;
}
.page-template-produce-page section#stories #stories-slider {
  position: relative;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider {
    max-width: 51.875rem;
  }
}
.page-template-produce-page section#stories #stories-slider .arrows {
  width: fit-content;
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  padding: 0.6875rem;
}
@media screen and (max-width: 1024px) {
  .page-template-produce-page section#stories #stories-slider .arrows {
    margin: 0 auto 1.1875rem auto;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider .arrows {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(calc(-100% - 20px));
    border-width: 2px;
    padding: 1.125rem;
  }
}
.page-template-produce-page section#stories #stories-slider .arrows .date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0.625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider .arrows .date {
    font-size: 1.25rem;
    margin: 0 1.25rem;
  }
}
.page-template-produce-page section#stories #stories-slider .arrows .swiper-button-prev,
.page-template-produce-page section#stories #stories-slider .arrows .swiper-button-next {
  color: #ffffff;
  transform: rotate(90deg);
  flex: none;
  position: initial;
  margin: 0;
  width: 0.875rem;
  height: auto;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider .arrows .swiper-button-prev,
  .page-template-produce-page section#stories #stories-slider .arrows .swiper-button-next {
    width: 1.4375rem;
  }
}
.page-template-produce-page section#stories #stories-slider .arrows .swiper-button-prev:after,
.page-template-produce-page section#stories #stories-slider .arrows .swiper-button-next:after {
  content: none;
}
.page-template-produce-page section#stories #stories-slider .arrows .swiper-button-next {
  transform: rotate(-90deg);
}
.page-template-produce-page section#stories #stories-slider .table {
  border: 2px solid #ffffff;
  text-align: center;
}
.page-template-produce-page section#stories #stories-slider .table header {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  padding: 1.0625rem;
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider .table header {
    font-size: 1.75rem;
    padding: 1.875rem;
    border-width: 2px;
  }
}
.page-template-produce-page section#stories #stories-slider .table .theme-item {
  padding: 1.0625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider .table .theme-item {
    padding: 1.875rem;
  }
}
.page-template-produce-page section#stories #stories-slider .table .theme-item:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#stories #stories-slider .table .theme-item:not(:last-child) {
    border-width: 2px;
  }
}

.page-template-produce-page-new section#top,
.page-template-digest-page section#top,
.page-template-brainhub-page section#top {
  background-color: #1b1d3c;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#top,
  .page-template-digest-page section#top,
  .page-template-brainhub-page section#top {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#top .container,
  .page-template-digest-page section#top .container,
  .page-template-brainhub-page section#top .container {
    display: flex;
    width: 89.58%;
  }
}
.page-template-produce-page-new section#top .logo,
.page-template-digest-page section#top .logo,
.page-template-brainhub-page section#top .logo {
  width: 10.625rem;
  flex: none;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#top .logo,
  .page-template-digest-page section#top .logo,
  .page-template-brainhub-page section#top .logo {
    width: 34.25rem;
    margin: 0 6.25rem 0 0;
    padding-top: 0.5em;
  }
}
.page-template-produce-page-new section#top .logo img,
.page-template-digest-page section#top .logo img,
.page-template-brainhub-page section#top .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.page-template-produce-page-new section#top h1,
.page-template-digest-page section#top h1,
.page-template-brainhub-page section#top h1 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.05;
  margin: 0 0 1.25rem 0;
  text-align: left;
  text-transform: initial;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#top h1,
  .page-template-digest-page section#top h1,
  .page-template-brainhub-page section#top h1 {
    font-size: 5.625rem;
    margin: 0 0 1.25rem 0;
  }
}
.page-template-produce-page-new section#top h1 b,
.page-template-digest-page section#top h1 b,
.page-template-brainhub-page section#top h1 b {
  font-weight: 700;
}
.page-template-produce-page-new section#top .text,
.page-template-digest-page section#top .text,
.page-template-brainhub-page section#top .text {
  font-size: 0.875rem;
  line-height: 1.38;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#top .text,
  .page-template-digest-page section#top .text,
  .page-template-brainhub-page section#top .text {
    font-size: 1.5rem;
  }
}
.page-template-produce-page-new section#top .text ul,
.page-template-digest-page section#top .text ul,
.page-template-brainhub-page section#top .text ul {
  margin: 0;
}
.page-template-produce-page-new section#top .text p:last-child,
.page-template-digest-page section#top .text p:last-child,
.page-template-brainhub-page section#top .text p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#contacts,
  .page-template-digest-page section#contacts,
  .page-template-brainhub-page section#contacts {
    padding: 2.8125rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#contacts h2,
  .page-template-digest-page section#contacts h2,
  .page-template-brainhub-page section#contacts h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}
.page-template-produce-page-new section#stories,
.page-template-digest-page section#stories,
.page-template-brainhub-page section#stories {
  color: #ffffff;
  background-color: #1b1d3c;
}
.page-template-produce-page-new section#stories #stories-slider,
.page-template-digest-page section#stories #stories-slider,
.page-template-brainhub-page section#stories #stories-slider {
  position: relative;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider,
  .page-template-digest-page section#stories #stories-slider,
  .page-template-brainhub-page section#stories #stories-slider {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-gap: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .left-block,
  .page-template-digest-page section#stories #stories-slider .left-block,
  .page-template-brainhub-page section#stories #stories-slider .left-block {
    justify-self: flex-end;
  }
}
.page-template-produce-page-new section#stories #stories-slider .search-block,
.page-template-digest-page section#stories #stories-slider .search-block,
.page-template-brainhub-page section#stories #stories-slider .search-block {
  display: grid;
  grid-template-columns: 17fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.page-template-produce-page-new section#stories #stories-slider .calendar-block,
.page-template-digest-page section#stories #stories-slider .calendar-block,
.page-template-brainhub-page section#stories #stories-slider .calendar-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  padding: 0.75rem;
}
.page-template-produce-page-new section#stories #stories-slider .calendar-block .calendar,
.page-template-digest-page section#stories #stories-slider .calendar-block .calendar,
.page-template-brainhub-page section#stories #stories-slider .calendar-block .calendar {
  display: inline-flex;
  align-items: center;
}
.page-template-produce-page-new section#stories #stories-slider .calendar-block .calendar .date-input,
.page-template-digest-page section#stories #stories-slider .calendar-block .calendar .date-input,
.page-template-brainhub-page section#stories #stories-slider .calendar-block .calendar .date-input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-template-produce-page-new section#stories #stories-slider .arrows,
.page-template-digest-page section#stories #stories-slider .arrows,
.page-template-brainhub-page section#stories #stories-slider .arrows {
  width: fit-content;
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  padding: 0.6875rem;
}
.page-template-produce-page-new section#stories #stories-slider .arrows.small-padding,
.page-template-digest-page section#stories #stories-slider .arrows.small-padding,
.page-template-brainhub-page section#stories #stories-slider .arrows.small-padding {
  padding: 0.0625rem 0.3125rem;
}
@media screen and (max-width: 1024px) {
  .page-template-produce-page-new section#stories #stories-slider .arrows,
  .page-template-digest-page section#stories #stories-slider .arrows,
  .page-template-brainhub-page section#stories #stories-slider .arrows {
    margin: 0 auto 0.625rem auto;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .arrows,
  .page-template-digest-page section#stories #stories-slider .arrows,
  .page-template-brainhub-page section#stories #stories-slider .arrows {
    border-width: 2px;
  }
}
.page-template-produce-page-new section#stories #stories-slider .arrows .date,
.page-template-digest-page section#stories #stories-slider .arrows .date,
.page-template-brainhub-page section#stories #stories-slider .arrows .date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0.625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .arrows .date,
  .page-template-digest-page section#stories #stories-slider .arrows .date,
  .page-template-brainhub-page section#stories #stories-slider .arrows .date {
    font-size: 1.25rem;
    margin: 0 1.25rem;
  }
}
.page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-prev,
.page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-next,
.page-template-digest-page section#stories #stories-slider .arrows .swiper-button-prev,
.page-template-digest-page section#stories #stories-slider .arrows .swiper-button-next,
.page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-prev,
.page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-next {
  color: #ffffff;
  transform: rotate(90deg);
  flex: none;
  position: initial;
  margin: 0;
  width: 0.875rem;
  height: auto;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-prev,
  .page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-next,
  .page-template-digest-page section#stories #stories-slider .arrows .swiper-button-prev,
  .page-template-digest-page section#stories #stories-slider .arrows .swiper-button-next,
  .page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-prev,
  .page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-next {
    width: 1.4375rem;
  }
}
.page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-prev:after,
.page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-next:after,
.page-template-digest-page section#stories #stories-slider .arrows .swiper-button-prev:after,
.page-template-digest-page section#stories #stories-slider .arrows .swiper-button-next:after,
.page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-prev:after,
.page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-next:after {
  content: none;
}
.page-template-produce-page-new section#stories #stories-slider .arrows .swiper-button-next,
.page-template-digest-page section#stories #stories-slider .arrows .swiper-button-next,
.page-template-brainhub-page section#stories #stories-slider .arrows .swiper-button-next {
  transform: rotate(-90deg);
}
@media screen and (max-width: 1024px) {
  .page-template-produce-page-new section#stories #stories-slider .search,
  .page-template-digest-page section#stories #stories-slider .search,
  .page-template-brainhub-page section#stories #stories-slider .search {
    width: 100%;
    margin: 0;
  }
}
.page-template-produce-page-new section#stories #stories-slider .search form,
.page-template-digest-page section#stories #stories-slider .search form,
.page-template-brainhub-page section#stories #stories-slider .search form {
  position: relative;
}
@media screen and (max-width: 991px) {
  .page-template-produce-page-new section#stories #stories-slider .search form,
  .page-template-digest-page section#stories #stories-slider .search form,
  .page-template-brainhub-page section#stories #stories-slider .search form {
    height: 100%;
  }
}
.page-template-produce-page-new section#stories #stories-slider .search form input,
.page-template-digest-page section#stories #stories-slider .search form input,
.page-template-brainhub-page section#stories #stories-slider .search form input {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.8em 3em 0.8em 1em;
  border: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 991px) {
  .page-template-produce-page-new section#stories #stories-slider .search form input,
  .page-template-digest-page section#stories #stories-slider .search form input,
  .page-template-brainhub-page section#stories #stories-slider .search form input {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-template-produce-page-new section#stories #stories-slider .search form input,
  .page-template-digest-page section#stories #stories-slider .search form input,
  .page-template-brainhub-page section#stories #stories-slider .search form input {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .search form input,
  .page-template-digest-page section#stories #stories-slider .search form input,
  .page-template-brainhub-page section#stories #stories-slider .search form input {
    font-size: 1.25rem;
  }
}
.page-template-produce-page-new section#stories #stories-slider .search form .search-submit,
.page-template-digest-page section#stories #stories-slider .search form .search-submit,
.page-template-brainhub-page section#stories #stories-slider .search form .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .search form .search-submit,
  .page-template-digest-page section#stories #stories-slider .search form .search-submit,
  .page-template-brainhub-page section#stories #stories-slider .search form .search-submit {
    padding: 0 1.25rem;
  }
}
.page-template-produce-page-new section#stories #stories-slider .search form .search-submit svg,
.page-template-digest-page section#stories #stories-slider .search form .search-submit svg,
.page-template-brainhub-page section#stories #stories-slider .search form .search-submit svg {
  width: 0.875rem;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .search form .search-submit svg,
  .page-template-digest-page section#stories #stories-slider .search form .search-submit svg,
  .page-template-brainhub-page section#stories #stories-slider .search form .search-submit svg {
    width: 1.4375rem;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-produce-page-new section#stories #stories-slider .tags,
  .page-template-digest-page section#stories #stories-slider .tags,
  .page-template-brainhub-page section#stories #stories-slider .tags {
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .tags,
  .page-template-digest-page section#stories #stories-slider .tags,
  .page-template-brainhub-page section#stories #stories-slider .tags {
    position: relative;
    order: 1;
  }
}
.page-template-produce-page-new section#stories #stories-slider .tags ul.tags-list,
.page-template-digest-page section#stories #stories-slider .tags ul.tags-list,
.page-template-brainhub-page section#stories #stories-slider .tags ul.tags-list {
  overflow: auto;
}
@media screen and (max-width: 1024px) {
  .page-template-produce-page-new section#stories #stories-slider .tags ul.tags-list,
  .page-template-digest-page section#stories #stories-slider .tags ul.tags-list,
  .page-template-brainhub-page section#stories #stories-slider .tags ul.tags-list {
    max-height: 10.8125rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .tags ul.tags-list,
  .page-template-digest-page section#stories #stories-slider .tags ul.tags-list,
  .page-template-brainhub-page section#stories #stories-slider .tags ul.tags-list {
    position: absolute;
    width: 100%;
    max-height: 100%;
    left: 0;
    top: 0;
  }
}
.page-template-produce-page-new section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar,
.page-template-digest-page section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar,
.page-template-brainhub-page section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar {
  width: 11px;
}
.page-template-produce-page-new section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar-track,
.page-template-digest-page section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar-track,
.page-template-brainhub-page section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar-track {
  background: transparent;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.page-template-produce-page-new section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar-thumb,
.page-template-digest-page section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar-thumb,
.page-template-brainhub-page section#stories #stories-slider .tags ul.tags-list::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 5px;
}
.page-template-produce-page-new section#stories #stories-slider .swiper,
.page-template-digest-page section#stories #stories-slider .swiper,
.page-template-brainhub-page section#stories #stories-slider .swiper {
  width: 100%;
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table,
.page-template-digest-page section#stories #stories-slider .swiper .table,
.page-template-brainhub-page section#stories #stories-slider .swiper .table {
  border: 2px solid #ffffff;
  text-align: center;
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table header,
.page-template-digest-page section#stories #stories-slider .swiper .table header,
.page-template-brainhub-page section#stories #stories-slider .swiper .table header {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  padding: 1.0625rem;
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .swiper .table header,
  .page-template-digest-page section#stories #stories-slider .swiper .table header,
  .page-template-brainhub-page section#stories #stories-slider .swiper .table header {
    font-size: 1.75rem;
    padding: 1.875rem;
    border-width: 2px;
  }
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item,
.page-template-digest-page section#stories #stories-slider .swiper .table .theme-item,
.page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item {
  padding: 1.0625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item,
  .page-template-digest-page section#stories #stories-slider .swiper .table .theme-item,
  .page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item {
    padding: 1.875rem;
  }
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item:not(:last-child),
.page-template-digest-page section#stories #stories-slider .swiper .table .theme-item:not(:last-child),
.page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item:not(:last-child),
  .page-template-digest-page section#stories #stories-slider .swiper .table .theme-item:not(:last-child),
  .page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item:not(:last-child) {
    border-width: 2px;
  }
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item .links,
.page-template-digest-page section#stories #stories-slider .swiper .table .theme-item .links,
.page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item .links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item .links .social-menu ul,
.page-template-digest-page section#stories #stories-slider .swiper .table .theme-item .links .social-menu ul,
.page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item .links .social-menu ul {
  justify-content: center;
  min-width: unset;
  margin-left: 0.75rem;
}
.page-template-produce-page-new section#stories #stories-slider .swiper .table .theme-item .links a,
.page-template-digest-page section#stories #stories-slider .swiper .table .theme-item .links a,
.page-template-brainhub-page section#stories #stories-slider .swiper .table .theme-item .links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.page-template-produce-page-new section#materials,
.page-template-digest-page section#materials,
.page-template-brainhub-page section#materials {
  background-color: #1b1d3c;
  color: #ffffff;
}

.page-template-brainhub-page section#page-content {
  padding-bottom: 0;
  padding-top: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#page-content {
    padding-top: 2.8125rem;
    padding-bottom: 1.25rem;
  }
}
.page-template-brainhub-page section#page-content p {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#page-content p {
    margin-bottom: 2.5rem;
  }
}
.page-template-brainhub-page section#top {
  padding-bottom: 2.1875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#top {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#top .text {
    margin-right: 3.125rem;
  }
}
.page-template-brainhub-page section#top .text h1 {
  color: #f7d135;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.75rem;
  margin: 0 0 1.25rem 0;
  text-align: left;
  text-transform: initial;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#top .text h1 {
    font-size: 6.875rem;
    padding: 2.1875rem 0;
  }
}
.page-template-brainhub-page section#top .text h1 b {
  font-weight: 700;
}
.page-template-brainhub-page section#top .text h2 {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
  text-align: left;
  text-transform: initial;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#top .text h2 {
    font-size: 2rem;
    margin: 0 0 5.25rem 0;
    line-height: 2.75rem;
  }
}
.page-template-brainhub-page section#top .text h2 b {
  font-weight: 700;
}
.page-template-brainhub-page section#top .logo img {
  width: 6.3125rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page section#top .logo img {
    width: 80%;
  }
}
.page-template-brainhub-page .single-page .content {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .single-page .content {
    flex: none;
    font-size: 2rem;
    line-height: 2.75rem;
    width: 79.375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-brainhub-page .previous-brainhubs {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .previous-brainhubs {
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .previous-brainhubs {
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .previous-brainhubs .container {
    border-bottom: 1px solid #c4c4c4;
  }
}
.page-template-brainhub-page .previous-brainhubs .container header {
  border-top: 1px solid #c4c4c4;
  display: flex;
  align-items: initial;
  justify-content: space-between;
  padding: 1.25rem 0 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .previous-brainhubs .container header {
    padding: 1.875rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .previous-brainhubs .container header {
    padding: 2.5rem 0;
  }
}
.page-template-brainhub-page .previous-brainhubs .container header h2 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .previous-brainhubs .container header h2 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .previous-brainhubs .container header h2 {
    font-size: 2.75rem;
  }
}
.page-template-brainhub-page .previous-brainhubs .container header a.all {
  flex: none;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  margin-left: 1rem;
  text-decoration: none;
  max-width: 6.25rem;
  padding-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .previous-brainhubs .container header a.all {
    font-size: 1.125rem;
    max-width: unset;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .previous-brainhubs .container header a.all {
    font-size: 1.5rem;
    max-width: unset;
  }
}
.page-template-brainhub-page .brainhubs-list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhubs-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhubs-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2.625rem;
  }
}
.page-template-brainhub-page .brainhub-item {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhub-item {
    padding-top: 0;
    padding-bottom: 2.5rem;
    border-bottom: none;
  }
}
.page-template-brainhub-page .brainhub-item .date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  color: #bcbcbc;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhub-item .date {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhub-item .date {
    margin-bottom: 1rem;
    font-size: 1.375rem;
  }
}
.page-template-brainhub-page .brainhub-item h2.title,
.page-template-brainhub-page .brainhub-item h3.title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: normal;
  color: #1b1d3c;
  margin: 0 0 1.25rem 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhub-item h2.title,
  .page-template-brainhub-page .brainhub-item h3.title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhub-item h2.title,
  .page-template-brainhub-page .brainhub-item h3.title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.page-template-brainhub-page .brainhub-item h2.title a,
.page-template-brainhub-page .brainhub-item h3.title a {
  color: inherit;
  text-decoration: none;
}
.page-template-brainhub-page .brainhub-item h3.title {
  color: #ffffff;
}
.page-template-brainhub-page .brainhub-item .read-more a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhub-item .read-more a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhub-item .read-more a {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhubs-contacts {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.page-template-brainhub-page .brainhubs-contacts .title h2 {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-template-brainhub-page .brainhubs-contacts .title h2 {
    margin-bottom: 0.9375rem;
  }
}
.page-template-brainhub-page .brainhubs-contacts .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.page-template-brainhub-page .brainhubs-contacts .links .mail-link,
.page-template-brainhub-page .brainhubs-contacts .links .phone-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 0 1em;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhubs-contacts .links .mail-link,
  .page-template-brainhub-page .brainhubs-contacts .links .phone-link {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhubs-contacts .links .mail-link,
  .page-template-brainhub-page .brainhubs-contacts .links .phone-link {
    padding: 0 3em;
  }
}
.page-template-brainhub-page .brainhubs-contacts .links .mail-link img,
.page-template-brainhub-page .brainhubs-contacts .links .phone-link img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-template-brainhub-page .brainhubs-contacts .links .mail-link .content,
.page-template-brainhub-page .brainhubs-contacts .links .phone-link .content {
  color: #1b1d3c;
  font-size: 0.625rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhubs-contacts .links .mail-link .content,
  .page-template-brainhub-page .brainhubs-contacts .links .phone-link .content {
    font-weight: 400;
    font-size: 2rem;
  }
}
.page-template-brainhub-page .brainhubs-contacts .contact-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.38;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-brainhub-page .brainhubs-contacts .contact-text {
    font-size: 1rem;
    margin-top: 2.1875rem;
    flex: none;
    width: 70.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-template-digest-page section#form {
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form {
    padding-bottom: 1.6875rem;
  }
  .page-template-digest-page section#form .container {
    width: 71%;
  }
}
.page-template-digest-page section#form h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 1.875rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form h3 {
    font-size: 1.75rem;
    line-height: 1.36;
    margin-bottom: 3.0625rem;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-digest-page section#form h3 {
    text-align: center;
  }
}
.page-template-digest-page section#form form {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form {
    margin-bottom: 2.375rem;
  }
}
.page-template-digest-page section#form form p {
  margin: 0;
}
.page-template-digest-page section#form form .wpcf7-form-control-wrap {
  display: block;
  margin: 0 0 1.375rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form .wpcf7-form-control-wrap {
    margin-bottom: 2.375rem;
  }
}
.page-template-digest-page section#form form input {
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: 0.625rem;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1.2;
  border: 2px solid #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form input {
    height: 4.125rem;
    padding: 1.0625rem;
    font-size: 1.125rem;
    border-width: 3px;
  }
}
.page-template-digest-page section#form form input.wpcf7-submit {
  width: auto;
  height: auto;
  border: none;
  background: url("images/produce_link.svg") no-repeat center;
  background-size: contain;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1;
  padding: 1.2em 3em;
  text-transform: uppercase;
  color: #1b1d3c;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form input.wpcf7-submit {
    font-size: 1rem;
    padding: 1.7em 5em;
    margin-left: -1em;
  }
}
.page-template-digest-page section#form form input.wpcf7-submit + .wpcf7-spinner {
  display: block;
  margin: 0 auto -24px auto;
}
@media screen and (max-width: 1024px) {
  .page-template-digest-page section#form form input.wpcf7-submit {
    margin: auto;
  }
  .page-template-digest-page section#form form input.wpcf7-submit + .wpcf7-spinner {
    margin-left: auto;
  }
}
.page-template-digest-page section#form form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.75rem;
  row-gap: 1.0625rem;
  margin-bottom: 1.8125rem;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form .wpcf7-radio {
    column-gap: 1.25rem;
    row-gap: 1.375rem;
    margin-bottom: 3.0625rem;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-digest-page section#form form .wpcf7-radio {
    justify-content: center;
  }
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.page-template-digest-page section#form form .wpcf7-radio label {
  display: block;
  border-radius: 0.6875rem;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form .wpcf7-radio label {
    border-radius: 1.1875rem;
  }
}
.page-template-digest-page section#form form .wpcf7-radio label input {
  display: none;
}
.page-template-digest-page section#form form .wpcf7-radio label input:checked + span {
  color: #ffffff;
  background: #1b1d3c;
}
.page-template-digest-page section#form form .wpcf7-radio label span {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.2;
  color: #000000;
  padding: 0.0625rem 0.375rem 0.0625rem 0.0625rem;
  border-radius: 0.6875rem;
  border: 2px solid #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form .wpcf7-radio label span {
    font-size: 1.125rem;
    padding: 0.125rem 0.9375rem 0.125rem 0.125rem;
    border-radius: 1.1875rem;
    border-width: 3px;
  }
}
.page-template-digest-page section#form form .wpcf7-radio label span:before {
  content: "";
  display: block;
  flex: none;
  width: 1.0625rem;
  height: 1.0625rem;
  margin-right: 0.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form .wpcf7-radio label span:before {
    width: 1.75rem;
    height: 1.75rem;
    margin-right: 0.5rem;
  }
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item:nth-child(1) label span:before {
  background: url("images/flag-en.svg") no-repeat center;
  background-size: contain;
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item:nth-child(2) label span:before {
  background: url("images/flag-de.svg") no-repeat center;
  background-size: contain;
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item:nth-child(3) label span:before {
  background: url("images/flag-it.svg") no-repeat center;
  background-size: contain;
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item:nth-child(4) label span:before {
  background: url("images/flag-fr.svg") no-repeat center;
  background-size: contain;
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item:nth-child(5) label span:before {
  background: url("images/flag-es.svg") no-repeat center;
  background-size: contain;
}
.page-template-digest-page section#form form .wpcf7-radio .wpcf7-list-item:nth-child(6) label span:before {
  background: url("images/flag-hu.svg") no-repeat center;
  background-size: contain;
}
.page-template-digest-page section#form form .wpcf7-not-valid-tip,
.page-template-digest-page section#form form .wpcf7-response-output {
  font-size: 0.75rem;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form form .wpcf7-not-valid-tip,
  .page-template-digest-page section#form form .wpcf7-response-output {
    font-size: 1.125rem;
  }
}
.page-template-digest-page section#form .form-below-text {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#form .form-below-text {
    font-size: 1.25rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-digest-page section#form .form-below-text {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#feedback .container {
    width: 58%;
  }
}
.page-template-digest-page section#feedback h2 {
  margin-bottom: 0.5em;
}
.page-template-digest-page section#feedback .link {
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#feedback .link {
    font-size: 2.125rem;
  }
}
.page-template-digest-page section#feedback .link a.mail-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding: 0 1em;
}
.page-template-digest-page section#feedback .link a.mail-link img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-template-digest-page section#feedback .link a.mail-link .content {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .page-template-digest-page section#feedback .produce-below-text {
    margin-top: 2.1875rem;
  }
}

@media screen and (min-width: 1025px) {
  [lang=en-US] .page-template-digest-page section#top h1 {
    font-size: 5rem;
  }
}

.page-template-produce-page .site-main,
.page-template-produce-page-new .site-main,
.page-template-digest-page .site-main,
.page-template-brainhub-page .site-main {
  padding: 0;
}
.page-template-produce-page section,
.page-template-produce-page-new section,
.page-template-digest-page section,
.page-template-brainhub-page section {
  padding: 1.875rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section,
  .page-template-produce-page-new section,
  .page-template-digest-page section,
  .page-template-brainhub-page section {
    padding: 4.0625rem 0;
  }
}
.page-template-produce-page h2,
.page-template-produce-page-new h2,
.page-template-digest-page h2,
.page-template-brainhub-page h2 {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.36;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page h2,
  .page-template-produce-page-new h2,
  .page-template-digest-page h2,
  .page-template-brainhub-page h2 {
    font-size: 2.75rem;
  }
}
.page-template-produce-page section#contacts .list,
.page-template-produce-page-new section#contacts .list,
.page-template-digest-page section#contacts .list,
.page-template-brainhub-page section#contacts .list {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .page-template-produce-page section#contacts .list,
  .page-template-produce-page-new section#contacts .list,
  .page-template-digest-page section#contacts .list,
  .page-template-brainhub-page section#contacts .list {
    width: fit-content;
  }
}
.page-template-produce-page section#contacts .list > div,
.page-template-produce-page-new section#contacts .list > div,
.page-template-digest-page section#contacts .list > div,
.page-template-brainhub-page section#contacts .list > div {
  padding: 1.25rem 0.625rem;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .page-template-produce-page section#contacts .list > div,
  .page-template-produce-page-new section#contacts .list > div,
  .page-template-digest-page section#contacts .list > div,
  .page-template-brainhub-page section#contacts .list > div {
    display: flex;
    align-items: center;
    padding: 1.5625rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#contacts .list > div,
  .page-template-produce-page-new section#contacts .list > div,
  .page-template-digest-page section#contacts .list > div,
  .page-template-brainhub-page section#contacts .list > div {
    padding: 1.5625rem 1.875rem;
  }
}
.page-template-produce-page section#contacts .list > div .name,
.page-template-produce-page-new section#contacts .list > div .name,
.page-template-digest-page section#contacts .list > div .name,
.page-template-brainhub-page section#contacts .list > div .name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #56c2e8;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#contacts .list > div .name,
  .page-template-produce-page-new section#contacts .list > div .name,
  .page-template-digest-page section#contacts .list > div .name,
  .page-template-brainhub-page section#contacts .list > div .name {
    font-size: 2.75rem;
  }
}
.page-template-produce-page section#contacts .list > div:last-child .name,
.page-template-produce-page-new section#contacts .list > div:last-child .name,
.page-template-digest-page section#contacts .list > div:last-child .name,
.page-template-brainhub-page section#contacts .list > div:last-child .name {
  color: #f7d135;
}
.page-template-produce-page section#contacts .list > div .links,
.page-template-produce-page-new section#contacts .list > div .links,
.page-template-digest-page section#contacts .list > div .links,
.page-template-brainhub-page section#contacts .list > div .links {
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#contacts .list > div .links,
  .page-template-produce-page-new section#contacts .list > div .links,
  .page-template-digest-page section#contacts .list > div .links,
  .page-template-brainhub-page section#contacts .list > div .links {
    font-size: 1.5rem;
  }
}
.page-template-produce-page section#contacts .list > div .links a,
.page-template-produce-page-new section#contacts .list > div .links a,
.page-template-digest-page section#contacts .list > div .links a,
.page-template-brainhub-page section#contacts .list > div .links a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.page-template-produce-page section#contacts .list > div .links a:hover,
.page-template-produce-page-new section#contacts .list > div .links a:hover,
.page-template-digest-page section#contacts .list > div .links a:hover,
.page-template-brainhub-page section#contacts .list > div .links a:hover {
  text-decoration: underline;
}
.page-template-produce-page section#contacts .list > div .social-menu ul,
.page-template-produce-page-new section#contacts .list > div .social-menu ul,
.page-template-digest-page section#contacts .list > div .social-menu ul,
.page-template-brainhub-page section#contacts .list > div .social-menu ul {
  justify-content: center;
  filter: invert(1);
  min-width: initial;
}
@media screen and (min-width: 768px) {
  .page-template-produce-page section#contacts .list > div .social-menu ul,
  .page-template-produce-page-new section#contacts .list > div .social-menu ul,
  .page-template-digest-page section#contacts .list > div .social-menu ul,
  .page-template-brainhub-page section#contacts .list > div .social-menu ul {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#contacts .list > div .social-menu ul li a,
  .page-template-produce-page-new section#contacts .list > div .social-menu ul li a,
  .page-template-digest-page section#contacts .list > div .social-menu ul li a,
  .page-template-brainhub-page section#contacts .list > div .social-menu ul li a {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.page-template-produce-page section#help h2,
.page-template-produce-page-new section#help h2,
.page-template-digest-page section#help h2,
.page-template-brainhub-page section#help h2 {
  margin-bottom: 0.5em;
}
.page-template-produce-page section#help .link,
.page-template-produce-page-new section#help .link,
.page-template-digest-page section#help .link,
.page-template-brainhub-page section#help .link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#help .link,
  .page-template-produce-page-new section#help .link,
  .page-template-digest-page section#help .link,
  .page-template-brainhub-page section#help .link {
    font-size: 2.125rem;
  }
}
.page-template-produce-page section#help .link a.with-svg,
.page-template-produce-page-new section#help .link a.with-svg,
.page-template-digest-page section#help .link a.with-svg,
.page-template-brainhub-page section#help .link a.with-svg {
  width: 7.0625rem;
  margin-left: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#help .link a.with-svg,
  .page-template-produce-page-new section#help .link a.with-svg,
  .page-template-digest-page section#help .link a.with-svg,
  .page-template-brainhub-page section#help .link a.with-svg {
    width: 15rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-produce-page section#help .produce-below-text,
  .page-template-produce-page-new section#help .produce-below-text,
  .page-template-digest-page section#help .produce-below-text,
  .page-template-brainhub-page section#help .produce-below-text {
    margin-top: 2.1875rem;
  }
}

.produce-below-text {
  font-size: 0.75rem;
  line-height: 1.38;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .produce-below-text {
    font-size: 1rem;
    margin-top: 4.0625rem;
  }
}

@media screen and (min-width: 1025px) {
  .page-template-faq-page .single-page .container {
    width: 81.8%;
  }
}
.page-template-faq-page .single-page .content {
  width: initial;
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-template-faq-page .single-page .content {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-faq-page .single-page .content {
    font-size: 1.375rem;
    margin-bottom: 3.75rem;
  }
}

.faqs {
  border-bottom: 2px solid #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .faqs {
    border-width: 3px;
  }
}
.faqs .faq-item header {
  display: flex;
  align-items: flex-start;
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1b1d3c;
  text-transform: uppercase;
  padding: 1.5625rem 0;
  border-top: 2px solid #1b1d3c;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faqs .faq-item header {
    font-size: 1.25rem;
    padding: 1.875rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .faqs .faq-item header {
    align-items: center;
    font-size: 1.5rem;
    padding: 2.5rem 0;
    border-width: 3px;
  }
}
.faqs .faq-item header .num {
  flex: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #56c2e8;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faqs .faq-item header .num {
    font-size: 1.875rem;
    margin-right: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .faqs .faq-item header .num {
    font-size: 2.75rem;
    margin-right: 2.125rem;
  }
}
.faqs .faq-item header .title {
  margin-right: auto;
}
.faqs .faq-item header img {
  flex: none;
  width: 0.6875rem;
  height: auto;
  transform: rotate(-90deg);
  margin-left: 0.625rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .faqs .faq-item header img {
    width: 0.9375rem;
    margin-left: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .faqs .faq-item header img {
    width: 1.125rem;
    margin-left: 1.875rem;
  }
}
.faqs .faq-item .faq-content {
  display: none;
  font-size: 0.875rem;
  line-height: 1.1;
  padding: 0 1.25rem 1.5625rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .faqs .faq-item .faq-content {
    font-size: 1.125rem;
    padding: 0 1.875rem 2.1875rem 3.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .faqs .faq-item .faq-content {
    font-size: 1.375rem;
    padding: 0 11.875rem 3.125rem 4.375rem;
  }
}
.faqs .faq-item .faq-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}
.faqs .faq-item .faq-content ul li {
  padding-left: 0;
}
.faqs .faq-item .faq-content ul li:before {
  content: none;
}
.faqs .faq-item.active header img {
  transform: rotate(90deg);
}

@media screen and (min-width: 1025px) {
  .page-template-streams-page .site-main .container {
    width: 74.6%;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-streams-page .stream {
    display: flex;
    flex-direction: row-reverse;
  }
}
.page-template-streams-page .stream .tabs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-template-streams-page .stream .tabs-header {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0.625rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-streams-page .stream .tabs-header {
    grid-template-columns: 1fr;
    grid-gap: 1.875rem;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-streams-page .stream .tabs-header > div {
    width: 25rem;
  }
}
.page-template-streams-page .stream .tabs-header > div:not(.active) {
  color: #979797;
  cursor: pointer;
}
.page-template-streams-page .stream .tabs-header > div:not(.active) > img {
  filter: grayscale(100%);
}
.page-template-streams-page .stream .tabs-header > div:not(.active) .content svg path {
  fill: #979797;
}
.page-template-streams-page .stream .tabs-header > div .content {
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-template-streams-page .stream .tabs-header > div .content {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-streams-page .stream .tabs-header > div .content {
    font-size: 1.5rem;
  }
}
.page-template-streams-page .stream .tabs-header > div .content svg {
  width: 1.0625rem;
  height: auto;
  margin-right: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-streams-page .stream .tabs-header > div .content svg {
    width: 1.875rem;
    margin-right: 0.9375rem;
  }
}
.page-template-streams-page .stream .youtube-video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
@media screen and (min-width: 1025px) {
  .page-template-streams-page .stream .youtube-video {
    flex: none;
    width: 54.875rem;
  }
}
.page-template-streams-page .stream .youtube-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.photos-archive .archive-description {
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .photos-archive .archive-description {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}
@media screen and (min-width: 1025px) {
  .photos-archive .archive-description {
    max-width: 62.5rem;
    font-size: 1.375rem;
    margin: 0 auto 1.25rem auto;
  }
}
.photos-archive .filters {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .photos-archive .filters {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters {
    margin-bottom: 1.875rem;
  }
}
.photos-archive .filters .categories {
  position: relative;
  width: fit-content;
  margin: auto;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .photos-archive .filters .categories {
    font-size: 0.9375rem;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .categories {
    font-size: 1.25rem;
  }
}
.photos-archive .filters .categories .selected {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 0.8em 1em;
}
.photos-archive .filters .categories .selected svg {
  width: 0.875rem;
  margin-left: 0.5rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .photos-archive .filters .categories .selected svg {
    width: 1.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .categories .selected svg {
    width: 1.4375rem;
  }
}
.photos-archive .filters .categories ul {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0.6em 0;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: max-content;
  max-width: 15.625rem;
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .categories ul {
    max-width: 18.75rem;
  }
}
.photos-archive .filters .categories ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.4em 1em;
  transition: all 0.3s;
}
.photos-archive .filters .categories ul li a:hover {
  background: #e3e3e3;
}
.photos-archive .filters .categories:hover .selected svg {
  transform: rotate(180deg);
}
.photos-archive .filters .categories:hover ul {
  display: block;
}
.photos-archive .filters .search-form-wrap {
  margin-bottom: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .photos-archive .filters .search-form-wrap {
    width: 15.625rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .search-form-wrap {
    width: 21.875rem;
  }
}
.photos-archive .filters .search-form-wrap form {
  position: relative;
}
.photos-archive .filters .search-form-wrap form input {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.8em 3em 0.8em 1em;
  border: none;
  -webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  .photos-archive .filters .search-form-wrap form input {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .search-form-wrap form input {
    font-size: 1.25rem;
  }
}
.photos-archive .filters .search-form-wrap form .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .search-form-wrap form .search-submit {
    padding: 0 1.25rem;
  }
}
.photos-archive .filters .search-form-wrap form .search-submit svg {
  width: 0.875rem;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .photos-archive .filters .search-form-wrap form .search-submit svg {
    width: 1.4375rem;
  }
}

.photos-list {
  display: grid;
  grid-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .photos-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .photos-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.photos-list .grid-item {
  position: relative;
}
.photos-list .grid-item figure > a,
.photos-list .grid-item img {
  width: 100%;
  display: block;
}
.photos-list .grid-item .download {
  width: 1.2rem;
  height: 1.3rem;
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .photos-list .grid-item .download {
    width: 1.2rem;
    height: 1.3rem;
    right: 1.6rem;
    top: 1.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .photos-list .grid-item .download {
    width: 1.4rem;
    height: 1.5rem;
    right: 1.3rem;
    top: 1.4rem;
  }
}
.photos-list .grid-item .download svg {
  width: 100%;
  height: auto;
}
.photos-list .grid-item figure {
  position: relative;
  margin: 0;
}
.photos-list .grid-item figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  padding: 1.125rem 1.625rem 0.625rem 1.625rem;
  background: linear-gradient(359.39deg, rgba(0, 0, 0, 0.65) 31.13%, rgba(45, 42, 38, 0) 102.24%);
}
@media screen and (min-width: 768px) {
  .photos-list .grid-item figure figcaption {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .photos-list .grid-item figure figcaption {
    font-size: 1rem;
    padding: 4.125rem 2.25rem 0.75rem 2.25rem;
  }
}

.fancybox-container .fancybox-slide--image {
  padding: 2rem 0 7rem 0;
}
.fancybox-container .fancybox-caption__body {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .fancybox-container .fancybox-caption__body {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .fancybox-container .fancybox-caption__body {
    font-size: 1.25rem;
  }
}
.fancybox-container .fancybox-navigation .fancybox-button {
  width: 0.625rem;
  height: auto;
  padding: 0;
  top: 50%;
  margin-top: -3rem;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .fancybox-container .fancybox-navigation .fancybox-button {
    width: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .fancybox-container .fancybox-navigation .fancybox-button {
    width: 1.5625rem;
  }
}
.fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
    left: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
    left: 8.125rem;
  }
}
.fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
    right: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
    right: 8.125rem;
  }
}

.page-template-editorial-board-page header#masthead {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.page-template-editorial-board-page header#masthead .logo {
  margin-right: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page header#masthead .logo {
    margin-right: 1.75rem;
  }
}
.page-template-editorial-board-page header#masthead .unit {
  display: block;
  width: 6.25rem;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page header#masthead .unit {
    width: 21.5625rem;
  }
}
.page-template-editorial-board-page header#masthead .unit img {
  display: block;
}
.page-template-editorial-board-page .site-main {
  padding: 0;
}
.page-template-editorial-board-page section#top {
  background-color: #1b1d3c;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#top {
    padding-top: 6.25rem;
    padding-bottom: 8.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#top .container {
    width: 89.58%;
  }
}
.page-template-editorial-board-page section#top > .container {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#top > .container {
    margin-bottom: 4.375rem;
  }
}
.page-template-editorial-board-page section#top h1 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.05;
  color: #f7d135;
  margin: 0 0 1.25rem 0;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#top h1 {
    font-size: 5rem;
    margin: 0 0 2.5rem 0;
  }
}
.page-template-editorial-board-page section#top h1 b {
  font-weight: 700;
}
.page-template-editorial-board-page section#top .text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.38;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#top .text {
    font-size: 2rem;
  }
}
.page-template-editorial-board-page section#top .text ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.page-template-editorial-board-page section#top .text ul li {
  margin-right: 2em;
}
.page-template-editorial-board-page section#top .text p + ul {
  margin-top: -1em;
}
.page-template-editorial-board-page section#top .line {
  background-color: #f7d135;
  padding: 0.625rem 0;
}
.page-template-editorial-board-page section#top .line .container {
  color: #1b1d3c;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.41;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#top .line .container {
    font-size: 4rem;
  }
}
.page-template-editorial-board-page section#top .line .container span {
  display: inline-block;
}
.page-template-editorial-board-page section#top .line .container span.divider {
  color: #ffffff;
  margin: 0 0.2em;
}
.page-template-editorial-board-page section.blocks {
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section.blocks {
    padding: 5rem 0;
  }
}
.page-template-editorial-board-page section.blocks .container.grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .page-template-editorial-board-page section.blocks .container.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section.blocks .container.grid {
    column-gap: 2.625rem;
    row-gap: 3.125rem;
  }
}
.page-template-editorial-board-page section.blocks .container.grid .block {
  margin: 0;
}
.page-template-editorial-board-page section.blocks .block {
  background: #ffffff;
  box-shadow: 0px 0px 1.875rem rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0.9375rem;
  max-width: 77.875rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section.blocks .block {
    padding: 3.75rem 5.625rem;
  }
}
.page-template-editorial-board-page section.blocks .block h3 {
  font-size: 1.375rem;
  line-height: 1.36;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  color: #56c2e8;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section.blocks .block h3 {
    font-size: 2.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-template-editorial-board-page section.blocks .block:nth-child(2) h3, .page-template-editorial-board-page section.blocks .block:nth-child(3) h3 {
    color: #f7d135;
  }
}
.page-template-editorial-board-page section.blocks .block .text {
  width: fit-content;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0.9375rem auto 0 auto;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section.blocks .block .text {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section.blocks .block .text {
    font-size: 1.5rem;
  }
}
.page-template-editorial-board-page section.blocks .block .text ul {
  margin: 0;
}
.page-template-editorial-board-page section#speakers {
  color: #ffffff;
  background: #1b1d3c;
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers {
    padding: 5.625rem 0;
  }
}
.page-template-editorial-board-page section#speakers h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers h2 {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -1.875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list {
    margin-right: -1.875rem;
    margin-bottom: -2.5rem;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list .speaker {
  margin-bottom: 1.875rem;
  max-width: 26.25rem;
}
@media screen and (min-width: 768px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker {
    width: 23%;
    margin-right: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list .speaker .photo {
  padding: 1.125rem;
  background: url("images/speaker_back_blue.png");
  background-size: 100% 100%;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker .photo {
    padding: 1.5625rem;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list .speaker .text {
  padding: 0 1.125rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker .text {
    padding: 0 1.5625rem;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list .speaker .name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: #f7d135;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker .name {
    font-size: 1.375rem;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list .speaker .position {
  font-size: 1rem;
  line-height: 1.1;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker .position {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(even) .photo {
    background-image: url("images/speaker_back_yellow.png");
  }
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(even) .name {
    color: #56c2e8;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+2) .photo, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+3) .photo {
    background-image: url("images/speaker_back_yellow.png");
  }
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+2) .name, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+3) .name {
    color: #56c2e8;
  }
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+2) .photo, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+3) .photo {
    background-image: url("images/speaker_back_yellow.png");
  }
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+2) .name, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(4n+3) .name {
    color: #56c2e8;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+2) .photo, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+4) .photo, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+5) .photo, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+7) .photo {
    background-image: url("images/speaker_back_yellow.png");
  }
  .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+2) .name, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+4) .name, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+5) .name, .page-template-editorial-board-page section#speakers .speakers-list .speaker:nth-child(8n+7) .name {
    color: #56c2e8;
  }
}
.page-template-editorial-board-page section#speakers .speakers-list .speaker.more {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  align-self: end;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#speakers .speakers-list .speaker.more {
    font-size: 2.75rem;
    padding-bottom: 1em;
  }
}
.page-template-editorial-board-page section#schedule {
  padding: 2.5rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule {
    padding: 5.625rem 0;
  }
}
.page-template-editorial-board-page section#schedule h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule h2 {
    font-size: 2.75rem;
  }
}
.page-template-editorial-board-page section#schedule .schedule-list {
  max-width: 61.25rem;
  margin: auto;
  background: #ffffff;
  box-shadow: 0px 0px 2.8125rem rgba(0, 0, 0, 0.1);
  padding: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule .schedule-list {
    padding: 1.25rem 5rem 5rem 5rem;
  }
}
.page-template-editorial-board-page section#schedule .schedule-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule .schedule-list ul {
    margin-bottom: 3.75rem;
  }
}
.page-template-editorial-board-page section#schedule .schedule-list ul li {
  padding: 0.9375rem 0;
  border-bottom: 1px solid #c4c4c4;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule .schedule-list ul li {
    padding: 2.1875rem 0;
    font-size: 2.375rem;
    border-width: 2px;
  }
}
.page-template-editorial-board-page section#schedule .schedule-list ul li .date {
  display: inline-block;
  color: #56c2e8;
  margin-right: 0.625rem;
}
.page-template-editorial-board-page section#schedule .schedule-list .description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule .schedule-list .description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.page-template-editorial-board-page section#schedule .schedule-list .link {
  display: block;
  position: relative;
  padding: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  color: #1b1d3c;
  background: url("images/back.png") no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#schedule .schedule-list .link {
    font-size: 3.125rem;
    padding: 5.625rem;
  }
}
.page-template-editorial-board-page section#schedule .schedule-list .link .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-template-editorial-board-page section#schedule .schedule-list .link span {
  position: relative;
}
.page-template-editorial-board-page section#place {
  padding: 2.5rem 0;
  background: #e3e3e3;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#place {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#place .container {
    width: 65.8%;
    display: flex;
    align-items: center;
  }
}
.page-template-editorial-board-page section#place .container .text h3 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  color: #56c2e8;
  margin: 0 0 0.5em 0;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#place .container .text h3 {
    font-size: 2rem;
  }
}
.page-template-editorial-board-page section#place .container .text div {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#place .container .text div {
    font-size: 2.375rem;
  }
}
.page-template-editorial-board-page section#place .container .text div.info {
  font-size: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#place .container .text div.info {
    font-size: 1.5rem;
    margin-top: 3.3125rem;
  }
}
.page-template-editorial-board-page section#place .container .image {
  margin-top: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-editorial-board-page section#place .container .image {
    flex: none;
    width: 37.75rem;
    margin-top: 0;
    margin-left: 6.25rem;
  }
}

.home-banner {
  width: 100%;
  background: #f7d135;
  margin-bottom: 0.875rem;
  padding: 3.125rem 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-banner {
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .home-banner {
    background: url("images/banner.png") no-repeat center, #f7d135;
    background-size: cover;
    margin-bottom: 1.5625rem;
    padding: 2.5rem 6.25rem;
  }
}
.home-banner .line {
  color: #1b1d3c;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.41;
}
@media screen and (min-width: 1025px) {
  .home-banner .line {
    font-size: 2.375rem;
  }
}
.home-banner .line span {
  display: inline-block;
}
.home-banner .line span.divider {
  color: #ffffff;
  margin: 0 0.2em;
}
.home-banner h2 {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: #1b1d3c;
  margin: 0.3125rem 0 0.3125rem 0;
}
@media screen and (min-width: 1025px) {
  .home-banner h2 {
    font-size: 5.625rem;
    margin: 1.875rem 0 0.625rem 0;
  }
}
.home-banner .link a {
  display: block;
  width: 15rem;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1;
  text-transform: uppercase;
  color: #1b1d3c;
  text-decoration: none;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .home-banner .link a {
    width: 25rem;
    font-size: 1rem;
  }
}

.page-template-history-page .history-list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .page-template-history-page .history-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.875rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2.625rem;
  }
}
.page-template-history-page .history-item {
  padding-bottom: 1.875rem;
  padding-top: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item {
    padding: 0;
    border-bottom: none;
  }
}
.page-template-history-page .history-item .thumbnail {
  position: relative;
}
.page-template-history-page .history-item .thumbnail .tag {
  font-size: 0.75rem;
  line-height: 0.75rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item .thumbnail .tag {
    font-size: 1.125rem;
    line-height: 1.125rem;
  }
}
.page-template-history-page .history-item .thumbnail img {
  width: 100%;
  min-height: 9.1875rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item .thumbnail img {
    min-height: 18.5625rem;
  }
}
.page-template-history-page .history-item .thumbnail-placeholder {
  min-height: 9.1875rem;
  background: #c4c4c4;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item .thumbnail-placeholder {
    min-height: 18.5625rem;
  }
}
.page-template-history-page .history-item .date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  color: #bcbcbc;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .page-template-history-page .history-item .date {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item .date {
    margin-bottom: 1rem;
    font-size: 1.375rem;
  }
}
.page-template-history-page .history-item h2.title,
.page-template-history-page .history-item h3.title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: normal;
  color: #1b1d3c;
  margin: 0 0 0.9375rem 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-template-history-page .history-item h2.title,
  .page-template-history-page .history-item h3.title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item h2.title,
  .page-template-history-page .history-item h3.title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.page-template-history-page .history-item h2.title a,
.page-template-history-page .history-item h3.title a {
  color: inherit;
  text-decoration: none;
}
.page-template-history-page .history-item h3.title {
  color: #ffffff;
}
.page-template-history-page .history-item .read-more a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: normal;
  text-transform: uppercase;
  color: #56c2e8;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page-template-history-page .history-item .read-more a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item .read-more a {
    font-size: 1.125rem;
  }
}
.page-template-history-page .history-item .tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: white;
  border-radius: 1.25rem;
  border: 0.0625rem solid white;
  padding: 0.25rem 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .history-item .tag {
    padding: 0.375rem 1.875rem;
    top: 1.75rem;
    left: 1.75rem;
  }
}
.page-template-history-page .page-title {
  position: relative;
}
.page-template-history-page .page-title .search-form-wrap {
  padding: 0.75rem;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .page-title .search-form-wrap {
    padding: 1.25rem;
    position: absolute;
    width: 21.875rem;
    height: 3.625rem;
    left: initial;
    top: 0;
    right: 0;
    background: #ffffff;
  }
}
.page-template-history-page .page-title .search-form-wrap.visible {
  display: block;
}
.page-template-history-page .page-title .search-form-wrap form {
  display: flex;
  align-items: center;
  height: 100%;
}
.page-template-history-page .page-title .search-form-wrap input {
  padding: 0;
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 0.75rem;
  -webkit-appearance: none;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .page-title .search-form-wrap input {
    font-size: 1.375rem;
  }
}
.page-template-history-page .page-title .search-form-wrap input ::-webkit-input-placeholder {
  color: #979797;
  opacity: 0.5;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .page-title .search-form-wrap input ::-webkit-input-placeholder {
    opacity: 0.3;
  }
}
.page-template-history-page .page-title .search-form-wrap button {
  border: none;
  background: transparent;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .page-title .search-form-wrap button {
    padding: 0.625rem 0;
  }
}
.page-template-history-page .page-title .search-form-wrap button svg {
  display: block;
  width: 1rem;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .page-title .search-form-wrap button svg {
    width: 1.4375rem;
  }
}
.page-template-history-page .nav-links a,
.page-template-history-page .nav-links span {
  font-size: 1.75rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .nav-links a,
  .page-template-history-page .nav-links span {
    font-size: 2.75rem;
  }
}
.page-template-history-page .nav-links .prev,
.page-template-history-page .nav-links .next {
  width: 0.6875rem;
  height: 1.25rem;
  background: url("images/arrow_left.svg") no-repeat center;
  background-size: contain;
  margin: 0 0.75rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .nav-links .prev,
  .page-template-history-page .nav-links .next {
    width: 1.0625rem;
    height: 1.9375rem;
  }
}
.page-template-history-page .search-block {
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 3.375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page .search-block {
    right: 0;
    margin: 0;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}
.page-template-history-page #page-content .date-tags-wrapper {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page #page-content .date-tags-wrapper {
    margin: 0 0 2.5rem 0;
    height: 3.4375rem;
    display: flex;
    justify-content: center;
    position: relative;
  }
}
.page-template-history-page #page-content .timeline {
  margin-bottom: 4.375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page #page-content .timeline {
    margin-top: 0;
    position: absolute;
    left: 0;
  }
}
.page-template-history-page #page-content .timeline .date {
  margin: 0;
}
.page-template-history-page #page-content .timeline .date img {
  width: 0.4375rem;
}
@media screen and (min-width: 1025px) {
  .page-template-history-page #page-content .timeline .date img {
    width: 0.8125rem;
  }
}
.page-template-history-page #page-content .timeline .date .next img {
  transform: rotate(180deg);
}
.page-template-history-page #page-content .tags {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 65.625rem;
}
.page-template-history-page #page-content .tags .tags-list {
  margin: 0;
}
.page-template-history-page #page-content .tags .tags-list a {
  color: #1b1d3c;
}
.page-template-history-page #page-content .tags .tags-list .selected {
  background: #56c2e8;
  border-color: #56c2e8;
}

.single-history {
  position: relative;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .single-history {
    padding: 1.25rem 0 2.5rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .single-history {
    padding: 2.75rem 0 4.125rem 0;
  }
}
.single-history .main-image {
  min-height: 8rem;
}
@media screen and (min-width: 1025px) {
  .single-history .main-image {
    min-height: 40.25rem;
  }
}
.single-history .main-image .text-black {
  color: #1b1d3c;
}
.single-history .main-image h1 {
  text-align: center;
  text-transform: none;
  font-size: 1.125rem;
  line-height: normal;
  color: white;
  margin: 0 1.25rem;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .single-history .main-image h1 {
    margin: 0 auto;
    max-width: 94.625rem;
    font-size: 5rem;
    line-height: normal;
  }
}
.single-history .main-image .thumbnail img {
  width: 100%;
  height: 9.875rem;
  position: absolute;
  top: -1.25rem;
  z-index: -1;
  object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .single-history .main-image .thumbnail img {
    top: -2.75rem;
    height: 40.25rem;
  }
}
.single-history .main-image .thumbnail:before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  width: 100%;
  height: 9.875rem;
  background: rgba(0, 0, 0, 0.6); /* Adjust the darkness by changing the alpha value */
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .single-history .main-image .thumbnail:before {
    top: -2.75rem;
    height: 40.25rem;
  }
}
.single-history .main-image .thumbnail-placeholder {
  background: #c4c4c4;
  min-height: 9.8125rem;
}
@media screen and (min-width: 1025px) {
  .single-history .main-image .thumbnail-placeholder {
    min-height: 40.25rem;
  }
}
.single-history .page-back {
  position: relative;
  z-index: 10;
}
.single-history .page-back .js-back {
  color: white;
}
.single-history .page-back .js-back img {
  fill: white;
}
.single-history .page-back .text-black {
  color: #1b1d3c;
}
.single-history .top-content {
  position: relative;
}
.single-history .main-content .content {
  max-width: 54.375rem;
  margin: 0 auto;
  font-size: 1.375rem;
}
.single-history .main-content .content h2 {
  font-size: 1.375rem;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .content h2 {
    font-size: 1.875rem;
  }
}
.single-history .main-content .content p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .content p {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.625rem;
  }
}
.single-history .main-content .content .author {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 700;
  background-color: #f7d135;
  padding: 0.3125rem 0.4375rem;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .content .author {
    font-size: 1.375rem;
    line-height: 1.5rem;
  }
}
.single-history .main-content .content .tags {
  margin-top: 1.25rem;
}
.single-history .main-content .content .wp-block-quote {
  padding: 1.25rem 0;
  margin: 2.5rem 0 2.5rem 0;
  border-top: 0.1875rem solid #f7d135;
  border-bottom: 0.1875rem solid #f7d135;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .content .wp-block-quote {
    padding: 3.125rem 0;
    margin: 0 0 3.125rem 0;
    border-top: 0.375rem solid #f7d135;
    border-bottom: 0.375rem solid #f7d135;
  }
}
.single-history .main-content .content .wp-block-quote p {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .content .wp-block-quote p {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.125rem;
  }
}
.single-history .main-content .content .image-alt {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #c4c4c4;
  margin-top: 0.625rem;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .content .image-alt {
    font-size: 0.875rem;
  }
}
.single-history .main-content .date {
  color: #c4c4c4;
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 700;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .single-history .main-content .date {
    font-size: 1.375rem;
    line-height: normal;
  }
}
.single-history #page-content .wp-block-embed,
.single-history #page-content .wp-block-gallery {
  margin: 2.5rem 0;
}
.single-history #page-content .wp-block-image {
  margin: 0 0 2.5rem 0;
}
.single-history #page-content .wp-block-image img {
  width: 100%;
}
.single-history #page-content ul.tags-list li a {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.75rem;
  color: #1b1d3c;
}
@media screen and (min-width: 1025px) {
  .single-history #page-content ul.tags-list li a {
    font-size: 1.125rem;
    line-height: 1.125rem;
  }
}
.single-history #history-slider {
  padding: 0.625rem 1.25rem 0 1.25rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider {
    padding: 2rem 3.75rem 3.125rem 3.75rem;
    padding-top: 2rem;
  }
}
.single-history #history-slider h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider h2 {
    font-size: 2.75rem;
  }
}
.single-history #history-slider h3.title {
  color: #1b1d3c;
}
.single-history #history-slider .swiper-button-next,
.single-history #history-slider .swiper-button-prev {
  color: #1b1d3c;
  top: 31%;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .swiper-button-next,
  .single-history #history-slider .swiper-button-prev {
    top: 39%;
  }
}
.single-history #history-slider .swiper-button-next:after,
.single-history #history-slider .swiper-button-prev:after {
  font-size: 0.75rem;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .swiper-button-next:after,
  .single-history #history-slider .swiper-button-prev:after {
    font-size: 1.875rem;
  }
}
.single-history #history-slider .swiper-button-next {
  right: -0.25rem;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .swiper-button-next {
    right: 0.625rem;
  }
}
.single-history #history-slider .swiper-button-prev {
  left: -0.25rem;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .swiper-button-prev {
    left: 0.625rem;
  }
}
.single-history #history-slider .thumbnail {
  position: relative;
}
.single-history #history-slider .thumbnail img {
  min-height: 9.1875rem;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .thumbnail img {
    min-height: 18.5625rem;
  }
}
.single-history #history-slider .thumbnail-placeholder {
  margin-bottom: 1.125rem;
  min-height: 9.1875rem;
  background: #c4c4c4;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .thumbnail-placeholder {
    min-height: 18.5625rem;
  }
}
.single-history #history-slider .tag {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.75rem;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: white;
  border-radius: 1.25rem;
  border: 0.0625rem solid white;
  padding: 0.25rem 1.25rem;
}
@media screen and (min-width: 1025px) {
  .single-history #history-slider .tag {
    font-size: 1.125rem;
    line-height: 1.125rem;
    padding: 0.375rem 1.875rem;
    top: 1.75rem;
    left: 1.75rem;
  }
}

/* Preloader styles */
.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  background-color: rgba(27, 29, 60, 0.7);
  position: relative;
}

.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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