h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #beed5a;
  font-family: 'System-ui', sans-serif;
  font-size: 38px;
}

h2 {
  text-align: center;
  margin-top: 30px;
  scroll-margin-left: 10px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 30px;
  color: #6b9b04;
  font-family: 'System-ui', sans-serif;
  font-size: 38px;
}

.row {
  text-align: center;
}

h3 {
  font-family: 'System-ui';
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
  color: rgb(9,47,88);
}

p {
}

.map-wide {
  display: flex;
  width: 100%;
  max-height: 680px;
}

/* Odstavec vycentrovaný 960px START*/
.p-centered-960 {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}
.p-info {
  display: flex;
  align-items: left;
}
.p-info__icon {
  margin-right: 10px;
  font-size: 16px;
  color: #beed5a;
}
/* Odstavec vycentrovaný 960px KONEC */

/* zastupujeme START */
.zastupujeme {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.cell {
  width: 200px;
  padding: 10px;
  margin: 10px;
  justify-content: center;
  text-align: center;
  border: solid thin #beed5a;
  border-radius: 15px;

}
/* zastupujeme KONEC */

/* slider START */

/* (A) OUTER CONTAINER */
.hwrap {
  /* (A1) DIMENSIONS */
  width: 100%;
  max-width: 960px;
   /* OPTIONAL height: 400px; */
  margin: 0 auto;

  /* (A2) COSMETICS */
  background: #fffdea;
  border: 2px solid #beed5a;
  overflow: hidden; /* HIDE SCROLLBARS */
}

/* (B) MIDDLE CONTAINER - FLEX LAYOUT */
.hmove {
  display: flex;
  position: relative;
  top: 0; right: 0;
  margin: 0 auto;
}

/* (C) SLIDES - FORCE INTO ONE LONG HORIZONTAL ROW */
.hslide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
}

/* (D) SLIDE ANIMATION */
@keyframes slideh {
  /* (D0) THE IDEA - USE KEYFRAMES TO SHIFT SLIDES *
  0% { right: 0; }
  33% { right: 100%; }
  66% { right: 200%; }
  100% { right: 0; }
 
  /* (D1) BUT THE ABOVE WILL SHIFT NON-STOP */
  /* SO WE ADD PAUSES BETWEEN EACH SLIDE */
  0% { right: 0; }
  30% { right: 0; }
  33% { right: 100%; }
  63% { right: 100%; }
  66% { right: 200%; }
  97% { right: 200%; }
  100% { right: 0; }
}
.hmove { animation: slideh linear 30s infinite; }
.hmove:hover { animation-play-state: paused; }

/* slider END */

/* Help button START */
.help-button {
  background-color: #beed5a;
  color: black;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}

.help-button:hover {
  background-color: #31cb52;
  color: black;
}
/* Help button END */

/* navigační menu - textové odkazy */
.nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.7s ease;
  margin-right: 10px;
}
  
  .nav-link:hover {
  color: #2bda3f;
  text-decoration: underline;
}
/* navigační menu - textové odkazy */

#mezera {
  height: 80px;
  display: block;
  width: 100%;
}

/* Cookie banner */
#cookie-banner {
  background-color: #f1f1f1;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 10000;
}
/* Cookie banner */

/* TEST - TEST - TEST - TEST */

/* TEST - TEST - TEST - TEST */

/* FORM */
form label {
  display: block;
  margin-bottom: 10px;
  max-width: 960px;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
}
form input, form textarea, form button {
  display: block;
  max-width: 360px;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
form input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  max-width: 960px;
}
form input[type="submit"]:hover {
  background-color: #45a049;
  margin: 0 auto;
  text-align: center;
}
.spam-check {
  margin-bottom: 20px;
}
/* FORM */

/* REFERENCE 2 start */
#reference-slider {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #fffdea;
  border: 2px solid #beed5a;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  min-height: 100px;
}
.slide {
  display: none;
  width: 100%;
}
.active-slide {
  display: block;
  animation: slideIn 1s ease-out;
}
.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #beed5a;
  background-color: transparent;
  border: none;
}
.arrow-left {
  left: 10px;
}
.arrow-right {
  right: 10px;
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* REFERENCE 2 konec */

nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
}
