@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
BODY {
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  BODY {
    font-size: 12px;
  }
}

.head {
  position: fixed;
  top: 0;
  z-index: 995;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 0 60px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head H1 {
  display: none;
}
@media screen and (max-width: 768px) {
  .head {
    height: 50px;
    padding: 0 10px;
  }
}
.head IMG {
  max-height: 50%;
}

.main {
  margin-top: 100px;
  /* link to anchor nefunguje dobre s fixed menu, toto je fix */
  padding: 0 60px 60px 60px;
}
.main :target {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .main {
    padding: 0 10px 30px 10px;
    margin-top: 50px;
    /* link to anchor nefunguje dobre s fixed menu, toto je fix */
  }
  .main :target {
    scroll-margin-top: 50px;
  }
}
.main H2 {
  text-align: left;
  font-size: 80%;
  font-weight: normal;
  border-top: solid 1px black;
  padding-top: 0.5em;
  margin-top: 3em;
  margin-bottom: 2em;
}
.main .partners {
  max-width: 600px;
  margin: auto;
}
.main .partners .bullet {
  width: 30%;
  display: inline-block;
  background: black;
  border-radius: 50%;
}
.main .partners .bullet > DIV {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.main .partners .bullet > DIV > DIV {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}
.main .partners .bullet > DIV > DIV IMG {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  transition: transform 0.4s; /* Animation */
}
.main .partners .bullet > DIV:hover IMG {
  transform: scale(1.25);
}
.main .about {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .main .about {
    white-space: pre-line;
    margin-top: -2em;
  }
}
.main #photos {
  max-width: 800px;
  margin: auto;
  transition: 1s;
  display: flex;
  grid-gap: 20px;
}
.main #photos .col {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.main #photos .col IMG {
  width: 100%;
  display: block;
}
.main .contact {
  font-weight: bold;
  line-height: 1.2;
}
.main .foot {
  margin-top: 3em;
  font-size: 60%;
}
.main .foot .logo {
  display: block;
  margin: 2em auto;
  width: 150px;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  position: fixed; /* Stay in place */
  z-index: 999; /* Stay on top */
  top: 0; /* Stay at the top */
  width: 250px;
  right: -250px;
  background-color: #000; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  /* The navigation menu links */
}
.sidenav.open {
  right: 0;
}
.sidenav UL {
  text-align: right;
  padding: 0 2em;
  margin: 0;
  font-size: 125%;
}
.sidenav UL a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidenav UL a:hover {
  color: #f1f1f1;
}
.sidenav UL .closebtn {
  font-size: 200%;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
/*
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
*/
.action {
  cursor: pointer;
}

.fade-out {
  position: relative;
  max-height: 350px !important;
  overflow: hidden;
}
.fade-out:after {
  content: "";
  position: absolute;
  top: 80%;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.fade-out + .more {
  margin-top: 2em;
  display: inline;
}

.more {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
