@charset "UTF-8";
/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
/* PLUGINS */
@import url(../js/library/slick/slick.scss);
/* UTILITIES */
/*
========================================================================
    Utility classes
========================================================================
*/
/*	Coloring - color & background
======================================================================== */
/* #region TEXT ======================================================================= */
/*	Text transform
======================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
.tt-u {
  text-transform: uppercase;
}

/*	Text align
======================================================================== */
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}

/* #endregion */
/* #region FLEX ======================================================================= */
.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*	Flex Wrap
  --------------------------------------- */
  /*	Align items
  --------------------------------------- */
  /*	Justify content
  --------------------------------------- */
  /*	Wrapping
  --------------------------------------- */
}
.df--fw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.df--fw-nw {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.df--ai-s {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.df--ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.df--jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.df--jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.df--fw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.df--fw-nw {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

/* #endregion */
/* TYPOGRAPHY */
@font-face {
  font-display: swap;
  font-family: "PretendardVariable", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("./components/fonts/variable/PretendardVariable.ttf") format("truetype");
}
/*	Headings
--------------------------------------- */
/*	Other texts
--------------------------------------- */
/*	Specific
--------------------------------------- */
/* MAIN DESIGN */
/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
/*
FONT WEIGHTS:
    black:    900;
    heavy:    800;
    bold:     700;
    semiBold: 600;
    medium:   500;
    regular:  400;
    light:    300;
    thin:     100;
*/
/* #region GENERAL SETTINGS ============================================================= */
@font-face {
  font-family: "PretendardVariable";
  src: url("components/fonts/variable/PretendardVariable.ttf") format("truetype");
  /* Můžete také přidat další formáty fontu pro zálohu, například WOFF nebo WOFF2 */
  /* src: url('components/fonts/variable/PretendardVariable.ttf') format('truetype'),
       url('components/fonts/variable/PretendardVariable.woff') format('woff'); */
}
:root {
  --background: #ebebec;
  --text-black: #16181a;
  --yellow: #f2b002;
  --green: #0f441e;
  --black: #16181a;
  --100: 100%;
  --white: #fff;
}

html,
body {
  background: #ebebec;
  color: black;
  font-family: "PretendardVariable", sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1500px) {
  html,
  body {
    font-size: 58%;
  }
}
@media screen and (max-width: 1240px) {
  html,
  body {
    font-size: 55%;
  }
}

html.withMenu,
body.withMenu {
  overflow: hidden;
  overflow: visible;
}

body {
  font-size: 1.6rem;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */ /* Firefox 1 - 28 */
  box-sizing: border-box; /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
  /*	CSS variables
  --------------------------------------- */
  --primary: #031633;
  --primary-rgb: 3, 22, 51;
  --black: #333;
  --black-rgb: 51, 51, 51;
  --off-white: #FDFCF8;
  --off-white-rgb: 253, 252, 248;
  --violet-accent: #9C68E2;
  --violet-accent-rgb: 156, 104, 226;
  --fs-rate: 1;
  --fs-small-rate: 1;
}
*:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 1024px) {
  * {
    --fs-rate: 0.85;
    --fs-small-rate: 0.85;
  }
}
@media screen and (max-width: 640px) {
  * {
    --fs-rate: 0.75;
    --fs-small-rate: 0.8;
  }
}
@media screen and (max-width: 450px) {
  * {
    --fs-rate: 0.65;
    --fs-small-rate: 0.75;
  }
}

input,
textarea,
select {
  color: black;
  font-size: 14px;
  font-family: "Open Sans", Arial, sans-serif;
}

textarea {
  resize: vertical;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a,
label,
input[type=button],
input[type=submit] {
  cursor: pointer;
}

.clear,
.clearfix:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}

.hidden {
  display: none;
}

.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1184px;
  padding: 0 2.5rem;
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
}

.container-nav {
  margin: 0 auto;
  position: relative;
  padding: 0 5.6rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1300px) {
  .container-nav {
    padding: 0 2.5rem;
  }
}

.container.to-right-viewport {
  width: calc((100% - 1184px) / 2 + 1184px);
  max-width: unset;
  margin: 0 0 0 auto;
  display: block;
  padding-right: 0;
}
.container.to-right-viewport .only-in-content {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

@media only screen and (max-width: 1300px) {
  .container.to-right-viewport {
    width: 100% !important;
    padding: 0 0 0 2.5rem;
    width: 100%;
    max-width: 1184px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1240px) {
  .container.to-right-viewport {
    margin: 0 auto;
    padding: 0 2.5rem;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 740px) {
  .container.to-right-viewport {
    max-width: 45rem;
  }
}
img,
svg {
  max-width: 100%;
  height: auto;
}

p strong {
  color: #777b7e;
  font-weight: 400;
}

/* #endregion */
/* #region MOBILE MENU ICON ============================================================= */
.hamburger {
  position: absolute;
  top: 50%;
  right: calc((4rem - calc(4rem * 0.5)) / 2 + 0);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: calc(4rem * 0.5);
  height: calc(4rem * 0.5);
  margin: 0;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  /* active state, i.e. menu opened */
}
.hamburger:focus {
  outline: none;
}
.hamburger:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 4px;
  content: " ";
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  z-index: 0;
  background: white;
}
.hamburger span {
  border-radius: 1.5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  width: 100%;
  background: var(--primary);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger span:before, .hamburger span:after {
  border-radius: 1.5px;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}
.hamburger span:before {
  top: -6px;
}
.hamburger span:after {
  bottom: -6px;
}
.hamburger--htx {
  background: transparent;
}
.hamburger--htx span:before, .hamburger--htx span:after {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.hamburger--htx span:before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
.hamburger--htx span:after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--htx.is-active {
  background: transparent;
}
.hamburger--htx.is-active span {
  background: none;
  -webkit-transition: none;
  transition: none;
}
.hamburger--htx.is-active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger--htx.is-active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger--htx.is-active span:before, .hamburger--htx.is-active span:after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

/* #endregion */
/* #region SITE HEADER ======================================================================= */
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 9999;
  padding: 8px 0;
  background: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  -webkit-box-shadow: 0px 25px 37px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 25px 37px rgba(0, 0, 0, 0.05);
}
.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .site-header__left-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20rem;
          flex: 0 0 20rem;
}
.site-header .site-header__left-col a {
  display: block;
  font-size: 0;
}
.site-header .site-header__right-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
.site-header .hamburger {
  display: none;
}
.site-header nav {
  display: inline-block;
  vertical-align: middle;
}
.site-header ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
  list-style: none;
}
.site-header ul li a {
  color: var(--text-black);
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 970px) {
  .site-header ul li a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .site-header ul li a:hover {
    color: #f2b002;
  }
}

.site-header__search {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2rem;
}
.site-header__search.active input {
  padding: 0 5rem 0 2rem;
  width: 30rem;
}
.site-header__search form {
  font-size: 0;
}
.site-header__search input {
  position: absolute;
  z-index: 1;
  right: 5px;
  top: 0;
  height: 100%;
  padding: 0;
  width: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header__search button {
  position: relative;
  z-index: 2;
  font-size: 0;
  color: var(--text-black);
  width: 4rem;
  text-align: center;
  border: none;
  background: var(--white);
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
  border: 2px solid #f2b002;
}
.site-header__search button:hover {
  cursor: pointer;
  background: #f2b002;
  color: #fff;
}

.p-top-0 {
  padding-top: 0 !important;
}

/* MOBILE VERSION */
@media screen and (max-width: 970px) {
  .site-header .hamburger {
    display: inline-block;
    margin-right: 0rem;
    position: relative;
    vertical-align: middle;
    -webkit-transform: none;
            transform: none;
  }
  .site-header .menu-primary {
    max-height: 0px;
    left: 0;
    right: 0;
    top: var(--site-header-height);
    display: block;
    overflow: hidden;
    overflow: auto;
    position: absolute;
    top: 40px;
    width: 100%;
    width: 100%;
    left: 0;
    height: 100vh;
    background: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .site-header .menu-primary ul {
    display: block;
    text-align: center;
  }
  .site-header .menu-primary ul li {
    margin: 1rem 0;
  }
  .site-header .menu-primary ul li a {
    padding: 1.5rem 0;
  }
  .site-header.withMenu .menu-primary {
    max-height: 100vh;
    overflow: auto;
  }
}
/* #endregion */
/* #region SITE FOOTER ======================================================================= */
.site-footer {
  display: red;
}

/* #endregion */
/*Grids*/
.center1100 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1000px) {
  .row.row-download {
    gap: 0.8rem;
  }
}

.row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row.content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1000px) {
  .row.gap1000 {
    gap: 1rem;
  }
}
@media screen and (max-width: 940px) {
  .row.footer {
    gap: 2.4rem;
  }
}

.row-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .row-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: center;
  }
}

.jc-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .jc-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.mx-left {
  margin-left: auto;
}

.mx-right {
  margin-right: auto;
}

.mx-auto {
  margin: 0 auto;
}

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

.dblock {
  display: block;
}

.col-12 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.col-5 {
  width: calc(41.67% - 16px);
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31rem;
          flex: 0 0 31rem;
  width: 31rem;
}
@media screen and (max-width: 1500px) {
  .col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34rem;
            flex: 0 0 34rem;
    width: 34rem;
  }
}
@media screen and (max-width: 1240px) {
  .col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36rem;
            flex: 0 0 36rem;
    width: 36rem;
  }
}
@media only screen and (max-width: 768px) {
  .col-5 {
    width: 100%;
  }
}
@media screen and (max-width: 730px) {
  .col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--100);
            flex: 0 0 var(--100);
  }
}

.col-7 {
  width: calc(58.33% - 16px);
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6rem;
}
@media screen and (max-width: 1110px) {
  .col-7 {
    padding-left: 2rem;
    max-width: 40rem;
  }
}
@media only screen and (max-width: 768px) {
  .col-7 {
    width: 100%;
  }
}

.col-7-graph {
  width: calc(58.33% - 16px);
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6rem;
}
@media only screen and (max-width: 768px) {
  .col-7-graph {
    width: 100%;
  }
}
@media screen and (max-width: 730px) {
  .col-7-graph {
    padding-left: 0;
    max-width: 45rem;
    margin: 0 auto;
  }
}

.col-6 {
  width: calc(50% - 16px);
  height: auto;
}
@media only screen and (max-width: 768px) {
  .col-6 {
    width: 100%;
  }
}

.col-file {
  width: calc(50% - 8px);
  height: auto;
}
@media screen and (max-width: 1000px) {
  .col-file {
    width: calc(50% - 4px);
  }
}
@media only screen and (max-width: 500px) {
  .col-file {
    width: 100%;
  }
}

.col-rozbor {
  width: calc(50% - 16px);
  height: auto;
}
@media only screen and (max-width: 1100px) {
  .col-rozbor {
    width: 100%;
  }
}

.col-files-download {
  width: 100%;
  height: auto;
  max-width: 75.3rem;
}
@media only screen and (max-width: 768px) {
  .col-files-download {
    width: 100%;
  }
}

.col-4 {
  width: calc(33.333% - 16px);
  height: auto;
}
@media only screen and (max-width: 768px) {
  .col-4 {
    width: 100%;
  }
}

.col-8 {
  width: calc(66.666% - 16px);
  height: auto;
}
@media only screen and (max-width: 768px) {
  .col-8 {
    width: 100%;
  }
}

.col-3 {
  width: calc(25% - 16px);
}
@media only screen and (max-width: 768px) {
  .col-3 {
    width: 100%;
  }
}

.col-3-people {
  width: calc(25% - 16px);
}
@media only screen and (max-width: 992px) {
  .col-3-people {
    width: calc(33.3% - 16px);
  }
}
@media only screen and (max-width: 700px) {
  .col-3-people {
    width: calc(50% - 16px);
  }
}
@media only screen and (max-width: 440px) {
  .col-3-people {
    width: 100%;
    margin: 0 auto;
    max-width: 30rem;
  }
}

.col-3 {
  width: calc(25% - 16px);
}
@media only screen and (max-width: 768px) {
  .col-3 {
    width: 100%;
  }
}

.col-3-footer {
  width: calc(25% - 16px);
}
@media only screen and (max-width: 940px) {
  .col-3-footer {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 550px) {
  .col-3-footer {
    width: 100%;
  }
}

.col-links-head {
  width: calc(100% - 47rem - 1.6rem);
  height: auto;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .col-links-head {
    width: 100%;
  }
}

.col-links {
  width: calc(47rem - 16px);
  height: auto;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .col-links {
    width: 100%;
  }
}

.col-links-item {
  width: auto;
  height: auto;
}

/* Buttons */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1.6rem 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--black);
  background: #fff;
  border-radius: 8px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button:hover {
  color: #777b7e;
}
.button:hover svg path {
  fill: #777b7e;
}
.button.yellow {
  border: 3px solid var(--yellow-yellow-300, #f6ca55);
  background: var(--yellow-yellow-500, #f2b002);
  color: var(--black);
}
.button.yellow:hover {
  background: var(--yellow-yellow-300, #f6ca55);
  color: var(--black);
}

.section {
  width: 100%;
  padding: 6.4rem 0;
}

h2 {
  font-size: 3.2rem;
  line-height: 0.75;
  font-style: normal;
  font-weight: 600;
}

.actuality-box {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.actuality-box .image-box {
  width: var(--100);
  height: 20rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 368/200;
}
.actuality-box .image-box img,
.actuality-box .image-box svg {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--100);
  height: var(--100);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.actuality-box .image-box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 75%;
}
.actuality-box .content-box {
  padding: 0px 2.4rem 3.2rem 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
}
.actuality-box .content-box .date {
  line-height: normal;
  color: #777b7e;
  padding-top: 2.4rem;
  font-size: 12px;
}
.actuality-box .content-box .title {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  padding: 8px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actuality-box .content-box .description {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  color: var(--black);
}
.actuality-box .content-box .description-box p {
  color: var(--grey-grey-500, #343a3f);
  /* Body text */
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2rem;
}
.actuality-box .content-box .author {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.actuality-box:hover .title {
  text-decoration: underline;
}
.actuality-box:hover svg,
.actuality-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.actuality-box:hover svg {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
}

footer {
  padding: 4rem 0;
  border-top: 1px solid var(--text-black);
}
footer .footer-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}
footer .footer-content {
  padding-top: 2.4rem;
  width: var(--100);
  max-width: 27.2rem;
}
footer .footer-content .description {
  font-size: 14px;
  line-height: 1.5714285714;
  color: var(--grey-grey-500, #343a3f);
  font-style: normal;
  font-weight: 400;
}
footer .footer-content .footer-menu {
  width: var(--100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-content .footer-menu .footer-item {
  width: var(--100);
}
footer .footer-content .footer-menu .footer-item a,
footer .footer-content .footer-menu .footer-item p {
  font-size: 14px;
  line-height: 1.5714285714;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
footer .footer-content .footer-menu .footer-item a:hover,
footer .footer-content .footer-menu .footer-item p:hover {
  text-decoration: none;
}
footer .footer-content .footer-menu .footer-item.social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none !important;
  padding-top: 0;
  margin-top: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-content .footer-menu .footer-item.social a:hover {
  text-decoration: none;
  color: #f2b002;
}
footer .footer-content .footer-menu .footer-item.social p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none !important;
  padding-top: 0;
  margin-top: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.copyright {
  padding: 4rem 0;
  border-top: 1px solid #c0c2c3;
}
@media screen and (max-width: 600px) {
  .copyright {
    padding: 2rem 0;
  }
  .copyright .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.copyright p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  color: #777b7e;
}
@media screen and (max-width: 600px) {
  .copyright p {
    text-align: center;
  }
}
.copyright .madeby {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2rem;
  color: var(--grey-grey-300, #777b7e);
}
@media screen and (max-width: 600px) {
  .copyright .madeby {
    margin-left: initial;
  }
}

.ac {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.second-navbar {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #c0c2c3;
  border-bottom: 1px solid #c0c2c3;
  margin: 0 auto;
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  overflow: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 992px) {
  .second-navbar {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.second-navbar .second-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  overflow: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5.6rem;
}
@media screen and (max-width: 992px) {
  .second-navbar .second-menu {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 1000px;
    padding: 0 1rem;
    padding-left: 4rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.second-navbar .second-nav-item {
  display: inline-block;
  vertical-align: middle;
  margin: 1rem 0;
  min-width: auto;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style-type: none;
  padding: 4px 12px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 992px) {
  .second-navbar .second-nav-item {
    min-width: 18rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 10px;
  }
}
.second-navbar .second-nav-item a {
  font-size: 14px;
  line-height: 1.5714285714;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.second-navbar .second-nav-item a:hover {
  font-weight: 500;
}

.single-post-content {
  width: var(--100);
  max-width: 752px;
  margin: 0 auto;
}
.single-post-content .wp-block-image {
  padding: 4rem 0;
}
.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  padding: 2.4rem 0;
}
.single-post-content h1 {
  font-size: 4.8rem;
  line-height: 1.375;
}
@media screen and (max-width: 600px) {
  .single-post-content h1 {
    font-size: 3.2rem;
  }
}
.single-post-content h2 {
  font-size: 3.2rem;
  line-height: 1.375;
}
@media screen and (max-width: 600px) {
  .single-post-content h2 {
    font-size: 2.8rem;
  }
}
.single-post-content h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .single-post-content h3 {
    font-size: 2rem;
  }
}
.single-post-content h4 {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .single-post-content h4 {
    font-size: 1.8rem;
  }
}
.single-post-content ul {
  margin-left: 8px;
}
.single-post-content ul li {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
.single-post-content p {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
.single-post-content .gallery-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.single-post-content .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px 0;
}
.single-post-content .wp-block-gallery .wp-block-image {
  width: calc(50% - 16px);
  overflow: hidden;
  border-radius: 8px;
}
.single-post-content ul,
.single-post-content ol {
  margin-left: 1.6rem;
}
.single-post-content .wp-element-button {
  margin-top: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1.6rem 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--black);
  background: #fff;
  border-radius: 8px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 3px solid var(--yellow-yellow-300, #f6ca55);
  background: var(--yellow-yellow-500, #f2b002);
  color: var(--black);
}
.single-post-content .wp-element-button:hover {
  background: var(--yellow-yellow-300, #f6ca55);
  color: var(--black);
}
.single-post-content .wp-block-table table {
  width: var(--100);
}
.single-post-content .wp-block-table table tr {
  border-bottom: 1px solid #d1d5db;
}
.single-post-content .wp-block-table table tr th,
.single-post-content .wp-block-table table tr td {
  padding: 1.6rem 0;
  border-bottom: 1px solid #d1d5db;
}
.single-post-content .wp-block-quote {
  padding: 4rem 0;
  max-width: 752px;
}
.single-post-content .wp-block-quote p {
  font-size: 4rem;
  line-height: 1.4;
}
.single-post-content .wp-block-quote cite {
  font-size: 12px;
  line-height: 1.8333333333;
}
.single-post-content .wp-block-image {
  width: 100%;
}
.single-post-content .wp-block-image img {
  width: 100%;
}
.single-post-content iframe,
.single-post-content video {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.single-post-content iframe {
  aspect-ratio: 16/9;
  height: auto;
}
.single-post-content video {
  aspect-ratio: 16/9;
  height: auto;
}

.subpage-headerDEFAULT {
  padding: 4rem 0;
  text-align: center;
  max-width: 78rem;
  margin: 0 auto;
}
.subpage-headerDEFAULT.aktuality {
  padding-top: 0;
}
@media screen and (max-width: 1000px) {
  .subpage-headerDEFAULT.aktuality {
    margin-top: 3rem;
  }
}
.subpage-headerDEFAULT .green-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1a7233;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.subpage-headerDEFAULT .green-title p {
  color: #1a7233;
  font-weight: 600;
  text-transform: uppercase;
}
.subpage-headerDEFAULT h1 {
  padding: 16px;
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .subpage-headerDEFAULT h1 {
    font-size: 3.2rem;
  }
}
.subpage-headerDEFAULT p {
  font-size: 14px;
  line-height: 1.5714285714;
  max-width: 43rem;
  margin: 0 auto;
  color: #343a3f;
  max-width: 43.8rem;
}
.subpage-headerDEFAULT p strong {
  color: var(--text-black);
}

.mt-24 {
  margin-top: 2.4rem;
}

.mt-64 {
  margin-top: 6.4rem;
}

.section-bigger {
  min-height: 70vh;
}

.menu-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-item a {
  display: block;
  padding: 2.4rem 0;
}
@media screen and (max-width: 970px) {
  .menu-item a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-item a:hover {
    color: #f2b002;
  }
}
.menu-item::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  background: var(--yellow);
  width: 0%;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 970px) {
  .menu-item::after {
    display: none;
  }
}
@media screen and (max-width: 970px) {
  .menu-item:hover {
    color: #f2b002;
  }
}
.menu-item:hover::after {
  width: 100%;
}

.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--text-black);
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tag-clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--text-black);
  border: 1px solid var(--text-black);
  border-radius: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.search-data-input input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36.8rem;
  padding: 13px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #f2b002;
  border-radius: 4px !important;
}
.search-data-input button {
  display: none;
}
.search-data-input label {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding-top: 4px;
  color: var(--grey-grey-500, #343a3f);
}
.search-data-input .searchform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-data-input .searchform input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.search-data-input .searchform label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.search-data-input .searchform .button {
  padding: 0.8rem 2rem;
  margin-left: 0.8rem;
}
@media screen and (max-width: 480px) {
  .search-data-input .searchform .button {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .search-data-input input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 0.8rem;
  }
  .search-data-input label {
    text-align: left;
  }
}

#search {
  border: 1px solid #f2b002;
  border-radius: 8px;
}

.search-section {
  padding-top: 4rem;
  width: var(--100);
  font-size: 14px;
  line-height: 1.5714285714;
  font-style: normal;
  font-weight: 400;
  color: var(--grey-grey-500, #343a3f);
}
.search-section h1 {
  color: var(--text-black);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 2.4rem;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.search-link {
  display: block;
  width: var(--100);
  font-size: 14px;
  line-height: 1.5714285714;
  font-style: normal;
  font-weight: 400;
  text-decoration-line: underline;
  color: var(--grey-grey-500, #343a3f);
}

.download-box-file {
  padding: 8px 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--white);
  width: var(--100);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .download-box-file {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.download-box-file .file-name {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 2.2rem;
}
@media screen and (max-width: 600px) {
  .download-box-file .file-name {
    width: 100%;
  }
}
.download-box-file .download-fle-title {
  max-width: 60%;
}
@media screen and (max-width: 600px) {
  .download-box-file .download-fle-title {
    width: 100%;
    margin-left: auto;
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
  }
}
.download-box-file .other-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 600px) {
  .download-box-file .other-data {
    width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.download-box-file .download-file-size {
  color: var(--grey-grey-500, #343a3f);
  /* Body text */
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2rem; /* 157.143% */
  text-transform: uppercase;
}
.download-box-file .download-file-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.2rem;
  height: 3.2rem;
  padding: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10000px;
  border: 2px solid var(--yellow-yellow-300, #f6ca55);
  background: var(--yellow-yellow-500, #f2b002);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .download-box-file .download-file-button {
    margin-left: unset;
    margin-right: auto;
  }
}
.download-box-file .download-file-button:hover {
  background: #f6ca55;
  cursor: pointer;
}

.download-files {
  padding-top: 2.4rem;
  display: block;
}

#breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.8rem;
  margin-left: 0;
}
#breadcrumbs li {
  list-style-type: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5714285714;
  position: relative;
  text-decoration: underline;
  color: #16181a;
}
#breadcrumbs li:last-child {
  color: #343a3f;
  text-decoration: unset;
}
#breadcrumbs li::after {
  content: ">";
  left: -3.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.7814 7.33327L7.20539 3.75726L8.14819 2.81445L13.3337 7.99993L8.14819 13.1853L7.20539 12.2425L10.7814 8.6666H2.66699V7.33327H10.7814Z' fill='%2316181A'/%3E%3C/svg%3E");
}
#breadcrumbs li:first-child:after {
  content: "";
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  opacity: 0;
}

.article-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  padding-top: 2.4rem;
}
.article-info .author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

.scrolldown {
  position: absolute;
  bottom: -12rem;
  left: 3.2rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media only screen and (max-width: 768px) {
  .scrolldown {
    display: none;
  }
}
.scrolldown img,
.scrolldown svg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 2rem;
  height: 8rem;
  max-height: 8rem;
}
.scrolldown:hover {
  bottom: -12.5rem;
}

.categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding-top: 4.8rem;
  padding-bottom: 3.2rem;
}
.categories-list .categories-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-radius: 3px;
  border: 1px solid var(--grey-grey-900, #16181a);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--grey-grey-900, #16181a);
}
.categories-list .categories-item.active {
  color: var(--grey-grey-900, #fff);
  background: #16181a;
}

.search-data-input .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.row-grid-cosodpady {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .row-grid-cosodpady {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 740px) {
  .row-grid-cosodpady {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 470px) {
  .row-grid-cosodpady {
    grid-template-columns: 1fr;
  }
}

.sticky {
  position: fixed;
  top: 0px;
}

.sticky2-down {
  position: fixed;
  top: 0rem;
}
@media screen and (max-width: 992px) {
  .sticky2-down {
    top: 0rem;
  }
}

.sticky2 {
  position: fixed;
  top: 6.8rem;
}
@media screen and (max-width: 992px) {
  .sticky2 {
    top: 5.9rem;
  }
}

.cookies {
  text-align: center;
  margin-bottom: 2rem;
}
.cookies a p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  color: #777b7e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .cookies a p {
    text-align: center;
  }
}
.cookies a p:hover {
  color: #f2b002;
}

@media screen and (max-width: 600px) {
  main {
    max-width: 100%;
    overflow: hidden;
  }
}
/* COMPONENTS */
/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
a.btn,
.editor-styles-wrapper .gt-block a.btn {
  min-width: 180px;
  padding: 11px 14px;
  margin: 0 8px 12px 0;
  display: inline-block;
  vertical-align: top;
  border-radius: 9px;
  background: red;
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.btn:hover,
.editor-styles-wrapper .gt-block a.btn:hover {
  background: white;
  color: red;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.16);
}

/* #endregion */
/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.icheckbox {
  /*	Component settings
  --------------------------------------- */
  /*	Styling
  --------------------------------------- */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 1.3rem 0 0;
  display: inline-block;
  vertical-align: top;
  background: white;
  border: 1px solid black;
  border-radius: 0.4rem;
  cursor: pointer;
  /*	Hover & checked states
  --------------------------------------- */
}
.icheckbox:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: " ";
  background-image: url("../images/checkmark.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
  opacity: 0;
}
.icheckbox.hover, .icheckbox:hover {
  background: white;
  border-color: green;
}
.icheckbox.checked {
  background: green;
  border-color: green;
}
.icheckbox.checked:after {
  opacity: 1;
}

/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.slick-arrow {
  width: 6.4rem;
  height: 6.4rem;
  position: absolute;
  top: 50%;
  display: block;
  border-radius: 50%;
  background-color: grey;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Cg id='Group_2' data-name='Group 2' transform='translate(-0.162)'%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' width='26' height='26' transform='translate(0.162)' fill='%23fff' opacity='0'/%3E%3Cg id='Group_1' data-name='Group 1' transform='translate(10 5)'%3E%3Cpath id='Path_1' data-name='Path 1' d='M2646.564,4075.4h0a3.2,3.2,0,0,1,0-4.528l3.342-3.342-3.342-3.342a3.2,3.2,0,0,1,0-4.527h0l7.87,7.869Z' transform='translate(-2645.626 -4059.663)' fill='%23121524'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slick-arrow:hover {
  background-color: grey;
}
.slick-arrow.prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.slick-arrow.next {
  right: 0;
}
.slick-arrow.slick-hidden, .slick-arrow.slick-disabled {
  display: none;
}

.slick-dots {
  width: 100%;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  padding: 0 1.4rem;
  display: inline-block;
  vertical-align: top;
}
.slick-dots li button {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 50px;
  border-radius: 50%;
  background: #C4C6CF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slick-dots li button:hover {
  background: black;
}
.slick-dots li.slick-active button {
  background: black;
}

/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.gt-block form,
.editor-styles-wrapper .gt-block form {
  position: relative;
}
.gt-block form input[type=text],
.gt-block form textarea,
.editor-styles-wrapper .gt-block form input[type=text],
.editor-styles-wrapper .gt-block form textarea {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  border: 1px solid #D3D0D0;
  color: black;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gt-block form input[type=text]:hover, .gt-block form input[type=text]:focus,
.gt-block form textarea:hover,
.gt-block form textarea:focus,
.editor-styles-wrapper .gt-block form input[type=text]:hover,
.editor-styles-wrapper .gt-block form input[type=text]:focus,
.editor-styles-wrapper .gt-block form textarea:hover,
.editor-styles-wrapper .gt-block form textarea:focus {
  border-color: black;
}
.gt-block form input[type=text]::-webkit-input-placeholder,
.gt-block form textarea::-webkit-input-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]::-webkit-input-placeholder,
.editor-styles-wrapper .gt-block form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(var(--primary-rgb), 0.6);
  opacity: 1;
}
.gt-block form input[type=text]::-moz-placeholder,
.gt-block form textarea::-moz-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]::-moz-placeholder,
.editor-styles-wrapper .gt-block form textarea::-moz-placeholder { /* Firefox 19+ */
  color: rgba(var(--primary-rgb), 0.6);
  opacity: 1;
}
.gt-block form input[type=text]:-ms-input-placeholder,
.gt-block form textarea:-ms-input-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]:-ms-input-placeholder,
.editor-styles-wrapper .gt-block form textarea:-ms-input-placeholder { /* IE 10+ */
  color: rgba(var(--primary-rgb), 0.6);
  opacity: 1;
}
.gt-block form input[type=text]:-moz-placeholder,
.gt-block form textarea:-moz-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]:-moz-placeholder,
.editor-styles-wrapper .gt-block form textarea:-moz-placeholder { /* Firefox 18- */
  color: rgba(var(--primary-rgb), 0.6);
  opacity: 1;
}
.gt-block form textarea,
.editor-styles-wrapper .gt-block form textarea {
  height: 180px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 30px;
}

/* PAGES (better to include direct CSS file on the page) */
/*@import url(pages/XXX.scss);*/
/* BLOCKS  (better to include direct CSS file with the block) */
/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
section.gt-block,
.editor-styles-wrapper section.gt-block {
  position: relative;
}
section.gt-block .center,
.editor-styles-wrapper section.gt-block .center {
  width: 1140px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  section.gt-block .center,
  .editor-styles-wrapper section.gt-block .center {
    width: auto;
    margin: 0 30px;
  }
}

/*@import url(blocks/XXX.scss);*/
/*# sourceMappingURL=style.css.map */
