:root {
    --primary-color: #85d0f0;
    --secondary-color: #3e606a;
    --text-color: #404040;
    --light-gray: #ddd;
}

@font-face {
    font-family: 'Poppins';
    src: url('/packages/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/packages/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: bold;
}

body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

.container {
    width: 1100px;
    margin: auto;
}

@media only screen and (max-width: 950px) {
    .container {
        width: 850px;
    }
}

@media only screen and (max-width: 890px) {
    .container {
        width: 700px;
    }
}

@media only screen and (max-width: 740px) {
    .container {
        width: 690px;
    }
}

@media only screen and (max-width: 700px) {
    .container {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
}

.topbar {
    background: var(--primary-color);
}

.topbar .container {
    display: flex;
    align-items: stretch;
}

@media only screen and (max-width: 740px) {
    .topbar .container {
        flex-wrap: wrap;
    }
}

.topbar .logo-container {
    display: flex;
    align-items: center;
    width: 100px;
}

.topbar .logo-container img {
    width: 280px;
    margin: 15px 0;
}

.topbar .bars {
    display: none;
}

@media only screen and (max-width: 740px) {
    .topbar .bars {
        display: flex;
        margin-left: auto;
        margin-right: 10px;
        align-items: center;
    }

    .topbar .bars img {
        width: 23px;
        cursor: pointer;
    }
}

.topbar nav {
    display: flex;
    align-items: stretch;
    margin-left: auto;
}

.topbar nav ul {
    display: flex;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar nav ul li {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    padding: 14px 18px;
}

.topbar nav ul li a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
}

.topbar nav li .icon {
    height: 35px;
}

.topbar nav li .title {
    margin-top: 10px;
    font-size: 0.9em;
}

@media only screen and (max-width: 740px) {
    .topbar nav {
        display: none;
        flex-basis: 100%;
        margin: 10px 0 20px 0;
    }

    .topbar nav ul {
        flex-basis: 100%;
        flex-direction: column;
    }

    .topbar nav ul li a {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .topbar nav li .icon {
        height: 20px;
        margin-right: 10px;
    }

    .topbar nav li .title {
        margin-top: 1px;
    }
}

.slider-navigation {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.slider-navigation .dots {
    flex-grow: 1;
}

.slider-navigation .slick-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.slider-navigation .slick-dots li {
    display: inline-block;
}

.slider-navigation .slick-dots button {
    display: block;
    text-indent: -9999em;
    text-transform: uppercase;
    background: #a2a2a2;
    border: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0 3px;
    cursor: pointer;
}

.slider-navigation .slick-dots li.slick-active button {
    background: var(--primary-color);
}

.slider-navigation .arrow img {
    width: 25px;
    cursor: pointer;
}

.gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.inline-logo {
    display: block;
    width: 450px;
    margin: 30px auto;
}

.inline-logo img {
    width: 100%;
}

.gallery {
    margin: 30px 0 0 0;
}

.gallery .image {
    height: 190px;
    flex: 0 0 calc(25% - 6px);
    background-size: cover !important;
    box-sizing: border-box;
    margin: 3px;
}

.about-box {
    width: 100%;
    max-width: 780px;
    margin: auto;
    padding: 40px 60px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    box-sizing: border-box;
    color: #606060;
}

.about-box .description {
    font-size: 1.1em;
    text-align: center;
    margin: 1em 0 2em 0;
}

.about-box h2 {
    color: var(--secondary-color);
}

.about-box .contact p {
    margin-bottom: 0;
}

.two-column-wrapper .left {
    float: left;
    width: calc(55% - 40px);
}

.two-column-wrapper .right {
    float: right;
    margin-left: 40px;
    width: 45%;
}

#about {
    padding-bottom: 30px;
}

h1  {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: normal;
    font-size: 2.3em;
}

.information ul {
    list-style: none;
    padding: 0;
}

.information li {
    border-bottom: 1px solid #ddd;
    padding: 7px 0;
    display: block;
    color: var(--text-color);
}

.information h3 {
    margin: 0;
    text-transform: uppercase;
    padding: 0;
    color: var(--secondary-color);
    font-weight: normal;
}

.information p {
    margin: 0;
    padding: 0;
    font-size: 0.85em;
}

#about .bubbles {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

#about .bubble {
    width: 150px;
    height: 150px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    hyphens: auto;
    text-align: center;
    margin: 0 20px;
}

#about .bubble h4 {
    margin: 0;
    padding: 0;
    font-size: 2.2em;
    color: var(--secondary-color);
    line-height: 0.8em;
    padding-bottom: 0.1em;
}

#about .bubble h4 small {
    font-size: 0.6em;
}

#about .bubble p {
    margin: 0;
    padding: 0;
}

#about .images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#about .images .primary {
    width: calc(100% - 10px);
    flex: 0 1 100%;
    box-sizing: border-box;
    margin: 5px;
}

#about .images .secondary {
    width: calc(50% - 10px);
    margin: 5px;
    box-sizing: border-box;
    flex: 1 0 calc(50% - 10px);
}

#products .two-column-wrapper .left {
    width: calc(40% - 40px);
}

#products .two-column-wrapper .right {
    width: 60%;
}

#products .gallery .image {
    height: 190px;
    flex: 0 0 calc(33.33333333% - 6px);
}

table.table-gallery {
    border-spacing: 15px;
}

table.table-gallery td {
    width: 33.3333333333%;
    justify-content: center;
    border: 4px solid var(--light-gray);
}

table.table-gallery td img {
    width: 100%;
}

hr {
    background: none;
    border: 0;
    margin: 1em 0;
    border-top: 1px solid var(--light-gray);
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2em;
}

.logo-row img {
    height: 80px;
    margin: 0 20px;
}

.partner-box {
    border: 3px solid var(--secondary-color);
    padding: 15px;
    color: var(--text-color);
}

.partner-box h2 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: var(--secondary-color);
}

#partners h3 {
    font-weight: normal;
    font-size: 1em;
    padding: 10px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

#partners p {
    text-align: center;
}

#partners .inline-logo {
    margin-top: -70px;
}

table.blind-table th,
table.blind-table td {
    text-align: left;
    vertical-align: top;
    padding-right: 10px;
}

.legal-information {
    font-size: 0.8em;
    color: var(--text-color);
}

#policy .legal-information .column {
    columns: 3;
    column-gap: 40px;
}

#imprint .legal-information .column {
    width: 40%;
}

.legal-information h4 {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 4px;
    margin-bottom: 7px;
}

.footer {
    display: flex;
    padding: 40px 0;
}

.footer .legal-links {
    font-size: 0.8em;
    margin-left: auto;
}

.footer .legal-links a {
    text-decoration: none;
    color: #909090;
    margin-left: 20px;
}

.footer .legal-links a:hover {
    color: var(--text-color);
}

.customer-information h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
}

button.list {
    background: none;
    display: inline-block;
    margin-left: 20px;
    border: 2px solid black;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    font-size: 1.6em;
}
