@charset "UTF-8";
/* 
Theme Name: Weiss
Theme URI: /
Description: Weiss Theme
Author: www.farbzirkel.com
Version: 1.0
Tags: farbzirkel
*/
.hidden {
  display: none;
  visibility: hidden;
}

.show {
  display: block;
  visibility: visible;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
 *    v2.0 | 20110126
 *       License: none (public domain)
 *       */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

::selection {
  background-color: #00331d; /* Hintergrundfarbe beim Markieren */
  color: #fcfcfc; /* Textfarbe beim Markieren */
}

html {
  scroll-behavior: smooth;
  background-color: #fcfcfc;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0 auto;
}

body {
  background-color: #fcfcfc;
  margin: 0;
}

@font-face {
  font-display: swap;
  font-family: "Fira Light";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/fira-sans-v17-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Fira Regular";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/fira-sans-v17-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Fira Medium";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/fira-sans-v17-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Fira SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/fira-sans-v17-latin-600.woff2") format("woff2");
}
/* 
Theme Name: Weiss
Theme URI: /
Description: Weiss Theme
Author: www.farbzirkel.com
Version: 1.0
Tags: farbzirkel
*/
@media (min-width: 75.0625rem) {
  main {
    padding-top: 80px; /* exakt die Höhe deines Headers */
  }
  .header {
    width: 100%;
    background-color: #fcfcfc;
    height: 80px;
    position: fixed;
    z-index: 200;
    display: flex;
    align-items: center;
  }
  .header .nav {
    display: none;
  }
  .header .header-inner {
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .header-inner .burger-menu {
    display: none;
  }
  .header .header-inner .menu-large {
    z-index: 199;
  }
  .header .header-inner .menu-large a {
    color: #252525;
    font-family: "Fira Regular";
    font-size: 1.5rem;
    text-decoration: none;
  }
  .header .header-inner .menu-large .menu-point {
    position: relative;
    font-size: 1.2rem;
    color: #252525;
    margin-right: 30px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
  }
  .header .header-inner .menu-large .menu-point::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: #007e48;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
  }
  .header .header-inner .menu-large .menu-point:hover {
    color: #007e48;
  }
  .header .header-inner .menu-large .menu-point.active::after {
    transform: scaleX(1);
  }
  .header .header-inner .menu-large #menu-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 2px #007e48 inset;
    padding: 10px 30px;
    border-radius: 30px;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
  }
  .header .header-inner .menu-large #menu-button .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #007e48;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 30px;
    z-index: 0;
  }
  .header .header-inner .menu-large #menu-button .text {
    position: relative;
    color: #007e48;
    font-size: 1rem;
    font-family: "Fira Medium";
    text-transform: uppercase;
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .header .header-inner .menu-large #menu-button:hover .fill {
    transform: scaleX(1);
  }
  .header .header-inner .menu-large #menu-button:hover .text {
    color: #fcfcfc;
  }
  .menu-mobile {
    display: none;
  }
  .dropdown {
    position: fixed;
    background-color: #ededed;
    padding-top: 80px;
    z-index: 199;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .dropdown.show {
    max-height: 45rem;
  }
  .dropdown .dropdown-inner {
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: column;
    gap: 1rem;
    padding-top: 40px;
  }
  .dropdown .dropdown-inner a {
    position: relative;
    font-family: "Fira Regular";
    text-decoration: none;
    font-size: 2.2rem;
    color: #252525;
    margin-bottom: 15px;
    display: inline-block;
    width: max-content;
    transition: color 0.3s ease-in-out;
  }
  .dropdown .dropdown-inner a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: #007e48;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
  }
  .dropdown .dropdown-inner a:hover::after {
    transform: scaleX(1);
  }
  .dropdown .dropdown-legals {
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 40px 0 20px;
  }
  .dropdown .dropdown-legals a {
    color: #252525;
    font-family: "Fira Light";
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .dropdown .dropdown-legals a:hover {
    color: #007e48;
  }
  .dropdown .dropdown-legals .divider-legals {
    padding: 0 5px;
  }
}
/* 
Theme Name: Weiss
Theme URI: /
Description: Weiss Theme
Author: www.farbzirkel.com
Version: 1.0
Tags: farbzirkel
*/
@media (min-width: 0rem) and (max-width: 75rem) {
  .header {
    width: 100%;
    background-color: #fcfcfc;
    padding-top: 2px;
    position: fixed;
    z-index: 200;
  }
  .header .header-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .header-inner .menu-large {
    display: none;
  }
  .header .header-inner .burger-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header .header-inner .burger-menu .menu-icon {
    transform: scale(1.5);
  }
  .header .header-inner .menu-icon {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .header .header-inner .menu-icon__cheeckbox {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    -webkit-touch-callout: none;
  }
  .header .header-inner .menu-icon div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 22px;
    height: 12px;
  }
  .header .header-inner .menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bar-bg, #007e48);
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
  }
  .header .header-inner .menu-icon span:first-of-type {
    top: 0;
  }
  .header .header-inner .menu-icon span:last-of-type {
    bottom: 0;
  }
  .header .header-inner .menu-icon.active span:first-of-type, .header .header-inner .menu-icon__cheeckbox:checked + div span:first-of-type {
    transform: rotate(45deg);
    top: 5px;
  }
  .header .header-inner .menu-icon.active span:last-of-type, .header .header-inner .menu-icon__cheeckbox:checked + div span:last-of-type {
    transform: rotate(-45deg);
    bottom: 5px;
  }
  .header .header-inner .menu-icon.active:hover span, .header .header-inner .menu-icon:hover .header .header-inner .menu-icon__cheeckbox:checked + div span {
    width: 22px;
  }
  .menu-mobile {
    position: fixed;
    z-index: 199;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #ededed;
    background-image: url(../../images/weiss-menu-background.svg);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .menu-mobile.open {
    display: flex;
  }
  .menu-mobile .social-icons-mobile-menu {
    width: 90%;
    margin: 0 auto;
  }
  .menu-mobile .social-icons-mobile-menu p {
    font-family: "Fira Light";
    color: #007e48;
    font-size: 0.7rem;
    padding-bottom: 10px;
  }
  .menu-mobile .social-icons-mobile-menu .social-icons-mobile-menu-wrapper {
    width: 200px;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
  .menu-mobile .social-icons-mobile-menu .social-icons-mobile-menu-wrapper a {
    text-decoration: none;
  }
  .menu-mobile .social-icons-mobile-menu .social-icons-mobile-menu-wrapper a svg {
    width: 30px;
    height: 30px;
  }
  .menu-mobile .menu-mobile-wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    padding: 15dvh 0;
  }
  .menu-mobile .menu-block {
    display: flex;
    flex-direction: column;
  }
  .menu-mobile .menu-block .menu-point {
    font-family: "Fira Regular";
    color: #252525;
    text-decoration: none;
    font-size: 2rem;
    padding: 1rem 0;
  }
  .menu-mobile .menu-block .dropdown-mobile {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
  }
  .menu-mobile .menu-block .dropdown-mobile a {
    font-family: "Fira Regular";
    font-size: 1.5rem;
    color: #252525;
    padding: 0.8rem 0;
    text-decoration: none;
  }
  .dropdown {
    display: none;
  }
}
/* 
Theme Name: Weiss
Theme URI: /
Description: Weiss Theme
Author: www.farbzirkel.com
Version: 1.0
Tags: farbzirkel
*/
@media (min-width: 75.0625rem) {
  footer {
    background-color: #007e48;
  }
  footer p {
    text-align: center;
    color: #fcfcfc;
    font-family: "Fira Regular";
    font-size: 0.8rem;
    padding-bottom: 30px;
    padding-top: 10px;
  }
  footer .copyright-footer {
    text-align: center;
  }
  footer .footer-wrapper {
    padding-top: 30px;
    width: 90%;
    margin: 0 auto;
    max-width: 1700px;
    display: flex;
    justify-content: space-between;
  }
  footer .footer-wrapper .footer-column1 {
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper {
    width: 40%;
    display: flex;
    justify-content: space-between;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper a {
    text-decoration: none;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper a svg {
    width: 30px;
    height: 30px;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper a svg path {
    transition: 0.3s ease all;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper a:hover svg path {
    fill: #00331d;
  }
  footer .footer-wrapper .footer-column2 {
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer-wrapper .footer-column2 a {
    position: relative;
    text-decoration: none;
    color: #fcfcfc;
    font-family: "Fira Regular";
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  footer .footer-wrapper .footer-column2 a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #fcfcfc;
    transition: width 0.3s ease;
  }
  footer .footer-wrapper .footer-column2 a:hover::after {
    width: 100%;
  }
  footer .footer-wrapper .footer-column3 {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  footer .footer-wrapper .footer-column3 a img {
    width: 115px;
    transition: 0.3s ease all;
  }
  footer .footer-wrapper .footer-column3 a:hover img {
    width: 120px;
  }
}
/* 
Theme Name: Weiss
Theme URI: /
Description: Weiss Theme
Author: www.farbzirkel.com
Version: 1.0
Tags: farbzirkel
*/
@media (min-width: 0rem) and (max-width: 75rem) {
  footer {
    background-color: #007e48;
  }
  footer p {
    text-align: center;
    color: #fcfcfc;
    font-family: "Fira Regular";
    font-size: 0.8rem;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  footer .copyright-footer {
    text-align: center;
  }
  footer .footer-wrapper {
    padding-top: 40px;
    width: 230px;
    margin: 0 auto;
  }
  footer .footer-wrapper .footer-column1 {
    padding-bottom: 25px;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper {
    display: flex;
    justify-content: space-between;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper a {
    text-decoration: none;
  }
  footer .footer-wrapper .footer-column1 .footer-column1-wrapper a svg {
    width: 30px;
    height: 30px;
  }
  footer .footer-wrapper .footer-column2 {
    text-align: center;
  }
  footer .footer-wrapper .footer-column2 a {
    display: block;
    text-decoration: none;
    color: #fcfcfc;
    font-family: "Fira Regular";
    font-size: 1.2rem;
    padding-bottom: 15px;
  }
  footer .footer-wrapper .footer-column3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 5px;
  }
  footer .footer-wrapper .footer-column3 a img {
    width: 115px;
  }
}

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