* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

@font-face {
    font-family: "mutually_beneficial";
    src: local("mutually_beneficial") format("truetype");
    src: url("MutuallyBeneficial_Demo.ttf") format("truetype");
}

@font-face {
    font-family: "medialoot-anders-signature-handwritten-font";
    src: local("medialoot-anders-signature-handwritten-font");
    src: url("anderssignature-webfont.woff");
}

/* --------- COLORS ----------- */
:root {
    --color-background-darkdark: #232723;
    --color-background-dark: #474F45;
    --color-background-light: #eacca4;

    --color-h1-darkdark: #232723;
    --color-h1-dark: #474f45;
    --color-h1-light: #eacca4;
    --color-h2-darkdark: #232723;
    --color-h2-dark: #474F45;
    --color-h2-light: #eacca4;
    --color-h3-darkdark: #232723;
    --color-h3-dark: #474F45;
    --color-h3-light: #eacca4;
    --color-h4-darkdark: #232723;
    --color-h4-dark: #474F45;
    --color-h4-light: #eacca4;

    --color-p-darkdark: #232723;
    --color-p-dark: #474F45;
    --color-p-light: #eacca4;

    --color-a-light: #eacca4;
    --color-a-hover-light: #ba9f7f;
    --color-a-dark: #474F45;
    --color-a-darkdark: #232723;

    /* normal Buttons */
    --color-btn-bg-darkdark: #eacca4;
    --color-btn-bg-dark: #474f45;
    --color-btn-bg-light: #474f45;
    --color-btn-bg-hover-darkdark: #ba9f7f;
    /* --color-btn-bg-hover-dark: #232723; */
    --color-btn-bg-hover-light: #232723;
    --color-btn-typo-darkdark: #6a614d;
    /* --color-btn-typo-dark: #eacca4; */
    --color-btn-typo-light: #eacca4;
    --color-btn-typo-hover-darkdark: #474f45;
    /* --color-btn-typo-hover-dark: #ba9f7f; */
    --color-btn-typo-hover-light: #ba9f7f;

    /* light Buttons */
    --color-btn-l-bg-darkdark: #232723;
    --color-btn-l-bg-dark: #474f45;
    --color-btn-l-bg-light: #eacca4;

    --color-btn-l-bg-hover-darkdark: #474f45;
    --color-btn-l-bg-hover-dark: #232723;
    --color-btn-l-bg-hover-light: #474f45;

    --color-btn-l-typo-darkdark: #ba9f7f;
    --color-btn-l-typo-dark: #eacca4;
    --color-btn-l-typo-light: #474f45;

    --color-btn-l-typo-hover-darkdark: #eacca4;
    --color-btn-l-typo-hover-dark: #ba9f7f;
    --color-btn-l-typo-hover-light: #eacca4;

    --color-green-typo: #797c6e;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.a-nav {
    color: var(--color-a-light);
}

.a-nav:hover {
    text-decoration: underline;
}

h1 {
    font-family: 'Andada Pro', sans serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    margin: 15px 0;
}

p {
    font-size: 16px;
    line-height: 28px;
}

.logo {
    padding-top: 0px;
    padding-left: 10px;
}

.logo img {
    width: 140px;
}

.navbar.scrolled .logo img {
    width: 100px;
    transition: all 0.8s ease-in-out;
}

.navbar {
    position: sticky;
    top: 0px;
    height: 172px;
    z-index: 1;
    background: var(--color-background-dark);
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    transition: all 0.7s ease-in;
    transition: 0.3s ease-out;
}

.navbar.scrolled {
    height: 120px;
}

.navbar.scrolled .sodai {
    margin-top: 217px;
    transition: 0.3s ease-out;
}

.navbarinside {
    display: flex;
    align-items: center;
    max-width: 1300px;
    padding: 20px;
    width: 100%;
    text-align: right;
    justify-content: center;
}

nav {
    flex: 1;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-a-light);
    text-transform: uppercase;
    transition: color 0.4s ease-in-out;
}


nav ul li a:hover {
    text-decoration: none;
    color: var(--color-a-hover-light);
    text-transform: uppercase;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding: 0px 20px;
}

.col-2 h1 {
    color: var(--color-h1-light);
}

.col-2 p {
    color: var(--color-p-light);
}

.btn {
    display: inline-block;
    background: var(--color-btn-bg-darkdark);
    color: var(--color-btn-typo-darkdark);
    font-size: 14px;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.5s ease;
}

.btn:hover {
    background: var(--color-btn-bg-hover-darkdark);
    transform: translateY(-2px);
    color: var(--color-btn-typo-hover-darkdark);
}

.btn-dark {
    display: inline-block;
    background: var(--color-btn-bg-light);
    color: var(--color-btn-typo-light);
    font-size: 14px;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.5s ease;
    /* border: 1px solid var(--color-a-dark); */
}

.btn-dark:hover {
    background: var(--color-btn-bg-hover-light);
    transform: translateY(-2px);
    color: var(--color-btn-typo-hover-light);
}

.btn-darkdark {
    display: inline-block;
    background: var(--color-btn-bg-dark);
    color: var(--color-btn-typo-light);
    font-size: 14px;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.5s ease;
    border: 1px solid var(--color-a-dark);
}

.btn-darkdark:hover {
    background: var(--color-a-darkdark);
    transform: translateY(-2px);
    color: var(--color-btn-l-typo-hover-dark);
}

.header {
    background: radial-gradient(#474f45, #232723);
    padding-bottom: 80px;
}

.header .row {
    position: relative;
    top: 100px;
    padding-bottom: 200px;
}

.cart {
    font-size: 20px;
    color: var(--color-btn-bg-darkdark);
}

.cart:hover {
    color: var(--color-btn-bg-hover-darkdark);
}


/* --------- CATEGORIES ------- */

.categories {
    background: var(--color-background-dark);
    padding-top: 80px;
}

.categories .title:after {
    width: 550px;
}

.category-icon {
    filter: opacity(100%);
    margin-bottom: 20px;
}


.category-icon:hover {
    filter: brightness(95%);
}

.categories h4 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
}

.col-5 {
    flex-basis: 30%;
    max-width: 150px;
    margin-bottom: 70px;
}

.col-5 img {
    width: 100%;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

/* ------  FEATURED PRODUCTS ------- */

.featured-products {
    background: var(--color-background-darkdark);
    padding-top: 80px;
    padding-bottom: 80px;
}

.col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
}

.col-4 img {
    width: 100%;
    margin-bottom: 6px;
    transition: transform 0.5s;
}

.title {
    font-family: 'Andada Pro', serif;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: var(--color-background-light);
}

.title::after {
    content: '';
    background: var(--color-background-darkdark);
    width: 200px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.title-dark {
    font-family: 'Andada Pro', serif;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: var(--color-background-light);
}

.title-dark::after {
    content: '';
    background: var(--color-background-dark);
    width: 160px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h4 {
    color: var(--color-h3-light);
    font-weight: 600;
    font-size: 16px;
}

.col-4 p {
    font-size: 14px;
    color: var(--color-p-light);
}

.col-4 img:hover {
    transform: translateY(-5px);
}

.latest-products {
    background: var(--color-background-darkdark);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ------  OFFER  ------- */

.offer {
    background: radial-gradient(#eacca4, #ba9f7f);
    padding: 80px 0;
}

.offer h1 {
    color: var(--color-h1-dark);
    font-weight: 600;
    font-size: 50px;

}

.col-2 .offer-img {
    padding: 0px;
    /* box-shadow: 5px 10px 15px rgb(85, 81, 81);
	border-radius: 10px; */
}

.offer p {
    color: var(--color-p-dark);
}

/* ------  RATINGS  ------- */

.row-ratings {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.ratings {
    background: var(--color-background-dark);
    padding-top: 100px;
    padding-bottom: 80px;
}

.ratings .col-3 {
    text-align: center;
    transition: transform 0.5s;
    padding-bottom: 30px;
}

.ratings .col-3 img {
    width: 40px;
    margin-top: 10px;
    border-radius: 50%;
}

.ratings .col-3 p {
    color: var(--color-p-light);
    line-height: 20px;
}

.ratings .col-3 h3 {
    font-weight: 500;
    color: var(--color-h3-light);
    font-size: 16px;
    line-height: 20px;
}

.ratings .col-3:hover {
    transform: translateY(-10px);
}

.col-3 {
    flex-basis: 25%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img {
    width: 100%;
}

.fa-solid.fa-quote-left {
    font-size: 34px;
}

.fa-sharp-duotone.fa-solid.fa-star {
    color: var(--color-background-light);
    padding: 1px;
    font-size: 14px;
}

.fa-solid.fa-quote-left {
    color: var(--color-background-darkdark);
}

.col-3 p {
    font-size: 14px;
    margin: 12px 0;
    line-height: 22px;
    font-weight: 300;
}

/* ------  WE CARE  ------- */

.care {
    background: var(--color-background-light);
    padding-top: 80px;
    text-align: center;
    flex-basis: 20%;
    padding-bottom: 50px;
}

.care .col-4 img {
    width: 126px;
    border-radius: 50%;
    /* filter: grayscale(100%); */
}

.care .col-4 img:hover {
    /* filter: grayscale(0); */
    transform: none;
}

.care h1 {
    color: var(--color-h1-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.care h4 {
    color: var(--color-h4-dark);
}

.care p {
    color: var(--color-p-dark);
    margin-bottom: 30px;
}

/* ------  QUOTE BUY  ------- */


.quote-buy {
    background: var(--color-background-light);
}

.quote h2 {
    color: var(--color-p-dark);
    font-family: 'mutually_beneficial', 'Square Peg', cursive;
    font-size: 86px;
    line-height: 75px;
    font-weight: 500;
    text-align: center;
    display: flex;
    padding-top: 70px;
    padding-bottom: 90px;
    justify-content: center;
}

/* ------  OUR PRODUCTS  ------- */

.our-products {
    background: var(--color-background-darkdark);
    padding: 50px 0;
}

.our-products h2 {
    color: var(--color-h1-dark);
    font-weight: 300;
    font-size: 26px;
}

.our-products img {
    padding: 50px;
}

/* ------  OUR PHILOSOPHY  ------- */


#about-philosophy {
    scroll-margin-top: 150px;
}

.our-philosophy {
    background: radial-gradient(#707c6e, var(--color-background-dark));
    padding: 50px 0;
}

.our-philosophy h1 {
    color: var(--color-h1-darkdark);
    font-weight: 600;
}

.our-philosophy p {
    /* color: #899587; */
    /* color: #adb7ab; */
    color: var(--color-p-darkdark);
}

.btn-l {
    color: var(--color-btn-l-typo-light);
    display: inline-block;
    font-size: 14px;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.7s ease;
}

.btn-l:hover {
    background: var(--color-btn-l-bg-hover-light);
    color: var(--color-btn-l-typo-hover-light);
    transform: translateY(-2px);
}

.btn-l-dark {
    color: var(--color-btn-l-typo-dark);
    display: inline-block;
    font-size: 14px;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.7s ease;
}

.btn-l-dark:hover {
    background: var(--color-btn-l-bg-hover-dark);
    color: var(--color-btn-l-typo-hover-dark);
    transform: translateY(-2px);
}

.btn-l-darkdark {
    background: var(--color-btn-l-bg-darkdark);
    color: var(--color-btn-l-typo-darkdark);
    font-size: 14px;
    display: inline-block;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.7s ease;
}

.btn-l-darkdark:hover {
    background: var(--color-btn-l-bg-hover-darkdark);
    color: var(--color-btn-l-typo-hover-darkdark);
    transform: translateY(-2px);
}

.our-philosophy img {
    padding: 50px;
}

/* ------  QUOTE AVAILABLE  ------- */

.quote-available {
    background: var(--color-background-light);
}

/* ------  BEAUTY  ------- */

.beauty {
    background: var(--color-background-darkdark);
    padding: 50px 0;
}

.beauty img {
    padding: 50px;
    filter: contrast(125%);
}

/* ------  WORKSHOP  ------- */

.workshop {
    background: radial-gradient(#707c6e, var(--color-background-dark));
    padding: 50px 0;
}

.workshop h1 {
    color: var(--color-h1-darkdark);
    font-weight: 600;
}

.workshop p {
    color: var(--color-p-darkdark);
}

.workshop img {
    padding: 50px;
}

/* ------  WELDING  ------- */

.welding {
    background: var(--color-background-darkdark);
    padding: 50px 0;
}

.welding img {
    padding: 50px;
}

/* ------  QUOTE SUSTAINABILITY  ------- */

.quote-sustainability {
    background: var(--color-background-dark);
}

.quote-sustainability h2 {
    color: var(--color-h2-darkdark);
}

/* ------  ABOUT US  ------- */

.about {
    background: var(--color-background-darkdark);
    padding: 50px 0;
}

.about img {
    padding: 50px;
}

.about p {
    font-weight: 200;
}

/* ------  STAY UPDATED  ------- */

.update {
    background: var(--color-background-light);
    padding: 50px 0;
    text-align: center;
}

.update h1 {
    color: var(--color-h1-dark);
    font-weight: 600;
}

.update p {
    color: var(--color-p-dark);
}

/* ------  FOOTER  ------- */

.footer {
    background: var(--color-background-dark);
    color: #fff;
    font-size: 14px;
    padding: 60px 0 20px;
}

.footer-col-1-2 {
    display: flex;
}

.footer h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 45px;
    letter-spacing: 1px;
    margin-top: 0;
    padding-right: 15px;
}

.footer h4 {
    color: #fff;
    padding-bottom: 6px;
}

.footer p {
    font-size: 14px;
    line-height: 22px;
}

.footer-col-1-2-row {
    flex: 1;
    padding-right: 20px;
}

.footer-col-3-4-row {
    display: flex;
    align-items: flex-start;
    min-height: 150px;
}

.footer-col-3,
.footer-col-4 {
    min-width: 200px;
    flex-basis: 12%;

}

ul {
    list-style-type: none;
}

li {
    padding-bottom: 3px;
}

.second-row {
    padding-top: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-col-5 {
    flex: 1;
    padding-right: 20px;
    min-width: 160px;
}

.footer-col-7,
.footer-col-8 {
    min-width: 200px;
    flex-basis: 12%;
}

.footer-col-6 {
    min-width: 155px;
    flex: 2;
}

.footer hr {
    border: none;
    background: #fff;
    height: 1px;
    margin: 80px 0 15px;
}

.fa.fa-heart {
    font-size: 13px;
    padding: 1px;
}

.copyright-heart {
    display: flex;
    justify-content: flex-start;
}

.heart {
    padding-left: 50px;
}

.provide {
    padding-top: 10px;
    padding-bottom: 30px;
}

.menu-icon {
    font-size: 20px;
    margin-left: 18px;
    color: #eacca4;
    display: none;
}

/* ------------ PRODUCTS TABLES ---------- */

.title-dark-small {
    font-size: 16px;
    color: var(--color-h2-light);
    font-weight: 300;
}

.row-2 {
    justify-content: space-between;
    margin: 10px 10px 30px;
}

select {
    border: 1px solid var(--color-background-light);
    padding: 3px;
    background-color: #232723;
    color: var(--color-a-light);
}

select:focus {
    outline: none;
}

.page-btn {
    margin: 0 auto 80px;
    color: var(--color-a-light);
}

.page-btn span {
    display: inline-block;
    border: 1px solid;
    margin-left: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
}

.page-btn span:hover {
    background: var(--color-background-light);
    color: var(--color-btn-bg-light);
}

.small-container-products {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}


/* ------------- SINGLE PRODUCT PAGE ------------- */

.single-product {
    background: var(--color-background-darkdark);
    padding-top: 80px;
    padding-bottom: 80px;
}

.single-product .col-2 img {
    max-width: 100%;
    padding: 0px 0px;
}

.single-product .col-2 {
    padding: 0 40px 0 0;
}

/* .single-product h4 {
    font-size: 22px;
} */

.single-product select {
    display: block;
    padding: 10px;
    margin-top: 20px;
}

.single-product input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid var(--color-background-light);
    background: var(--color-background-darkdark);
    color: var(--color-background-light);
}

input:focus {
    outline: none;
}

.single-product .row {
    align-items: flex-start;
}

h3 {
    color: var(--color-h3-light);
    margin: 20px 0;
}

.small-img-row {
    display: flex;
    justify-content: space-between;
}

.small-img-row-single-first {
    display: flex;
    justify-content: flex-start;
    padding-top: 30px;
}

.small-img-row-single {
    display: flex;
    justify-content: flex-start;
}

.small-img-col-3 {
    flex-basis: 15%;
    cursor: pointer;
    margin-bottom: 30px;
    margin-right: 10px;
    margin-top: -30px;
}

.small-img-col-4 {
    flex-basis: 24%;
    cursor: pointer;
    margin-bottom: 30px;
}

.small-img-col-5 {
    flex-basis: 19%;
    cursor: pointer;
    margin-bottom: 30px;
}

.small-img-col-6 {
    flex-basis: 15%;
    cursor: pointer;
    margin-bottom: 30px;
}

video {
    max-width: 109px;
}

.small-container-products p {
    color: var(--color-p-light);
}

.row-single {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ------------ SHOW MORE TEXT ----------------- */

.product-details {
    display: none;
}

#showmore:checked~.product-details {
    display: block;
}

#showmore:checked~label {
    display: none;
}

#showmore {
    display: none;
}

label {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

label:hover {
    text-decoration: underline;
}

.link-footer {
    color: #fff;
    text-decoration: none;
}

.link-footer:hover {
    color: #fff;
    text-decoration: underline;
}

/* ------------ CART ITEMS ----------------- */


.cart-bg {
    background: var(--color-background-light);
    padding: 80px 20px;
}

.cart-page {
    color: var(--color-p-dark);
}

table {
    width: 100%;
    border-collapse: collapse;
}

.cart-info {
    display: flex;
    flex-wrap: wrap;
}

.cart-info p {
    font-weight: 600;
    color: var(--color-p-dark);
}

th {
    text-align: left;
    padding: 15px;
    color: var(--color-a-light);
    background: var(--color-background-dark);
    font-weight: 400;
}

td {
    padding: 10px 5px;
}

td input {
    width: 40px;
    height: 30px;
    padding: 5px;
}

.delete {
    color: var(--color-a-dark);
    font-size: 14px;
}

td a:hover {
    text-decoration-color: var(--color-a-dark);
}

td img {
    width: 100px;
    margin-right: 10px;
}

.total-price {
    display: flex;
    justify-content: flex-end;
}

.total-price table {
    border-top: 3px solid var(--color-background-dark);
    width: 100%;
    max-width: 400px;
}

td:last-child {
    text-align: right;
}

th:last-child {
    text-align: right;
}

/* ---------- account ------------- */

.account-page {
    padding: 80px 0;
    background: radial-gradient(#eacca4, #ba9f7f);
}

.account-page img {
    padding: 0 20px 50px;
}

.form-container {
    background: var(--color-a-light);
    width: 400px;
    height: 400px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.a-nav-light {
    color: var(--color-a-dark);
    font-size: 12px;
}

.a-nav-light:hover {
    text-decoration: underline;
}

.form-container span {
    font-weight: 600;
    padding: 0 10px;
    color: var(--color-a-dark);
    cursor: pointer;
    width: 100px;
    display: inline-block;
}

.form-btn {
    display: inline-block;
}

.form-container form {
    max-width: 400px;
    padding: 0 50px;
    position: absolute;
    top: 130px;
    transition: transform 1s;
}

form input {
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid var(--color-a-hover-light);
}

form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    background: var(--color-background-dark);
    color: var(--color-a-light);
}

form .btn:hover {
    background: var(--color-background-darkdark);
    color: var(--color-a-hover-light);
}

#LoginForm {
    left: -400px;
}

#RegisterForm {
    left: 0px;
}

#Indicator {
    width: 110px;
    border: none;
    background: var(--color-background-dark);
    height: 2px;
    margin-top: 8px;
    transform: translateX(100px);
    transition: transform 1s;
}

/* ---------- about us ------------- */

.sub-header {
    height: 40vh;
    width: 100%;
    background-image: radial-gradient(rgba(35, 39, 35, 0.7), rgba(0, 0, 05, 0.7)), url(images/our_philosophy.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: var(--color-h1-light);
}

.sub-header h1 {
    padding-top: 160px;
    margin-top: 0px;
}

.about-us {
    background: var(--color-background-darkdark);
    padding: 80px 0;
}

.about-us img {
    padding: 50px;
}

.history {
    background: var(--color-background-light);
    padding: 80px 0;
}

.history img {
    padding: 50px;
}

.history h1 {
    color: var(--color-h1-dark);
}

.history p {
    color: var(--color-h1-dark);
}

.uniqueness {
    background: var(--color-background-darkdark);
    padding: 80px 0;
}

.uniqueness img {
    padding: 50px;
}

.uniqueness h1 p {
    color: var(--color-h1-light);
}

#about-woodwork {
    scroll-margin-top: 170px;
}

.woodwork {
    background: var(--color-background-light);
    padding: 80px 0;
}

.woodwork h1 {
    color: var(--color-h1-dark);
}

.woodwork p {
    color: var(--color-p-dark);
}

.woodwork img {
    padding: 50px;
}

/* ---------- products ------------- */

.product-category {
    background: var(--color-background-dark);
    padding: 80px 0;
}

.product-category img {
    padding: 50px;
}

.product-category-light {
    background: var(--color-background-light);
    padding: 80px 0;
}

.product-category-light h1 {
    color: var(--color-h1-dark);
}

.product-category-light p {
    color: var(--color-p-dark);
}

.product-category-light img {
    padding: 50px;
}

.quote-single h2 {
    color: var(--color-p-darkdark);
    font-family: 'mutually_beneficial', 'Square Peg', cursive;
    font-size: 86px;
    line-height: 75px;
    font-weight: 500;
    text-align: center;
    display: flex;
    padding-top: 30px;
    padding-bottom: 40px;
    justify-content: center;
}

.rating .fa-sharp-duotone.fa-solid.fa-star {
    color: var(--color-green-typo);
    padding: 1px;
    font-size: 14px;
}

.product-category-dark {
    background: var(--color-background-darkdark);
    padding: 80px 0;
}

.contact {
    background: var(--color-background-light);
}

.submit-btn {
    padding: 0.5rem;
    border: none;
    font-family: inherit;
    font-size: inherit;
}


/* ---------- contact ------------- */


form textarea {
    width: 100%;
    height: 100px;
    margin: 10px 0;
    padding: 5px 10px;
    border: 1px solid var(--color-a-hover-light);
}

textarea:focus {
    outline: none;
}

.form-container #contact-form {
    max-width: 400px;
    padding: 0 50px;
    position: absolute;
    top: 60px;
}

.form-container-contact {
    width: 500px;
    height: 400px;
    padding: 50px;
    background: var(--color-a-light);
    position: relative;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.contact-page {
    background: radial-gradient(#eacca4, #ba9f7f);
    padding: 80px 0;
}

.contact-page h1 {
    color: var(--color-h1-dark);
}

.contact-page p {
    color: var(--color-h1-dark);
}

/* --------- Shop Locator --------------- */

.sub-header-store {
    height: 65vh;
    width: 100%;
    /* background-image: radial-gradient(rgba(35,39,35,0.7), rgba(0,0,05,0.7)), url(images/studio_bad_nauheim_1.jpeg); */
    background-image: linear-gradient(360.01deg, rgba(113, 76, 0, .1) 35%, rgba(0, 0, 05, 4) 69%, rgba(35, 39, 35, .8) 89%), url(images/studio_bad_nauheim_1.jpeg);
    background-position: center;
    background-size: cover;
    color: var(--color-h1-light);
}

.opening-hours {
    text-align: left;
}

.header-left {
    text-align: left;
    padding: 40px;
}

#shoplocator {
    scroll-margin-top: 150px;
}

.shoplocator {
    display: flex;
}

.sub-header-store .col-2 {
    margin-top: 100px;
    justify-content: center;
}

.container-opening-hours {
    display: flex;
    justify-content: flex-end;
}

.opening {
    background: var(--color-background-darkdark);
    padding: 50px;
    border-radius: 40px;
    border: none;
}

.opening h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* --------- LOCATION --------------- */

.location {
    background: var(--color-background-dark);
    padding-top: 80px;
    color: var(--color-a-darkdark);
    padding-bottom: 80px;
}

.link {
    color: var(--color-a-light);
}

.link:hover {
    text-decoration: underline;
}

.location .col-2 {
    min-width: 500px;
}

.location h2 {
    color: var(--color-h2-darkdark);
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 38px;
    padding-bottom: 20px;
}

.location .col-2-map-left {
    flex-basis: 30%;
    padding-right: 20px;
}

.location .col-2-map-right {
    flex-basis: 70%;
    position: relative;
    display: flex;
}

.location p {
    color: var(--color-a-light);
}

.location img {
    filter: grayscale();
    padding-top: 30px;
    position: relative;
    display: flex;
}

.btn-darkdark-map {
    position: absolute;
    background: var(--color-btn-bg-dark);
    color: var(--color-btn-typo-light);
    font-size: 14px;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: all 0.5s ease;
    border: 1px solid var(--color-a-dark);
    display: flex;
    justify-content: center;
}

.btn-darkdark-map:hover {
    background: var(--color-a-darkdark);
    transform: translateY(-2px);
    color: var(--color-btn-l-typo-hover-dark);
}


/* --------- SOCIAL --------------- */

.social {
    background: var(--color-a-darkdark);
    color: var(--color-h2-dark);
    padding: 80px;
}

.fa-brands .fa-square-instagram {
    color: var(--color-a-light);
}

.btn-social {
    color: var(--color-a-dark);
}

.btn-social:hover {
    text-decoration: underline;
}

.social h2 {
    padding-bottom: 10px;
}

.row-social {
    text-align: center;
    flex-wrap: nowrap;
}

.col-1 {
    min-width: 200px;
    margin-bottom: 5px;
}

/* --------- IMPRINT --------------- */

.imprint {
    background: var(--color-background-light);
}

.imprint h1 {
    color: var(--color-h1-dark);
    margin-bottom: 50px;
}

.imprint p {
    color: var(--color-p-dark);
}

.imprint .col-1 {
    margin-top: 80px;
    margin-bottom: 100px;
    text-align: left;
}

.imprint h3 {
    color: var(--color-h3-dark);
}

.imprint a {
    text-decoration: underline;
    color: var(--color-a-dark);
}

.imprint h4 {
    font-size: 16px;
    color: var(--color-h4-dark);
}

.categories h4 {
    color: var(--color-h4-light);
}

/* --------- BUTTON TO TOP  --------------- */

.col-totop {
    display: flex;
    width: 100%;
    margin-right: 50px;
}

.arrow-container {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.totop {
    background: var(--color-background-dark);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    opacity: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa.fa-arrow-up {
    color: var(--color-a-light);
}

.imprint .totop {
    margin-bottom: 100px;
}

#top {
    padding-top: 30px;
}

.sodai {
    margin-top: 270px;
    position: fixed;
    right: 5%;
}

.sodai:scrolled {
    margin-top: 0px;
    background-color: #232723;
}


/* MEDIA QUERY FOR CONTACT MAP, LESS THAN 911 SCREENSIZE */

@media only screen and (max-width: 911px) {

    .location .col-2-map-left {
        flex-basis: 30%;
        padding-right: 20px;
    }

    .location .col-2-map-right {
        flex-basis: 70%;
    }

    .location .row {
        flex-wrap: nowrap;
    }

    .location img {
        width: 550px;
    }
}

/* MEDIA QUERY FOR CONTACT, LESS THAN 1000 SCREENSIZE */

@media only screen and (max-width: 1000px) {
    .form-container-contact {
        width: 400px;
    }
}

/* MEDIA QUERY FOR CONTACT, LESS THAN 851 SCREENSIZE */

@media only screen and (max-width: 851px) {

    .header-left {
        text-align: left;
        padding: 40px;
        max-width: 300px;
    }

    .shoplocator col-2 {
        display: inline;
    }

    .studio {
        max-width: 300px;
    }

    .container-opening-hours {
        max-width: 300px;
    }

    .opening {
        text-align: left;
    }

    .sub-header-store .col-2 {
        flex-basis: 50%;
    }

    .location .row {
        flex-wrap: wrap;
    }

    .location .col-2-map-left {
        flex-basis: 50%;
        padding-bottom: 20px;
    }

    .location .col-2-right {
        flex-basis: 50%;
    }

    .form-container-contact {
        margin-top: 20px;
    }
}

/* MEDIA QUERY FOR CONTACT, LESS THAN 650 SCREENSIZE */

@media only screen and (max-width: 650px) {

    .sub-header-store {
        height: 75vh;
    }

    .container-opening-hours {
        justify-content: center;
    }

    .location img {
        width: 400px;
        height: auto;
    }

    .location .col-2-map-left {
        flex-basis: 100%;
    }

    .location .col-2-right {
        padding-right: 40px;
        flex-basis: 100%;
    }

}

/* ------  MEDIA QUERY FOR BURGER, LESS THAN 850 SCREENSIZE  ------- */


@media only screen and (max-width: 850px) {

    .row {
        text-align: center;
    }

    .col-2,
    .col-3,
    .col-4,
    .col-5 {
        flex-basis: 100%;
    }

    nav ul {
        position: absolute;
        top: 120px;
        left: 0;
        background: #232723;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }

    nav ul li {
        display: block;
        margin-right: 40px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .menu-icon {
        font-size: 30px;
        margin-left: 25px;
        display: block;
        cursor: pointer;
        margin-right: 10px;
    }

    .cart {
        font-size: 25px;
    }

    nav ul li a {
        color: #8a8a8a;
    }

    .col-2 h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .footer-col-5,
    .footer-col-6,
    .footer-col-7,
    .footer-col-8 {
        flex-basis: 50%;
        padding-bottom: 40px;
    }

    .footer-col-3,
    .footer-col-4 {
        min-width: 120px;
        flex-basis: 12%;
        text-align: left;
    }

    .footer-col-1-2 {
        min-width: 340px;
    }

    .footer-row {
        text-align: left;
    }

    .footer-col-1 h1 {
        text-align: left;
    }

    .single-product .row {
        text-align: left;
    }

    .single-product .col-2 {
        padding: 20px 0;
    }

    .header-left h1 {
        font-size: 30px;
    }

    .header-left {
        padding: 20px;
    }

    .opening {
        padding: 30px;
        border-radius: 30px;
        border: none;
    }

}

/* ------  MEDIA QUERY FOR BURGER, LESS THAN 700 SCREENSIZE  ------- */

@media only screen and (max-width: 700px) {

    .row {
        text-align: center;
    }

    .col-2,
    .col-3,
    .col-4,
    .col-5 {
        flex-basis: 100%;
    }

    .footer-col-3,
    .footer-col-4,
    .footer-col-5,
    .footer-col-6,
    .footer-col-7,
    .footer-col-8 {
        flex-basis: 50%;
        padding-top: 30px;
    }

    .footer-col-3,
    .footer-col-4 {
        min-width: 120px;
        justify-content: flex-start;
    }

    .footer-col-1-2 {
        min-width: 550px;
    }

    .footer-col-1-2-row {
        padding-bottom: 20px;
    }

    .footer-col-3-4-row {
        display: none;
    }

    .second-row {
        padding: 10px 0 0 0;
    }

}

/* ------  MEDIA QUERY FOR LESS THAN 600 SCREENSIZE  ------- */

@media only screen and (max-width: 600px) {

    .row {
        text-align: center;
    }

    .col-2,
    .col-3,
    .col-4,
    .col-5 {
        flex-basis: 100%;
    }

    .footer-col-1,
    .footer-col-1-2-row {
        text-align: left;
    }

    .footer-col-1-2-row {
        padding-bottom: 30px;
        max-width: 475px;
        padding-right: 0px;
        flex: none;
    }

    .footer-col-1-2 {
        max-width: 450px;
        min-width: 400px;
    }

    .footer-col-3,
    .footer-col-4,
    .footer-col-5,
    .footer-col-6,
    .footer-col-7,
    .footer-col-8 {
        flex-basis: 50%;
        text-align: center;
        padding-top: 30px;
    }

    .second-row {
        padding: 0;
    }

    .cart-info p {
        display: none;
    }

    .sub-header-store {
        height: 80vh;
    }

    .opening {
        padding: 40px;
    }

    .update h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .update p {
        line-height: 22px;
    }
}

/* ------  MEDIA QUERY FOR LESS THAN 500 SCREENSIZE  ------- */

@media only screen and (max-width: 500px) {

    .footer-col-1-2-row {
        max-width: 475px;
        padding-right: 0px;
        flex: none;
    }

    .footer-col-1-2 {
        min-width: 400px;
        max-width: 470px;
        padding-right: 0px;
        flex: none;
    }

    .form-container-contact {
        width: 300px;
    }

    .location img {
        width: 300px;
    }

}

/* ------  MEDIA QUERY FOR LESS THAN 400 SCREENSIZE  ------- */
@media only screen and (max-width: 400px) {
    .footer-col-1-2 {
        min-width: 340px;
        max-width: 340px;
    }

    .single-product h1 {
        font-size: 26px;
        line-height: 32px;
    }

    .form-container {
        width: 300px;
    }

    .form-container form {
        max-width: 300px;
        top: 9
    }

    #Indicator {
        width: 100px;
        border: none;
        background: var(--color-background-dark);
        height: 2px;
        margin-top: 8px;
        transform: translateX(100px);
        transition: transform 1s;
    }

    .col-2-map-right {
        width: 80%;
        justify-content: center;
    }

    .sub-header-store {
        height: 110vh;
    }

    .location img {
        width: 250px;
    }

    .social .row-social {
        text-align: left;
    }
}