@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%;
  }
}
.contacts {
  padding: 5rem 10% 2rem;
  display: grid;
  grid-template-columns: 0.33fr 0.66fr;
  gap: 3rem;
}
.contacts .contact__details {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 2rem;
  width: 100%;
}
.contacts .contact__details .item {
  padding: 2rem;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
}
.contacts .contact__details .item .row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
}
.contacts .contact__details .item .row .icon {
  height: 60px;
  width: 60px;
  background: rgba(97, 187, 61, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.contacts .contact__details .item .row .icon svg {
  height: 30px;
  width: 30px;
  color: #61BB3D;
  stroke-width: 2.5;
}
.contacts .contact__details .item .row .details__text .details__name {
  font-size: 1.5em;
  margin-bottom: 0.5rem;
}
.contacts .contact__details .item .row .details__text .details__content {
  font-size: 1em;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.contacts .contact__details .item .row .details__text .details__content:hover {
  text-decoration: underline;
}
.contacts .contact__details .item .map {
  margin-top: 1rem;
  width: 100%;
  height: 10rem;
}
.contacts .contact__details .item .map iframe {
  height: 100%;
  width: 100%;
}
.contacts .contacts__form {
  width: 100%;
  padding: 3rem;
  background: #fff;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.contacts .contacts__form h2 {
  font-size: 2.5em;
}
.contacts .contacts__form p {
  font-size: 0.8em;
  width: 80%;
}
.contacts .contacts__form .inputs__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
}
.contacts .contacts__form .inputs__row.first {
  margin: 2rem 0 1rem;
}
.contacts .contacts__form .inputs__row input {
  width: 45%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.contacts .contacts__form textarea {
  width: 100%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  height: 10rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  resize: none;
}
.contacts .contacts__form .status__parent {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  margin: 1rem 0 0;
}
.contacts .contacts__form .status__parent label {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.25rem;
}
.contacts .contacts__form .status__parent select {
  width: 100%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.contacts .contacts__form .gdpr {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
}
.contacts .contacts__form .gdpr #gdpr {
  cursor: pointer;
}
.contacts .contacts__form .gdpr label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contacts .contacts__form .gdpr label a {
  color: #61BB3D;
  font-weight: 500;
}
.contacts .contacts__form #contact__submit {
  color: #fff;
  border-radius: 10px;
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.contacts .contacts__form #contact__submit a {
  font-size: 1.2em;
}
.contacts .contacts__form #contact__submit svg {
  height: 1.25em;
  width: 1.25em;
}
.contacts .contacts__form #contact__submit:hover {
  transform: scale(1.05);
}

.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 10% 5rem;
  gap: 2rem;
}
.support .support__item {
  padding: 2rem;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.support .support__item h2 {
  font-size: 2.25em;
  font-weight: 500;
}
.support .support__item p {
  font-size: 0.9em;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.5);
}
.support .support__item .support__contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.support .support__item .support__contacts .item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
}
.support .support__item .support__contacts .item .icon {
  height: 50px;
  width: 50px;
  background: rgba(97, 187, 61, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.support .support__item .support__contacts .item .icon svg {
  height: 20px;
  width: 20px;
  color: #61BB3D;
  stroke-width: 2.5;
}
.support .support__item .support__contacts .item h3 {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.support .support__item .support__contacts .item a {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

@media only screen and (max-width: 1400px) {
  .contacts {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contacts .contact__details {
    order: 2;
  }
  .contacts .contact__details .item .map {
    height: 20rem;
  }
  .support .support__item h2 {
    font-size: 1.75em;
  }
  .support .support__item p {
    font-size: 0.7em;
    line-height: 1.25em;
  }
  .support .support__item .support__contacts {
    flex-flow: column;
    align-items: start;
    gap: 1rem;
  }
  .support .support__item .support__contacts .item .icon {
    height: 40px;
    width: 40px;
  }
  .support .support__item .support__contacts .item .icon svg {
    height: 18px;
    width: 18px;
  }
  .support .support__item .support__contacts .item h3 {
    font-size: 1em;
    margin-bottom: 0;
  }
  .support .support__item .support__contacts .item a {
    font-size: 0.75em;
  }
}
@media only screen and (max-width: 700px) {
  .contacts {
    padding: 2rem 0 2rem;
  }
  .contacts .contact__details {
    width: 90%;
    margin: 0 auto;
  }
  .contacts .contact__details .item .row {
    grid-template-columns: 45px 1fr;
  }
  .contacts .contact__details .item .row .icon {
    height: 45px;
    width: 45px;
  }
  .contacts .contact__details .item .row .icon svg {
    height: 20px;
    height: 20px;
  }
  .contacts .contact__details .item .row .details__text .details__name {
    font-size: 1.2em;
    margin-bottom: 0.25rem;
  }
  .contacts .contact__details .item .row .details__text .details__content {
    font-size: 0.9em;
  }
  .contacts .contact__details .item .row .map {
    margin-top: 1.5rem;
  }
  .contacts .contacts__form {
    padding: 2rem;
    width: 90%;
    margin: 0 auto;
  }
  .contacts .contacts__form h2 {
    font-size: 2em;
  }
  .contacts .contacts__form p {
    font-size: 0.65em;
    width: 100%;
  }
  .contacts .contacts__form .inputs__row {
    flex-flow: column;
    gap: 0.6rem;
    margin: 0.6rem 0;
  }
  .contacts .contacts__form .inputs__row.first {
    margin: 1rem 0 0;
  }
  .contacts .contacts__form .inputs__row input {
    width: 100%;
    font-size: 0.8em;
  }
  .contacts .contacts__form textarea {
    font-size: 0.8em;
  }
  .contacts .contacts__form .status__parent label {
    font-size: 0.8em;
  }
  .contacts .contacts__form .status__parent select {
    font-size: 0.9em;
    appearance: none;
    -webkit-appearance: none; /* for iOS Safari */
    -moz-appearance: none; /* for Firefox */
    background: #fff;
  }
  .contacts .contacts__form .gdpr label {
    font-size: 0.75em;
  }
  .contacts .contacts__form #contact__submit {
    font-size: 0.8em;
    margin-top: 1rem;
  }
  .support {
    grid-template-columns: 1fr;
    padding: 0 5% 5rem;
  }
  .support .support__item h2 {
    font-size: 1.5em;
  }
}/*# sourceMappingURL=style.css.map */