:root {
    --red: #c2001d;
    --grey: #717776;
    --grey-light: #c5c5c5;
    --grey-dark: #565656;
    --black: #000000;
    --white: #ffffff;
}

@font-face {
    font-family: "Lato";
    src: url("../Fonts/Lato/Lato-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Lato";
    src: url("../Fonts/Lato/Lato-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Lato";
    src: url("../Fonts/Lato/Lato-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
/*@font-face {
    font-family: "Lato";
    src: url("../Fonts/Lato/Lato-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}*/
@font-face {
    font-family: "Lato";
    src: url("../Fonts/Lato/Lato-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

body .productworld {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    background-color: var(--white);
    color: var(--grey-dark);
    line-height: 1.4;
}
body .productworld .text p {
    line-height: 1.5;
}

.accent {
    color: var(--red);
}

.bg-red {
    background-color: var(--red);
    color: var(--white);
}
.bg-red .accent {
    color: var(--black);
}

.bg-dark {
    background-color: var(--grey-dark);
    color: var(--white);
}
.bg-dark .accent {
    color: var(--red);
}

.minH-500 {
    min-height: 500px;
}

.banner {
    padding-bottom: 5em;
}
.banner p {
    max-width: 72ch;
}

.banner-with-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60vh;
    min-height: 32em;
}
@media (max-width: 1400px) {
    .banner-with-image {
        min-height: 32em;
        height: 80vh;
    }
}
@media (max-width: 992px) {
    .banner-with-image {
        height: 80vh;
    }
}
@media (max-width: 768px) {
    .banner-with-image {
        flex-direction: column;
        height: auto;
    }
}
.banner-with-image a {
    color: var(--white);
}
.banner-with-image > * {
    flex: 1;
    height: 100%;
}
.banner-with-image .banner-with-image__image {
    position: relative;
}
.banner-with-image .banner-with-image__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /*filter: invert(1);*/
}
.banner-with-image .banner-with-image__image .product-title {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 1.6rem);
    line-height: 1;
    font-weight: 700;
    top: 20%;
    left: 0;
    color: var(--white);
    background-color: var(--red);
    padding: 1em 4em 1em 1em;
    clip-path: polygon(0 0%, 100% 0%, 85% 100%, 0% 100%);
    z-index: 2;
    width: 90%;
}
@media (min-width: 800px) {
    .banner-with-image .banner-with-image__image .product-title {
        width: 100%;
        max-width: 80%;
    }
}
.banner-with-image .banner-with-image__content {
    padding: 5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    position: relative;
}
.banner-with-image .banner-with-image__content .small-title {
    text-transform: uppercase;
}
.banner-with-image .banner-with-image__content .text-big {
    margin-top: auto;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}
.banner-with-image .banner-with-image__content .heading {
    font-size: 2rem;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.banner-with-image .banner-with-image__content .text p {
    font-weight: 300;
    max-width: 72ch;
    margin: 0;
    padding: 0;
}
.banner-with-image .banner-with-image__content .link {
    color: var(--white);
    display: block;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
    margin-top: 2rem;
    padding: 0.5em 3em 0.5em 1em;
    font-size: 1.5rem;
    clip-path: polygon(0 0%, 100% 0%, 85% 100%, 0% 100%);
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--red);
    cursor: pointer;
}
.banner-with-image .banner-with-image__content .link:hover {
    background-color: var(--white);
    color: var(--red);
}

.pseudobutton {
    padding: 0.5em 1em 0.5em 0;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    z-index: 3;
    width: fit-content;
    position: relative;
    background-color: var(--red);
    margin-top: 5rem;
    cursor: pointer;
}
.pseudobutton::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 2rem solid var(--red);
    border-bottom: 4.45rem solid transparent;
    border-top: 0px solid transparent;
}
.pseudobutton::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: 0;
    width: 55%;
    height: 100%;
    z-index: -1;
    background-color: var(--red);
}

.product-header {
    height: 50vh;
    position: relative;
    overflow: hidden;
}
@media (min-width: 992px) {
    .product-header {
        height: 70vh;
    }
}
.product-header .product-header-image {
    position: absolute;
    top: calc(clamp(1.5rem, 3vw, 2.5rem) + 2.5rem);
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding-bottom: 2rem;
}
.product-header .product-header-image img {
    height: 120%;
    filter: grayscale(100%);
    object-fit: cover;
    object-position: center;
}
.product-header .product-header-title {
    position: absolute;
    top: 0%;
    left: 0;
    min-width: 50%;
    background-color: var(--red);
    color: var(--white);
    padding: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    clip-path: polygon(0 0%, 100% 0%, 85% 100%, 0% 100%);
    z-index: 3;
}
@media (min-width: 768px) {
    .product-header .product-header-title {
        top: 0%;
        clip-path: polygon(0 0%, 100% 0%, 90% 100%, 0% 100%);
    }
}

.product-single-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /*padding: 5rem 0; */
}
@media (min-width: 768px) {
    .product-single-text-wrapper {
        flex-direction: row;
    }
}
.product-single-text-wrapper > * {
    flex: 1;
}
.product-single-text-wrapper .product-single-text-image {
    position: relative;
}
.product-single-text-wrapper .product-single-text-image img {
    display: block;
    width: 80%;
    object-position: center;
    margin: 0 auto;
    margin-bottom: 2rem;
}
@media (min-width: 1200px) {
    .product-single-text-wrapper .product-single-text-image img {
        margin-left: unset;
    }
}
.product-single-text-wrapper .product-single-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--red);
}
.product-single-text-wrapper .product-single-text-content {
    line-height: 1.5;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}
@media (min-width: 1200px) {
    .product-single-text-wrapper .product-single-text-content {
        padding: 0;
    }
}

.product-single-text-wrapper .product-single-text-content h4 {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.125rem;
}
.product-single-text-wrapper .product-single-text-content h4 + p {
    margin: 0;
}

.product-wrapper {
    display: flex;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}
.product-wrapper .product-item {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@media (min-width: 992px) {
    .product-wrapper .product-item {
        flex-direction: row;
    }
}
.product-wrapper .product-item > * {
    flex: 1;
}
.product-wrapper .product-item .product-image {
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}
.product-wrapper .product-item .product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--white);
    z-index: 1;
}
.product-wrapper .product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: transform 3s;
}
.product-wrapper .product-item .product-image .product-title {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 1.6rem);
    line-height: 1;
    font-weight: 700;
    top: 20%;
    left: 0;
    color: var(--white);
    background-color: var(--red);
    padding: 1em 4em 1em 1em;
    clip-path: polygon(0 0%, 85% 0%, 100% 100%, 0% 100%);
    z-index: 2;
    min-width: 74%;
}
.product-wrapper .product-item .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    color: var(--black);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.product-wrapper .product-item .product-content p {
    padding: 10% 10%;
    z-index: 2;
}
@media (min-width: 768px) {
    .product-wrapper .product-item .product-content p {
        padding: 0 20%;
    }
}
.product-wrapper .product-item .product-content::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--red);
    transition: all 0.3s;
    color: var(--white);
}
.product-wrapper .product-item:nth-child(even) {
    flex-direction: column;
}
@media (min-width: 992px) {
    .product-wrapper .product-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}
.product-wrapper .product-item:nth-child(even) .product-title {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    left: unset;
    right: 0;
    padding: 1em 1em 1em 4em;
}
.product-wrapper .product-item.active .product-content,
.product-wrapper .product-item:hover .product-content {
    color: var(--white);
}
.product-wrapper .product-item.active .product-content::before,
.product-wrapper .product-item:hover .product-content::before {
    top: 0%;
}
.product-wrapper .product-item.active .product-image img,
.product-wrapper .product-item:hover .product-image img {
    transform: scale(1.2);
}
.product-wrapper .product-item.active .pseudobtn,
.product-wrapper .product-item:hover .pseudobtn {
    background-color: var(--white);
    color: var(--red);
}
.product-wrapper .pseudobtn {
    display: block;
    margin-left: auto;
    margin-right: 20%;
    color: var(--white);
    background-color: var(--red);
    padding: 0.75em 1em;
    text-transform: uppercase;
    font-weight: 700;
    isolation: isolate;
    z-index: 6;
}
@media (min-width: 768px) {
    .product-wrapper .pseudobtn {
        margin-top: 2rem;
    }
}

.banner-kontakt {
    position: relative;
    overflow: hidden;
    background-color: var(--red);
}

.up .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}
.up .container > * {
    flex: 1;
}
@media (min-width: 508px) {
    .up .container {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .up .container {
        padding-top: 0;
        align-items: center;
        flex-direction: row;
    }
}
.up .k {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 20%;
    transform: translateY(-50%);
    width: 75%;
}
@media (min-width: 508px) {
    .up .k {
        width: 30%;
    }
}
@media (min-width: 992px) {
    .up .k {
        width: 20%;
    }
}
.up .k svg g {
    fill: rgba(0, 0, 0, 0.0666666667);
}
.up .info, .up .banner-contact-content {
    align-self: flex-start;
    padding-bottom: 5%;
    margin-left: 10%;
    color: var(--white);
    z-index: 2;
}
@media (min-width: 768px) {
    .up .info {
        align-self: flex-end;
    }
    .up .banner-contact-content {
        align-self: center;
    }
}
.up .banner-contact-content p {
    color: var(--white);
}
.up .info p {
    font-weight: 200;
    margin: 0;
    padding: 0;
}
.up .info .bold {
    font-weight: 900;
}
.up .info .tel {
    margin-top: 1em;
}
.up .info .mail a {
    font-weight: 200;
    color: var(--white);
}
.up .info .mail a:hover, .up .info .mail a:focus,
.up .banner-contact-content a:hover, .up .banner-contact-content a:focus {
    color: var(--white);
    text-decoration: underline;
}
.up .person-image {
    width: 45vw;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .up .person-image {
        width: 35vw;
    }
}
@media (min-width: 1200px) {
    .up .person-image {
        width: 25vw;
        max-width: 500px;
    }
}
.up .person-image img {
    width: 100%;
    display: block;
}

.down {
    background-color: var(--grey-dark);
    color: var(--white);
    padding: max(2rem, 2%) 0;
}
.down .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .down .inner {
        padding: 2rem;
        flex-direction: row;
        justify-content: space-between;
    }
}
.down .inner > * {
    flex: 1;
}
.down .text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
}
.down .link-btn {
    color: var(--white);
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5em 1em;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--red);
    cursor: pointer;
    position: relative;
}
@media (min-width: 768px) {
    .down .link-btn {
        padding: 0.5em 1em 0.5em 3em;
        margin-left: 20%;
    }
    .down .link-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 100vmax;
        height: 100%;
        background-color: var(--red);
        box-shadow: 0 100vmax 0 0 var(--red);
        clip-path: inset(0 -100vmax);
        z-index: 5;
    }
    .down .link-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        aspect-ratio: 1/1.3;
        height: 100%;
        background-color: var(--grey-dark);
        clip-path: polygon(100% 101%, -1% 0, -1% 100%);
        z-index: 5;
    }
}

.product-single-text-content h2, .product-single-text-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--red);
}
ul.product-list {
    list-style: none;
    padding: 0 0 2rem 0;
}
ul.product-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.35em;
    padding-left: 2rem;
}
ul.product-list li::before {
    position: absolute;
    display: block;
    content: "•";
    text-indent: -999999px;
    top: 0.35em;
    left: 0;
    width: 16px;
    height: 12px;
    background-color: var(--red);
    border-radius: 0;
    transform: skewX(-35deg);
    flex-shrink: 0;
}
ul.product-list li {
    font-size: 1.2rem;
    line-height: 1.4;
}
ul.product-list li a {
    color: var(--grey-dark);
}

.productworld .ColumnContainer--red ul.product-list li::before,
.productworld .ColumnContainer--grey-dark ul.product-list li::before {
    background-color: var(--white);
}
.productworld .ColumnContainer--third .ColumnContainer__column--first {
    padding-left: 0;
    width: 31.33%;
    float: left;
    margin: 0 10px;
}
.productworld .ColumnContainer--third .ColumnContainer__column--second,
.productworld .ColumnContainer--third .ColumnContainer__column--third {
    padding-left: 0;
    padding-right: 0;
    width: 31.33%;
    float: left;
    margin: 0 10px;
}
.productworld .ColumnContainer--quarter .ColumnContainer__column--first {
    padding-left: 0;
    width: 23.3%;
}
.productworld .ColumnContainer--quarter .ColumnContainer__column--second,
.productworld .ColumnContainer--quarter .ColumnContainer__column--third,
.productworld .ColumnContainer--quarter .ColumnContainer__column--last {
    padding-left: 0;
    padding-right: 0;
    width: 23.3%;
}

.productworld .three-col.ColumnContainer .row .col {
    width: 33.33%;
}

.productworld .ColumnContainer--grey-dark {
    background: var(--grey-dark);
    color: #ffffff;
    padding-top: 5.6em;
}

.productworld .ColumnContainer + .ColumnContainer--red,
.productworld .ColumnContainer + .ColumnContainer--grey-dark {
    padding-top: 5.6em;
    margin-bottom: 4.8125em;
}

.productworld .ColumnContainer--grey-dark.ColumnContainer--spacing-remove {
    margin-bottom: 0 !important;
}

.productworld .ColumnContainer--spacing-remove + .ColumnContainer--spacing-remove {
    padding-bottom: 4.8125em;
    padding-top: 2em !important;
    /*margin-bottom: 4.8125em !important;*/
}

