:root {
  --bg-color: #292727;
  --font-title: "Playfair Display";
  --font-paragraph: "Montserrat";
}

a,
h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 400;
}
h2 {
  font-size: 44px;
}

p {
  font-family: var(--font-paragraph);
  font-size: 18px;
}

.motivation-text {
  font-family: fantasy;
}

.global-title {
  font-family: cursive;
}

/* Navigation */
.nav-container {
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  position: fixed;
  height: fit-content;
  background: white;
  opacity: 0.7;
  background-color: var(--bg-color);
  #main-menu-container {
    .brand {
      height: 100px !important;
      margin-left: 28px;
      place-self: center;
      padding: 4px;
    }
    .hamburger-lines,
    #menuCheck {
      display: none;
    }
  }
  nav {
    display: flex;
    align-items: center;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    a {
      margin-right: 24px;
      color: white;
      text-decoration: none;
      font-size: 24px;
      &:hover {
        color: darkslateblue;
      }
      #about-us {
      }
    }
  }
}

/* Content */
body {
  margin: 0px;
  .banner {
    background-image: url("../images/Background_banner.jpg");
    background-size: cover;
    height: 100vh;
    display: flex;
  }
  .banner-layout {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    height: inherit;
    margin-top: 10%;
    height: fit-content;
    background-color: var(--bg-color);
    color: white;
    opacity: 0.8;
    padding: 20px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    h1 {
      font-size: xxx-large;
      margin: 0;
      width: fit-content;
    }
    p {
      font-size: x-large;
    }
  }
}
/* Banner */

/* About us */

h2,
h3,
.about-us-describtion-wrapper {
  width: 100%;
  text-align: center;
}

h2,
h3 {
  margin-bottom: 0;
  color: darkslateblue;
}
.about-us-describtion-wrapper {
  display: flex;
  justify-content: center;
  .about-us-describtion {
    width: 70%;
    line-height: 24px;
  }
  .members-description-wrapper {
    width: 40%;
  }
}

.sponsors {
  display: flex;
  width: 100%;
  justify-content: center;
  .pribina-logo {
    width: 30%;
  }
}

.lessons {
  display: flex;
  justify-content: center;
  .lesson {
    width: 30%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    .lesson-img {
      width: 80%;
      place-self: center;
      border-radius: 14px;
    }
    #lesson-paragraph {
      width: 100%;
      text-align: justify;
      line-height: 24px;
      width: 80%;
      place-self: center;
    }
    #contact-members-info {
      width: 100%;
      text-align: center;
      line-height: 24px;
    }
    .people-description {
      text-align: justify;
      margin-top: 0;
      line-height: 24px;
      padding: 8px;
      width: 80%;
      place-self: center;
    }
  }
}
/* Motivation */
.motivation-wrapper {
  background-image: url("../images/middle-background.jpg");
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  /* need be calculate -120px if overload is scrolling*/
  background-position: 100% 50%;
  padding: 80px;
  color: white;
  p {
    font-size: 48px;
    margin-bottom: 0;
    text-align: center;
  }
}

.middle-art {
  background-image: url("../images/middle-bc-art.jpg");
  background-position: 100% 28%;
}

/* members */
.members {
  p {
    line-height: 22px;
  }
}

/* Kontakt Map */
.contact-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contact-info {
  flex: 1;
  padding-left: 20px;
  h2 {
    text-align: start;
  }
}
iframe {
  flex: 4;
  width: 60%;
  height: 250px;
  border-bottom-left-radius: 14px;
  border-top-left-radius: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.49);
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.49);
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Footer */
footer {
  display: flex;
  background-color: var(--bg-color);
  justify-content: center;
  img {
    width: 30%;
    border-radius: 100%;
    border-radius: 100%;
    padding-right: 12px;
  }
  a {
    color: red;
    text-decoration: none;
    &:hover {
      color: darkslateblue;
    }
  }
  .footer-cpmpany-wrapper,
  .footer-links-wrapper,
  .footer-founder-wrapper {
    color: white;
    display: flex;
    width: 33%;
    padding: 3em;
    h3 {
      margin: 0;
      font-weight: 600;
      text-align: start;
    }
    a {
      font-weight: 700;
      font-size: larger;
    }
  }
}
