@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

.info__banner {
  padding: 0.5rem 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9ED00;
}
.info__banner span {
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
}

header {
  background: #1c4132;
  z-index: 150;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  left: 0;
}
header .header__top {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .header__top .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__top .logo a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__top .logo a img {
  height: 4rem;
}
header .header__top .header__contacts {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4rem;
}
header .header__top .header__contacts .item {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
header .header__top .header__contacts .item .icon {
  height: 41px;
  width: 41px;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__top .header__contacts .item .icon svg {
  color: #fff;
  height: 21px;
  width: 21px;
  stroke-width: 2.5;
}
header .header__top .header__contacts .item .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
header .header__top .header__contacts .item .text span {
  font-size: 0.8em;
}
header .header__top .header__contacts .item .text * {
  color: #fff;
}
header .header__top .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .header__top .ham svg {
  height: 35px;
  width: 35px;
  color: rgb(67, 148, 34);
  stroke-width: 2.5;
}
header .header__top .logout__btn {
  background: none;
  border: none;
}
header .header__top .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .header__top .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}
header .header__bottom {
  padding: 1rem 5%;
  background: rgb(95, 181, 60);
}
header .header__bottom nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header .header__bottom nav a {
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header .header__bottom nav a::after {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.25s ease;
}
header .header__bottom nav a:hover::after, header .header__bottom nav a.active::after {
  width: 70%;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 160;
  background: rgb(67, 148, 34);
  background: linear-gradient(180deg, rgba(44, 99, 23, 0.8) 0%, rgba(92, 159, 65, 0.8) 90%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .header__top .logo a img {
    height: 2.5rem;
  }
  header .header__top .header__contacts .item .icon {
    height: 35px;
    width: 35px;
  }
  header .header__top .header__contacts .item .icon svg {
    height: 17px;
    width: 17px;
  }
  header .header__top .header__contacts .item .text span {
    font-size: 0.7em;
  }
  header .header__top .header__contacts .item .text b {
    font-size: 0.9em;
  }
  header .header__bottom {
    padding: 1rem 2.5%;
  }
  header .header__bottom nav a {
    font-size: 0.65em;
  }
}
@media only screen and (max-width: 900px) {
  header .header__top .header__contacts {
    display: none;
  }
  header .header__top .ham {
    display: flex;
  }
  header .header__bottom {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .info__banner span {
    font-size: 0.7em;
  }
  header .header__top .logo a img {
    height: 2rem;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  transition: 0.25s ease;
}
.btn.white a {
  background: #fff;
  color: #61B240;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.05);
}

footer {
  background: #61BB3D;
  padding: 3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 5;
}
footer .footer__contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .footer__contacts .logo {
  height: 60px;
  transform: translateY(-10px);
}
footer .footer__contacts .link {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
footer .footer__contacts .link svg {
  height: 1.35em;
  width: 1.35em;
}
footer .middle {
  width: 30%;
}
footer .middle h3 {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}
footer .middle .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
footer .middle .links .link {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
footer .middle .links .link svg {
  height: 1.35em;
  width: 1.35em;
}
footer .middle .footer__certificates {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
footer .middle .footer__certificates img {
  flex: 0 0 25%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
  max-width: 25%;
}
footer .middle .footer__certificates img.width {
  flex: 0 0 35%;
}
footer .footer__nav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .footer__nav h3 {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
}
footer .footer__nav a {
  font-size: 1em;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
}
footer .footer__nav a svg {
  height: 1.35em;
  width: 1.35em;
  color: rgb(67, 148, 34);
  stroke-width: 3;
}
footer .footer__nav a:hover {
  transform: scale(1.025);
}

@media only screen and (max-width: 1300px) {
  footer {
    padding: 3rem 5%;
  }
  footer .footer__contacts .logo {
    height: 45px;
  }
  footer .footer__contacts .link {
    font-size: 14px;
  }
  footer .middle h3 {
    font-size: 1.5em;
  }
  footer .middle .links .link {
    font-size: 14px;
  }
  footer .footer__nav h3 {
    font-size: 1.5em;
  }
  footer .footer__nav a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 850px) {
  footer {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  footer .footer__contacts .logo {
    height: 50px;
  }
  footer .footer__contacts p {
    font-size: 0.7em;
  }
  footer .middle {
    width: 50%;
  }
  footer .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .middle {
    width: 80%;
  }
}
.subheading {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.subheading .green {
  padding: 10px 20px;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  color: #fff;
  border-radius: 7px;
  font-size: 0.9em;
}
.subheading span {
  font-size: 0.9em;
  color: #fff;
}

.h1 {
  font-size: 3em;
  color: #fff;
  line-height: 1em;
  letter-spacing: 3px;
}

@media only screen and (max-width: 1550px) {
  .h1 {
    font-size: 3em;
  }
}
@media only screen and (max-width: 1300px) {
  .h1 {
    font-size: 2.5em;
  }
  .subheading .green {
    padding: 5px 10px;
    font-size: 0.7em;
    text-align: center;
  }
  .subheading span {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 900px) {
  .h1 {
    font-size: 2.15em;
  }
}
@media only screen and (max-width: 700px) {
  .h1 {
    font-size: 1.8em;
    letter-spacing: 0;
  }
}
.collabs {
  width: 100%;
  padding: 2rem 5%;
}
.collabs .collabs__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.collabs .collabs__content a {
  display: block;
  width: 10%;
}
.collabs .collabs__content a img {
  width: 100%;
  filter: grayscale(100%); /* Fotka bude černobílá */
  transition: filter 0.3s ease;
}
.collabs .collabs__content a img:hover {
  filter: grayscale(0%);
}

@media only screen and (max-width: 700px) {
  .collabs .collabs__content a {
    width: 33%;
  }
}
#cookies__bar {
  padding: 2rem 5%;
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}
#cookies__bar .text {
  width: 50vw;
}
#cookies__bar .text h3 {
  font-size: 1.35em;
  color: #fff;
}
#cookies__bar .text p {
  font-size: 0.9em;
  color: #fff;
}
#cookies__bar .text p a {
  color: #61BB3D;
}
#cookies__bar .btn {
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  #cookies__bar .text h3 {
    font-size: 1em;
  }
  #cookies__bar .text p {
    font-size: 0.7em;
  }
  #cookies__bar .btn a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  #cookies__bar {
    flex-flow: column;
    align-items: start;
    row-gap: 1rem;
  }
  #cookies__bar .text {
    width: 100%;
  }
}
main {
  padding: 5rem 10%;
}
main .green {
  color: #61BB3D;
}
main h1 {
  text-align: center;
  font-size: 3em;
}
main section {
  margin: 2.5rem 0;
}
main section h2 {
  font-size: 2em;
}
main section h3 {
  margin-top: 1.5rem;
  font-size: 1.35em;
}
main section p {
  margin: 0.5rem 0;
}
main section ul, main section ol {
  padding-left: 25px;
}
main section ul li, main section ol li {
  margin: 0.5rem 0;
}

.collabs {
  padding: 5rem 10%;
}
.collabs .h1 {
  color: #000;
  text-align: center;
}
.collabs .collabs__content {
  margin: 5rem 0;
}
.collabs .collabs__content h3 {
  font-size: 3em;
}
.collabs .collabs__content .logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: row wrap;
}
.collabs .collabs__content .logos img {
  flex: 0 1 25%;
  width: 25%;
}

@media only screen and (max-width: 900px) {
  main {
    padding: 5rem 10% 2.5rem;
  }
  main h1 {
    font-size: 2em;
  }
  main section h2 {
    font-size: 1.4em;
  }
  main section p {
    font-size: 0.9em;
  }
  .collabs {
    margin: 0 0 2.5rem;
  }
  .collabs .collabs__content h3 {
    font-size: 1.5em;
  }
  .collabs .collabs__content .logos img {
    flex: 0 1 50%;
  }
}/*# sourceMappingURL=style.css.map */