/* Font */
@font-face {
  font-family: "SourceSansPro-Regular";
  src: url("assets/SourceSansPro-Regular.woff2") format("woff2"),
    url("assets/SourceSansPro-Regular.woff") format("woff"),
    url("assets/SourceSansPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "SourceSansPro-Semibold";
  src: url("assets/SourceSansPro-Semibold.woff2") format("woff2"),
    url("assets/SourceSansPro-Semibold.woff") format("woff"),
    url("assets/SourceSansPro-Semibold.ttf") format("truetype");
}

/* Stream-Version */

.placeholder {
  display: none;
}


/* General */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* 1rem = 10px */
  font-size: 62.5%;
  color: #ffffff;
}
body {
  font-family: "SourceSansPro-Semibold", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;

  width: 100%;

  display: flex;
  flex-direction: column;
}

a,
a:hover,
a:focus,
a:active {
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Sections */
.nav {
  background-color: #0168b5;
}
.nav__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  display: flex;

  justify-content: space-between;
}
.nav__container__left {
  height: 100px;
}
.nav__logo__parent {
  position: relative;
}
.nav__logo {
  position: absolute;
}
.nav__claim {
  font-size: 2rem;
}
.nav__container__right {
  display: flex;
  align-items: center;
}

.hero {
  padding: 123px 0 100px 0;
  background-color: #b5d484;
}
.hero__title {
  width: 100%;
  max-width: 600px;
  font-size: 4.4rem;
}

.hero__text {
  width: 100%;
  max-width: 900px;

  font-family: "SourceSansPro-Regular", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}

.hero__text__lead {
  font-size: 2rem;
  margin: 20px 0 20px 0;
}

.main {
  padding: 100px 0 0 0;
}
.main img {
  width: 100%;
  height: auto;
}

.embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.embed iframe,
.embed object,
.embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main .slido {
  margin-top: 100px;
  width: 100%;
}

.footer {
  background-color: #0168b5;
  margin-top: 100px;



  font-size: 2rem;
}
.footer__container {
  width: 100%;
  height: 100%;
  max-width: 1240px;
  padding: 20px 0 20px 0;

  display: flex;
  justify-content: space-between;
  

  margin: 0 auto;
}
.footer__visit_us {
  display: flex;
  align-items: center;
  min-width: 200px;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: 500px;
}

.footer__legal a {
  margin-right: 16px;
}

.footer__legal a:last-of-type {
  margin-right: 0;
}

.footer__legal__items {
  margin-bottom: 20px;
}

.footer__text {
  font-family: "SourceSansPro-Regular", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

/* Shared */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1240px) {
  .hero,
  .nav,
  .main,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 615px) {
  .nav__claim {
    display: none;
  }

  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-content: space-around;
  }

  .footer__visit_us {
    justify-content: center;
  }

  .footer__legal {
    margin-top: 20px;
    text-align: center;
  }
}
