@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap");
/*The mill colors */
/*The brewery colors */
/* text-colors */
html, body, main, header, footer, p, article, div, section, nav, a, ul, li {
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  font-size: 62.5%;
  /**touch-action: none;*/
}

body {
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #000;
  display: block;
  font-size: 1rem;
  line-height: 1.38;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #16c6dc;
  background: radial-gradient(circle, #16c6dc 0%, #088898 100%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /**touch-action: none;*/
}
body > main {
  flex: 1;
}

@media screen and (min-width: 767px) {
  body {
    width: 100%;
  }
}
#content {
  padding: 0 3rem;
  box-sizing: border-box;
  max-width: 1600px;
  margin: 0 auto;
}

a {
  color: #41ACB5;
  text-decoration: underline;
  transition: all, 0.4s;
}
a:hover, a:focus {
  color: #d44436;
}

p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  display: block;
}

.caption {
  font-size: 0.6rem;
  font-style: italic;
  display: block;
  padding: 0.2rem;
}

footer {
  background: #fff;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
}
footer a {
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
}
footer .footer--links {
  flex: 1;
  display: flex;
  justify-content: space-around;
}
footer .footer--links ul {
  padding: 0 60px;
}
footer .footer--links ul li {
  margin-bottom: 1vw;
}
footer .footer--social ul {
  display: flex;
}
footer .footer--social li {
  display: block;
  margin: 0 0.5rem;
}
footer .footer--social li a {
  width: 1.6vw;
  display: block;
}
footer .footer--social li a img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  footer {
    flex-direction: column;
    justify-content: center;
  }
  footer .footer--social ul {
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .footer--social ul a {
    width: 30px;
  }
  footer .footer--links {
    flex-direction: column;
  }
}
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  opacity: 0.65 !important;
  filter: alpha(opacity=65);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 32px;
  overflow: visible;
  background: #fff;
  border-radius: 24px;
}

.cboxIframe {
  background: #fff;
  border-radius: 24px;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  background: #fff;
  padding: 1px;
  border-radius: 24px;
}

#cboxLoadingGraphic {
  background: url(../img/loading.gif) no-repeat center center;
  border-radius: 24px;
}

#cboxLoadingOverlay {
  background: #fff;
  border-radius: 24px;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  background: url(../img/controls.png) no-repeat 0 0;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  background-position: 0px 0px;
  right: 44px;
}

#cboxPrevious:hover {
  background-position: 0px -25px;
}

#cboxNext {
  background-position: -25px 0px;
  right: 22px;
}

#cboxNext:hover {
  background-position: -25px -25px;
}

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px;
}

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px;
}

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px;
}

#cboxClose {
  position: absolute;
  top: -25px;
  right: 0;
  width: 25px;
  height: 25px;
  overflow: hidden;
  text-indent: -999px;
  border: 0;
  padding: 0;
  margin: 0;
  background: url("../img/close.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.5s;
}
#cboxClose:hover {
  transform: rotate(360deg);
}

#cboxContent {
  margin-top: 50px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 6px 0;
  font-weight: 700;
}

h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.4rem;
}

ul, ol {
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

fieldset {
  border: none;
  margin: 0;
  padding: 6px 0;
}
fieldset label {
  display: block;
  margin-bottom: 5px;
}

input[type=color], input[type=url], input[type=password], input[type=email], input[type=tel], input[type=number], input[type=text], input[type=search] {
  -webkit-appearance: none;
  padding: 6px 3px;
  border: 1px solid #999;
  font-family: "Roboto", sans-serif;
  color: #666;
}

select {
  padding: 6px 3px;
  border: 1px solid #999;
  border-radius: 0;
  height: 30px;
  font-family: "Roboto", sans-serif;
}

textarea {
  border: 1px solid #999;
}

input[type=submit],
input[type=reset],
input[type=button],
button,
button.btn,
button.btn-4,
button.btn-3,
button.btn-2,
.btn,
input[type=submit].btn-4,
input[type=reset].btn-4,
input[type=button].btn-4,
.btn-4,
input[type=submit].btn-3,
input[type=reset].btn-3,
input[type=button].btn-3,
.btn-3,
input[type=submit].btn-2,
input[type=reset].btn-2,
input[type=button].btn-2,
.btn-2 {
  display: inline-block;
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  text-decoration: none;
  border: 4px solid #d44436;
  padding: 0.5rem 1rem;
  margin-top: 5px;
  transition: all, 0.4s;
  background-color: #d44436;
  border-radius: 2rem;
  color: #fff;
}
input[type=submit]:focus, input[type=submit].focus,
input[type=reset]:focus,
input[type=reset].focus,
input[type=button]:focus,
input[type=button].focus,
button:focus,
button.focus,
button.btn:focus,
button.btn.focus,
.btn:focus,
.btn-4:focus,
.btn-3:focus,
.btn-2:focus,
.btn.focus,
.focus.btn-4,
.focus.btn-3,
.focus.btn-2 {
  color: #b13226;
  border-color: #b13226;
}
input[type=submit].disabled, input[type=submit]:disabled,
input[type=reset].disabled,
input[type=reset]:disabled,
input[type=button].disabled,
input[type=button]:disabled,
button.disabled,
button:disabled,
button.btn.disabled,
button.btn:disabled,
.btn.disabled,
.disabled.btn-4,
.disabled.btn-3,
.disabled.btn-2,
.btn:disabled,
.btn-4:disabled,
.btn-3:disabled,
.btn-2:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}
input[type=submit]:active, input[type=submit].active,
input[type=reset]:active,
input[type=reset].active,
input[type=button]:active,
input[type=button].active,
button:active,
button.active,
button.btn:active,
button.btn.active,
.btn:active,
.btn-4:active,
.btn-3:active,
.btn-2:active,
.btn.active,
.active.btn-4,
.active.btn-3,
.active.btn-2 {
  background-image: none;
}
input[type=submit]:focus, input[type=submit]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=button]:focus,
input[type=button]:hover,
button:focus,
button:hover,
button.btn:focus,
button.btn:hover,
.btn:focus,
.btn-4:focus,
.btn-3:focus,
.btn-2:focus,
.btn:hover,
.btn-4:hover,
.btn-3:hover,
.btn-2:hover {
  background-color: #41ACB5;
  border-color: #34888f;
  color: #fff;
}

input[type=submit].btn-2,
input[type=reset].btn-2,
input[type=button].btn-2,
button.btn-2,
.btn-2 {
  background-color: #fff;
  border-color: #fff;
  color: #41ACB5;
  padding: 9px 27px;
}
input[type=submit].btn-2:focus, input[type=submit].btn-2:hover,
input[type=reset].btn-2:focus,
input[type=reset].btn-2:hover,
input[type=button].btn-2:focus,
input[type=button].btn-2:hover,
button.btn-2:focus,
button.btn-2:hover,
.btn-2:focus,
.btn-2:hover {
  border-color: #26656a;
  background-color: #26656a;
}

input[type=submit].btn-3,
input[type=reset].btn-3,
input[type=button].btn-3,
button.btn-3,
.btn-3 {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
input[type=submit].btn-3:focus, input[type=submit].btn-3:hover,
input[type=reset].btn-3:focus,
input[type=reset].btn-3:hover,
input[type=button].btn-3:focus,
input[type=button].btn-3:hover,
button.btn-3:focus,
button.btn-3:hover,
.btn-3:focus,
.btn-3:hover {
  border-color: black;
  background-color: black;
  color: #fff;
}

input[type=submit].btn-4,
input[type=reset].btn-4,
input[type=button].btn-4,
button.btn-4,
.btn-4 {
  background-color: #41ACB5;
  border-color: #41ACB5;
  color: #fff;
}
input[type=submit].btn-4:focus, input[type=submit].btn-4:hover,
input[type=reset].btn-4:focus,
input[type=reset].btn-4:hover,
input[type=button].btn-4:focus,
input[type=button].btn-4:hover,
button.btn-4:focus,
button.btn-4:hover,
.btn-4:focus,
.btn-4:hover {
  background-color: #26656a;
}

.btn-block {
  display: block;
  text-align: center;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  background-color: #fff;
}
table th,
table td {
  padding: 0.75rem;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #000;
}
table thead th {
  vertical-align: bottom;
}
table tbody {
  border-top: none;
}

@media screen and (max-width: 786px) {
  table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
#wheel {
  width: 60vw;
  touch-action: none;
}
#wheel:before {
  content: " ";
  display: block;
  width: 105%;
  height: 105%;
  position: absolute;
  z-index: -1;
  top: -2.5%;
  left: -2.5%;
  background: url("../img/rad_wrapper.png") no-repeat center center;
  background-size: contain;
}
#wheel:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: -3vw 3vw 2vw rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1000px) {
  #wheel {
    width: 100vw;
    touch-action: none;
    position: fixed;
    top: -50vw;
    right: 0;
  }
}
@media screen and (min-width: 1001px) {
  #wheel {
    position: fixed;
    top: -20vw;
    right: -20vw;
  }
}
#wheel--pointer {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 30vw;
  left: -70px;
  background: url("../img/arrow.svg") no-repeat center center;
  background-size: contain;
  z-index: 10;
}

#wheel--rotate {
  background: url("../img/rad_bg.png") no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
  width: 60vw;
  height: 60vw;
  position: relative;
  touch-action: none;
}

@media screen and (max-width: 1000px) {
  #wheel--rotate {
    width: 100vw;
    height: 100vw;
  }
}
.st0 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  transition: all 0.2s;
}

a:hover .st0 {
  fill: #41ACB5;
}

.st2 {
  font-size: 80px;
}

.st3 {
  font-size: 71.5745px;
}

.st4 {
  font-size: 71.5722px;
}

.st5 {
  font-size: 71.5719px;
}

.st6 {
  font-size: 71.5711px;
}

#cakemarkers a {
  text-decoration: none;
}

.cakemarker {
  fill: #fff;
  transition: all, 0.4s;
}
.cakemarker:nth-child(1) {
  filter: url("#dropshadow1");
}

.cakemarker:nth-child(2) {
  filter: url("#dropshadow2");
}

.cakemarker:nth-child(3) {
  filter: url("#dropshadow3");
}

.cakemarker:nth-child(4) {
  filter: url("#dropshadow4");
}

.cakemarker:nth-child(5) {
  filter: url("#dropshadow5");
}

.cakemarker:nth-child(6) {
  filter: url("#dropshadow6");
}

.cakemarker:nth-child(7) {
  filter: url("#dropshadow7");
}

.cakemarker:nth-child(8) {
  filter: url("#dropshadow8");
}

.cakemarker:nth-child(9) {
  filter: url("#dropshadow9");
}

label {
  text-transform: uppercase;
}

.form-group,
fieldset {
  font-size: 0;
}

.form-group label,
fieldset label {
  display: block;
  margin: 0 1rem;
  font-size: 1.6rem;
  padding: 0.4rem 0;
  width: 20rem;
}

.form-group input,
fieldset.inline-button input {
  vertical-align: bottom;
}

#loginform label {
  width: 12rem;
}

input[type=color], input[type=url], input[type=password], input[type=email], input[type=tel], input[type=number], input[type=text], input[type=search] {
  border-bottom: 1px solid #41ACB5;
  width: 20rem;
  padding: 0.4rem 1rem;
  font-size: 1.6rem;
}
input[type=color]:focus, input[type=url]:focus, input[type=password]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=text]:focus, input[type=search]:focus {
  outline: 0;
}

select {
  border-bottom: 1px solid #41ACB5;
}

textarea {
  width: 30rem;
}

#loginform {
  width: 36rem;
  margin: 10rem auto;
}

header {
  width: 15vw;
  position: fixed;
  top: 0;
  left: 0;
}
header a {
  display: block;
  width: 100%;
}
header a img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  header {
    position: fixed;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1001px) {
  main {
    display: flex;
    justify-content: flex-end;
    background: url("../img/team.png") no-repeat bottom center;
    background-size: contain;
    padding-bottom: 20%;
  }
}
.content {
  color: #fff;
  width: 40vw;
  margin-right: 45vw;
  margin-left: 15vw;
  margin-top: 8vw;
  padding-left: 4vw;
  padding-bottom: 2rem;
  box-sizing: border-box;
  font-size: 1vw;
  font-weight: 300;
  overflow: auto;
  height: 100%;
}
.content h1 {
  font-size: 3vw;
  font-weight: 300;
  line-height: 1.2;
}
.content h1 strong {
  font-weight: 900;
}
.content h1 strong span {
  color: #d7e058;
}
.content h1:after {
  display: block;
  content: "-";
  font-weight: 900;
}
.content .stap {
  vertical-align: middle;
  margin-bottom: 1vw;
}
.content .stap:before {
  display: inline-block;
  vertical-align: middle;
  content: " ";
  background: url("../img/muis.svg") no-repeat left center;
  background-size: contain;
  width: 1.6vw;
  height: 1.6vw;
  margin-right: 1rem;
}
.content .stap1:before {
  background-image: url("../img/icon_1.svg");
}
.content .stap2:before {
  background-image: url("../img/icon_2.svg");
}
.content .stap3:before {
  background-image: url("../img/icon_3.svg");
}
.content .stap4:before {
  background-image: url("../img/icon_4.svg");
}

@media (max-width: 800px) {
  .stap {
    display: none;
  }
}
.popups {
  display: flex;
  margin-top: 1rem;
  display: flex;
}
.popups .popup1, .popups .popup2, .popups .popup3 {
  flex: 1;
}
.popups .popup1 a, .popups .popup2 a, .popups .popup3 a {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.48);
}
.popups .popup1 a:after, .popups .popup2 a:after, .popups .popup3 a:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  width: 3vw;
  height: 3vw;
  background: url("../img/icon_movie.svg") no-repeat center center;
  background-size: contain;
}
.popups .popup1 a img, .popups .popup2 a img, .popups .popup3 a img {
  border-radius: 10px;
  transition: all 0.3s;
}
.popups .popup1 a:hover img, .popups .popup2 a:hover img, .popups .popup3 a:hover img {
  transform: scale(1.2) rotate(5deg);
}
.popups .popup1 p, .popups .popup2 p, .popups .popup3 p {
  font-size: 1.4rem;
}
.popups .popup1, .popups .popup2 {
  padding-right: 30px;
}
.popups .popup2 a:after {
  background-image: url("../img/icon_why.svg");
}
.popups .popup3 a:after {
  background-image: url("../img/icon_download.svg");
}

.why {
  padding: 30px;
}
.why h2 {
  color: #41ACB5;
  font-weight: 900;
  font-size: 2.4rem;
}
.why h2:after {
  content: "-";
  display: block;
}
.why .why--content {
  display: flex;
  align-items: center;
  max-width: 700px;
}
.why .why--content .why--content--text,
.why .why--content .why--content--img {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.6;
  word-break: break-word;
  text-align: justify;
  box-sizing: border-box;
}
.why .why--content .why--content--img {
  padding: 20px;
}

@media screen and (max-width: 1000px) {
  body {
    overflow: hidden;
  }

  .content {
    width: 100vw;
    max-width: none;
    padding: 50vw 2rem 0 2rem;
    margin: 0;
  }
}

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