:root {
  --padding-on-side: 4rem;
  --margins: 2rem;
  --font-size-14: 1.4rem;
  --font-size-16: 1.6rem;
  --font-size-18: 1.8rem;
  --font-size-20: 2rem;
  --font-size-24: 2.4rem;
  --font-size-30: 3rem;
  --font-size-36: 3.6rem;
  --font-size-48: 4.8rem;
  --font-size-60: 6rem;
  --font-size-90: 9rem;
  --gap: 4rem;
  --border-radius: 0.5rem;
}
@font-face {
  font-family: 'Fredoka One CZ';
  src: url('../fonts/FredokaOneCZ.woff2') format('woff2');
  font-display: swap;
}
* {
  box-sizing: border-box;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
input,
textarea,
p,
body,
span {
  margin: 0;
  padding: 0;
}
img {
  border: none;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
a,
svg,
path {
  transition: all 0.15s ease-in-out;
}
div,
article,
section,
img,
main,
input,
textarea {
  display: block;
}
input,
textarea,
img,
a,
option,
select,
button,
div {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html {
  font-size: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
body {
  font-size: var(--font-size-18);
  color: #221638;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
p {
  line-height: 1.5em;
}
.content {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.content--regular {
  max-width: calc(1400px  +  2*4rem);
}
.content--smaller {
  max-width: calc(900px  +  2*4rem);
}
.content--bigger {
  max-width: calc(1400px  +  2*4rem);
}
.section,
.is-style-section {
  position: relative;
  z-index: 2;
}
.section--max-width,
.is-style-section--max-width {
  max-width: 192rem;
  margin: 0 auto;
}
.section--background,
.is-style-section--background {
  background-color: #f4f4f4;
}
.section--normal,
.is-style-section--normal {
  padding: calc(var(--gap) * 3) 0;
}
.section--smaller,
.is-style-section--smaller {
  padding: calc(var(--gap) * 2) 0;
}
.section--smaller-top,
.is-style-section--smaller-top {
  padding: calc(var(--gap) * 1) 0 calc(var(--gap) * 3);
}
.section--no-top,
.is-style-section--no-top {
  padding-top: 0 !important;
}
.section--no-bottom,
.is-style-section--no-bottom {
  padding-bottom: 0 !important;
}
.absolute-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.button,
.wp-block-button__link {
  display: inline-block;
  padding: 0.8em 2em;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-18);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  border: none;
  border-radius: 10rem;
  line-height: 1em;
  color: #fff;
  background-color: var(--color);
}
.button:hover,
.wp-block-button__link:hover {
  color: #fff;
  background-color: #221638;
}
.button--smaller,
.wp-block-button__link--smaller {
  font-size: var(--font-size-16);
  padding: 0.5em 1em;
}
.button-wrapper {
  text-align: center;
  margin-top: var(--gap);
  transition: all 0.15s ease-in-out;
}
.button-wrapper--margin-top {
  margin-top: var(--gap);
}
.buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.text-center,
.has-text-align-center {
  text-align: center;
}
.margin-top {
  margin-top: var(--gap);
}
.margin-bottom {
  margin-bottom: var(--gap);
}
.blue {
  --color: #3cb1e7;
  --colorRGB: 60, 177, 231;
}
.red {
  --color: #e85248;
  --colorRGB: 232, 82, 72;
}
.green {
  --color: #abcd52;
  --colorRGB: 171, 205, 82;
}
.yellow {
  --color: #ffcc33;
  --colorRGB: 255, 204, 51;
}
.section-title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-48);
  margin-bottom: var(--gap);
}
.section-subheading {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-24);
  margin-bottom: 0.2em;
}
.section-subheading span {
  color: var(--color);
}
.page-title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-60);
}
.page-title::after {
  content: "";
  width: 3em;
  height: 0.15em;
  border-radius: 5rem;
  background-color: var(--color);
  display: block;
  margin: 0.2em auto var(--gap) 0;
}
.page-title--center {
  text-align: center;
}
.page-title--center::after {
  margin-left: auto;
}
.global-style > *:first-child {
  margin-top: 0 !important;
}
.global-style > *:last-child {
  margin-bottom: 0 !important;
}
.global-style p:not([class]) {
  margin: 2rem 0;
  color: #221638;
}
.global-style p:not([class]) + ul:not([class]) {
  margin-top: -1rem;
}
.global-style p a,
.global-style li a,
.global-style table a,
.global-style .wp-block-file a:not(.wp-block-file__button) {
  color: var(--color);
  text-decoration: none;
  display: inline-block;
}
.global-style p a::after,
.global-style li a::after,
.global-style table a::after,
.global-style .wp-block-file a:not(.wp-block-file__button)::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.global-style p a:hover::after,
.global-style li a:hover::after,
.global-style table a:hover::after,
.global-style .wp-block-file a:not(.wp-block-file__button):hover::after {
  width: 100%;
  color: var(--color);
}
.global-style strong {
  font-weight: 700;
}
.global-style .has-small-font-size {
  font-size: var(--font-size-18);
}
.global-style .has-medium-font-size {
  font-size: var(--font-size-24) !important;
}
.global-style .has-large-font-size {
  font-size: var(--font-size-30);
}
.global-style .has-huge-font-size {
  font-size: var(--font-size-36);
}
.global-style hr {
  border: 0;
  height: 1px;
  background: #221638;
  clear: both;
  margin: 2rem 0;
}
.global-style h1,
.global-style h2,
.global-style h3,
.global-style h4,
.global-style h5 {
  line-height: 1.1em;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  margin: 1.5em 0 0.5em;
}
.global-style h1:not([class]),
.global-style h1.has-text-align-center {
  font-size: var(--font-size-90);
  line-height: 1em;
  margin: 0.4em 0;
}
.global-style h2:not([class]) {
  font-size: var(--font-size-36);
}
.global-style h3:not([class]) {
  font-size: var(--font-size-30);
}
.global-style h4:not([class]) {
  font-size: var(--font-size-24);
}
.global-style h5 {
  font-size: var(--font-size-20);
  margin: 0;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
}
.global-style ol,
.global-style ul {
  counter-reset: item;
  list-style: none;
  margin: 2rem 0;
  line-height: 1.3em;
  padding-left: 0;
}
.global-style ol li,
.global-style ul li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5em;
}
.global-style ol li:not(:last-of-type),
.global-style ul li:not(:last-of-type) {
  padding-bottom: 0.5em;
}
.global-style ul li::before {
  content: '';
  width: 0.8em;
  height: 0.4em;
  position: absolute;
  left: 0;
  top: 0.6em;
  border-radius: 1em;
}
.global-style ul li:nth-child(4n - 3)::before {
  background-color: #3cb1e7;
}
.global-style ul li:nth-child(4n - 2)::before {
  background-color: #ffcc33;
}
.global-style ul li:nth-child(4n - 1)::before {
  background-color: #abcd52;
}
.global-style ul li:nth-child(4n - 0)::before {
  background-color: #e85248;
}
.global-style ul li::before,
.global-style .two-column-list li::before {
  border-color: #626472;
}
.global-style ol li::before {
  color: #626472;
}
.global-style ol:not([class]) li::before {
  counter-increment: item;
  content: counter(item) '. ';
  font-weight: 700;
  display: inline-block;
  position: absolute;
  left: 0;
  z-index: 2;
}
.global-style ol:not([class]) li:nth-child(4n - 3)::before {
  color: #3cb1e7;
}
.global-style ol:not([class]) li:nth-child(4n - 2)::before {
  color: #ffcc33;
}
.global-style ol:not([class]) li:nth-child(4n - 1)::before {
  color: #abcd52;
}
.global-style ol:not([class]) li:nth-child(4n - 0)::before {
  color: #e85248;
}
blockquote {
  margin: 3rem 0;
  padding: 2rem 3rem;
  border-radius: 0.5rem;
  background-color: #f4f4f4;
  overflow: hidden;
}
blockquote::after {
  content: '';
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 12rem;
  height: 12rem;
  background: url("data:image/svg+xml,%3Csvg height='1792' width='1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M832 320v704q0 104-40.5 198.5T682 1386t-163.5 109.5T320 1536h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28H256q-80 0-136-56T64 704V320q0-80 56-136t136-56h384q80 0 136 56t56 136zm896 0v704q0 104-40.5 198.5T1578 1386t-163.5 109.5T1216 1536h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136V320q0-80 56-136t136-56h384q80 0 136 56t56 136z' fill='%23cbdaea'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.7;
}
blockquote p {
  font-size: var(--font-size-20);
  margin: 0;
  z-index: 2;
}
blockquote cite {
  color: #626472;
  margin-top: 2rem;
  display: block;
}
.wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
}
.wp-block-columns + .wp-block-columns {
  margin-top: var(--gap);
}
@media screen and (max-width: 660px) {
  .wp-block-columns {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }
}
.wp-block-columns + .is-style-section-title {
  margin-top: var(--gap);
}
.wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.wp-block-media-text__media {
  margin: 0 auto;
}
.wp-block-media-text + .wp-block-media-text {
  margin-top: var(--gap);
}
@media screen and (max-width: 768px) {
  .wp-block-media-text {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }
  .wp-block-media-text__media {
    order: 2;
  }
  .wp-block-media-text__text {
    order: 1;
  }
  .wp-block-media-text + .wp-block-media-text {
    margin-top: calc(var(--gap) * 2);
  }
}
.wp-block-buttons {
  margin-top: var(--gap);
}
.is-content-justification-center {
  text-align: center;
}
.is-style-section-text + .is-style-section-text {
  margin-top: var(--margins);
}
.section--normal + .gallery {
  margin-top: 0;
}
.wp-block-table {
  margin: var(--margins) 0;
  border: none;
  overflow: hidden;
}
.wp-block-table table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.wp-block-table th {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-18);
  color: #fff;
  background-color: #221638;
  border: none;
  text-align: left;
  padding: 0.5em 1em;
}
.wp-block-table th:first-child {
  border-top-left-radius: var(--border-radius);
}
.wp-block-table th:last-child {
  border-top-right-radius: var(--border-radius);
}
.wp-block-table td {
  background: #fff;
  padding: 0.5em 1em;
  font-size: var(--font-size-16);
  border: none;
}
.wp-block-table tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius);
}
.wp-block-table tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius);
}
.wp-block-table tr:nth-of-type(even) td {
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .wp-block-table {
    padding-bottom: 2rem;
    margin: 0;
  }
  .wp-block-table table {
    margin: 0;
  }
  .wp-block-table thead {
    display: none;
  }
  .wp-block-table tr {
    display: block;
  }
  .wp-block-table tr:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .wp-block-table td {
    display: block;
    text-align: right;
    padding: 0.4em 0.6em;
    line-height: 1.1em;
    background-color: #f4f4f4;
  }
  .wp-block-table td::before {
    content: attr(data-title);
    float: left;
    font-family: 'Fredoka One CZ', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: block;
  }
}
.download {
  margin: var(--margins) 0;
}
.download__item {
  padding: calc(var(--gap) * 0.5);
  background-color: rgba(var(--colorRGB), 0.07);
  border: 1px solid rgba(var(--colorRGB), 0.3);
  color: var(--color);
  display: block;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-16);
  border-radius: var(--border-radius);
}
.download__item:hover {
  background-color: var(--color);
  color: #fff;
}
.download span {
  opacity: 0.75;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
body,
html {
  overflow-x: hidden;
}
.top-bar {
  padding: 0.8em 0;
  z-index: 99;
}
.top-bar__content {
  display: flex;
  justify-content: space-between;
}
.top-bar__logo img {
  height: calc(var(--gap) * 1.5);
}
.top-bar__logo--hp img {
  height: calc(var(--gap) * 3);
}
.top-bar__menu > li {
  display: inline-block;
}
.top-bar__menu > li > a {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  color: #221638;
  display: inline-block;
  font-size: var(--font-size-18);
  padding: 1em 1.2em 0.6em;
}
.top-bar__menu > li > a::after {
  content: "";
  display: block;
  width: 0%;
  height: 0.3em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
  margin-top: 0.2em;
}
.top-bar__menu > li > a:hover::after {
  width: 100%;
}
.top-bar__menu .menu-item-has-children > a {
  padding-right: 1.6em;
}
.top-bar__menu .menu-item-has-children > a::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 20 12.1' version='1.1' viewBox='0 0 20 12.1'%3E%3Cpath fill='none' stroke='%231a2f4f' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='5' d='M2.1 2.2 10 10.1 18 2.2'/%3E%3C/svg%3E") center / contain no-repeat;
  display: inline-block;
  position: absolute;
  right: 0.6em;
  top: calc(50% - 0.3em);
}
.top-bar__menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.top-bar__menu .current-menu-parent a::after {
  width: 100%;
}
.top-bar .sub-menu {
  position: absolute;
  background-color: #221638;
  padding: 0.6em 0;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  visibility: hidden;
  margin-top: -0.5em;
}
.top-bar .sub-menu::before {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
  left: 1.2em;
  top: -0.4em;
  transform: rotate(45deg);
  border-radius: 0.2em;
  background-color: #221638;
}
.top-bar .sub-menu a {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  color: #fff;
  display: block;
  font-size: var(--font-size-16);
  padding: 0.4em 1.2em;
  white-space: nowrap;
}
.top-bar .sub-menu a:hover {
  background-color: var(--color);
}
.top-bar .sub-menu .current-menu-item a {
  background-color: var(--color);
}
.top-bar__mobile-menu {
  display: none;
  margin-left: var(--gap);
}
.top-bar__mobile-menu.active .top-bar__hamburger span {
  background-color: #e85248;
}
.top-bar__mobile-menu.active .top-bar__hamburger span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: top left;
}
.top-bar__mobile-menu.active .top-bar__hamburger span:nth-child(2) {
  transform: rotate(45deg);
  background-color: #fff !important;
  margin-left: -0.3em;
  margin-bottom: -0.3rem;
  z-index: 3;
  opacity: 0;
}
.top-bar__mobile-menu.active .top-bar__hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.top-bar__mobile-menu-text {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-20);
  text-transform: uppercase;
}
.top-bar__hamburger {
  width: 1.75em;
  height: 1.4em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-bar__hamburger span {
  display: block;
  height: 0.2em;
  border-radius: 1em;
  margin-left: auto;
  transition: all 0.15s ease-in-out;
  background-color: #221638;
}
.top-bar__hamburger span:nth-child(1) {
  width: 100%;
  background-color: #3cb1e7;
}
.top-bar__hamburger span:nth-child(2) {
  width: 100%;
  background-color: #abcd52;
}
.top-bar__hamburger span:nth-child(3) {
  width: 100%;
  background-color: #ffcc33;
}
@media screen and (max-width: 1400px) {
  .top-bar__logo img {
    height: 5.2rem;
    width: auto !important;
  }
}
@media screen and (max-width: 1024px) {
  .top-bar__menu > li > a {
    padding-left: 0.9em;
    padding-right: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .top-bar__menu {
    display: none;
  }
  .top-bar__mobile-menu {
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
}
.important-messages {
  z-index: 2;
}
.important-messages__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10%;
  background: url(../img/svg/shape1.svg) 40% 0% / 19rem auto no-repeat;
}
.important-messages__content::before {
  content: "";
  width: 40%;
  height: 40%;
  transform: rotate(-30deg);
  position: absolute;
  left: 5%;
  top: 30%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 385.3 368' version='1.1' viewBox='0 0 385.3 368'%3E%3Cstyle%3E.prefix__st0%7Bfill:none;stroke:%23221638;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D%3C/style%3E%3Cpath d='M295.3 204v132.7c0 12.5-10.1 22.7-22.7 22.7H79.3l-62.7-62.7v-262C16.7 22.1 26.8 12 39.3 12h233.3c12.5 0 22.7 10.1 22.7 22.7v14' class='prefix__st0'/%3E%3Cpath d='M83.1 357.6s16.2-50.9 0-66c-16.2-15.1-64.9 0-64.9 0' class='prefix__st0'/%3E%3Cpath d='M233.7 56.7 67 56.7' class='prefix__st0'/%3E%3Cpath d='M230.7 112.7 67.3 112.7' class='prefix__st0'/%3E%3Cpath d='M71.7 166.7 154.7 166.7' class='prefix__st0'/%3E%3Cpath d='m328.6 51.4-132 132-16 61 62-20.3L369.3 89.2c2.2-2.3 2.1-6-.3-8.2l-32.2-29.8c-2.3-2.2-5.9-2.1-8.2.2z' class='prefix__st0'/%3E%3Cpath d='M338.7 118.3 301.8 81.5' class='prefix__st0'/%3E%3Cpath d='M244.3 223.3c-5.3-19-32.3-37.7-47-42' class='prefix__st0'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.1;
}
.important-messages__content::after {
  content: "";
  background-color: #f4f4f4;
  position: absolute;
  right: 25%;
  height: 80%;
  width: 200vw;
  z-index: -1;
}
.important-messages__image {
  flex-shrink: 0;
}
.important-messages__image::before {
  --space: 13%;
  content: "";
  position: absolute;
  left: calc(var(--space) * -1);
  right: calc(var(--space) * -1);
  top: calc(var(--space) * -1);
  bottom: calc(var(--space) * -1);
  background: url(../img/svg/main-circle-inner.svg) center / contain no-repeat;
  animation: spin 45s linear infinite;
  z-index: 5;
}
.important-messages__image::after {
  --space: 13%;
  content: "";
  position: absolute;
  left: calc(var(--space) * -1);
  right: calc(var(--space) * -1);
  top: calc(var(--space) * -1);
  bottom: calc(var(--space) * -1);
  background: url(../img/svg/main-circle-outside.svg) center / contain no-repeat;
  animation: spin 90s linear infinite;
  z-index: 6;
}
.important-messages__image img {
  border-radius: 50%;
  width: 56rem;
  height: auto;
}
.important-messages__item:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.important-messages__title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-48);
  margin-bottom: 0.2em;
}
.important-messages__smaller-title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-30);
  margin-bottom: 0.2em;
}
.important-messages__date {
  font-size: var(--font-size-16);
  color: #221638;
  margin-bottom: 0.4em;
}
.important-messages__date::before {
  content: "";
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-date.svg);
  mask-image: url(../img/svg/icon-date.svg);
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: 0.2em;
  position: relative;
  margin-right: 0.4em;
}
@media screen and (max-width: 1300px) {
  .important-messages__image::after {
    --space: 10%;
  }
  .important-messages__image img {
    width: 40rem;
  }
}
@media screen and (max-width: 1024px) {
  .important-messages__content {
    background-position: 30% 0;
    background-size: 10rem auto;
  }
}
@media screen and (max-width: 900px) {
  .important-messages__image img {
    width: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .important-messages__image {
    display: none;
  }
  .important-messages__content {
    background-position: 90% 1%;
    padding: var(--gap) 0;
  }
  .important-messages__content::after {
    width: 100vw;
    top: 0;
    bottom: 0;
    left: calc(var(--padding-on-side) * -1);
    right: calc(var(--padding-on-side) * -1);
    height: 100%;
  }
}
.news-calendar {
  background: url(../img/svg/shape2.svg) 95% 50% / 10rem auto no-repeat;
}
.news-calendar__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news-calendar__wrapper {
    grid-template-columns: 1fr;
  }
}
.section-title-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.section-title-button .section-title {
  margin-bottom: 0;
}
.news {
  display: grid;
  gap: calc(var(--gap) * 0.5);
}
.news--home {
  grid-template-columns: 1fr 1fr;
}
.news__item {
  padding: calc(var(--gap) * 0.5);
  background-color: rgba(var(--colorRGB), 0.05);
  border: 1px solid rgba(var(--colorRGB), 0.2);
  border-radius: var(--border-radius);
}
.news__item:hover .news__title {
  color: var(--color);
}
.news__title {
  font-size: var(--font-size-24);
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  color: #221638;
  transition: all 0.15s ease-in-out;
}
.news__perex {
  margin: calc(var(--gap) * 0.4) 0;
}
.news__perex p {
  color: #626472;
  font-size: var(--font-size-16);
}
.news__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.news__bar-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.news__read-more {
  color: var(--color);
  transition: all 0.15s ease-in-out;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-18);
}
.news__read-more:hover {
  color: #221638;
}
.news__date {
  font-size: var(--font-size-16);
  color: #221638;
}
.news__date::before {
  content: "";
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-date.svg);
  mask-image: url(../img/svg/icon-date.svg);
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: 0.2em;
  position: relative;
  margin-right: 0.4em;
}
.news__category {
  font-size: var(--font-size-16);
  color: #221638;
}
.news__category::before {
  content: "";
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-category.svg);
  mask-image: url(../img/svg/icon-category.svg);
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: 0.2em;
  position: relative;
  margin-right: 0.4em;
}
.main-links {
  background-color: #221638;
}
.main-links::before {
  content: "";
  position: absolute;
  left: 13%;
  top: -2em;
  width: 5em;
  height: 5em;
  background: url(../img/svg/shape3.svg) center / contain no-repeat;
}
.main-links::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -2.4em;
  width: 8em;
  height: 4em;
  background: url(../img/svg/shape4.svg) center / contain no-repeat;
}
.main-links__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}
.main-links__title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-30);
  color: #fff;
}
.main-links__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.main-links .button:nth-child(4n -3) {
  --color: #e85248;
}
.main-links .button:nth-child(4n -2) {
  --color: #abcd52;
}
.main-links .button:nth-child(4n -1) {
  --color: #3cb1e7;
}
.main-links .button:nth-child(4n) {
  --color: #ffcc33;
}
.main-links .button:hover {
  color: #221638;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .main-links::before {
    width: 3.6em;
    height: 3.6em;
  }
}
.school-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.school-news__item {
  border-radius: var(--border-radius);
}
.school-news__item:hover .school-news__title {
  color: var(--color);
}
.school-news__content {
  padding: calc(var(--gap) * 0.5);
  background-color: rgba(var(--colorRGB), 0.07);
  border: 1px solid rgba(var(--colorRGB), 0.3);
}
.school-news__title {
  font-size: var(--font-size-24);
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  color: #221638;
  transition: all 0.15s ease-in-out;
}
.school-news__perex {
  margin: calc(var(--gap) * 0.4) 0;
}
.school-news__perex p {
  color: #626472;
  font-size: var(--font-size-16);
}
.school-news__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.school-news__date {
  font-size: var(--font-size-16);
  color: #221638;
}
.school-news__date::before {
  content: "";
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-date.svg);
  mask-image: url(../img/svg/icon-date.svg);
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: 0.2em;
  position: relative;
  margin-right: 0.4em;
}
.school-news__category {
  font-size: var(--font-size-16);
  color: #221638;
}
.school-news__category::before {
  content: "";
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-category.svg);
  mask-image: url(../img/svg/icon-category.svg);
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: 0.2em;
  position: relative;
  margin-right: 0.4em;
}
@media screen and (max-width: 768px) {
  .school-news {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 540px) {
  .school-news {
    grid-template-columns: 1fr;
  }
  .school-news__item {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer {
  background-color: #221638;
  color: #fff;
}
.footer::before {
  content: "";
  position: absolute;
  left: 65%;
  top: -2em;
  width: 5em;
  height: 5em;
  background: url(../img/svg/shape5.svg) center / contain no-repeat;
}
.footer::after {
  content: "";
  position: absolute;
  left: 1em;
  top: 40%;
  width: 11em;
  height: 7em;
  background: url(../img/svg/shape6.svg) center / contain no-repeat;
}
.footer__top {
  padding: calc(var(--gap) * 3) 0 calc(var(--gap) * 2);
}
.footer__top .content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--gap);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--gap) 0;
  font-size: var(--font-size-14);
}
.footer__bottom a {
  color: var(--color);
  text-decoration: none;
  display: inline-block;
  color: #fff;
}
.footer__bottom a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.footer__bottom a:hover::after {
  width: 100%;
  color: var(--color);
}
.footer__bottom .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.footer__links {
  display: flex;
}
.footer__links a:hover::after {
  background-color: #3cb1e7;
}
.footer__logo {
  margin-bottom: var(--margins);
}
.footer__contacts {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-20);
}
.footer__contacts p:not(:last-of-type) {
  margin-bottom: var(--margins);
}
.footer__contacts a {
  color: var(--color);
  text-decoration: none;
  display: inline-block;
  color: #fff;
}
.footer__contacts a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.footer__contacts a:hover::after {
  width: 100%;
  color: var(--color);
}
.footer__contacts a:hover::after {
  background-color: #3cb1e7;
}
.footer__title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-20);
  color: var(--color);
  margin-bottom: var(--margins);
}
.footer li a {
  font-size: var(--font-size-18);
  color: #fff;
}
.footer li a:hover {
  color: var(--color);
}
@media screen and (max-width: 1800px) {
  .footer::after {
    width: 8rem;
    height: 5rem;
    top: auto;
    bottom: 6em;
  }
}
@media screen and (max-width: 1024px) {
  .footer::after {
    content: none;
  }
  .footer::before {
    width: 3.6em;
    height: 3.6em;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    display: none;
  }
  .footer .content {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 660px) {
  .footer__bottom .content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }
}
@media screen and (max-width: 440px) {
  .footer .content {
    grid-template-columns: 1fr;
  }
}
.calendarium__wrapper {
  transition: all 0.15s ease-in-out;
  padding: calc(var(--gap) * 0.5);
  background-color: rgba(var(--colorRGB), 0.07);
  border: 1px solid rgba(var(--colorRGB), 0.3);
  border-radius: var(--border-radius);
}
.calendarium__wrapper.hidden {
  opacity: 0.5;
}
.calendarium__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.calendarium__current-month {
  font-weight: 700;
}
.calendarium__button {
  display: inline-block;
  padding: 0.8em 1.4em;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-18);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  line-height: 1em;
  color: #221638;
  background-color: rgba(var(--colorRGB), 0.25);
}
.calendarium__button:hover {
  color: #fff;
  background-color: var(--color);
}
.calendarium-loader {
  width: 3em;
  height: 3em;
  margin: 0;
  position: absolute;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  animation: spin 1s linear infinite;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23abcd52'%3E%3Cpath d='M463.702 162.655L442.491 14.164c-1.744-12.174-16.707-17.233-25.459-8.481l-30.894 30.894C346.411 12.612 301.309 0 254.932 0 115.464 0 3.491 109.16.005 248.511c-.19 7.617 5.347 14.15 12.876 15.234l59.941 8.569c8.936 1.304 17.249-5.712 17.125-15.058C88.704 165.286 162.986 90 254.932 90c22.265 0 44.267 4.526 64.6 13.183l-29.78 29.78c-8.697 8.697-3.761 23.706 8.481 25.459l148.491 21.211c9.784 1.475 18.381-7.034 16.978-16.978zM499.117 249.412l-59.897-8.555c-7.738-.98-17.124 5.651-17.124 16.143 0 90.981-74.019 165-165 165a165.207 165.207 0 01-64.306-13.052l28.828-28.828c8.697-8.697 3.761-23.706-8.481-25.459L64.646 333.435c-9.753-1.393-18.39 6.971-16.978 16.978l21.21 148.492c1.746 12.187 16.696 17.212 25.459 8.481l31.641-31.626C165.514 499.505 210.587 512 257.096 512c138.794 0 250.752-108.618 254.897-247.28.22-7.632-5.317-14.224-12.876-15.308z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.calendarium-loader.visible {
  opacity: 1;
  visibility: visible;
}
.calendar {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  text-align: center;
  border-radius: var(--border-radius);
}
.calendar thead th {
  background: rgba(var(--colorRGB), 0.25);
  color: #000000;
  font-weight: 700;
  padding: 0.6em 1em;
}
.calendar thead th:first-child {
  border-top-left-radius: var(--border-radius);
}
.calendar thead th:last-child {
  border-top-right-radius: var(--border-radius);
}
.calendar td {
  background: #fff;
  color: #626472;
  border: 1px solid rgba(var(--colorRGB), 0.3);
  padding: 0.6em 1em;
  position: relative;
  font-size: var(--font-size-16);
}
.calendar tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius);
}
.calendar tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius);
}
.calendar .today {
  font-weight: 700;
  background: #221638;
  color: #fff;
}
.calendar .event {
  font-weight: 700;
  color: #fff;
  background: var(--color);
  border-color: var(--colorRGB);
}
.calendar .event:hover .event-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 0.4em);
}
.calendar .event-tooltip {
  background: #221638;
  color: #fff;
  font-size: var(--font-size-16);
  position: absolute;
  padding: 0.6em 1em;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  visibility: hidden;
  bottom: 90%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
  width: 100%;
  min-width: 20rem;
  max-width: 40rem;
}
.calendar .event-tooltip::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.2em;
  background-color: #221638;
  left: 50%;
  bottom: -0.4em;
  transform: translate(-50%, 0) rotate(45deg);
  position: absolute;
}
.calendar .event-tooltip a {
  color: #fff;
  display: inline-block;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-16);
}
.calendar .event-tooltip a::after {
  content: "";
  display: block;
  width: 0%;
  height: 0.15em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
  margin-top: 0.1em;
}
.calendar .event-tooltip a:hover {
  color: var(--color);
}
.calendar .event-tooltip a:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .calendar td,
  .calendar thead th {
    padding: 0.4em 0.6em;
  }
  .calendar .event-tooltip {
    min-width: 16rem;
  }
}
.pagination {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: var(--gap);
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
}
.pagination ul {
  margin: 0 auto;
  text-align: center;
}
.pagination ul li {
  position: inherit;
  padding: 0;
  margin: 0;
}
.pagination li a {
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  padding: 0.6em 0.9em;
  display: inline-block;
  font-size: var(--font-size-16);
  line-height: 1em;
  background: #221638;
  color: #fff;
  margin: 0 0.1em;
  border: none;
  border-radius: var(--border-radius);
}
.pagination li {
  display: inline-block;
}
.pagination li.active a {
  color: #221638;
  background: #fff;
  cursor: default;
}
.pagination li.active a:hover {
  color: #221638;
  background: #fff;
}
.pagination li a:hover {
  background: var(--color);
  color: #fff;
}
.breadcrumb {
  text-align: center;
  font-size: var(--font-size-16);
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  padding: 1em 0 0.8em;
  background-color: #221638;
}
.breadcrumb__item {
  max-width: 24rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  color: #fff;
}
a.breadcrumb__item {
  color: var(--color);
}
a.breadcrumb__item span {
  text-decoration: underline;
}
a.breadcrumb__item:hover span {
  text-decoration: none;
}
a.breadcrumb__item::after {
  content: "/";
  margin-left: 0.5em;
  margin-right: 0.3em;
  text-decoration: none;
  color: #fff;
}
.header-with-image {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10%;
}
.header-with-image__image,
.header-with-image__image-mobile-wrapper {
  flex-shrink: 0;
}
.header-with-image__image::before,
.header-with-image__image-mobile-wrapper::before {
  --space: 13%;
  content: "";
  position: absolute;
  left: calc(var(--space) * -1);
  right: calc(var(--space) * -1);
  top: calc(var(--space) * -1);
  bottom: calc(var(--space) * -1);
  background: url(../img/svg/main-circle-inner.svg) center / contain no-repeat;
  animation: spin 45s linear infinite;
  z-index: 5;
}
.header-with-image__image::after,
.header-with-image__image-mobile-wrapper::after {
  --space: 13%;
  content: "";
  position: absolute;
  left: calc(var(--space) * -1);
  right: calc(var(--space) * -1);
  top: calc(var(--space) * -1);
  bottom: calc(var(--space) * -1);
  background: url(../img/svg/main-circle-outside.svg) center / contain no-repeat;
  animation: spin 90s linear infinite;
  z-index: 6;
}
.header-with-image__image img,
.header-with-image__image-mobile-wrapper img {
  border-radius: 50%;
  width: 56rem;
  height: auto;
}
.header-with-image__bar {
  display: flex;
  justify-content: flex-start;
  gap: var(--gap);
}
.header-with-image__image-mobile-wrapper {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header-with-image__image::after {
    --space: 10%;
  }
  .header-with-image__image img {
    width: 40rem;
  }
}
@media screen and (max-width: 900px) {
  .header-with-image__image img {
    width: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .header-with-image__image {
    display: none;
  }
  .header-with-image__image-mobile-wrapper {
    display: block;
    max-width: 30rem;
    margin: 3em 0;
  }
  .header-with-image__image-mobile-wrapper::after {
    --space: 10%;
  }
}
.page-shape {
  position: absolute;
  left: 5%;
  top: 2em;
  width: 8em;
  height: 5em;
  z-index: 5;
}
@media screen and (max-width: 1900px) {
  .page-shape {
    left: 1rem;
  }
}
@media screen and (max-width: 1700px) {
  .page-shape {
    display: none;
  }
}
.contacts-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #f4f4f4;
}
.contacts-map__content {
  margin-left: auto;
  width: calc(1400px / 2 + var(--padding-on-side));
  padding-right: var(--gap);
  padding-left: var(--padding-on-side);
}
.contacts-map__right iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.contacts-map__subheading {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-30);
  margin-bottom: var(--gap);
}
.contacts-map__contact {
  padding-left: 2em;
}
.contacts-map__contact::before {
  content: "";
  width: 1.2em;
  height: 2em;
  position: absolute;
  left: 0;
  top: 0.2em;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.contacts-map__contact:not(:last-of-type) {
  margin-bottom: 1em;
}
.contacts-map__contact--address::before {
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-pin.svg);
  mask-image: url(../img/svg/icon-pin.svg);
}
.contacts-map__contact--phone-email::before {
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-phone-email.svg);
  mask-image: url(../img/svg/icon-phone-email.svg);
}
.contacts-map__contact--legal::before {
  background-color: var(--color);
  -webkit-mask-image: url(../img/svg/icon-legal.svg);
  mask-image: url(../img/svg/icon-legal.svg);
}
.contacts-map__contact a {
  color: var(--color);
  text-decoration: none;
  display: inline-block;
}
.contacts-map__contact a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.contacts-map__contact a:hover::after {
  width: 100%;
  color: var(--color);
}
@media screen and (max-width: 1300px) {
  .contacts-map__content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contacts-map {
    grid-template-columns: 1fr;
  }
  .contacts-map__right iframe {
    height: 32rem;
  }
}
.employees + .employees {
  margin-top: calc(var(--gap) * 1.5);
}
.employees__title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-36);
  margin-bottom: var(--gap);
}
.employees__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.employees__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.employees__item:hover .employees__image::before,
.employees__item:hover .employees__image::after {
  opacity: 1;
}
.employees__image {
  aspect-ratio: 1/1;
  width: 15rem;
  flex-shrink: 0;
}
.employees__image::before {
  --space: 12%;
  content: "";
  position: absolute;
  left: calc(var(--space) * -1);
  right: calc(var(--space) * -1);
  top: calc(var(--space) * -1);
  bottom: calc(var(--space) * -1);
  background: url(../img/svg/main-circle-inner.svg) center / contain no-repeat;
  animation: spin 45s linear infinite;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
.employees__image::after {
  --space: 10%;
  content: "";
  position: absolute;
  left: calc(var(--space) * -1);
  right: calc(var(--space) * -1);
  top: calc(var(--space) * -1);
  bottom: calc(var(--space) * -1);
  background: url(../img/svg/main-circle-outside.svg) center / contain no-repeat;
  animation: spin 90s linear infinite;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
.employees__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.employees__content {
  padding: 1em;
  flex-grow: 1;
}
.employees__content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: -8rem;
  background-color: #f4f4f4;
  z-index: -1;
}
.employees__nane {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-20);
}
.employees__position {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-16);
  color: #626472;
  margin-bottom: 0.5em;
}
.employees__contact {
  font-size: 0;
  margin: 0.2em 0;
}
.employees__contact a {
  font-size: var(--font-size-16);
  color: var(--color);
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  line-height: 1.2em;
}
.employees__contact a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.employees__contact a:hover::after {
  width: 100%;
  color: var(--color);
}
@media screen and (max-width: 1260px) {
  .employees__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .employees__wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 440px) {
  .employees__image {
    width: 12rem;
  }
}
.mobile-menu {
  background-color: #221638;
  position: absolute;
  z-index: 90;
  display: none;
  transition: all 0.3s ease-in-out;
  top: 7rem;
  right: var(--padding-on-side);
  color: #fff;
  border-radius: var(--border-radius);
  min-width: 20rem;
  max-width: 30rem;
}
.mobile-menu::before {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
  right: 0.65em;
  top: -0.4em;
  transform: rotate(45deg);
  border-radius: 0.2em;
  background-color: #221638;
}
.mobile-menu__menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu__menu > li:last-child {
  border-bottom: none;
}
.mobile-menu__menu > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mobile-menu__menu > li > a {
  width: calc(100% - 4rem);
  order: 1;
}
.mobile-menu__menu a {
  color: #fff;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-24);
  padding: 0.6em 1.5em;
  display: inline-block;
}
.mobile-menu .sub-menu {
  background-color: #626472;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
  transition: all 0.15s ease-in-out;
  order: 3;
  width: 100%;
}
.mobile-menu .sub-menu.visible {
  visibility: visible;
  opacity: 1;
}
.mobile-menu .sub-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-20);
  padding: 0.5em 1.5em;
  display: block;
}
.mobile-menu .open-submenu {
  order: 2;
  flex-shrink: 0;
  right: 0;
  width: 4rem;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu .open-submenu::after {
  height: 100%;
  width: 100%;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 20 12.1' version='1.1' viewBox='0 0 20 12.1'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='5' d='M2.1 2.2 10 10.1 18 2.2'/%3E%3C/svg%3E") center / 1rem auto no-repeat;
  display: inline-block;
  transition: all 0.15s ease-in-out;
}
.mobile-menu .open-submenu.active::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 1300px) {
  .mobile-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  .mobile-menu.visible {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu .top-bar__link {
    display: inline-block;
  }
}
.filter {
  display: grid;
  gap: 0.5em;
  margin-bottom: var(--gap);
}
.filter__column {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.filter__title {
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-16);
}
.filter__input {
  display: none !important;
}
.filter .button.active {
  background-color: #221638;
}
.nothing-found {
  padding: calc(var(--gap) * 0.5);
  background-color: rgba(var(--colorRGB), 0.07);
  border: 1px solid rgba(var(--colorRGB), 0.3);
  color: var(--color);
  display: block;
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-24);
  border-radius: var(--border-radius);
  text-align: center;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.popup {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap);
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.popup.visible {
  opacity: 1;
  visibility: visible;
}
.popup__wrapper {
  background-color: #fff;
  max-width: 1200px;
  padding: calc(var(--gap) * 1);
  scrollbar-color: #767886 #4e505e;
  scrollbar-width: thin;
  overflow: auto;
  width: 100%;
  max-height: calc(100vh - var(--gap) * 2);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
  transform: scale(0.8);
}
.popup__wrapper::-webkit-scrollbar {
  width: 0.8rem;
  background: #808290;
}
.popup__wrapper::-webkit-scrollbar-thumb {
  background: #4e505e;
  border-radius: 0.4rem;
}
.popup__wrapper.visible {
  opacity: 1;
  transform: scale(1);
}
.popup__helper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.popup__close {
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  position: absolute;
  top: var(--gap);
  right: var(--gap);
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='prefix__Vrstva_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 18 18' xml:space='preserve'%3E%3Cstyle%3E.prefix__st0%7Bfill:none;stroke:%23e85248;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D%3C/style%3E%3Cpath class='prefix__st0' d='M1.4 1.4l15.2 15.2M1.5 16.6l5-5.1M9 9l7.5-7.5'/%3E%3C/svg%3E");
}
.popup__close:hover {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='prefix__Vrstva_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 18 18' xml:space='preserve'%3E%3Cstyle%3E.prefix__st0%7Bfill:none;stroke:%23abcd52;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D%3C/style%3E%3Cpath class='prefix__st0' d='M1.4 1.4l15.2 15.2M1.5 16.6l5-5.1M9 9l7.5-7.5'/%3E%3C/svg%3E");
}
.popup__loading {
  position: absolute;
  width: 4rem;
  height: 4rem;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.popup__loading::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  animation: spin 1s linear infinite;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23FFF'%3E%3Cpath d='M463.702 162.655L442.491 14.164c-1.744-12.174-16.707-17.233-25.459-8.481l-30.894 30.894C346.411 12.612 301.309 0 254.932 0 115.464 0 3.491 109.16.005 248.511c-.19 7.617 5.347 14.15 12.876 15.234l59.941 8.569c8.936 1.304 17.249-5.712 17.125-15.058C88.704 165.286 162.986 90 254.932 90c22.265 0 44.267 4.526 64.6 13.183l-29.78 29.78c-8.697 8.697-3.761 23.706 8.481 25.459l148.491 21.211c9.784 1.475 18.381-7.034 16.978-16.978zM499.117 249.412l-59.897-8.555c-7.738-.98-17.124 5.651-17.124 16.143 0 90.981-74.019 165-165 165a165.207 165.207 0 01-64.306-13.052l28.828-28.828c8.697-8.697 3.761-23.706-8.481-25.459L64.646 333.435c-9.753-1.393-18.39 6.971-16.978 16.978l21.21 148.492c1.746 12.187 16.696 17.212 25.459 8.481l31.641-31.626C165.514 499.505 210.587 512 257.096 512c138.794 0 250.752-108.618 254.897-247.28.22-7.632-5.317-14.224-12.876-15.308z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.popup__loading.visible {
  opacity: 1;
}
.popup__content {
  max-width: 960px;
  margin: 0 auto;
}
.global-style .wpmf_gallery_default.wpmf-gutterwidth-5 .wpmf-gallery-item {
  padding: 3.5px !important;
}
.wp-block-gallery {
  margin: 5rem auto;
}
.blocks-gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.15s ease-in-out;
}
.blocks-gallery-item:hover {
  box-shadow: none;
}
.blocks-gallery-item a,
.wpmf-gallery-item a,
.wp-block-gallery a {
  display: block;
}
.blocks-gallery-item a::before,
.wpmf-gallery-item a::before,
.wp-block-gallery a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3Cpath d='M90 0h61v30H90zM181 0h61v30h-61zM272 0h60v30h-60zM362 0h60v30h-60zM452 0v30h30v30h30V0h-60zM302 90v30h68.787l-120 120H30v-60H0v332h332v-30h-60V261.213l120-120V210h30V90H302zm-60 392H30V270h212v212zM0 90h30v60H0zM0 0v60h30V30h30V0H0zM482 90h30v60h-30zM482 180h30v60h-30zM482 270h30v60h-30zM482 360h30v61h-30zM482 451v31h-30v30h60v-61h-30zM362 482h60v30h-60z'/%3E%3C/svg%3E") center / 4rem auto no-repeat;
}
.blocks-gallery-item a::after,
.wpmf-gallery-item a::after,
.wp-block-gallery a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--color);
  opacity: 0;
  z-index: 2;
  transition: all 0.15s ease-in-out;
}
.blocks-gallery-item a:hover::after,
.wpmf-gallery-item a:hover::after,
.wp-block-gallery a:hover::after {
  opacity: 0.5;
}
.blocks-gallery-item a:hover:before,
.wpmf-gallery-item a:hover:before,
.wp-block-gallery a:hover:before {
  opacity: 1;
}
.wp-block-image {
  margin: 4rem auto;
}
.wp-block-image img {
  overflow: hidden;
  width: auto;
  border-radius: 0.5rem;
}
.wp-block-image figcaption {
  background: #f4f4f4;
  font-size: 1.4rem;
  color: #666;
  margin: 0;
  padding: 1rem 2rem;
  text-align: center;
  display: block;
}
.wp-block-image figure.aligncenter {
  margin: 0 auto;
}
.wp-block-image figure.aligncenter img {
  margin: 0 auto;
}
.blocks-gallery-grid .blocks-gallery-item figcaption {
  padding: 1em;
  background: rgba(98, 100, 114, 0.75);
  font-family: 'Fredoka One CZ', sans-serif;
  font-weight: 400;
  color: #fff;
}
.wpcf7 {
  max-width: 80rem;
  margin: var(--gap) auto 0;
}
input,
textarea,
select {
  padding: 0.8rem 3rem 0.8rem 2rem;
  font-size: var(--font-size-18);
  background: #f4f4f4;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: all 0.15s ease-in-out;
  border: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  }
}
select {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.9 12.2'%3E%3Cpath d='M16.2.7C14.9 2.3 13.4 3.6 12 5c-.8.8-1.6 1.6-2.4 2.5-.5.7-1 1.6-1.8 2.1.4.1.7.1 1.1.2-.4-.6-1-1.1-1.5-1.6-.7-.7-1.3-1.6-1.9-2.5C4.3 3.9 3.2 2 1.8.5.9-.5-.4 1.3.5 2.3 1.9 3.8 3 5.7 4.2 7.5L6 9.9c.5.6 1.2 1.1 1.7 1.8.3.4.8.5 1.1.2.7-.6 1.3-1.4 1.9-2.2.8-1 1.6-1.9 2.4-2.7 1.5-1.4 3-2.7 4.3-4.4 1-1.2-.4-3-1.2-1.9z' fill='%23626472'/%3E%3C/svg%3E") right 1rem center / 1.6rem auto no-repeat;
  background-color: #fff;
}
.label {
  position: absolute;
  top: 0.6em;
  left: 2rem;
  display: block;
  color: #221638;
  z-index: 2;
  cursor: text;
  transition: all 0.15s ease-in-out;
  font-size: var(--font-size-15);
  margin-bottom: 1rem;
}
.label span {
  color: #e85248;
}
.label.active {
  top: -1.3rem;
  left: 1rem;
  background: #fff;
  color: #626472;
  padding: 0.2rem 0.6rem;
  z-index: 3;
  font-size: 1.2rem;
  border: none;
}
.label.active span {
  color: #e85248;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.form__row label {
  text-align: right;
  font-size: var(--font-size-18);
}
@media screen and (max-width: 480px) {
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
  }
  .form__row label {
    text-align: left;
  }
}
.submit-wrapper {
  text-align: right;
  position: relative;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap::after {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 0;
  top: 0.45em;
  transition: opacity 0.15s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpcf7-form-control-wrap.wpcf7-not-valid::after {
  opacity: 1;
  visibility: visible;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='22'%3E%3Cpath fill-rule='evenodd' fill='%23e85248' d='M2 15a2 2 0 01-2-2V1.999a2 2 0 014 0V13a2 2 0 01-2 2zm0 3a2 2 0 110 4 2 2 0 010-4z'/%3E%3C/svg%3E") center / auto 2rem no-repeat;
}
.wpcf7-form-control-wrap.wpcf7-not-valid input,
.wpcf7-form-control-wrap.wpcf7-not-valid textarea {
  border-color: #e85248;
}
.wpcf7-form-control-wrap.wpcf7-is-valid::after {
  opacity: 1;
  visibility: visible;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.6 12.8'%3E%3Cpath fill='none' stroke='%23abcd52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M12.9 1.6l-7.2 9.7-4.1-4.9'/%3E%3C/svg%3E") center / auto 1.4rem no-repeat;
}
.wpcf7 .screen-reader-response,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-response-output {
  color: #fff;
  border-radius: 0;
  margin: 0 auto;
  padding: 1.4rem;
  line-height: 1.3em;
  border: none;
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  transition: all 0.15s ease-in-out;
  font-size: var(--font-size-16);
  display: none;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.wpcf7-spinner {
  animation: spin 1s linear infinite;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23626472'%3E%3Cpath d='M463.702 162.655L442.491 14.164c-1.744-12.174-16.707-17.233-25.459-8.481l-30.894 30.894C346.411 12.612 301.309 0 254.932 0 115.464 0 3.491 109.16.005 248.511c-.19 7.617 5.347 14.15 12.876 15.234l59.941 8.569c8.936 1.304 17.249-5.712 17.125-15.058C88.704 165.286 162.986 90 254.932 90c22.265 0 44.267 4.526 64.6 13.183l-29.78 29.78c-8.697 8.697-3.761 23.706 8.481 25.459l148.491 21.211c9.784 1.475 18.381-7.034 16.978-16.978zM499.117 249.412l-59.897-8.555c-7.738-.98-17.124 5.651-17.124 16.143 0 90.981-74.019 165-165 165a165.207 165.207 0 01-64.306-13.052l28.828-28.828c8.697-8.697 3.761-23.706-8.481-25.459L64.646 333.435c-9.753-1.393-18.39 6.971-16.978 16.978l21.21 148.492c1.746 12.187 16.696 17.212 25.459 8.481l31.641-31.626C165.514 499.505 210.587 512 257.096 512c138.794 0 250.752-108.618 254.897-247.28.22-7.632-5.317-14.224-12.876-15.308z'/%3E%3C/svg%3E") center / 1.6rem auto no-repeat;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(50% - 0.8rem);
  width: 1.6rem;
  height: 1.6rem;
  left: 0;
  margin: 0;
  transition: all 0.15s ease-in-out;
}
.wpcf7-spinner::before {
  content: none !important;
}
.wpcf7-form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
  background-color: #e85248;
  display: block;
}
.wpcf7-form.sent .wpcf7-response-output {
  background-color: #abcd52;
  display: block;
}
.wpcf7-acceptance {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.wpcf7-acceptance--first {
  margin-top: 4rem;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item a {
  color: #626472;
}
.wpcf7-acceptance .wpcf7-list-item a:hover {
  color: #626472;
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item input {
  display: none;
}
.wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 3rem;
  font-size: var(--font-size-16);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p {
  margin: 0;
  padding-left: 0.8em;
  line-height: 1.2em;
  margin-top: 0.2em;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a {
  color: var(--color);
  text-decoration: none;
  display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a:hover::after {
  width: 100%;
  color: var(--color);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 0.45em;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #626472;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  z-index: 2;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.2em;
  height: 1.2em;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
  background: #f4f4f4;
  border: 2px solid transparent;
}
.wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label::after {
  border-color: #e85248;
}
.google-recaptcha {
  font-size: 1.2rem;
  color: #312547;
  margin: 0 0 1.5rem 0 !important;
}
.google-recaptcha a {
  color: var(--color);
  text-decoration: none;
  display: inline-block;
}
.google-recaptcha a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0;
  margin-top: -0.1em;
  background-color: var(--color);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.google-recaptcha a:hover::after {
  width: 100%;
  color: var(--color);
}
.grecaptcha-badge {
  display: none !important;
}
.form-note {
  font-size: var(--font-size-16);
}
.form-note span {
  color: #626472;
}
.wp-block-contact-form-7-contact-form-selector {
  background-color: #626472;
  padding: var(--gap);
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-contact-form-7-contact-form-selector .wpcf7 {
  margin-top: 0;
}
.wp-block-contact-form-7-contact-form-selector label {
  color: #fff;
}
@media screen and (max-width: 1400px) {
  :root {
    --font-size-14: 1.3rem;
    --font-size-16: 1.5rem;
    --font-size-18: 1.6rem;
    --font-size-20: 1.8rem;
    --font-size-24: 2rem;
    --font-size-30: 2.4rem;
    --font-size-36: 3rem;
    --font-size-48: 3.6rem;
    --font-size-60: 4.8rem;
    --font-size-90: 6rem;
    --gap: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --padding-on-side: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --font-size-14: 1.2rem;
    --font-size-16: 1.4rem;
    --font-size-18: 1.5rem;
    --font-size-20: 1.7rem;
    --font-size-24: 1.8rem;
    --font-size-30: 2.1rem;
    --font-size-36: 2.6rem;
    --font-size-48: 3rem;
    --font-size-60: 3.6rem;
    --font-size-90: 4.8rem;
    --gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --font-size-30: 2rem;
    --font-size-36: 2.2rem;
    --font-size-48: 2.6rem;
    --font-size-60: 3rem;
    --font-size-90: 4rem;
  }
}
