body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background-image: url("../img/alea_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-color: #9dc45a;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.svg_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
}

.svg_icon svg {
  fill: currentColor;
}

.content_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

@media (max-width: 576px) {
  .content_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.logo {
  width: auto;
  height: 40px;
}

.branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50vw;
  height: 100vh;
  padding: 100px;
}

@media (max-width: 960px) {
  .branding {
    display: none;
  }
}

@media (max-width: 576px) {
  .branding {
    display: none;
  }
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50vw;
  height: 100vh;
  padding: 80px 40px 80px 200px;
  overflow: auto;
}

@media (max-width: 960px) {
  .links {
    width: 100vw;
    padding: 40px 40px 40px 60px;
  }
}

@media (max-width: 576px) {
  .links {
    width: 100vw;
    padding: 40px 40px 40px 60px;
  }
}

.links .logo {
  margin: 0 0 80px 16px;
}

@media (max-width: 960px) {
  .links .logo {
    margin: 0 0 40px 16px;
  }
}

.links .svg_icon {
  margin: 0 14px 0 0;
}

.links .nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px 0 16px;
  margin: 10px 0 0 0;
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.links .nav_link .svg_icon {
  width: 32px;
  height: 32px;
}

.links .nav_link:hover, .links .nav_link:hover, .links .nav_link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/*# sourceMappingURL=style.css.map */