@charset "UTF-8";
:root {
  --m-space-horizontal: 20px;
  --m-section-margin: 20px;
}

html, html * {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html {
  height: 100%;
}

body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  color: #3B3838;
  height: 100%;
  background: #266043;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

a:focus-visible {
  outline: 2px solid black;
}

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

.container {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
}

.button {
  padding: 15px 30px;
  background: #90C96C;
  color: #012D19;
  font-family: Alfabet, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  font-weight: bold;
  border-radius: 100px;
}
.button:hover {
  background: #fff;
  color: #012D19;
}
@media (max-width: 476px) {
  .button {
    font-size: 16px;
    padding-block: 10px;
    width: 100%;
  }
}

.header {
  font-family: Alfabet, sans-serif;
  background: rgba(1, 45, 25, 0.65);
  grid-template-rows: auto auto;
  border-radius: 20px;
  height: 135px;
  z-index: 100;
  position: fixed;
  max-width: 1300px;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  top: 10px;
  padding-inline: 10px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 8px 8px -4px rgba(50, 50, 50, 0.2);
  grid-template-areas: "logo sub register" "logo nav register";
}
@media (max-width: 1300px) {
  .header {
    max-width: calc(100% - 10px);
  }
}

.header-container {
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-logo {
  grid-area: logo;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 40px;
}

.header-logo-img {
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.header-submenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  grid-area: sub;
  align-self: end;
  padding-left: 15px;
}

.header-submenu-el {
  position: relative;
  display: flex;
  align-items: center;
}

.header-submenu-el:has(.header-submenu-sub) .header-submenu-link {
  padding-right: 20px;
  display: inline-flex;
  vertical-align: top;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m12 15l-5-5h10z'/%3E%3C/svg%3E");
  background-size: 17px;
  background-position: right center;
  background-repeat: no-repeat;
}

.header-submenu-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  font-family: Alfabet, sans-serif;
}
.header-submenu-link:hover {
  color: #90C96C;
}

.header-submenu-el.is-open .header-submenu-sub,
.header-submenu-el:hover .header-submenu-sub {
  display: block;
}

.header-submenu-sub {
  position: absolute;
  left: 50%;
  translate: -50%;
  top: calc(100% + 10px);
  background: rgba(1, 45, 25, 0.95);
  list-style: none;
  margin: 0;
  z-index: 2;
  padding: 10px 20px;
  display: none;
  min-width: 150px;
  border-radius: 5px;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.2);
}
.header-submenu-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  translate: 0 -100%;
  width: 100%;
  height: 10px;
  background: transparent;
}

.header-submenu-sub-el {
  padding: 3px 0;
}

.header-submenu-sub-link {
  font-size: 15px;
  text-align: center;
  display: block;
  text-decoration: none;
  font-family: Alfabet, sans-serif;
  transition: 0.1s background-color;
  font-weight: 400;
  color: #fff;
}
.header-submenu-sub-link:hover {
  color: #90C96C;
}

.header-menu {
  grid-area: nav;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 15px;
  align-self: start;
  margin-top: 20px;
}

.header-menu-el {
  margin-right: 10px;
}

.header-menu-link {
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  font-family: Alfabet, sans-serif;
  letter-spacing: 0.2px;
  color: #fff;
  display: flex;
  height: 100%;
  align-items: center;
}
.header-menu-link:hover {
  color: #90C96C;
}

.header-menu-el--with-sub {
  position: relative;
}

.header-menu-el--with-sub .header-menu-link::after {
  content: "";
  width: 7px;
  height: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  display: inline-block;
  margin-left: 5px;
}

.header-menu-sub {
  position: absolute;
  border-radius: 10px;
  left: 50%;
  transform: translate(-50%);
  top: calc(100% + 10px);
  min-width: 245px;
  background: #90C96C;
  display: none;
  list-style: none;
  margin: 0;
  padding: 20px;
  flex-direction: column;
  white-space: nowrap;
  font-family: Inter, sans-serif;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.2);
}
.header-menu-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  translate: 0 -100%;
  width: 100%;
  height: 10px;
  background: transparent;
}

.header-menu-el--with-sub:hover .header-menu-sub {
  display: flex;
}

.header-menu-el--with-sub:hover .header-menu-link {
  color: #000;
}

.header-menu-sub-el:last-child {
  border: 0;
}

.header-menu-sub-link {
  font-weight: bold;
  text-decoration: none;
  display: block;
  font-size: 20px;
  font-family: Alfabet, sans-serif;
}
.header-menu-sub-link:hover {
  color: #fff;
}

.header-register {
  margin-left: auto;
  grid-area: register;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #90C96C;
  margin-right: 30px;
  transition: 0.2s opacity;
}

.header-register-icon {
  display: block;
}
.header-register-icon svg {
  transition: 0.2s fill;
  fill: #90C96C;
  display: block;
}

.header-register-text {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  max-width: 120px;
  transition: 0.2s color;
}

.header-register {
  cursor: default;
}

.header-register:is(a) {
  cursor: pointer;
}

.header-burger {
  grid-area: burger;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: none;
  border: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  gap: 5px;
  z-index: 100;
}
.header-burger strong {
  position: absolute;
  left: -9999px;
}
.header-burger span {
  width: 25px;
  height: 2px;
  background: #fff;
}

body.menuOpen .header-burger {
  position: relative;
}
body.menuOpen .header-burger span:first-of-type {
  display: none;
}
body.menuOpen .header-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menuOpen .header-burger span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1380px) {
  .header-menu-link {
    font-size: 16px;
  }
}
@media (max-width: 1320px) {
  .header {
    grid-template-columns: 220px auto 120px;
  }
  .header-menu-link {
    font-size: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1260px) {
  .header {
    grid-template-columns: 150px 1fr auto auto;
    grid-template-rows: 1fr;
    height: 80px;
    grid-template-areas: "logo nav register burger";
  }
  .header--no-register {
    grid-template-columns: 120px 1fr auto;
    grid-template-areas: "logo nav burger";
  }
  .header-main {
    left: 0;
    top: 90px;
    display: none;
    height: auto;
    position: absolute;
    flex-direction: column-reverse;
    width: 100%;
    border-radius: 20px;
    justify-content: flex-end;
    z-index: 1;
    background: rgba(1, 45, 25, 0.65);
  }
  .header-logo {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 2;
    position: relative;
    margin-left: 5px;
    justify-content: center;
  }
  .header-logo-img {
    max-width: 80%;
  }
  body.menuOpen .header-logo {
    border-right-color: #fff;
  }
  body.menuOpen .header-main {
    display: flex;
  }
  body.menuOpen::after {
    content: "";
    display: block;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
  }
  .header-submenu,
  .header-menu {
    padding: 20px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    height: auto;
    gap: 5px;
  }
  .header-submenu {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .header-menu-link,
  .header-submenu-link,
  .header-menu-sub-link,
  .header-submenu-sub-link {
    height: auto;
    font-size: 16px;
    padding: 10px 0;
    color: #fff;
    border: 0;
  }
  .header-menu-sub,
  .header-submenu-sub {
    background-color: transparent;
  }
  .header-submenu-sub-link {
    font-size: 14px;
  }
  .header-submenu {
    gap: 0;
  }
  .header-submenu-el {
    height: auto;
    display: block;
  }
  .header-menu-sub,
  .header-submenu-sub {
    border-radius: 0;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    padding: 0;
    margin: 0;
    translate: none;
    text-align: left;
    box-shadow: none;
  }
  .header-menu-sub-el {
    border: 0;
  }
  .header-submenu-sub-link,
  .header-menu-sub-link {
    padding: 4px 0;
    text-transform: uppercase;
    text-align: left;
  }
  .header-burger {
    display: flex;
  }
  .header-register {
    border-left: 0;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    justify-self: end;
    margin-right: 10px;
  }
  .header-register-icon svg {
    max-height: 1.7rem;
  }
  .header-register-text {
    margin-top: 0;
    max-width: 80px;
    font-size: 11px;
  }
  .header-submenu-el {
    width: 100%;
  }
  .header-submenu-sub {
    position: relative;
    top: 0;
    background: transparent;
    width: 100%;
  }
  .header-submenu-sub-link {
    color: #fff;
  }
  .header-submenu-sub-link:hover {
    background: none;
    color: #90C96C;
  }
}
.fokus {
  background-position: center;
  background-size: auto 110%;
  padding-bottom: 80px;
  padding-top: 180px;
}

.fokus-title {
  font-size: 36px;
  font-weight: bold;
  font-family: Alfabet, sans-serif;
  text-align: center;
  color: #fff;
  max-width: 1050px;
  margin: 0 auto 40px;
}

.fokus-body {
  display: flex;
  gap: 50px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.fokus-img {
  width: 100%;
  max-width: 408px;
  aspect-ratio: 408/387;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.fokus-img svg {
  width: 100%;
  height: auto;
}

.fokus-list {
  font-weight: bold;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fokus-list-el + .fokus-list-el {
  margin-top: 12px;
}

.fokus-list-el a {
  min-height: 52px;
  display: inline-flex;
  color: #fff;
  border-radius: 100px;
  padding: 5px;
  box-shadow: inset 0 0 0 2px #012d19;
  align-items: center;
  overflow: hidden;
  gap: 10px;
}

.fokus-list-el-nr {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #012D19;
  background: #90C96C;
  flex-shrink: 0;
}

.fokus-list-el-date {
  color: #012D19;
  font-weight: 900;
}

.fokus-list-el-title {
  margin: 0;
  padding-left: 5px;
  padding-right: 25px;
}

.fokus-list-el:hover a {
  background: #63B330;
}

.fokus:has(.fokus-list-el:nth-child(1):hover) #area1 {
  fill: #fff;
}

.fokus:has(.fokus-list-el:nth-child(2):hover) #area2 {
  fill: #fff;
}

.fokus:has(.fokus-list-el:nth-child(3):hover) #area3 {
  fill: #fff;
}

.fokus:has(.fokus-list-el:nth-child(4):hover) #area4 {
  fill: #fff;
}

.fokus-footer {
  max-width: 1050px;
  margin: 40px auto 0;
  position: relative;
}
.fokus-footer .fokus-footer-logotypes {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  gap: 20px;
  max-width: 300px;
  width: 30%;
}
.fokus-footer .fokus-footer-logotypes img, .fokus-footer .fokus-footer-logotypes svg {
  max-width: 50%;
}
.fokus-footer .fokus-footer-logotypes img + img {
  max-width: 40%;
}
@media (max-width: 600px) {
  .fokus-footer {
    padding-top: 50px;
  }
  .fokus-footer .fokus-footer-logotypes {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    top: 0;
    translate: none;
    justify-content: center;
  }
  .fokus-footer .fokus-footer-logotypes img {
    max-width: 100%;
  }
  .fokus-footer .fokus-footer-logotypes img + img {
    max-width: 90%;
  }
}

@media (max-width: 960px) {
  .fokus-body {
    flex-direction: column;
  }
}
@media (max-width: 570px) {
  .fokus {
    padding-bottom: 0;
    padding-top: 120px;
  }
  .fokus-title {
    font-size: 18px;
  }
  .fokus-img {
    max-width: 90%;
    margin-bottom: 30px;
  }
  .fokus-body {
    gap: 20px;
  }
  .fokus-list {
    font-size: 15px;
  }
  .fokus-footer {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .fokus-list-el a {
    display: grid;
    grid-template-columns: auto 1fr;
    box-shadow: none;
    gap: 0 20px;
    grid-template-areas: "nr date" "nr text";
  }
  .fokus-list-el-nr {
    grid-area: nr;
  }
  .fokus-list-el-date {
    grid-area: date;
    align-self: end;
  }
  .fokus-list-el-title {
    align-self: start;
    grid-area: text;
    padding-left: 0;
  }
}
.m-collaboration-title, .m-contest-title, .m-talks-title, .m-media-title, .m-about-title, .m-gallery .m-gallery-title, .m-prelegent-title {
  font-size: 42px;
  font-weight: 900;
  margin-top: 0;
  font-family: Alfabet, sans-serif;
  letter-spacing: 1px;
  color: #90C96C;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 500px) {
  .m-collaboration-title, .m-contest-title, .m-talks-title, .m-media-title, .m-about-title, .m-gallery .m-gallery-title, .m-prelegent-title {
    font-size: 30px;
  }
}

.m-collaboration-section-text, .m-prelegent-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  max-width: 1200px;
}
@media (max-width: 500px) {
  .m-collaboration-section-text, .m-prelegent-text {
    font-size: 15px;
  }
}

.m-prelegent-section {
  position: relative;
  isolation: isolate;
  margin-bottom: var(--m-section-margin);
}

.m-prelegent-title-cnt {
  text-align: center;
}

.m-prelegent-title {
  display: inline-flex;
}

.m-prelegent-text {
  text-align: center;
  max-width: 1300px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.m-prelegent-list-cnt {
  margin-top: 40px;
}

.m-prelegent-list-cnt .swiper-wrapper {
  transition-timing-function: linear;
}

.m-prelegent-list {
  display: flex;
  max-width: 1148px;
}

.m-prelegent-list-cnt .swiper-slide {
  width: 240px;
  height: auto !important;
  display: flex;
  flex-direction: column;
}

.m-prelegent-el {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.m-prelegent-el-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
}
.m-prelegent-el-photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-prelegent-el-content {
  background: #90C96C;
  margin-top: -30px;
  padding: 50px 30px 30px 30px;
  border-radius: 0 0 20px 0;
  flex: 1;
  color: #fff;
}

.m-prelegent-el-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  font-family: Alfabet, sans-serif;
}

.m-prelegent-el-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}

.m-gallery {
  margin-bottom: var(--m-section-margin);
  grid-column: 1/-1;
  margin-top: var(--m-section-space);
}
.m-gallery .m-gallery-title {
  margin-bottom: 30px;
  text-align: center;
}
.m-gallery .swiper-container {
  position: relative;
}
.m-gallery .swiper-container img {
  height: auto;
}
.m-gallery .gallery-img-cnt {
  aspect-ratio: 640/427;
  position: relative;
}
.m-gallery .gallery-img-cnt img {
  position: absolute;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.m-gallery .swiper-slide {
  width: 640px;
}
.m-gallery .swiper-button-prev,
.m-gallery .swiper-button-next {
  left: calc(50% - 400px);
  width: 56px;
  height: 56px;
}
@media (max-width: 600px) {
  .m-gallery .swiper-button-prev,
  .m-gallery .swiper-button-next {
    width: 35px;
    height: 35px;
    background-size: 20px;
  }
}
.m-gallery .swiper-button-next {
  left: auto;
  right: calc(50% - 400px);
}
.m-gallery .swiper-button-prev {
  background-color: transparent;
  border: 3px solid #90C96C;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='%2397C128' d='m10 18l-6-6l6-6l1.4 1.45L7.85 11H20v2H7.85l3.55 3.55z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.m-gallery .swiper-button-next {
  background-color: transparent;
  border-radius: 50%;
  border: 3px solid #90C96C;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='%2397C128' d='m14 18l-1.4-1.45L16.15 13H4v-2h12.15L12.6 7.45L14 6l6 6z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.m-gallery .swiper-button-prev::after {
  display: none;
}
.m-gallery .swiper-button-next::after {
  display: none;
}
.m-gallery .swiper-slide img {
  filter: brightness(0.5);
  display: block;
}
.m-gallery .swiper-slide-active img {
  filter: none;
}
@media (max-width: 1000px) {
  .m-gallery .swiper-button-prev {
    left: 1rem;
  }
  .m-gallery .swiper-button-next {
    right: 1rem;
  }
}
@media (max-width: 760px) {
  .m-gallery .swiper-slide {
    width: 400px;
  }
}
@media (max-width: 500px) {
  .m-gallery .swiper-slide {
    width: 300px;
  }
}

.m-about-section {
  color: #fff;
  max-width: 1300px;
  margin-inline: auto;
  margin-block: var(--m-section-margin);
  position: relative;
  display: grid;
  padding-inline: var(--m-space-horizontal);
}

.m-about-main .swiper-slide img {
  border-radius: 20px;
  margin-bottom: 20px;
}

.m-about-main .swiper {
  width: 100%;
}

.m-about-main .swiper-pagination-bullet {
  background: #90C96C;
}

.m-about-main .swiper-pagination-bullet-active {
  background: #90C96C;
}

.m-about-main .swiper-pagination {
  bottom: 0 !important;
  z-index: 2;
}

.m-about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 20px 90px;
  grid-template-areas: "content video" "counter video";
}

.m-about-button {
  margin-top: 30px;
}

.m-about-video {
  grid-area: video;
  display: flex;
  align-items: flex-end;
}
.m-about-video .yt {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.m-about-counter {
  grid-area: counter;
}

.m-about-text {
  font-family: Inter, sans-serif;
  font-size: 18px;
}

.m-about-content {
  grid-area: content;
  flex: 1;
  font-size: 18px;
  font-family: Alfabet, sans-serif;
  font-weight: 400;
}
.m-about-content ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.m-about-content li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
.m-about-content li::before {
  content: "";
  position: absolute;
  background: url("/innowacyjnosc.farmer.pl/images/2026/arrow-white.svg");
  background-position: center;
  background-size: contain;
  display: block;
  width: 12px;
  height: 12px;
  left: 0;
  top: 10px;
}

@media (max-width: 860px) {
  .m-about-section {
    display: flex;
    flex-direction: column;
    font-size: 15px;
  }
  .m-about-main .swiper-slide img {
    width: 100%;
  }
  .m-about-button {
    margin-bottom: 40px;
  }
  .m-about-content {
    font-size: inherit;
  }
  .m-about-title {
    order: -1;
    margin-top: 20px;
  }
  .m-about-video {
    order: -2;
  }
  .m-about-counter {
    order: 0;
  }
  .m-about-main {
    display: contents;
  }
  .m-about-main .button {
    margin-inline: auto;
    display: flex;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 480px) {
  .m-about-text {
    font-size: 15px;
  }
}
.m-partners {
  display: flex;
  padding-left: 30px;
}

.m-partners-title {
  position: relative;
  margin-right: 10px;
}
.m-partners-title span {
  position: absolute;
  top: 50%;
  translate: -120% -50%;
  color: #90C96C;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  font-family: Alfabet, sans-serif;
  writing-mode: vertical-rl;
  text-align: center;
  text-orientation: mixed;
  white-space: nowrap;
  scale: -1 -1;
}

.m-partners-list.slider {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.m-partners-list.slider .slider-list-slide {
  grid-column: 1/-1;
  grid-row: 1/-1;
  opacity: 0;
  pointer-events: none;
}
.m-partners-list.slider .slider-list-slide.is-show {
  z-index: 1;
  opacity: 1;
  pointer-events: all;
}

.m-partners .slider-list-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 10px 20px;
  align-items: start;
}

.m-partners-list-el {
  display: flex;
  flex-direction: column;
}
.m-partners-list-el small {
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 2.5em;
}
.m-partners-list-el span, .m-partners-list-el a {
  background: #fff;
  height: 130px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-partners-list-el img {
  display: block;
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-dots {
  display: flex;
  display: none;
  gap: 10px;
  justify-content: center;
}
.slider-dots .slider-dots-el {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  text-indent: -999px;
  overflow: hidden;
}
.slider-dots .slider-dots-el.is-active {
  background: #90C96C;
}

@media (max-width: 980px) {
  .m-partners {
    flex-direction: column;
    gap: 0;
    padding-left: 0;
  }
  .m-partners-title {
    position: relative;
    line-height: 1;
    margin-top: 0;
    text-align: center;
  }
  .m-partners-title span {
    writing-mode: horizontal-tb;
    text-align: center;
    text-orientation: initial;
    scale: 1 1;
    translate: none;
    position: relative;
  }
  .m-partners .slider-list-slide {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .m-partners-title {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.m-contact-box {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  align-items: center;
}

.m-contact-box + .m-contact-box {
  margin-top: 20px;
}

.m-contact-box-photo {
  max-width: 140px;
  flex-shrink: 0;
}

.m-contact-box-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.m-contact-box-content {
  font-size: 16px;
  flex: 1;
}

.m-contact-box-name {
  font-size: 20px;
  font-weight: bold;
  font-family: Alfabet, sans-serif;
  margin-bottom: 10px;
}

.m-contact-box-position {
  font-size: 14px;
}

.m-contact-box-links {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  margin-top: 10px;
}

.m-contact-box-link {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: inherit;
  text-decoration: none;
  align-items: center;
  display: flex;
  gap: 5px;
}
.m-contact-box-link::before {
  content: "";
  position: absolute;
  background: url("/innowacyjnosc.farmer.pl/images/2026/arrow-black.svg");
  background-position: center;
  background-size: contain;
  display: block;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

@media (max-width: 640px) {
  .m-contact-box-photo {
    width: 120px;
  }
  .m-contact-box-name {
    font-size: 20px;
  }
  .m-contact-box-position {
    font-size: 12px;
  }
  .m-contact-box-link {
    font-size: 13px;
  }
  .m-contact-box-link::before {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .m-contact-box-name {
    font-size: 16px;
  }
  .m-contact-box-link {
    font-size: 12px;
  }
  .m-contact-box-link span {
    display: block;
    font-weight: bold;
  }
  .m-contact-box-link strong {
    display: none;
  }
  .m-contact-box-photo {
    width: 90px;
  }
}
.m-media {
  margin-top: var(--m-section-margin);
  padding-inline: var(--m-space-horizontal);
  overflow-x: hidden;
  display: flex;
  gap: 50px;
  align-items: center;
}

.m-media-img {
  flex: 1;
  margin-left: 100px;
}

.m-media-content {
  flex: 1;
  color: #fff;
  margin-top: -50px;
}

.m-media-text {
  margin-bottom: 40px;
  max-width: 400px;
}

.m-media-logotypes {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 1300px) {
  .m-media {
    gap: 40px;
  }
  .m-media-img {
    margin-left: 0;
  }
}
@media (max-width: 860px) {
  .m-media {
    flex-direction: column-reverse;
    margin-bottom: 100px;
  }
  .m-media-content {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .m-media-title {
    text-align: center;
  }
  .m-media {
    text-align: center;
  }
  .m-media-text {
    font-size: 15px;
  }
}
.m-talks-section {
  margin-bottom: var(--m-section-margin);
  padding-inline: var(--m-space-horizontal);
  padding-block: var(--m-section-margin);
  border-bottom: 1px solid #48908F;
  border-top: 1px solid #48908F;
  padding-top: 100px;
  padding-bottom: 100px;
}

.m-talks-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  grid-template-areas: "g g g c c";
  max-width: 1300px;
  margin-inline: auto;
}

.m-talks-grid {
  grid-area: g;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
}

.m-talks-grid-el {
  height: 240px;
  padding: 20px;
  padding-left: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.m-talks-grid-el {
  cursor: pointer;
}
.m-talks-grid-el.el-1 {
  background-color: #63B330;
  --color1: #63B330;
  --color2: #0F3333;
}
.m-talks-grid-el.el-2 {
  background-color: #0F3333;
  --color1: #0F3333;
  --color2: #63B330;
}
.m-talks-grid-el.el-3 {
  background-color: #0F3333;
  --color1: #0F3333;
  --color2: #63B330;
}
.m-talks-grid-el.el-4 {
  background-color: #63B330;
  --color1: #63B330;
  --color2: #0F3333;
}

.m-talks-grid-el:hover {
  z-index: 2;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.02), 0px 3px 4px rgba(0, 0, 0, 0.05), 0px 6px 10px rgba(0, 0, 0, 0.07), 0px 11px 18px rgba(0, 0, 0, 0.1), 0px 18px 28px rgba(0, 0, 0, 0.12), 0px 26px 40px rgba(0, 0, 0, 0.15), 0px 35px 55px rgba(0, 0, 0, 0.17);
}

.m-talks-grid-el-img {
  width: 61px;
  display: block;
}
.m-talks-grid-el-img img {
  width: 100%;
  height: 65px;
}

.m-talks-grid-el-title {
  font-size: 18px;
  line-height: 1.2;
  font-family: Alfabet, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.m-talks-content {
  color: #fff;
  grid-area: c;
}

.m-talks-content-text {
  margin-bottom: 40px;
  font-size: 18px;
}

.m-talks-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  color: #fff;
  padding: 50px;
  display: none;
  cursor: default;
}

.m-talks-popup.is-show {
  display: block;
}

.m-talks-popup-body {
  overflow-y: auto;
  padding-right: 20px;
  flex: 1;
}
.m-talks-popup-body::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.m-talks-popup-body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}
.m-talks-popup-body::-webkit-scrollbar-thumb {
  background: var(--colorMain);
  border-radius: 3px;
}
@media (max-width: 670px) {
  .m-talks-popup-body::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .m-talks-popup-body::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
  }
  .m-talks-popup-body::-webkit-scrollbar-thumb {
    background: var(--colorMain);
    border-radius: 3px;
  }
}

.m-talks-popup-content {
  font-size: 18px;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.m-talks-popup-content em, .m-talks-popup-content strong {
  display: block;
}
.m-talks-popup-content em {
  margin-top: 20px;
  font-weight: bold;
  color: var(--color2);
}
.m-talks-popup-content br {
  display: none;
}
.m-talks-popup-content ul {
  position: relative;
  padding-left: 20px;
  margin: 0;
  margin: 20px 0;
  list-style: disc;
}
.m-talks-popup-content ul li {
  margin-bottom: 20px;
}
.m-talks-popup-content ul li::marker {
  color: var(--color2);
}

.m-talks-popup-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.m-talks-popup-header-title {
  font-size: 32px;
  font-family: Alfabet, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}

.m-talks-popup-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color2);
  position: absolute;
  right: 20px;
  top: 20px;
  border: 0;
  cursor: pointer;
  text-indent: -9999px;
}
.m-talks-popup-close::before, .m-talks-popup-close::after {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--color1);
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.m-talks-popup-close::before {
  rotate: -45deg;
}
.m-talks-popup-close::after {
  rotate: 45deg;
}

@media (max-width: 1200px) {
  .m-talks-main {
    grid-template-columns: 100%;
    grid-template-areas: "c" "g";
  }
}
@media (max-width: 800px) {
  .m-talks-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .m-talks-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .m-talks-grid-el {
    aspect-ratio: auto;
  }
}
@media (max-width: 480px) {
  .m-talks-main {
    font-size: 15px;
  }
  .m-talks-grid-el-title {
    font-size: 15px;
  }
  .m-talks-content-text {
    font-size: 15px;
  }
  .m-talks-grid {
    grid-template-columns: 100%;
  }
  .m-talks-grid-el {
    cursor: pointer;
  }
  .m-talks-grid-el.el-1 {
    background-color: #63B330;
    --color1: #63B330;
    --color2: #0F3333;
  }
  .m-talks-grid-el.el-2 {
    background-color: #0F3333;
    --color1: #0F3333;
    --color2: #63B330;
  }
  .m-talks-grid-el.el-3 {
    background-color: #63B330;
    --color1: #63B330;
    --color2: #0F3333;
  }
  .m-talks-grid-el.el-4 {
    background-color: #0F3333;
    --color1: #0F3333;
    --color2: #63B330;
  }
}
.m-contest-section {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: var(--m-section-margin);
  padding-inline: var(--m-space-horizontal);
}

.m-contest-title {
  text-align: center;
}

.m-contest-main {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin-inline: auto;
}

.m-contest-part {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
  justify-content: flex-end;
  text-decoration: none;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 30px 50px;
  min-height: 650px;
}
.m-contest-part::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.2) 280px, rgba(0, 0, 0, 0.8));
}

.m-contest-part-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.m-contest-part-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.m-contest-part-text {
  font-size: 16px;
  line-height: 1.4;
}

.m-contest-part-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.m-contest-part-content-img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding-top: 60px;
  max-width: 250px;
}
.m-contest-part-content-img img {
  width: 100%;
  height: auto;
}

.m-contest-part-content .button {
  margin-top: 30px;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 1200px) {
  .m-contest-main {
    gap: 30px;
  }
}
@media (max-width: 860px) {
  .m-contest-main {
    flex-direction: column;
  }
  .m-contest-part-text {
    max-width: 600px;
    margin-inline: auto;
  }
  .m-contest-part {
    min-height: auto;
  }
  .m-contest-part-content {
    justify-content: flex-start;
  }
  .m-contest-part-content-img {
    aspect-ratio: auto;
    margin-bottom: 50px;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .m-contest-part {
    padding: 20px;
    font-size: 14px;
  }
  .m-contest-part-text {
    font-size: inherit;
  }
  .m-contest-part-content-img {
    min-height: 300px;
    align-items: center;
  }
}
.m-collaboration-section {
  margin-block: var(--m-section-margin);
  padding-inline: var(--m-space-horizontal);
  overflow-x: hidden;
}

.m-collaboration-title-cnt {
  text-align: center;
}

.m-collaboration-title {
  text-align: center;
}

.m-collaboration-section-text {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
}

.m-collaboration-main {
  color: #012D19;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "map content";
  max-width: 1300px;
  margin-inline: auto;
  gap: 40px;
}

.m-collaboration-right {
  grid-area: content;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  background: #fff;
  border-radius: 20px;
  padding: 0 0 0 40px;
}

.m-collaboration-content {
  margin-top: 60px;
  align-self: center;
}

.m-collaboration-text {
  margin-bottom: 30px;
}

.m-collaboration-right img {
  width: 320px;
  margin-top: -60px;
  margin-right: -30px;
  margin-left: -30px;
}

@media (max-width: 1300px) {
  .m-collaboration-right img {
    margin-left: -50px;
    margin-right: -80px;
    width: 280px;
  }
}
@media (max-width: 1000px) {
  .m-collaboration-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "content" "map";
  }
  .m-collaboration-right img {
    width: 320px;
    margin-right: -50px;
  }
  .m-collaboration-title-cnt {
    text-align: left;
  }
  .m-collaboration-title {
    text-align: left;
    margin-left: 20px;
    max-width: 100%;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .m-collaboration-section {
    margin-top: 50px;
  }
  .m-collaboration-main {
    gap: 20px;
  }
  .m-collaboration-right {
    padding-left: 20px;
    gap: 10px;
  }
  .m-collaboration-right img {
    width: 150px;
    margin-right: -30px;
  }
  .m-collaboration-content {
    margin-top: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .m-collaboration-title {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 476px) {
  .m-collaboration-right img {
    margin-right: 0;
  }
}
.counters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  color: inherit;
  margin-top: 30px;
  width: 100%;
  margin-bottom: 30px;
  line-height: 1.3;
  color: #fff;
}

.counters-el {
  flex: 1;
}

.counters-el-nr {
  font-size: 50px;
  font-weight: 900;
  border-bottom: 1px solid #48908F;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #90C96C;
  font-family: Alfabet, sans-serif;
  display: flex;
  align-items: center;
  position: relative;
}
.counters-el-nr span {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-60%);
}
.counters-el-nr span path {
  fill: currentColor;
  stroke-width: 2px;
  stroke: currentColor;
}

.counters-el-text {
  margin-top: 20px;
  font-size: 14px;
  max-width: 150px;
}

@media (max-width: 600px) {
  .counters {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .counters-el-text {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .counters {
    text-align: center;
    gap: 20px;
  }
  .counters-el {
    background: #48908F;
    padding: 20px;
    border-radius: 20px;
  }
  .counters-el-nr {
    justify-content: center;
    font-size: 30px;
  }
}
.timer {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.timer li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
}

.timer strong {
  display: flex;
  gap: 5px;
}
.timer strong span {
  border-radius: 10px;
  background: #007C54;
  color: #fff;
  width: 48px;
  aspect-ratio: 48/57;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  font-family: Inter, sans-serif;
}

@media (max-width: 570px) {
  .timer strong span {
    width: 35px;
  }
}
@media (max-width: 450px) {
  .timer strong span {
    width: 28px;
    font-size: 22px;
  }
}
.box-person {
  margin: 40px 0;
  display: grid;
  gap: 0 60px;
  grid-template-columns: 205px 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "img name" "img position" "img contact";
}

.box-person-img-wrap {
  position: relative;
  align-self: flex-start;
  grid-area: img;
}

.box-person-img-wrap::before {
  content: "";
  width: 205px;
  height: 205px;
  position: absolute;
  left: 33px;
  top: 30px;
  opacity: 1;
  background-image: linear-gradient(45deg, #eee 25%, #ffffff 25%, #ffffff 50%, #eee 50%, #eee 75%, #ffffff 75%, #ffffff 100%);
  background-size: 12.14px 12.14px;
  background-position: right top;
}

.box-person-img img {
  width: 205px;
  height: 205px;
  display: block;
  position: relative;
  box-shadow: 0 0 0 2px #eee;
  z-index: 1;
  background: #fff;
}

.box-person-name {
  grid-area: name;
  color: #000;
  font-size: 25px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
.box-person-name strong {
  display: block;
}

.box-person-position {
  grid-area: position;
  color: #444;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.box-person-contact {
  grid-area: contact;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.box-person-contact li {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.box-person-contact a {
  color: #060202;
  min-height: 24px;
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
  background: left center scroll no-repeat;
  text-decoration: none;
  transition: all 0.2s linear;
}
.box-person-contact li.tel a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M174.552,154.8h-15.7a4.153,4.153,0,0,0-4.148,4.148v15.7a4.153,4.153,0,0,0,4.148,4.148h15.7a4.153,4.153,0,0,0,4.148-4.148v-15.7A4.153,4.153,0,0,0,174.552,154.8Zm-9.742,3.757.012.024h-.059Zm9.576,12.527-.178.332a3.182,3.182,0,0,1-3.627,1.612,13.871,13.871,0,0,1-9.647-9.647,3.168,3.168,0,0,1,1.612-3.627c.142-.071.273-.142.4-.213a.867.867,0,0,1,1.138.3c.439.664,1.055,1.624,1.8,2.761a.881.881,0,0,1-.119,1.1l-.664.664a1.137,1.137,0,0,0-.225,1.28,6.979,6.979,0,0,0,3.449,3.449,1.145,1.145,0,0,0,1.28-.225l.6-.6a.879.879,0,0,1,1.1-.119l2.785,1.813A.858.858,0,0,1,174.386,171.084Z' transform='translate(-154.7 -154.8)' fill='%23000'/%3E%3C/svg%3E%0A");
}
.box-person-contact li.mail a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg transform='translate(-154.8 -154.8)'%3E%3Cpath d='M233.04,220.889l-8.6,5.174a.358.358,0,0,0-.16.419L225.4,230.5a.107.107,0,0,0,.209-.025l.246-2.772a.772.772,0,0,1,.271-.542l7.022-6.123C233.225,220.963,233.127,220.827,233.04,220.889Z' transform='translate(-61.412 -58.439)' fill='%23000'/%3E%3Cpath d='M174.652,154.8h-15.7a4.153,4.153,0,0,0-4.148,4.148v15.7a4.153,4.153,0,0,0,4.148,4.148h15.7a4.153,4.153,0,0,0,4.148-4.148v-15.7A4.16,4.16,0,0,0,174.652,154.8Zm.687,5.239-3.034,13.784a.635.635,0,0,1-1.019.356l-3.556-2.821a.633.633,0,0,0-.877.083l-1.825,2.11a.63.63,0,0,1-1.079-.213l-1.612-4.966a.64.64,0,0,0-.439-.415l-3.188-.841a.635.635,0,0,1-.083-1.2l15.846-6.6A.64.64,0,0,1,175.339,160.039Z' transform='translate(0 0)' fill='%23000'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.box-person-contact li.li a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath id='linkedin' d='M-3303.148,24h-15.7A4.153,4.153,0,0,1-3323,19.852V4.148A4.153,4.153,0,0,1-3318.852,0h15.7A4.153,4.153,0,0,1-3299,4.148v15.7A4.153,4.153,0,0,1-3303.148,24Zm-9.228-14.414c.04.855,0,9,0,9.084h2.8V13.525a2.023,2.023,0,0,1,.1-.747,1.676,1.676,0,0,1,1.572-1.12,1.671,1.671,0,0,1,1.8,1.867V18.67h2.809V13.388a4.481,4.481,0,0,0-1.007-3.134,3.314,3.314,0,0,0-2.518-1.012,3.037,3.037,0,0,0-2.779,1.552l.02-1.208Zm-4.539.055V18.67h2.791V9.641Zm1.361-4.623A1.373,1.373,0,0,0-3317,6.44a1.372,1.372,0,0,0,1.413,1.424h.016a1.373,1.373,0,0,0,1.447-1.424A1.37,1.37,0,0,0-3315.553,5.018Z' transform='translate(3323)' fill='%23000'/%3E%3C/svg%3E%0A");
}

@media (max-width: 670px) {
  .box-person {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "img" "name" "position" "contact";
    justify-items: center;
  }
  .box-person-img-wrap {
    margin-bottom: 50px;
    transform: translateX(-15px);
  }
  .box-person-name {
    text-align: center;
  }
}
div.box-1 {
  font-size: 0;
}
div.box-1 p {
  text-align: center;
  margin: 0 0 1rem;
}
div.box-1 h1 {
  text-align: center;
  font-weight: 700;
  font-size: 42px;
  margin: 0 auto 2.5rem;
  text-transform: uppercase;
  width: 1100px;
  max-width: 100%;
}
div.box-1 div.t {
  display: table;
  width: 100%;
  table-layout: fixed;
}
div.box-1 div.img {
  display: table-cell;
  vertical-align: middle;
  width: 500px;
}
div.box-1 div.img img {
  max-width: 90%;
  display: block;
  margin: 0 auto;
}
div.box-1 div.desc {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-left: 2rem;
  font-size: 24px;
  font-weight: 700;
}
div.box-1 a {
  color: #fff;
  text-decoration: none;
}
div.box-1 ul {
  display: block;
}
div.box-1 ul li {
  display: block;
  margin: 0 0 0.5rem;
}
div.box-1 ul li a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s linear;
}
div.box-1 ul li:hover a {
  background: #779e2c;
}
div.box-1 ul span {
  color: #779e2c;
}
@media (max-width: 1100px) {
  div.box-1 h1 {
    font-size: 36px;
  }
  div.box-1 div.img {
    width: 360px;
  }
  div.box-1 div.desc {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  div.box-1 div.t {
    display: block;
  }
  div.box-1 div.img {
    display: block;
    width: auto;
    margin: 0 0 1.5rem;
  }
  div.box-1 div.desc {
    display: block;
    width: auto;
    padding: 0;
  }
}
@media (max-width: 480px) {
  div.box-1 h1 {
    font-size: 28px;
  }
  div.box-1 div.desc {
    font-size: 16px;
  }
}

div.box-1a {
  font-size: 0;
}
div.box-1a p {
  font-weight: 400;
  margin: 0 0 1.5rem;
}
div.box-1a h3 {
  margin: 0 0 1.5rem;
  color: #124328;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  display: inline;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 88%;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
div.box-1a h1 {
  font-weight: 400;
  font-size: 42px;
  margin: 1.5rem auto;
  text-transform: uppercase;
  width: 1100px;
  max-width: 100%;
}
div.box-1a h1 strong {
  display: block;
  font-weight: 700;
}
div.box-1a div.t {
  display: table;
  width: 100%;
  table-layout: fixed;
}
div.box-1a div.img {
  display: table-cell;
  vertical-align: middle;
  width: 540px;
}
div.box-1a div.desc {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-left: 4rem;
  font-size: 24px;
  font-weight: 700;
}
div.box-1a a {
  color: #fff;
  text-decoration: none;
}
div.box-1a ul {
  display: block;
  text-align: center;
}
div.box-1a ul li {
  display: inline-block;
  vertical-align: top;
  width: 48.5%;
  margin: 0 3% 3% 0;
}
div.box-1a ul li:nth-child(even) {
  margin-right: 0;
}
div.box-1a ul img {
  display: block;
  margin: 0 auto 1rem;
}
div.box-1a ul small {
  font-size: 18px;
  font-weight: 700;
  display: block;
}
div.box-1a ul p {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  div.box-1a h1 {
    font-size: 32px;
  }
  div.box-1a div.img {
    width: 500px;
  }
  div.box-1a div.desc {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  div.box-1a div.t {
    display: grid;
    grid-template-rows: min-content min-content;
    gap: 1.5rem 1.5rem;
    grid-template-columns: 100%;
    grid-template-areas: "e2" "e1";
  }
  div.box-1a div.img {
    grid-area: e1;
    align-self: center;
    display: block;
    width: 100%;
  }
  div.box-1a div.desc {
    grid-area: e2;
    align-self: center;
    display: block;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 760px) {
  div.box-1a ul small {
    font-size: 16px;
  }
  div.box-1a ul p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  div.box-1a h1 {
    font-size: 28px;
  }
  div.box-1a div.desc {
    font-size: 16px;
  }
}

div.box-2 {
  display: table;
  width: 100%;
  table-layout: fixed;
  color: #fff;
  font-size: 0;
}
div.box-2 div.one {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  background: center center scroll no-repeat #222;
  background-size: cover;
}
div.box-2 div.img2 {
  display: inline-block;
  vertical-align: middle;
  width: 35%;
  padding: 1rem;
}
div.box-2 div.img2 img {
  display: block;
  margin: 0 auto;
}
div.box-2 div.desc2 {
  display: inline-block;
  vertical-align: middle;
  width: 65%;
  padding: 1rem 1rem 1rem 0;
}
div.box-2 a {
  color: #fff;
  text-decoration: none;
}
div.box-2 h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
div.box-2 p {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
div.box-2 small {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1000px) {
  div.box-2 h3 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  div.box-2 {
    display: block;
  }
  div.box-2 div.one {
    display: block;
    width: auto;
  }
}

section {
  padding: 1.5rem;
}
section div.head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 3rem;
  text-align: center;
}
section div.head h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  text-transform: uppercase;
}
section div.head p {
  font-size: 24px;
  font-weight: 400;
  margin: 0 auto;
}
@media (max-width: 700px) {
  section div.head h2 {
    font-size: 32px;
  }
  section div.head p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  section div.head h2 {
    font-size: 28px;
  }
  section div.head p {
    font-size: 16px;
  }
}

div.yt {
  position: relative;
  padding-bottom: 56.5%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
  margin: 0 0 1.5rem;
}

div.yt iframe,
div.yt video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section.section-1 {
  position: relative;
  margin: -5rem 0;
  padding: 0;
}

section.section-2 {
  background: #779e2c;
  padding: 9rem 1.5rem;
}
section.section-2 div.body {
  position: relative;
  margin: -5rem -1.5rem 0;
  bottom: -5rem;
}
@media (max-width: 800px) {
  section.section-2 {
    padding: 5rem 1.5rem;
  }
}

section.section-3 {
  padding: 9rem 1.5rem 0;
}
section.section-3 div.body {
  position: relative;
  margin-top: -5rem;
  bottom: -5rem;
}
@media (max-width: 800px) {
  section.section-3 {
    padding: 5rem 1.5rem 8rem;
  }
}

section.section-4 {
  background: #F4F4F4;
  padding: 9rem 1.5rem 5rem;
}
section.section-4 div.body {
  position: relative;
}
@media (max-width: 800px) {
  section.section-4 {
    padding: 5rem 1.5rem;
  }
}

section.section-5 {
  background: #F0F0F0;
  padding: 5rem 1.5rem;
}

ul.list-1 {
  font-size: 0;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
ul.list-1 > li {
  display: inline-block;
  vertical-align: top;
  width: 22.75%;
  margin: 0 3% 0 0;
  position: relative;
  overflow: hidden;
}
ul.list-1 > li:nth-child(4n+4) {
  margin-right: 0;
}
ul.list-1 div.img {
  overflow: hidden;
  height: 450px;
  position: relative;
}
ul.list-1 div.img img {
  display: block;
  width: auto;
  max-width: none;
  min-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s linear;
}
ul.list-1 div.desc {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #779e2c;
  padding: 0 1.5rem 1.5rem;
  transition: all 0.2s linear;
}
ul.list-1 div.desc:before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: -40px;
  height: 100px;
  width: 150%;
  transform: rotate(10deg);
  background: #779e2c;
}
ul.list-1 h3 {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 1rem;
  position: relative;
  min-height: 3.9em;
}
ul.list-1 ul {
  display: block;
  font-weight: 400;
  font-size: 14px;
  padding-left: 1rem;
  list-style-type: disc;
}
ul.list-1 ul li {
  margin: 0 0 1rem;
  position: relative;
}
ul.list-1 div.desc2 {
  display: none;
}
ul.list-1 li:hover div.desc {
  animation-name: slideBottomTop;
  animation-duration: 0.5s;
}
ul.list-1 li:hover div.desc2 {
  display: block;
}
ul.list-1 li:hover h3 {
  min-height: 0;
}
@media (max-width: 1000px) {
  ul.list-1 {
    white-space: nowrap;
    overflow: auto;
  }
  ul.list-1 > li {
    width: 285px;
    margin: 0 1.5rem 0 0;
    white-space: normal;
  }
  ul.list-1 > li:last-child {
    margin-right: 0;
  }
}

@keyframes lideBottomTop {
  from {
    bottom: -5rem;
  }
  to {
    bottom: 0;
  }
}
ul.list-2 {
  font-size: 0;
  margin: 0 auto;
  text-align: center;
}
ul.list-2 > li {
  display: inline-block;
  vertical-align: top;
  width: 17.6%;
  margin: 0 3% 2.5rem 0;
}
ul.list-2 > li:nth-child(5n+5) {
  margin-right: 0;
}
ul.list-2 div.img {
  margin: 0 0 1.5rem;
  border: 1px solid #EAEAEA;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.16);
}
ul.list-2 h3 {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 1rem;
}
ul.list-2 p {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}
@media (max-width: 900px) {
  ul.list-2 > li, ul.list-2 > li:nth-child(5n+5) {
    width: 30%;
    margin: 0 5% 2.5rem 0;
  }
  ul.list-2 > li:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  ul.list-2 > li, ul.list-2 > li:nth-child(5n+5), ul.list-2 > li:nth-child(3n+3) {
    width: 47.5%;
    margin: 0 5% 2.5rem 0;
  }
  ul.list-2 > li:nth-child(even) {
    margin-right: 0;
  }
  ul.list-2 h3 {
    font-size: 16px;
  }
  ul.list-2 p {
    font-size: 14px;
  }
}

ul.list-3 {
  font-size: 0;
  margin: 0 auto;
  text-align: center;
}
ul.list-3 > li {
  display: inline-block;
  vertical-align: top;
  width: 17.6%;
  margin: 0 3% 0 0;
  border: 1px solid #779e2c;
  background: #fff;
  position: relative;
}
ul.list-3 > li:nth-child(5n+5) {
  margin-right: 0;
}
ul.list-3 div.img {
  padding: 0 0 50%;
  position: relative;
}
ul.list-3 div.img img {
  display: block;
  position: absolute;
  margin: 0 auto;
  max-width: 90%;
  max-height: 90%;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
ul.list-3 div.desc {
  position: absolute;
  z-index: 2;
  opacity: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #779e2c;
  transition: all 0.2s linear;
}
ul.list-3 div.desc p {
  position: absolute;
  z-index: 2;
  font-weight: 400;
  font-size: 24px;
  margin: 0 auto;
  width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.2s linear;
  padding: 1rem;
}
ul.list-3 > li:hover div.desc {
  opacity: 1;
}
@media (max-width: 1000px) {
  ul.list-3 div.desc p {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  ul.list-3 > li, ul.list-3 > li:nth-child(5n+5) {
    width: 30%;
    margin: 0 5% 2.5rem 0;
  }
  ul.list-3 > li:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  ul.list-3 > li, ul.list-3 > li:nth-child(5n+5), ul.list-3 > li:nth-child(3n+3) {
    width: 47.5%;
    margin: 0 5% 2.5rem 0;
  }
  ul.list-3 > li:nth-child(even) {
    margin-right: 0;
  }
}

footer {
  padding: 3rem 1.5rem;
}

div.box-3 {
  display: block;
  overflow: hidden;
  font-weight: 400;
}
div.box-3 div.img {
  display: block;
  overflow: hidden;
  float: left;
  margin: 0 2rem 0 0;
}
div.box-3 div.desc {
  display: block;
  overflow: hidden;
  margin: 0.25rem 0 0;
}
div.box-3 div.img img {
  display: block;
  overflow: hidden;
}
div.box-3 div.desc small {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #9E9E9E;
  margin: 0 0 0.25rem;
}
div.box-3 ul.navi {
  display: block;
  overflow: hidden;
  font-size: 14px;
}
div.box-3 ul.navi li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 5px 0;
  color: #1F1F2D;
}
div.box-3 ul.navi a {
  color: #1F1F2D;
}
@media (max-width: 640px) {
  div.box-3 div.img {
    float: none;
    margin: 0 0 2rem;
  }
}

article {
  background: linear-gradient(to bottom, #73CA29, #296443 600px);
  padding: 0 10px 10rem;
  padding-top: 100px;
  line-height: 1.4;
}
article > div.head {
  padding: 6rem 1.5rem 60px;
  color: #fff;
  text-align: center;
}
@media (max-width: 600px) {
  article > div.head {
    background-size: cover;
  }
}
article .head-addon svg {
  width: 100%;
  height: auto;
}
article > div.head div.wrap {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
article > div.body {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 5rem;
  background: #fff;
  border-radius: 20px;
}
article > div.body strong {
  font-weight: bold;
}
article > div.body.nopadding {
  padding: 0 0 1px;
}
article div.head h1 {
  font-family: Alfabet, sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  max-width: 820px;
  padding-left: 10px;
  padding-right: 10px;
}
article div.head p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 1.5rem;
  max-width: 820px;
  padding-left: 10px;
  padding-right: 10px;
}
article h2 {
  font-family: Alfabet, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  margin: 3rem auto 1.5rem;
  color: #90C96C;
  max-width: 820px;
}
article h3 {
  font-family: Alfabet, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
  margin: 3rem auto 1.5rem;
  color: #90C96C;
  max-width: 820px;
}
article h2:first-child, article h3:first-child {
  margin-top: 0;
}
article p {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 1.5rem;
}
article p:has(strong:only-child) {
  margin-bottom: 10px;
}
article p:last-child {
  margin: 0;
}
article ul {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0.5rem;
  list-style-type: disc;
  padding-left: 20px;
}
article ul li {
  margin: 0 0 0.5rem;
}
article ul li::marker {
  color: #90C96C;
}
article ul li:last-child {
  margin: 0;
}
article ul ul {
  margin-top: 15px;
}
article ol {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0.5rem;
  list-style-type: decimal;
  padding-left: 26px;
}
article ol li {
  margin: 0 0 1rem;
}
article a {
  color: #90C96C;
  transition: all 0.2s linear;
  word-break: break-word;
}
article a:hover {
  color: #3B3838;
  text-decoration: none;
}
@media (max-width: 800px) {
  article {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
  }
  article > div.body {
    padding: 3rem;
  }
}
@media (max-width: 480px) {
  article div.head {
    padding-top: 0;
    padding-bottom: 40px;
  }
  article div.head h1 {
    font-size: 24px;
  }
  article div.head p {
    font-size: 15px;
  }
  article > div.body {
    padding: 3rem 2rem;
  }
  article h2 {
    font-size: 24px;
  }
  article h3 {
    font-size: 20px;
  }
  article p,
  article ul,
  article ol {
    font-size: 16px;
  }
}

div.cookie-bar2 {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  background: rgba(0, 89, 178, 0.9);
  overflow: hidden;
  color: #fff;
  padding: 1rem;
}
div.cookie-bar2 a {
  color: #fff;
}
div.cookie-bar2 div.img {
  overflow: hidden;
  float: left;
  max-width: 35%;
  margin: 0 1.5rem 0 0;
}
div.cookie-bar2 div.desc {
  overflow: hidden;
}
div.cookie-bar2 div.desc > p {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 1rem;
}
div.cookie-bar2 div.desc2 {
  overflow: hidden;
}
div.cookie-bar2 div.desc2 p {
  float: left;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  margin: 0.25rem 0 0;
}
div.cookie-bar2 div.desc2 small {
  float: right;
  overflow: hidden;
}
div.cookie-bar2 small a {
  display: block;
  background: #779e2c;
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s linear;
}
div.cookie-bar2 small a:hover {
  background: #779e2c;
}
div.cookie-bar2.open {
  display: block;
}

div.cookie-bar2.v2 {
  background: rgba(15, 15, 30, 0.9);
}

@media (max-width: 400px) {
  div.cookie-bar2 div.img {
    margin: 0 1rem 0 0;
  }
  div.cookie-bar2 div.desc2 p {
    padding: 0;
    margin: 0 0 1rem;
  }
  div.cookie-bar2 div.desc2 small {
    float: left;
    clear: left;
  }
}
div.timeline {
  display: block;
  overflow: visible;
  border-left: 3px solid #eee;
  padding: 0 0 1px 2rem;
  margin: 2rem 3rem;
  position: relative;
}
div.timeline:empty {
  display: none;
}
div.timeline div.day {
  display: block;
  overflow: hidden;
}
div.timeline div.day h2 {
  font-weight: 700;
  font-size: 32px;
  color: #777;
  margin: 0;
  border: none;
  padding: 0;
}
div.timeline div.day h2:before {
  display: block;
  overflow: hidden;
  content: "";
  width: 61px;
  height: 46px;
  background: url("/images/icons/bar.png") left center scroll no-repeat transparent;
  position: absolute;
  left: -6px;
  top: auto;
}
div.timeline div.day h3 {
  font-weight: 700;
  font-size: 32px;
  color: #444;
  border: none;
  padding: 0;
  margin: 0 0 1em;
}
div.timeline div.event {
  font-size: 18px;
  margin: 0 0 1.5rem;
  position: relative;
}
div.timeline div.event:last-child {
  margin: 0;
}
div.timeline div.event > h3 {
  font-weight: 700;
  font-size: 16px;
  color: #779e2c;
  margin: 0 0 0.25em;
  border: none;
  padding: 0;
}
div.timeline div.event > h3:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #779e2c;
  position: absolute;
  left: -2.6rem;
  top: 0.1rem;
  border-radius: 100%;
  border: 4px solid #fff;
}
div.timeline div.event h4 {
  font-weight: 700;
  font-size: 24px;
  color: #444;
  margin: 0 0 0.75em;
}
div.timeline div.event p {
  font-weight: 700;
  font-size: 18px;
  color: #444;
  margin: 0 0;
}
div.timeline div.event small {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  color: #666;
  margin: 0.5rem 0 0;
}
div.timeline div.event small a.more {
  display: inline-block;
  font-weight: 700;
  color: #779e2c;
  margin: 0 1rem 0.25rem 0;
}
div.timeline div.event small a.more:last-child {
  margin-right: 0;
}
div.timeline div.event ul {
  padding: 0 !important;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
div.timeline div.one {
  background: #eee;
  border-radius: 10px;
  padding: 20px;
  display: block;
  position: relative;
  overflow: hidden;
}
div.timeline div.one div.cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 170px;
}
div.timeline div.one.single div.cell {
  height: auto;
}
div.timeline div.one small.place {
  background: #DDE9EE;
  padding: 0.2em 0.5em;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: 700;
}
div.timeline div.details {
  display: none;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid #eee;
  padding: 20px;
  position: absolute;
  left: 0;
  top: auto;
  background: #fff;
  z-index: 3;
}
div.timeline div.details.open {
  display: block;
}
div.timeline div.details div {
  display: none;
}
div.timeline div.details.agenda div.agenda,
div.timeline div.details.prelegent div.prelegent,
div.timeline div.details.prelegenci div.prelegenci {
  display: block;
}
div.timeline div.details h3 {
  font-size: 18px;
  margin: 0 0 1em;
  font-weight: 400;
  border: none;
  text-transform: none;
}
div.timeline div.details p {
  font-size: 13px;
  margin: 0 0 1em;
  font-weight: 400;
}
div.timeline div.details ul {
  display: block;
  padding: 0;
}
div.timeline div.details ul > li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  display: block;
  overflow: hidden;
  background: url("/images/2017/dot.png") left 8px scroll no-repeat transparent;
  background-size: 7px 7px;
  padding: 0 0 0 16px;
  margin: 0 0 1em;
}
div.timeline div.details a.close {
  display: block;
  overflow: hidden;
  float: right;
  margin: 0 0 1em 1em;
  width: 30px;
  height: 30px;
  background: url("/images/icons/close2.png") center center scroll no-repeat transparent;
  background-size: 30px 30px;
  text-decoration: none;
}
@media (max-width: 480px) {
  div.timeline {
    margin: 3rem 2rem;
  }
}
@media (max-width: 640px) {
  div.timeline div.one div.cell {
    display: block;
    height: auto;
  }
}

div.timeline.clean {
  border-left: none;
  padding: 0 0 1px 0;
  margin: 0;
}
div.timeline.clean div.details {
  left: 0;
}
div.timeline.clean:after {
  display: none;
}

ul.one {
  display: block;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
  font-size: 0;
}
ul.one > li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 0 0 1.5em 0 !important;
  font-size: 16px;
}
ul.one div.one div.cell {
  height: auto;
}

ul.three {
  display: block;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
  font-size: 0;
}
ul.three > li {
  display: inline-block;
  vertical-align: top;
  width: 30.66%;
  margin: 0 4% 1.5em 0 !important;
  font-size: 16px;
}
ul.three > li:nth-child(3n+3) {
  margin-right: 0 !important;
}
@media (max-width: 740px) {
  ul.three > li {
    width: 48%;
  }
  ul.three > li:nth-child(3n+3) {
    margin-right: 4% !important;
  }
  ul.three > li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media (max-width: 640px) {
  ul.three > li {
    display: block;
    width: 100%;
    margin: 0 0 1em;
  }
}

div.event ul.three > li {
  width: 100%;
}

ul.three.v2 > li {
  vertical-align: middle;
  text-align: center;
  margin: 0 3% 2em 0 !important;
}

ul.timeline-list {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  text-align: center;
  background: #779e2c;
}
ul.timeline-list.full {
  margin: 0 auto !important;
}
ul.timeline-list.elems-1 li {
  display: block;
  width: 100%;
}
ul.timeline-list.elems-2 li {
  width: 50%;
}
ul.timeline-list.elems-3 li {
  width: 33.33%;
}
ul.timeline-list li {
  display: table-cell;
  vertical-align: middle;
  width: 33.33%;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 !important;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #31313F;
}
ul.timeline-list li a,
ul.timeline-list li span {
  color: #fff;
  display: block;
  padding: 0.6rem 0.25rem;
  text-decoration: none;
  transition: all 0.2s linear;
}
ul.timeline-list li small {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
ul.timeline-list li a:hover {
  background: #222;
  color: #fff;
}
ul.timeline-list li.active {
  background: #779e2c;
  color: #fff;
}
ul.timeline-list li.active a,
ul.timeline-list li.active span {
  color: #fff;
}
@media (max-width: 480px) {
  ul.timeline-list li {
    margin-right: 1rem;
    font-size: 24px;
  }
}

div.timeline-list-box-green {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 15px;
  background-color: #779e2c;
  border: 1px solid black;
  margin: 0 0 1.5em 0;
}
div.timeline-list-box-green h2.hour {
  font-weight: 700;
  font-size: 16px;
  color: #444;
  margin: 0 0 0.25em;
  border: none;
  padding: 0;
}
div.timeline-list-box-green p {
  font-weight: 700;
  font-size: 18px;
  color: #444;
  margin: 0 0;
}
div.timeline-list-box-green ul {
  font-weight: 400;
  font-size: 18px;
  list-style-type: none;
  padding: 0;
}
div.timeline-list-box-green ul li {
  position: relative;
  margin: 0 0 0.5rem;
  padding: 0 0 0 20px;
}
div.timeline-list-box-green ul li::before {
  content: "";
  display: block;
  overflow: hidden;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.5rem;
  background: #444;
}

div.box-26 {
  font-size: 0;
  overflow: hidden;
  position: relative;
}
div.box-26 > div.left {
  display: block;
  overflow: hidden;
  font-size: 16px;
  background: #fff;
  float: left;
  width: 76%;
}
div.box-26 > div.right {
  display: block;
  overflow: hidden;
  font-size: 16px;
  background: #20202F;
}
div.box-26 > div.left.full {
  float: none;
  margin: 0 auto;
  width: auto;
}
div.box-26 div.head {
  background: #fff;
  position: relative;
  padding: 2rem 50px 2rem 2rem;
  margin: 0;
}
div.box-26 div.head a.close {
  display: block;
  width: 46px;
  height: 46px;
  background: url("/innowacyjnosc.farmer.pl/images/icons/close4.png") center center scroll no-repeat #eee;
  background-size: 22px auto;
  position: absolute;
  top: 0;
  right: 0;
}
div.box-26 div.head h2 {
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 1rem;
  text-align: left;
  text-transform: none;
  color: #222;
}
div.box-26 div.head p {
  font-size: 14px !important;
  font-weight: 700;
  margin: 0 !important;
  text-align: left !important;
}
div.box-26 div.head p a {
  color: #779e2c !important;
}
div.box-26 div.head-wrap {
  padding-right: 100px;
  position: relative;
}
div.box-26 div.head-wrap ul.social {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  text-align: center;
  padding: 0;
}
div.box-26 div.head-wrap ul.social li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
div.box-26 div.head-wrap ul.social a {
  margin: 0 0 6px;
}
div.box-26 div.head-wrap p {
  color: #666;
}
div.box-26 div.sec {
  position: relative;
  margin: 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
}
div.box-26 div.sec h3 {
  font-size: 20px;
  font-weight: 700;
  color: #779e2c;
  margin: 0 0 1.5rem;
}
div.box-26 div.sec a {
  color: #3B3838;
}
div.box-26 div.sec a:hover {
  color: #779e2c;
}
div.box-26 div.sec.partnerzy ul {
  font-size: 0;
}
div.box-26 div.sec.partnerzy ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2.66% 0.5rem 0;
  max-width: 23%;
}
div.box-26 div.sec.partnerzy ul li:last-child {
  margin-right: 0;
}
div.box-26 div.sec.tematyka ul {
  font-weight: 400;
  font-size: 18px;
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
div.box-26 div.sec.tematyka ul li {
  position: relative;
  margin: 0 0 1rem;
  padding: 0 0 0 20px;
}
div.box-26 div.sec.tematyka ul li:before {
  content: "";
  display: block;
  overflow: hidden;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.5rem;
  background: #779e2c;
}
div.box-26 div.sec.tematyka ul li:last-child {
  margin: 0;
}
div.box-26 div.sec.tematyka p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 1.5rem;
}
div.box-26 div.sec.prelegenci ul {
  font-weight: 400;
  font-size: 18px;
  list-style-type: none;
  padding: 0;
}
div.box-26 div.sec.prelegenci ul li {
  margin: 0 0 1rem;
  overflow: hidden;
}
div.box-26 div.sec.prelegenci ul li:last-child {
  margin: 0;
}
div.box-26 div.sec.prelegenci div.img {
  float: left;
  overflow: hidden;
  width: 48px;
  margin: 0 1rem 0 0;
}
div.box-26 div.sec.prelegenci div.desc {
  overflow: hidden;
}
div.box-26 div.sec.prelegenci h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
div.box-26 div.sec.prelegenci p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
div.box-26 .button {
  background: #4375B1;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  padding: 0.35rem 1rem;
}
div.box-26 div.sesje-wrap {
  overflow: hidden;
  position: relative;
  padding: 0 0 2.5rem;
  margin: 0 0 1rem;
}
div.box-26 div.sesje-wrap h3 {
  float: left;
  margin: 0;
}
div.box-26 div.sesje-wrap div.center {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 260px;
}
div.box-26 div.sesje-wrap div.right {
  float: right;
}
div.box-26 div.yt {
  margin: 0;
}
@media (max-width: 800px) {
  div.box-26 div.head h2 {
    font-size: 24px;
  }
}
@media (max-width: 740px) {
  div.box-26 > div.left.full {
    width: auto;
  }
}
@media (max-width: 620px) {
  div.box-26 > div.left {
    margin: 0 0 1rem;
    width: 100%;
    float: none;
  }
  div.box-26 div.head h2 {
    font-size: 20px;
  }
  div.box-26 div.sec.tematyka ul,
  div.box-26 div.sec.tematyka p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  div.box-26 div.head-wrap {
    padding: 0;
    margin: 0 0 1rem;
  }
  div.box-26 div.head-wrap ul.social {
    position: static;
    transform: none;
    margin: 1.5rem 0 0;
  }
}

div.box-6 {
  display: block;
  overflow: visible;
  margin: 0 0 2rem;
  /*&>div.box-7 { display: none; }*/
}
div.box-6 h2 {
  font-size: 20px !important;
  padding: 0 0 0.5rem !important;
  margin: 0 0 1.5rem !important;
  border-bottom: 1px solid #eee;
  text-align: center;
}
div.box-6.open > div.box-7 {
  display: block;
}

div.box-7 {
  font-size: 0;
  text-align: center;
}
div.box-7 > * {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3% 3% 0;
  width: 31.33%;
}
div.box-7 > *:nth-child(3n+3), div.box-7 > *:last-child {
  margin-right: 0;
}
div.box-7 > a {
  border: 1px solid #eee;
  height: 140px;
  position: relative;
}
div.box-7 > a img {
  display: block;
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto !important;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 500px) {
  div.box-7 > * {
    width: 48.5%;
  }
  div.box-7 > *:nth-child(3n+3) {
    margin-right: 3%;
  }
  div.box-7 > *:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 440px) {
  div.box-7 > * {
    width: 100%;
    margin: 0 0 1em;
  }
}

div.box-9 {
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 1000;
  top: 10%;
  left: 0;
  right: 0;
  width: 960px;
  max-height: 80%;
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  padding: 1em;
}
div.box-9 ul.header {
  display: block;
  overflow: hidden;
  padding-right: 50px;
  margin: 0;
}
div.box-9 ul.header li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.5em;
}
div.box-9 ul.header li.close {
  position: absolute;
  right: 1em;
  top: 1.5em;
}
div.box-9 ul.header img {
  max-width: 150px;
}
div.box-9 a {
  font-size: 16px;
  font-weight: 700;
  color: #FF0000;
}
div.box-9 ul.header li.active a {
  color: #444;
}
div.box-9 div.tabs {
  display: block;
  overflow: hidden;
}
div.box-9 div.tabs > * {
  display: none;
  overflow: hidden;
  padding: 0;
}
div.box-9 div.tabs > *.active {
  display: block;
}
div.box-9 div.download {
  overflow: hidden;
  border: none !important;
}
div.box-9 div.download a {
  display: block;
  overflow: hidden;
  padding: 1em;
  text-decoration: none;
}
div.box-9 div.download a:hover {
  background: #FAFAFA;
}
div.box-9 div.download img {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 1.5em 1.5em 0;
}
div.box-9 div.download h3 {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-weight: 400;
  font-size: 28px;
  color: #666;
}
div.box-9 div.download p {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #878787;
  margin: 0.5em 0 0;
}
div.box-9 div.promo a.arrowLeft,
div.box-9 div.promo a.arrowRight {
  height: 400px !important;
  width: 60px;
}
div.box-9 div.promo iframe {
  display: block;
  margin: 0 auto;
}

ul.k-list-2 {
  display: block;
  overflow: hidden;
  margin: 0.75rem 0 1rem !important;
  padding: 0 !important;
}
ul.k-list-2 li {
  display: block;
  overflow: hidden;
  margin: 0 0 1rem;
}
ul.k-list-2 div.head {
  display: block;
  overflow: hidden;
  background: url("/innowacyjnosc.farmer.pl/images/icons/more2021.png") right center scroll no-repeat #eee;
  background-size: 42px auto;
  position: relative;
}
ul.k-list-2 div.head a {
  display: block;
  overflow: hidden;
  color: #444;
  padding: 1rem 50px 1rem 1rem;
  text-decoration: none;
}
ul.k-list-2 div.head h4 {
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}
ul.k-list-2 div.head small {
  background: #38A74D;
  font-weight: 700;
  font-size: 10px;
  margin: 0;
  padding: 0.125rem 0.35rem;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
ul.k-list-2 div.head small + h4 {
  margin: 0.5rem 0 0;
}
ul.k-list-2 div.body {
  display: none;
  border: 1px solid #eee;
  padding: 1.5rem;
  width: auto;
  float: none !important;
}
ul.k-list-2 li.open div.body {
  display: block;
}
ul.k-list-2 div.body ul {
  padding: 0 0 0 20px;
}
ul.k-list-2 div.body ul li {
  display: list-item;
  overflow: visible;
}
ul.k-list-2 div.body p,
ul.k-list-2 div.body ul {
  font-weight: 400;
  font-size: 16px;
}
ul.k-list-2 div.body p + ul {
  margin-top: 0;
}

table.table-1 {
  border-collapse: collapse;
  text-align: center;
}
table.table-1 td {
  vertical-align: middle;
  border: 1px solid #779e2c;
  padding: 1rem;
  font-weight: 400;
  font-size: 18px;
  width: 33.33%;
  height: 210px;
  transition: all 0.2s linear;
}
table.table-1 td:hover {
  background: #779e2c;
}
table.table-1 img {
  display: block;
  margin: 0 auto 1rem;
}
table.table-1 strong {
  display: block;
  margin: 0 auto 1rem;
}
table.table-1 a {
  text-decoration: none;
}
@media (max-width: 600px) {
  table.table-1 {
    display: block;
  }
  table.table-1 tbody, table.table-1 tr, table.table-1 td {
    display: block;
    width: auto;
    height: auto;
  }
  table.table-1 td {
    margin-top: -1px;
  }
}

div.box-4 {
  display: block;
  overflow: hidden;
  padding: 2rem 2rem 0;
}
div.box-4 h2 {
  margin: 0;
}
div.box-4 a {
  display: block;
  overflow: hidden;
  min-height: 37px;
  background: url("/innowacyjnosc.farmer.pl/images/icons/pdf.png") left top scroll no-repeat transparent;
  background-size: 37px 37px;
  padding: 0.125em 0 0.125em 52px;
  font: 300 24px/1.3 "Open Sans";
  color: #1F1F2D;
}
div.box-4:empty {
  margin: 0;
}
div.box-4:first-child {
  margin-top: 0;
}
div.box-4.two a {
  display: inline-block;
  vertical-align: top;
  width: 47.5%;
  margin: 0 5% 1.5rem 0;
}
div.box-4.two a:nth-child(even) {
  margin-right: 0;
}
div.box-4.two span {
  font-size: 16px;
}
@media (max-width: 940px) {
  div.box-4 a {
    font-size: 18px;
    padding: 0.5rem 0 0.125rem 52px;
  }
  div.box-4.two a {
    display: block;
    width: auto;
    margin: 0 0 1.5rem;
  }
}
@media (max-width: 460px) {
  div.box-4.two {
    padding: 0 1.5rem;
  }
}

div.box-5 {
  margin: 0 0 2.5rem;
  font-weight: 700;
  font-size: 24px;
  color: #999;
}
div.box-5 a {
  display: inline-block;
  margin-right: 1rem;
}

ul.list-4 {
  margin: 0 0 2.5rem;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
}
ul.list-4 li {
  display: block;
}
ul.list-4 img {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 0.5rem 0 0;
}

div.box-10 h2 {
  font-weight: 700;
  color: #3B3838;
  margin: 0 0 1rem;
}

div.expert {
  padding: 2rem 0 0;
}
div.expert div.head {
  overflow: hidden;
  font-size: 0;
  margin: 0 0 2rem;
}
div.expert div.head div.img {
  display: inline-block !important;
  vertical-align: middle;
  width: 25% !important;
  margin: 0 3% 0 0 !important;
}
div.expert div.head div.img img {
  display: block;
  overflow: hidden;
  border-radius: 100%;
}
div.expert div.head div.desc {
  display: inline-block;
  vertical-align: middle;
  width: 72%;
}
div.expert div.head h2 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 36px;
}
div.expert div.head p {
  margin: 0 0 0.5rem;
  font-size: 16px;
}
div.expert div.head ul {
  padding: 0 !important;
  display: block;
  margin: 1rem 0 0 !important;
}
div.expert div.head ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem 0 0;
}
@media (max-width: 600px) {
  div.expert div.head h2 {
    font-size: 24px;
  }
}

.acenter {
  text-align: center;
}

.two-buttons a.button {
  margin: 0 1rem 0.5rem 0;
}
.two-buttons a.button:last-child {
  margin-right: 0;
}
@media (max-width: 760px) {
  .two-buttons a.button {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0.5rem;
  }
  .two-buttons a.button:last-child {
    margin: 0;
  }
}

div.pageHeader {
  background: url("../images/www/bcg.svg") center center scroll no-repeat #000;
  padding: 10rem 1.5rem 20rem;
  text-align: center;
  color: #fff;
}
div.pageHeader div.wrap {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
div.pageHeader h1 {
  font-weight: 700;
  font-size: 46px;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
div.pageHeader h1.long {
  font-size: 40px;
}
div.pageHeader p.lead {
  font-weight: 400;
  font-size: 18px;
  font-style: italic;
  margin: 0;
}

div.box-41 {
  background: #fff;
  margin: 0 auto;
  position: relative;
}
div.box-41 div.head {
  text-align: center;
  margin: 0 auto 2rem;
}
div.box-41 div.foot {
  text-align: center;
  margin: 2rem auto 0;
}
div.box-41 p {
  font-size: 18px;
  font-style: italic;
}
div.box-41 div.wrap {
  font-size: 0;
  position: relative;
}
div.box-41 div.wrap > div.left {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 3.5rem 0 0;
  font-size: 16px;
}
div.box-41 div.wrap > div.right {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 0 0 3.5rem;
  font-size: 16px;
}
div.box-41 div.wrap > div.middle {
  position: absolute;
  width: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40%;
  transform: translateY(-50%);
  font-size: 16px;
  text-align: center;
}
div.box-41 div.wrap > div.middle span {
  display: inline-block;
  position: relative;
  width: 50px;
  background: #3B3838;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 0.935rem 0;
  border-radius: 100%;
}
div.box-41 div.wrap > div.middle:before {
  content: "";
  background: #3B3838;
  display: block;
  position: absolute;
  width: 3px;
  height: 180px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
div.box-41 small {
  display: block;
}
@media (max-width: 1000px) {
  div.box-41 {
    padding: 2rem 0;
  }
}
@media (max-width: 760px) {
  div.box-41 div.head {
    margin: 0 auto 2rem;
  }
  div.box-41 div.foot {
    margin: 2rem auto 0;
  }
  div.box-41 div.wrap > div.left {
    display: block;
    width: 100%;
    padding: 0;
  }
  div.box-41 div.wrap > div.right {
    display: block;
    width: 100%;
    padding: 0;
  }
  div.box-41 div.wrap > div.middle {
    position: relative;
    top: 0;
    transform: none;
    margin: 2rem 0;
    width: auto;
  }
  div.box-41 div.wrap > div.middle:before {
    width: 180px;
    height: 3px;
  }
  div.box-41 form.form-2 {
    height: auto !important;
  }
}

.errmsg {
  display: block;
  background: #cc0000;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: 0 0 1rem;
}

.errmsg:empty {
  display: none;
}

form.form-3 {
  background: #779e2c;
  padding: 2rem;
  margin: 0 0 1rem;
  color: #fff;
}

form.form-3 label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 16px;
  font-weight: 700;
}

form.form-3 input {
  height: auto;
  display: block;
  background: #fff;
  color: #3B3838;
  border: none;
  margin: 0 0 1.5rem;
  font-size: 16px;
  padding: 0.75rem;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}

form.form-3 h2 {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 1rem;
  color: #fff;
}

form.form-3 h2 + small {
  display: block;
  margin: 0 auto 1rem;
}

form.form-3 button {
  background: #779e2c;
}

form.form-3 button + small {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0.5rem 0.5rem;
  font-weight: 700;
}

form.form-3 button + small a {
  color: #3B3838;
}

form.form-3 small {
  color: #fff;
}

form.form-3 small a {
  color: #fff !important;
}

.button + .button {
  margin-left: 1rem;
}

div.box-31a p.back {
  font-size: 12px;
  margin: 0 0 1.5rem;
}
div.box-31a p.back a {
  color: #fff;
}
div.box-31a p.back img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25rem 0 0;
}
div.box-31a p.more-sessions {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
div.box-31a p.more-sessions a {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 0.75rem 1.5rem;
}
@media (max-width: 1000px) {
  div.box-31a p.more-sessions {
    margin-left: -1.5rem;
  }
}
@media (max-width: 420px) {
  div.box-31a p.more-sessions {
    margin-top: -4.25rem;
  }
}
div.box-31a div.wrap-1 {
  position: relative;
  padding-right: 410px;
  margin: 0 0 1.5rem;
}
div.box-31a div.wrap-1 div.left {
  padding: 0;
  background: #fff;
}
div.box-31a div.wrap-1 div.left div.yt {
  margin: 0 auto;
}
div.box-31a div.wrap-1 div.right {
  position: absolute;
  right: 0;
  top: 0;
  width: 410px;
  height: 100%;
  background: #efefef;
}
div.box-31a div.wrap-1 div.right iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
div.box-31a div.wrap-1 div.right small.rodo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.75rem 0.75rem;
  font-size: 9px;
  color: #2F2E2E;
  display: none;
  background: #efefef;
}
div.box-31a div.wrap-1 div.right small.rodo a {
  color: #2F2E2E;
}
div.box-31a div.wrap-1 div.yt {
  padding-top: 0 !important;
}
div.box-31a div.wrap-2 {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin: 0 0 1.5rem;
}
div.box-31a div.wrap-2 div.left {
  display: table-cell;
  vertical-align: top;
  width: 100%;
  padding-right: 1.5rem;
}
div.box-31a div.wrap-2 div.right {
  display: table-cell;
  vertical-align: top;
  width: 410px;
  padding-left: 1.5rem;
}
div.box-31a div.wrap-3 {
  background: #fff;
  padding: 3rem;
}
div.box-31a div.wrap-3 > div.inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 0;
}
div.box-31a div.wrap-3 > div.inner > div.left {
  display: inline-block;
  vertical-align: top;
  width: 47.5%;
  margin-right: 5%;
  font-size: 16px;
}
div.box-31a div.wrap-3 > div.inner > div.right {
  display: inline-block;
  vertical-align: top;
  width: 47.5%;
  font-size: 16px;
}
div.box-31a div.wrap-3 > div.inner > div.right p {
  font-size: 18px;
}
@media (max-width: 1000px) {
  div.box-31a div.wrap-3 {
    padding: 0;
  }
}
@media (max-width: 700px) {
  div.box-31a div.wrap-3 > div.inner > div.left {
    display: block;
    width: auto;
    margin: 0 0 1.5rem;
  }
  div.box-31a div.wrap-3 > div.inner > div.right {
    display: block;
    width: auto;
  }
}
div.box-31a div.wrap-4 {
  position: relative;
}
@media (max-width: 1000px) {
  div.box-31a div.wrap-4 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}
div.box-31a div.wrap-4 > div.inner {
  background: #fff;
  padding: 2rem;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
div.box-31a div.wrap-4 > div.inner.static {
  position: static;
}
div.box-31a div.wrap-4 > div.inner.open {
  display: block;
}
@media (max-width: 500px) {
  div.box-31a div.wrap-4 > div.inner {
    padding: 1rem;
  }
}
div.box-31a div.wrap-4 > div.inner h2 {
  position: relative;
  text-align: center;
  margin: 0 auto 3rem;
}
div.box-31a div.wrap-4 > div.inner h2:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  border-top: 1px solid #cc0000;
}
div.box-31a div.wrap-4 > div.inner h2 span {
  display: inline-block;
  vertical-align: middle;
  padding: 0.25rem 0.75rem;
  background: #cc0000;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  position: relative;
  border-left: 1rem solid #fff;
  border-right: 1rem solid #fff;
}
@media (max-width: 500px) {
  div.box-31a div.wrap-4 > div.inner h2 {
    margin: 0 auto 1.5rem;
  }
}
div.box-31a div.wrap-4 > div.inner ul {
  font-size: 0;
}
div.box-31a div.wrap-4 > div.inner ul > li {
  display: inline-block;
  vertical-align: top;
  width: 48.5%;
  margin: 0 3% 3% 0;
  background: #F5F5F5;
  position: relative;
  padding: 1rem 1.5rem 3rem;
  text-align: left;
}
div.box-31a div.wrap-4 > div.inner ul > li:nth-child(even) {
  margin-right: 0;
}
div.box-31a div.wrap-4 > div.inner ul small {
  display: inline-block;
  border-bottom: 1px solid #eee;
  padding: 0 0 0.2rem;
  margin: 0 0 1rem;
  font-size: 11px;
  color: #383838;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
div.box-31a div.wrap-4 > div.inner ul h3 {
  margin: 0 0 0.75rem;
  font-size: 18px;
  font-weight: 700;
  color: #3B3838;
  position: relative;
  height: 5.4em;
}
div.box-31a div.wrap-4 > div.inner ul h3 span {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 100%;
  max-height: 5.4em;
  overflow: hidden;
}
div.box-31a div.wrap-4 > div.inner ul div.buttons {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0;
}
div.box-31a div.wrap-4 > div.inner ul div.buttons a {
  color: #fff !important;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  width: 50%;
  padding: 0.75rem 0.5rem;
  margin: 0;
}
div.box-31a div.wrap-4 > div.inner ul div.buttons a.blue {
  background: #779e2c;
}
div.box-31a div.wrap-4 > div.inner ul div.buttons a.red {
  background: #cc0000;
}
div.box-31a div.wrap-4 > div.inner ul div.buttons a:hover {
  background: #222 !important;
  color: #fff !important;
}
div.box-31a div.wrap-4 > div.inner ul div.foot {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #cc0000;
  padding: 1.25rem;
}
div.box-31a div.wrap-4 > div.inner ul div.foot a.button {
  border-radius: 8px;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0;
  padding: 0.5rem 0.75rem;
  width: 200px;
  max-width: 100%;
}
div.box-31a div.wrap-4 > div.inner ul div.foot a.button.white {
  background: #fff;
  color: #cc0000 !important;
}
div.box-31a div.wrap-4 > div.inner ul div.foot a.button.red {
  background: transparent !important;
  color: #fff;
}
div.box-31a div.wrap-4 > div.inner ul div.foot a.button:hover {
  background: #222 !important;
  color: #fff !important;
}
div.box-31a div.wrap-4 > div.inner ul > li.open div.foot {
  display: block;
  text-align: center;
  height: 100%;
  bottom: auto;
  top: 0;
  padding-top: 2rem;
}
@media (max-width: 1100px) {
  div.box-31a div.wrap-4 > div.inner ul h3 {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  div.box-31a div.wrap-4 > div.inner ul div.buttons a.button {
    font-size: 11px;
  }
  div.box-31a div.wrap-4 > div.inner ul h3 {
    font-size: 14px;
  }
  div.box-31a div.wrap-4 > div.inner ul > li {
    display: block;
    margin: 0 0 1.5rem;
    width: 100%;
    padding: 1rem 1rem 3rem;
  }
  div.box-31a div.wrap-4 > div.inner ul div.foot a.button {
    padding: 0.5rem;
    font-size: 10px;
  }
}
div.box-31a p.desc-info {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  width: 960px;
  max-width: 100%;
  margin: 0 auto 2.5rem;
}
div.box-31a p a {
  color: #cc0000;
}
div.box-31a h2.h {
  color: #779e2c;
  font-weight: 400;
  font-size: 14px;
  margin: 1rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}
div.box-31a h2.h:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  border-top: 1px solid #779e2c;
  margin-left: 1rem;
}
div.box-31a div.smaller {
  font-size: 14px;
}
div.box-31a div.smaller > ul {
  display: block;
  text-align: left;
  padding-left: 1.5rem;
  border-left: 4px solid #DDE0E3;
  margin: 1.5rem 0;
}
div.box-31a div.smaller > ul > li {
  display: block;
  margin: 0 0 1.25rem;
  position: relative;
  line-height: 1.6;
}
div.box-31a div.smaller > ul > li:before {
  content: "";
  display: block;
  position: absolute;
  left: -2.1rem;
  top: 0.125rem;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #779e2c;
  border: 4px solid #F8F9FA;
}
div.box-31a div.smaller > ul > li:last-child {
  margin: 0;
}
@media (max-width: 1100px) {
  div.box-31a div.wrap-1 {
    position: relative;
    padding-right: 300px;
  }
  div.box-31a div.wrap-1 div.left {
    padding: 0;
  }
  div.box-31a div.wrap-1 div.right {
    width: 300px;
  }
  div.box-31a div.wrap-1 div.right small.rodo {
    font-size: 7px;
  }
  div.box-31a div.wrap-2 div.right {
    width: 300px;
  }
}
@media (max-width: 1000px) {
  div.box-31a div.wrap-1 {
    display: block;
    padding: 0;
    margin: 0 -1.5rem 1.5rem;
  }
  div.box-31a div.wrap-1 div.left {
    display: block;
    width: auto;
  }
  div.box-31a div.wrap-1 div.right {
    position: static;
    height: auto;
    display: block;
    width: auto;
  }
  div.box-31a div.wrap-1 div.right iframe {
    position: static;
    height: 355px;
  }
  div.box-31a div.wrap-1 div.right small.rodo {
    position: static;
  }
  div.box-31a div.wrap-1 a.button {
    display: block;
    margin: 0 0 1rem;
  }
}
@media (max-width: 760px) {
  div.box-31a div.wrap-2 {
    display: block;
    padding: 0;
  }
  div.box-31a div.wrap-2 div.left {
    display: block;
    width: auto;
    border: none;
    padding: 0;
    margin: 0 0 1.5rem;
  }
  div.box-31a div.wrap-2 div.right {
    display: block;
    width: auto;
    padding: 0;
  }
  div.box-31a div.wrap-1 div.left.stick {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
  }
}

div.box-22a {
  background: #cc0000;
  height: 43px;
  position: relative;
}
div.box-22a div.pageWidth {
  padding: 0 !important;
  background: #cc0000 !important;
  top: 0 !important;
}
div.box-22a ul.menu3 {
  display: block;
  padding: 0.2rem 0 0;
}
div.box-22a ul.menu3 > li {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 2rem 0 0;
  position: relative;
  font-size: 14px;
  padding: 0;
}
div.box-22a ul.menu3 > li:before {
  display: none;
}
div.box-22a ul.menu3 > li > a,
div.box-22a ul.menu3 > li > span {
  color: #fff;
  display: block;
  padding: 0.5rem 1rem;
}
div.box-22a ul.menu3 > li.logout {
  float: right;
  margin-right: 0;
  margin-top: 0;
}
div.box-22a ul.menu3 sup {
  display: inline-block;
  font-weight: 700;
  font-size: 10px;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
  background: #cc0000;
  border-radius: 100%;
  padding: 0.25rem 0 0;
}
div.box-22a ul.menu3 > li a > img {
  display: inline-block;
  vertical-align: middle;
}
div.box-22a ul.menu3 ul.sub {
  display: none;
  position: absolute;
  left: 0;
  top: auto;
  width: 250px;
  background: #fff;
}
div.box-22a ul.menu3 > li.has-sub:hover ul.sub {
  display: block;
}
div.box-22a a:hover {
  color: #fff !important;
}
@media (max-width: 1180px) {
  div.box-22a {
    margin-top: 0.5rem;
  }
}
@media (max-width: 1100px) {
  div.box-22a {
    margin-top: 0;
  }
  div.box-22a ul.menu3 > li {
    margin: 0;
  }
}
@media (max-width: 1000px) {
  div.box-22a ul.menu3 {
    white-space: nowrap;
    overflow: auto;
  }
  div.box-22a ul.menu3 li {
    white-space: normal;
  }
  div.box-22a ul.menu3 > li.logout {
    float: none;
    margin: 0;
  }
}

body.newMenuOpen header {
  top: 50px;
}

ul.list-33 {
  font-size: 0;
}
ul.list-33 > li {
  display: inline-block;
  vertical-align: top;
  width: 47.5%;
  margin: 0 5% 1.5rem 0;
  position: relative;
  transition: all 0.2s linear;
}
ul.list-33 > li:nth-child(even) {
  margin-right: 0;
}
ul.list-33 a {
  display: table;
  width: 100%;
  table-layout: fixed;
  text-decoration: none;
}
ul.list-33 div.img {
  display: table-cell;
  vertical-align: middle;
  width: 80px;
}
ul.list-33 div.img img {
  display: block;
  border-radius: 8px;
}
ul.list-33 div.desc {
  height: 80px;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-left: 1.25rem;
}
ul.list-33 h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #779e2c;
  transition: all 0.2s linear;
}
ul.list-33 small {
  display: block;
  font-size: 13px;
}
ul.list-33 li.has-desc2.open {
  background: #779e2c;
  color: #fff;
  border-radius: 8px 8px 0 0;
}
ul.list-33 li.has-desc2.open div.img img {
  border-radius: 4px 0 0 0;
}
ul.list-33 li.has-desc2.open div.desc {
  padding-right: 0.75rem;
}
ul.list-33 li.has-desc2.open h3, ul.list-33 li.has-desc2.open small {
  color: #fff;
}
ul.list-33 li.has-desc2.open div.desc2 {
  display: block;
}
ul.list-33 div.desc2 {
  display: none;
  color: #fff;
  font-size: 11px;
  position: absolute;
  z-index: 2;
  top: auto;
  left: 0;
  width: 100%;
  background: #779e2c;
  padding: 0.75rem;
  border-radius: 0 0 8px 8px;
}
ul.list-33 div.desc2 div.scroll p:last-child {
  margin: 0;
}
ul.list-33 div.desc2 div.scroll {
  max-height: 194px;
  overflow: auto;
  padding-right: 0.75rem;
}
ul.list-33 div.scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #bcbfc3;
}
ul.list-33 div.scroll::-webkit-scrollbar {
  width: 4px;
  background-color: #bcbfc3;
}
ul.list-33 div.scroll::-webkit-scrollbar-thumb {
  background-color: #707070;
}
@media (max-width: 1000px) {
  ul.list-33 > li {
    display: block;
    margin: 0 0 1.5rem;
    width: auto;
  }
}

div#communicator {
  display: none;
  position: fixed;
  z-index: 99999999;
  max-height: 80%;
  overflow: auto;
  width: 1000px;
  max-width: 100%;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #779e2c;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.2);
}
div#communicator a.close {
  color: #fff;
  background: #FF0000;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 1rem;
  font-weight: 700;
  font-size: 14px;
}
div#communicator.open {
  display: block;
}
@media (max-width: 600px) {
  div#communicator {
    top: 0;
    max-height: 100%;
    height: 100%;
    padding: 2rem 1.25rem;
    border-radius: 0;
  }
}

div.box-31 {
  margin: 1.5rem 0;
}
div.box-31 h2 {
  font-size: 18px;
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #DDE0E3;
}
div.box-31 textarea {
  font-weight: 400;
  font-size: 14px;
  padding: 0.75rem;
  display: block;
  width: 100%;
  height: 90px;
  border: 1px solid #DDE0E3;
  background: #fff;
  border-radius: 8px;
  margin: 0 auto 0.75rem;
}
div.box-31 input {
  font-weight: 400;
  font-size: 14px;
  padding: 0.75rem;
  display: block;
  width: 100%;
  border: 1px solid #DDE0E3;
  background: #fff;
  border-radius: 8px;
  margin: 0 auto 1rem;
}
div.box-31 small {
  font-size: 9px;
  color: #bbb;
  display: block;
  margin: 0 0 0.75rem;
}
div.box-31 small a {
  color: #bbb;
}
div.box-31 a.button {
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

div.box-27 {
  border: 4px solid #779e2c;
  padding: 4rem 2rem;
  text-align: center;
}
div.box-27 small {
  display: inline-block;
  padding: 2px 6px;
  color: #fff;
  background: #FF0000;
  margin: 0 0.5rem 1.5rem;
  font-size: 16px;
  font-weight: 700;
}
div.box-27 h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 2rem;
}
div.box-27 div.i {
  margin: 4rem 0 0;
}
div.box-27 div.i img {
  display: block;
  margin: 0 auto;
}
div.box-27 div.t {
  display: table;
  width: 100%;
  height: 100%;
}
div.box-27 div.c {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
@media (max-width: 760px) {
  div.box-27 {
    padding: 2rem;
  }
  div.box-27 small {
    font-size: 14px;
  }
  div.box-27 h2 {
    font-size: 26px !important;
  }
  div.box-27 a.button {
    display: block;
    margin: 0 auto 1rem;
    width: auto;
    font-size: 14px;
  }
}

div.box-27-wrap {
  font-size: 0;
}
div.box-27-wrap div.box-27 {
  display: inline-block;
  vertical-align: middle;
  width: 47.5%;
  margin: 0 5% 0 0;
}
div.box-27-wrap div.box-27:nth-child(even) {
  margin-right: 0;
}
div.box-27-wrap div.box-27 h2 {
  font-size: 32px;
}
div.box-27-wrap div.box-27 a.button {
  width: auto;
  font-size: 14px;
}
@media (max-width: 1000px) {
  div.box-27-wrap > div.box-27 {
    display: block;
    width: 100%;
    margin: 0 0 2rem;
    height: auto !important;
  }
  div.box-27-wrap > div.box-27:last-child {
    margin: 0;
  }
}

div.box-28 {
  border: 4px solid #779e2c;
  max-width: 1400px;
  margin: 0 auto;
}
div.box-28 div.wrap {
  position: relative;
}
div.box-28 div.left {
  width: 60%;
  margin: 0;
  padding: 1.25rem;
  border-right: 4px solid #779e2c;
}
div.box-28 div.right {
  width: 40%;
  height: 100%;
  overflow: auto;
  position: absolute;
  right: 0;
  top: 0;
  scrollbar-width: thin;
  scrollbar-color: #3B3838;
  background: #0f3e21;
}
div.box-28 div.right::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #779e2c;
}
div.box-28 div.right::-webkit-scrollbar {
  width: 4px;
  background-color: #eee;
  border-radius: 4px;
}
div.box-28 div.right::-webkit-scrollbar-thumb {
  background-color: #3B3838;
  border-radius: 4px;
}
div.box-28 div.yt {
  background: #3B3838;
  margin: 0;
}
div.box-28 ul {
  display: block;
  padding: 0;
  margin: 0;
}
div.box-28 li {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
}
div.box-28 li.active + li,
div.box-28 li:first-child {
  border-top: none;
}
div.box-28 li:before {
  display: none;
}
div.box-28 a {
  display: block;
  color: #fff;
  padding: 1rem;
  font-weight: 700;
  line-height: 1.3;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.2s linear;
}
div.box-28 a:hover {
  color: #779e2c;
}
div.box-28 li.active a {
  background: #779e2c;
  color: #fff;
}
div.box-28 div.video.active {
  position: relative;
}
div.box-28 div.video.active div.preview {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center center scroll no-repeat transparent;
  background-size: cover;
}
div.box-28 div.video.active div.preview a {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  div.box-28 a {
    font-size: 16px;
    padding: 0.5rem 0.75rem;
  }
}
@media (max-width: 760px) {
  div.box-28 div.left {
    width: auto;
    border: none;
  }
  div.box-28 div.right {
    position: static;
    width: auto;
    height: auto;
    max-height: 312px;
  }
}

div.box-29 {
  color: #000;
  text-align: center;
  margin: 0 auto 2.5rem;
}
div.box-29 h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 auto 0.5rem;
}
div.box-29 p {
  font-size: 24px;
  font-weight: 400;
  margin: 0 auto 1.5rem;
}
@media (max-width: 760px) {
  div.box-29 h1 {
    font-size: 26px;
  }
  div.box-29 p {
    font-size: 16px;
    font-style: normal;
  }
}

div.section.post {
  padding-top: 0;
}
div.section.post div.pageWidth {
  top: -15rem;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 3.5rem;
  position: relative;
}
div.section.post.online div.pageWidth {
  width: 1024px;
}
@media (max-width: 760px) {
  div.section.post.online div.pageWidth {
    padding: 2.5rem;
  }
}

ul.list-34 {
  text-align: center;
  font-size: 0;
}
ul.list-34 li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3% 3% 0;
  width: 31.33%;
  position: relative;
}
ul.list-34 li:nth-child(3n+3),
ul.list-34 li:last-child {
  margin-right: 0;
}
ul.list-34 li > a {
  display: block;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #E5E5E5;
  position: relative;
  width: 220px;
  max-width: 100%;
  height: 130px;
}
ul.list-34 li > a img {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  max-width: 85%;
  max-height: 85%;
}
ul.list-34 div.desc {
  display: none;
  background: #E5E5E5;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0.75rem;
  font-size: 14px;
  font-weight: 700;
  padding: 0.5rem 0.5rem 0;
}
ul.list-34 div.desc a {
  display: block;
  margin: 0 auto 0.5rem;
  color: #444;
  text-decoration: none;
}
ul.list-34 div.desc a:hover {
  color: #FF0000;
}
ul.list-34 li:hover div.desc {
  display: block;
}
ul.list-34 div.desc2 {
  text-align: left;
  display: none;
  background: rgba(200, 200, 200, 0.8);
  padding: 2rem;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
ul.list-34 div.desc2 div.tt {
  display: table;
  width: 100%;
  height: 100%;
}
ul.list-34 div.desc2 div.tc {
  display: table-cell;
  vertical-align: middle;
}
ul.list-34 div.desc2 div.tc div.e {
  position: relative;
  background: #fff;
  padding: 2rem;
  border: 1px solid #E5E5E5;
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}
ul.list-34 div.desc2 h3 {
  font-weight: 700;
  font-size: 18px;
  color: #779e2c;
  margin: 0 0 1.5rem;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid #E5E5E5;
}
ul.list-34 div.desc2 p {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 1rem;
}
ul.list-34 div.desc2 a.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem;
  background: #FF0000;
  color: #fff;
  font-size: 40px;
  line-height: 20px;
  text-decoration: none;
}
ul.list-34 li.open div.desc2 {
  display: block;
}
ul.list-34.v2 li {
  width: 48.5%;
  margin: 0 3% 1rem 0;
}
ul.list-34.v2 li:nth-child(even), ul.list-34.v2 li:last-child {
  margin-right: 0;
}
ul.list-34.v3 li {
  width: 22.75%;
  margin: 0 3% 3% 0;
}
ul.list-34.v3 li:nth-child(4n+4), ul.list-34.v3 li:last-child {
  margin-right: 0;
}
ul.list-34.v4 li {
  width: 22.75%;
  margin: 0 3% 3% 0;
}
ul.list-34.v4 li a {
  height: 100px;
}
ul.list-34.v4 li:nth-child(4n+4), ul.list-34.v4 li:last-child {
  margin-right: 0;
}
@media (max-width: 1000px) {
  ul.list-34.v3 li {
    width: 31.33%;
    margin: 0 3% 3% 0;
  }
  ul.list-34.v3 li:nth-child(4n+4) {
    margin-right: 3%;
  }
  ul.list-34.v3 li:nth-child(3n+3) {
    margin-right: 0;
  }
  ul.list-34.v4 li {
    width: 31.33%;
    margin: 0 3% 3% 0;
  }
  ul.list-34.v4 li:nth-child(4n+4) {
    margin-right: 3%;
  }
  ul.list-34.v4 li:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  ul.list-34 div.desc2 div.tc div.e {
    width: 100%;
  }
}
@media (max-width: 500px) {
  ul.list-34 {
    /*li { width: 48.5%; margin: 0 3% 3% 0; }
    li:nth-child(3n+3) { margin-right: 3%; }
    li:nth-child(even) { margin-right: 0; }*/
  }
  ul.list-34 li > a {
    height: 85px;
  }
  ul.list-34.v2 li > a {
    height: 130px;
  }
  ul.list-34.v3 li {
    width: 48.5%;
    margin: 0 3% 3% 0;
  }
  ul.list-34.v3 li:nth-child(3n+3) {
    margin-right: 3%;
  }
  ul.list-34.v3 li:nth-child(even) {
    margin-right: 0;
  }
  ul.list-34.v3 li > a {
    height: 130px;
  }
  ul.list-34.v4 li {
    width: 48.5%;
    margin: 0 3% 3% 0;
  }
  ul.list-34.v4 li:nth-child(3n+3) {
    margin-right: 3%;
  }
  ul.list-34.v4 li:nth-child(even) {
    margin-right: 0;
  }
  ul.list-34.v4 li > a {
    height: 130px;
  }
}

div.window {
  display: none;
  overflow: auto;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000000;
  background: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
}
div.window div.wrap {
  display: table;
  width: 100%;
  height: 100%;
}
div.window div.wrap > div.inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  padding: 4rem 0;
}
div.window div.body {
  width: 650px;
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 70px 2rem 3rem;
  position: relative;
}
div.window a.close {
  background: #ccc;
  padding: 1rem;
  position: absolute;
  top: 0;
  right: 0;
}
div.window h2 {
  font-weight: 700;
  font-size: 24px !important;
  margin: 0 0 0.5em;
  color: #444;
}
div.window p {
  font-weight: 400;
  line-height: 1.45;
  font-size: 14px !important;
  margin: 0 0 1.5em;
}
div.window small {
  font-weight: 400;
  line-height: 1.45;
  font-size: 10px !important;
  margin: 0 0 1.75em;
}
div.window h3 {
  font-weight: 700;
  font-size: 14px !important;
  margin: 0 0 0.75em;
}
div.window div.g-recaptcha-wrap {
  margin: 2rem auto 0;
  text-align: center;
}
div.window div.g-recaptcha {
  display: inline-block;
}
div.window.open {
  display: block;
}

div.login.window a.close {
  background: none;
  padding: 1rem;
}
div.login.window div.body {
  width: 312px;
  background: #F4F4F4;
  padding: 0;
  margin: 0 auto 2rem;
}
div.login.window div.l-head {
  padding: 1.5rem;
  background: #779e2c;
  background-size: cover;
  color: #fff;
}
div.login.window div.l-head h2 {
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 0.5rem;
  color: #fff;
}
div.login.window div.l-head p {
  font-weight: 400;
  font-size: 11px !important;
  margin: 0 0 0.5rem !important;
  color: #fff;
}
div.login.window div.l-head p:last-child {
  margin: 0 !important;
}
div.login.window div.l-body {
  padding: 1.5rem;
}
div.login.window div.l-body p {
  font-weight: 400;
  font-size: 14px !important;
  margin: 0 0 0.5rem !important;
}
div.login.window div.l-body p:last-child {
  margin: 0 !important;
}
div.login.window div.l-body a {
  color: #779e2c;
}
div.login.window form input[type=text],
div.login.window form input[type=email],
div.login.window form input[type=password],
div.login.window form select {
  border: 1px solid #CBCBCB;
  border-radius: 4px;
  background: #fff;
  height: 34px;
  padding: 0.5rem;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 1.5rem;
  transition: all 0.2s linear;
}
div.login.window form input[type=text]:focus,
div.login.window form input[type=email]:focus,
div.login.window form input[type=password]:focus,
div.login.window form select:focus {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
}
div.login.window form label {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 0.25rem;
}
div.login.window form div.submit button {
  font-weight: 700;
  font-size: 13px;
  padding: 0.5rem 1rem;
  background: #779e2c;
  color: #fff;
  border-radius: 4px;
}
div.login.window form div.submit a {
  font-weight: 400;
  font-size: 11px;
  float: right;
  margin-top: 0.6rem;
}
div.login.window div.row.error {
  background: none;
  padding: 0;
  margin: 0;
}
div.login.window div.row small.error {
  display: none;
  font-weight: 400;
  font-size: 10px;
  color: #FF0000;
  margin-top: -1rem;
}
div.login.window div.error p {
  color: #414141;
}
div.login.window div.row.error small.error {
  display: block;
}
div.login.window div.row.error input,
div.login.window div.row.error select {
  border: 1px solid #FF0000;
}
div.login.window div.row.error label {
  color: #FF0000;
}
div.login.window div.body.error div.l-head {
  background: #FF0000;
  color: #fff;
}
div.login.window div.body.error div.l-head h2 {
  color: #fff;
}
div.login.window div.body.error div.l-head p {
  color: #fff;
}
div.login.window div.body.error a.close img {
  filter: brightness(0) invert(1);
}
div.login.window form#formlogin {
  margin: 0 0 1.5rem;
}

a.preview {
  position: relative;
  display: block;
}
a.preview:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/innowacyjnosc.farmer.pl/images/icons/play.svg") center center scroll no-repeat transparent;
  background-size: 100px auto;
}

div.rodo {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(49, 49, 64, 0.9);
  z-index: 999999;
}
div.rodo div.wrap {
  width: 620px;
  max-width: 100%;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
div.rodo div.head {
  padding: 1.5rem;
  position: relative;
  border-bottom: 1px solid #eee;
}
div.rodo div.head > img {
  display: block;
  margin: 0 auto;
  max-width: 60%;
}
div.rodo div.head a.close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
div.rodo div.body {
  padding: 1.5rem;
}
div.rodo div.body div.scroll-pane {
  height: 350px;
  overflow: auto;
  outline: 0;
}
div.rodo div.body div.komunikat {
  display: block;
  padding-right: 1rem;
}
div.rodo div.body div.ustawienia {
  display: none;
  padding-right: 1rem;
}
div.rodo div.body h2 {
  font-size: 24px;
  margin: 0 0 1.5rem;
}
div.rodo div.body p {
  font-size: 16px;
  margin: 0 0 1.5rem;
}
div.rodo div.body p:last-child {
  margin: 0;
}
div.rodo div.checkbox {
  margin: 0 0 1.5rem;
}
div.rodo div.checkbox input {
  display: none;
}
div.rodo div.checkbox label {
  display: block;
  background: url("/images/rodo/check-a.png") left 1px scroll no-repeat transparent;
  background-size: 22px auto;
  padding-left: 36px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
div.rodo div.checkbox input:checked + label {
  background-image: url("/images/rodo/check-b.png");
}
div.rodo div.foot {
  background: #ddd;
  padding: 1.5rem 0.5rem 1rem;
  text-align: center;
}
div.rodo div.foot a.button {
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #779e2c;
  border: none;
  margin: 0 1rem 0.5rem 0;
  transition: all 0.2s linear;
}
div.rodo div.foot a.button.ustawienia {
  background: #779e2c;
  border: none;
}
div.rodo div.foot a.button:last-child {
  margin-right: 0;
}
div.rodo div.foot a.button:hover {
  background: #222;
}
div.rodo div.jspDrag {
  background: #779e2c;
}
div.rodo.open {
  display: block;
}
div.rodo.ustawienia div.body div.komunikat {
  display: none;
}
div.rodo.ustawienia div.body div.ustawienia {
  display: block;
}
div.rodo.no-absolute {
  padding: 1.25rem;
}
div.rodo.no-absolute div.wrap {
  position: static;
  transform: none;
}
@media (max-width: 1000px) {
  div.rodo {
    padding: 1.25rem;
  }
  div.rodo div.wrap {
    position: static;
    transform: none;
  }
}
@media (max-width: 800px) {
  div.rodo div.body div.scroll-pane {
    height: 200px;
  }
}
@media (max-width: 400px) {
  div.rodo div.head > img {
    margin: 0;
  }
}

.register-box {
  border-radius: 3px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid #ddd;
}
.register-box h2, .register-box h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}
.register-box-type-2 {
  background: #f6f6f6;
}

.register-buttons {
  display: flex;
  gap: 20px;
  margin: 20px 0 0;
  justify-content: center;
  flex-wrap: wrap;
}
.register-buttons .button {
  font-size: 15px;
  font-weight: normal;
  gap: 2px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: none;
  text-align: center;
  border-radius: 5px;
  padding: 15px 20px;
  margin: 0;
}
.register-buttons .button strong {
  font-size: 18px;
}
.register-buttons .button--type2 {
  background: #779e2c;
}
.register-buttons .button:hover {
  background: #779e2c;
}
.register-buttons span {
  max-width: 300px;
}
@media (max-width: 500px) {
  .register-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .register-buttons .button {
    min-height: 60px;
  }
}

.register-list-cnt {
  overflow-x: auto;
}

.register-list-cnt {
  margin: 30px 0;
}
.register-list-cnt > h3 {
  text-align: center;
}

.register-list {
  width: 100%;
  border: 1px solid #ddd;
  margin: 0 0 30px 0;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.1);
}
.register-list a {
  font-weight: normal;
}
.register-list td, .register-list th {
  border: 1px solid #ddd;
  padding: 15px;
  width: 50%;
  vertical-align: top;
  text-align: center;
}
.register-list thead th p, .register-list thead td p {
  margin: 0;
}
.register-list thead p small br {
  display: none;
}
.register-list .register-list-head-text,
.register-list small {
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
  color: #888;
}
.register-list .register-list-head-name,
.register-list strong {
  display: block;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}
.register-list .register-list-head-name.is-standard,
.register-list strong.is-standard {
  color: #000;
}
.register-list .register-list-head-name.is-premium,
.register-list strong.is-premium {
  color: #779e2c;
}
.register-list .register-list-head-name.is-online,
.register-list strong.is-online {
  color: #779e2c;
}
.register-list .register-list-head-price {
  display: block;
  font-size: 16px;
}
.register-list tbody td {
  vertical-align: middle;
  width: 25%;
}
.register-list tbody td:not(:first-child) {
  text-align: center;
  width: 230px;
  vertical-align: middle;
}
.register-list tbody tr:nth-of-type(even) {
  background: #f6f6f6;
}
@media (max-width: 670px) {
  .register-list {
    font-size: 15px;
  }
  .register-list td, .register-list th {
    padding: 10px;
  }
  .register-list tbody td:first-child {
    font-size: 13px;
  }
  .register-list .register-list-head-name {
    font-size: 20px;
  }
  .register-list tbody td:not(:first-child) {
    text-align: center;
    width: 160px;
  }
  .register-list tbody td:first-child {
    font-size: 14px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  font-size: inherit;
  margin-top: 1rem;
}
.faq-list dt {
  cursor: pointer;
  font-weight: bold;
  color: #779e2c;
  padding: 0.5rem 0;
}
.faq-list dt a {
  text-decoration: none;
}
.faq-list dd {
  display: none;
  padding-left: 0;
  margin-left: 0;
  padding-bottom: 20px;
  font-size: inherit;
}
.faq-list dd p {
  font-size: inherit;
}
.faq-list dd p:first-child {
  margin-top: 0;
}

.footer {
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
}

.footer-container {
  border-top: 1px solid #eee;
  width: 100%;
  display: flex;
  max-width: 1150px;
  padding-top: 30px;
}

.footer-logo {
  margin-right: 55px;
}

.footer-content {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.footer-menu-el {
  margin-right: 20px;
  font-weight: bold;
}
.footer-menu-el a {
  color: #000;
}
.footer-menu-el a:hover {
  text-decoration: none;
  color: #90C96C;
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  .footer-menu-el {
    margin-right: 0;
  }
}
div.box-6 {
  display: block;
  overflow: visible;
  margin: 0 0 2rem;
  /*&>div.box-7 { display: none; }*/
}
div.box-6 h2 {
  font-size: 20px;
  padding: 0 0 0.5rem !important;
  margin: 0 0 1.5rem !important;
  border-bottom: 1px solid #eee;
  text-align: center;
}
div.box-6.open > div.box-7 {
  display: block;
}

div.box-7 {
  font-size: 0;
  text-align: center;
}
div.box-7 > * {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3% 3% 0;
  width: 31.33%;
}
div.box-7 > *:nth-child(3n+3), div.box-7 > *:last-child {
  margin-right: 0;
}
div.box-7 > a {
  border: 1px solid #eee;
  height: 140px;
  position: relative;
}
div.box-7 > a img {
  display: block;
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto !important;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 500px) {
  div.box-7 > * {
    width: 48.5%;
  }
  div.box-7 > *:nth-child(3n+3) {
    margin-right: 3%;
  }
  div.box-7 > *:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 440px) {
  div.box-7 > * {
    width: 100%;
    margin: 0 0 1.5rem;
  }
}

.box-8 > a {
  text-align: center;
}

.box-7 a img {
  display: block;
  margin: 1.5em auto;
}

.box-8 {
  position: relative;
}
.box-8.hasMenu > a {
  display: block;
  overflow: visible;
  border: 1px solid #eee;
}
.box-8.hasMenu:before {
  content: "ZOBACZ WIĘCEJ";
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  overflow: hidden;
  color: #999;
  font-size: 12px;
  background: #eee;
  position: absolute;
  left: 0;
  top: -15px;
  height: 16px;
}
.box-8.hasMenu.boxOpen:before {
  display: none;
}
.box-8.menuOpen > ul {
  display: block;
}
.box-8.boxOpen.menuOpen > ul {
  display: none;
}
.box-8.boxOpen {
  position: static;
}
.box-8.boxOpen div.box-9 {
  display: block;
}
.box-8.boxOpen div.bg {
  display: block;
}
.box-8 > ul {
  display: none;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 99%;
  width: 100%;
  border: 1px solid #eee;
  border-top: 0;
  font-size: 12px;
  background: #fff;
  padding: 1em 1em 1.5em;
}
.box-8 > ul li {
  display: block;
}
.box-8 > ul a {
  display: block;
  color: #779e2c;
}
.box-8 div.box-9,
.box-8 div.bg {
  display: none;
}

div.box-9 {
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 1000;
  top: 10%;
  left: 0;
  right: 0;
  width: 960px;
  max-height: 80%;
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  padding: 1em;
}
div.box-9 ul.header {
  height: auto;
  display: block;
  overflow: hidden;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0;
  max-height: 99999px;
  text-align: center;
}
div.box-9 ul.header li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.5em;
}
div.box-9 ul.header li.close {
  position: absolute;
  right: 1em;
  top: 1.5em;
}
div.box-9 ul.header img {
  max-width: 150px;
  margin-top: 10px;
  margin-bottom: 10px;
}
div.box-9 a {
  font-size: 16px;
  color: #779e2c;
}
div.box-9 ul.header li.active a {
  color: #444;
}
div.box-9 div.tabs {
  display: block;
  overflow: hidden;
}
div.box-9 div.tabs > * {
  display: none;
  overflow: hidden;
  padding: 0;
}
div.box-9 div.tabs > *.active {
  display: block;
}
div.box-9 div.download {
  overflow: hidden;
  border: none !important;
}
div.box-9 div.download a {
  display: block;
  overflow: hidden;
  padding: 1em;
  text-decoration: none;
}
div.box-9 div.download a:hover {
  background: #FAFAFA;
}
div.box-9 div.download img {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 1.5em 1.5em 0;
}
div.box-9 div.download h3 {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 20px;
  color: #666;
}
div.box-9 div.download p {
  display: block;
  font-size: 16px;
  color: #878787;
  margin: 0.5em 0 0;
}
div.box-9 div.promo a.arrowLeft,
div.box-9 div.promo a.arrowRight {
  height: 400px !important;
  width: 60px;
}
div.box-9 div.promo iframe {
  display: block;
  margin: 0 auto;
}

div.box-9 + .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 700px) {
  div.box-9 div.download h3 {
    font-size: 17px;
  }
  div.box-9 ul.header li.close {
    right: 5px;
    top: 5px;
  }
  div.box-9 ul.header li.close img {
    width: 25px;
    height: 25px;
  }
}
section.retransmisje {
  background-position: center;
  background-size: cover;
  padding: 3rem 0 4rem;
}
section.retransmisje .about-title {
  margin: 0 0 2rem;
}
@media (max-width: 760px) {
  section.retransmisje {
    padding-bottom: 0;
  }
}

.presentation-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media (max-width: 500px) {
  .presentation-list {
    gap: 10px;
  }
}

.presentation-list-el {
  width: calc(33.3333% - 20px);
  background: #fff;
  border: 1px solid #ddd;
  aspect-ratio: 1/0.7;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.presentation-list-el img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.company-info {
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 60px 3px rgba(0, 0, 0, 0.16);
  border: 1px solid #EDEDED;
  border-radius: 20px;
  overflow: hidden;
}

.company-info-img {
  padding: 20px;
}
.company-info-img img {
  max-width: 100%;
  height: auto;
}

.company-info-head {
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}

.company-info-heading {
  margin: 0;
}

.company-info-body {
  padding: 2rem 1.5rem;
}
.company-info-body a {
  font-weight: bold;
  text-decoration: none;
  color: #90C96C;
}
.company-info-body p:first-child {
  margin-top: 0;
}
.company-info-body p:last-child {
  margin-bottom: 0;
}
/*# sourceMappingURL=style.2026.css.map */
