* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  box-sizing: border-box; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(7, 35, 58, 0.7); }

::-webkit-scrollbar-thumb {
  background-color: #424242; }

html {
  scroll-behavior: smooth; }

body {
  padding-top: 80px;
  background: #141414; }

#top {
  background: #141414;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  box-sizing: border-box;
  align-items: center;
  position: fixed;
  top: 0;
  box-shadow: 0px 2px 5px rgba(66, 66, 66, 0.4);
  z-index: 2; }
  #top .logo {
    width: 75px;
    height: 75px;
    background: url(../../images/logo.png) no-repeat;
    background-size: contain; }
  #top .burger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    overflow: hidden;
    cursor: pointer; }
    #top .burger div {
      width: 40px;
      height: 4px;
      background: #fefefe;
      border-radius: 4px;
      position: absolute;
      transition: .5s; }
      #top .burger div:nth-child(1) {
        transform: translateY(-10px);
        width: 25px;
        left: 15px; }
      #top .burger div:nth-child(2) {
        transform: translateY(10px);
        width: 15px;
        left: 15px; }
    #top .burger.active div:nth-child(1) {
      width: 40px;
      transform: translateY(0px) rotate(45deg);
      background: #fefefe; }
    #top .burger.active div:nth-child(2) {
      width: 40px;
      transform: translateY(0px) rotate(-45deg);
      background: #fefefe; }
    #top .burger.active div:nth-child(3) {
      transform: translateX(60px); }
  @media (min-width: 768px) {
    #top {
      background: rgba(20, 20, 20, 0.7); }
      #top .burger {
        display: none; } }

.cta-button {
  display: inline-block;
  font-size: 24px;
  padding: 5px 10px;
  border: 2px solid #141414;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s linear; }
  .cta-button:hover {
    background-color: #0692a2;
    color: #fefefe;
    border: 2px solid #0692a2; }

@media (min-width: 768px) {
  .cta-button {
    font-size: 30px;
    padding: 10px 20px; } }

.image-holder {
  padding: 1px;
  box-sizing: border-box;
  width: 100%; }
  .image-holder .image-wrapper {
    overflow: hidden;
    height: 300px;
    position: relative; }
    .image-holder .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.2s ease-in-out; }
      .image-holder .image-wrapper img:hover {
        transform: scale(1.2); }

.gallery {
  display: flex;
  flex-wrap: wrap;
  background-color: #fefefe; }

@media (min-width: 425px) {
  .image-holder {
    width: 50%; } }

@media (min-width: 768px) {
  .image-holder {
    width: 33.3%; } }

@media (min-width: 1024px) {
  .image-holder {
    width: 25%; } }

#main-menu {
  display: none; }
  #main-menu li {
    color: #fefefe;
    list-style: none;
    position: relative; }
    #main-menu li:hover .sub-menu {
      display: flex;
      flex-direction: column;
      align-items: center; }
    #main-menu li .sub-menu {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate3d(-50%, 100%, 0);
      width: 100%;
      background-color: rgba(20, 20, 20, 0.8); }
      #main-menu li .sub-menu li {
        width: 100%; }
        #main-menu li .sub-menu li a {
          display: flex;
          justify-content: center;
          padding: 15px 5px; }
  #main-menu li.order-menu {
    cursor: pointer; }
    #main-menu li.order-menu:hover .underline, #main-menu li.order-menu.active .underline {
      opacity: 1;
      bottom: 25%; }
    #main-menu li.order-menu .underline {
      opacity: 0;
      position: absolute;
      height: 2px;
      width: calc(100% - 30px);
      background-color: #fefefe;
      bottom: 30%;
      left: 50%;
      transform: translate3d(-50%, 0, 0);
      transition: bottom 0.2s linear, opacity 0.1s linear; }
  #main-menu a,
  #main-menu span {
    display: flex;
    color: #fefefe;
    position: relative; }
    #main-menu a:hover .underline, #main-menu a.active .underline,
    #main-menu span:hover .underline,
    #main-menu span.active .underline {
      opacity: 1;
      bottom: 25%; }
    #main-menu a .underline,
    #main-menu span .underline {
      opacity: 0;
      position: absolute;
      height: 2px;
      width: calc(100% - 30px);
      background-color: #fefefe;
      bottom: 30%;
      left: 50%;
      transform: translate3d(-50%, 0, 0);
      transition: bottom 0.2s linear, opacity 0.1s linear; }

.sub-menu {
  display: none; }
  .sub-menu li {
    color: #fefefe;
    list-style: none; }
    .sub-menu li a,
    .sub-menu li span {
      display: flex;
      color: #fefefe; }

#mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #424242;
  border-top: 1px solid #424242;
  box-shadow: 0px 2px 5px rgba(66, 66, 66, 0.4);
  z-index: 10; }
  #mobile-menu .sub-menu a {
    padding-left: 35px; }
  #mobile-menu li {
    color: #fefefe;
    list-style: none; }
    #mobile-menu li.order-menu {
      display: flex;
      color: #fefefe;
      font-size: 20px;
      padding: 15px 20px;
      cursor: pointer; }
    #mobile-menu li a,
    #mobile-menu li span {
      display: flex;
      color: #fefefe;
      font-size: 20px;
      padding: 15px 20px; }
    #mobile-menu li .sub-menu-header {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      position: relative;
      text-decoration: none;
      color: #fefefe;
      cursor: pointer; }
      #mobile-menu li .sub-menu-header .material-icons {
        font-size: 36px; }

@media (min-width: 768px) {
  #main-menu {
    display: flex;
    align-items: center; }
    #main-menu > li.order-menu {
      display: flex;
      align-items: center;
      height: 80px;
      padding: 0 15px; }
    #main-menu > li > a {
      display: flex;
      align-items: center;
      height: 80px;
      padding: 0 15px; }
  #mobile-menu {
    display: none; } }

.video-container {
  max-height: 700px;
  position: relative; }
  .video-container video {
    width: 100%;
    height: 100%;
    max-height: inherit;
    object-fit: cover; }
  .video-container .overlay {
    background: linear-gradient(to bottom, transparent, 93%, #141414);
    position: absolute;
    width: 100%;
    height: 100%; }

.content-header {
  height: 150px; }
  .content-header.contact-header {
    background-image: url("../../images/contact.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .content-header.info-header {
    background-image: url("../../images/delivery.png");
    background-repeat: no-repeat;
    background-size: 240px;
    background-position: center;
    background-color: #fefefe; }
  .content-header.order-header {
    background-image: url("../../images/rekesz.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .content-header.dispenser-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #616161; }
  .content-header.product-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    .content-header.product-header.mineral {
      background-image: url("../../images/rekesz.jpg"); }
    .content-header.product-header.sil {
      background-image: url("../../images/ballon.jpg"); }
  .content-header.gallery-header {
    background-image: url("../../images/gallery.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .content-header .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6); }
    .content-header .overlay h2 {
      font-size: 43px;
      font-weight: bold;
      color: white; }

.third {
  width: 100%; }

.two-third {
  width: 100%; }

.half {
  width: 100%; }

.parallax {
  min-height: 200px; }

#content .introduction {
  display: flex;
  flex-wrap: wrap; }
  #content .introduction.reverse {
    flex-direction: column-reverse; }
  #content .introduction.banner {
    justify-content: center;
    min-height: 300px; }
  #content .introduction .intro-1 {
    background-image: url("../../images/intro1.png");
    box-shadow: inset -17px -1px 30px rgba(0, 0, 0, 0.7); }
  #content .introduction .intro-2 {
    background-image: url("../../images/vizek.jpg");
    box-shadow: inset 17px 1px 30px rgba(0, 0, 0, 0.7); }
  #content .introduction .parallax {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-out; }

#content .contact {
  display: flex;
  flex-wrap: wrap; }
  #content .contact.reverse {
    flex-direction: column-reverse; }
  #content .contact .map {
    min-height: 841px; }
    #content .contact .map iframe {
      height: 841px;
      width: 100%; }
  #content .contact .opening-hours img {
    width: 100%; }

#content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #fefefe; }
  #content .text.card {
    background-color: #141414; }
    #content .text.card h2 {
      color: #fefefe; }
    #content .text.card p {
      color: #fefefe;
      text-align: left;
      justify-content: flex-start; }
  #content .text h2 {
    font-size: 29px;
    line-height: 1.2;
    color: #424242;
    margin-bottom: 20px;
    text-decoration: underline; }
  #content .text p {
    font-size: 17px;
    line-height: 1.75;
    color: #424242;
    display: flex;
    width: 100%;
    justify-content: center; }
  #content .text .contact-info {
    display: flex;
    align-items: center;
    font-size: 17px;
    line-height: 1.75; }
    #content .text .contact-info .material-icons {
      margin-right: 10px;
      color: #424242; }

#content .product .text .price {
  margin-left: 10px;
  display: block;
  text-align: right;
  color: #0692a2;
  font-size: 24px;
  min-width: 25%;
  flex-grow: 2; }

#content .product .text .price-desc {
  flex-wrap: wrap; }
  #content .product .text .price-desc span {
    display: block;
    text-align: center;
    width: 100%; }

#content .product .text .order-now {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px; }

#content .impressum {
  align-items: flex-start; }
  #content .impressum ul {
    margin-bottom: 20px; }
    #content .impressum ul li {
      list-style: none;
      font-size: 18px; }
  #content .impressum a {
    color: #18dff6; }

#content .delivery-info {
  align-items: flex-start; }
  #content .delivery-info h2 {
    font-weight: bold;
    margin: 0;
    width: 130px; }
  #content .delivery-info div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin: 20px auto 0 auto; }
  #content .delivery-info span {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 20px; }

#content .thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  font-size: 26px;
  font-weight: bold; }

#content .order-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }
  #content .order-form textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #141414; }
  #content .order-form select {
    width: 100%;
    padding: 10px 20px;
    font-size: 24px;
    margin-top: 10px;
    border: 1px solid #141414; }
  #content .order-form label {
    margin-top: 10px;
    width: 100%; }
    #content .order-form label input {
      width: 100%; }
  #content .order-form .form-section {
    border: 1px solid #141414;
    margin-bottom: 20px; }
    #content .order-form .form-section .section-content {
      padding: 10px;
      background-color: #fefefe;
      display: flex;
      justify-content: center;
      flex-wrap: wrap; }
    #content .order-form .form-section input {
      padding: 10px 5px;
      width: 100%;
      border: 1px solid #141414; }
      #content .order-form .form-section input[type="checkbox"] {
        transform: scale(2); }
  #content .order-form .button {
    margin-top: 20px;
    display: inline-block;
    font-size: 24px;
    padding: 5px 10px;
    border: 2px solid #141414;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s linear; }
    #content .order-form .button:hover {
      background-color: #0692a2;
      color: #fefefe;
      border: 2px solid #0692a2; }
  #content .order-form .section-header {
    padding: 10px;
    background-color: #141414;
    color: #fefefe;
    display: flex;
    width: 100%;
    font-size: 24px;
    font-weight: bold; }
  #content .order-form .product_entry {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between; }
    #content .order-form .product_entry:first-of-type {
      padding-top: 0; }
    #content .order-form .product_entry:not(:first-of-type) {
      border-top: 1px solid #141414; }
    #content .order-form .product_entry:last-of-type {
      padding-bottom: 0; }
    #content .order-form .product_entry label {
      display: block; }
    #content .order-form .product_entry .highlight {
      display: block;
      margin-left: 10px;
      color: #18dff6;
      font-weight: bold;
      font-size: 24px; }
    #content .order-form .product_entry .partial-amount {
      display: flex;
      margin-top: 10px;
      align-items: center; }
    #content .order-form .product_entry .product-text {
      font-weight: bold; }
    #content .order-form .product_entry .product-data {
      flex-shrink: 10; }
    #content .order-form .product_entry .delete-product {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fefefe;
      font-size: 36px;
      background-color: #c00;
      width: 60px;
      margin-left: 10px;
      cursor: pointer; }
  #content .order-form .total-price {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold; }
  #content .order-form .amount {
    color: #18dff6;
    display: block;
    margin-left: 5px; }
  #content .order-form .submit-button {
    margin: 0; }

#content .contact-order {
  background-color: #b2b2b2;
  padding: 30px; }

#order-popup {
  display: none;
  position: fixed;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background-color: #fefefe;
  border: 1px solid #141414;
  padding: 20px;
  width: 100%; }
  #order-popup p {
    margin-top: 18px;
    margin-bottom: 18px; }
  #order-popup ul {
    padding-left: 40px; }
  #order-popup #understood {
    margin-left: 10px;
    padding: 10px;
    transform: scale(1.5); }
  #order-popup #google-link {
    display: none;
    justify-content: center; }
    #order-popup #google-link a {
      color: #141414; }
      #order-popup #google-link a:hover {
        color: #fefefe; }
  #order-popup .close-popup {
    position: absolute;
    right: 0;
    top: -15px;
    cursor: pointer; }
    #order-popup .close-popup span {
      background-color: #141414;
      color: #fefefe;
      height: 30px;
      width: 30px;
      border-radius: 100%;
      font-size: 20px;
      line-height: 29px;
      text-align: center; }

@media (min-width: 768px) {
  #content.main {
    margin-top: -80px; }
  .third {
    width: calc(100% / 3); }
  .two-third {
    width: calc(100% / 3 * 2); }
  .half {
    width: 50%; }
  .parallax {
    min-height: 500px; }
  #content .delivery-info {
    align-items: flex-start; }
    #content .delivery-info h2 {
      font-weight: bold;
      margin: 0; }
    #content .delivery-info div {
      display: flex;
      justify-content: flex-start;
      width: 70%;
      margin: 20px auto 0 auto; }
    #content .delivery-info span {
      display: flex;
      align-items: center;
      margin-left: 20px;
      font-size: 20px; }
  #content .introduction.reverse {
    flex-direction: row; }
  #content .contact.reverse {
    flex-direction: row; }
  #content .product {
    min-height: 700px; }
    #content .product.dispenser {
      background-position: 50% 0;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden; }
      #content .product.dispenser.extended .text {
        width: 1400px;
        min-height: 1400px;
        max-width: 120%; }
      #content .product.dispenser .order-now {
        bottom: -100px; }
    #content .product .description {
      display: flex;
      align-items: center;
      justify-content: center; }
      #content .product .description.new-section {
        margin-top: 20px; }
    #content .product .text {
      padding: 50px;
      position: absolute;
      right: 0;
      top: 0;
      border-radius: 50%;
      width: 1200px;
      min-height: 1200px;
      transform: translate3d(25%, -30%, 0);
      box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.6); }
      #content .product .text .floating-text {
        position: absolute;
        width: 66%;
        top: 50%;
        transform: translate3d(0, -45%, 0);
        left: 5%; }
        #content .product .text .floating-text p {
          text-align: justify; }
        #content .product .text .floating-text .order-now {
          margin-top: 20px;
          position: absolute;
          width: 75%;
          left: 16%;
          justify-content: flex-start; }
        #content .product .text .floating-text .contact-info {
          justify-content: center; }
          #content .product .text .floating-text .contact-info:first-of-type {
            margin-top: 20px; }
      #content .product .text .price-desc {
        flex-wrap: nowrap; }
        #content .product .text .price-desc span {
          display: inline-block;
          text-align: justify;
          width: auto; }
          #content .product .text .price-desc span.price {
            text-align: right; }
  #content .thanks {
    height: 600px;
    font-size: 54px; }
  #order-popup {
    width: 90%; }
    #order-popup .close-popup {
      right: -15px; } }

footer .small-footer {
  display: flex;
  justify-content: space-between;
  color: #fefefe;
  background: black;
  padding: 20px; }
  footer .small-footer * {
    width: 33%;
    color: #fefefe; }
    footer .small-footer *:nth-child(2) {
      text-align: center; }
    footer .small-footer *:nth-child(3) {
      text-align: right; }
