* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-size: 10px;
    font-family: greycliff-cf, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
}

header {
    z-index: 1;
}





/* - - - - - VARIABLES DESKTOP & UNIVERSAL - - - - - */





:root {
    --headline-color: white;
    --text-color-dark: #3b3a3c;
    --text-color-light: #F3EEED;
    --text-color-footer: #B5B5B5;
    --text-color-hover: #D9D6CC;

    --button-color-bg: #F3EEED;

    --color-black: #111111;
    --color-white: #F3EEED;
    --color-lightgreen: #2B5233;
    --color-middlegreen: #1C3520;
    --color-darkgreen: #0E2014;
    --color-copper: #AB5535;

    --fS-dektop-text: 2rem;
    --fS-desktop-headline: 3.2rem;
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* GENERAL */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





.general_headline {
    color: var(--text-color-dark);
    font-size: var(--fS-desktop-headline);
    font-weight: 700;
    text-transform: uppercase;
    cursor: default;
}

.general_small_headline {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);
    font-weight: 700;
    text-transform: uppercase;
    cursor: default;
}

.general_text {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);
    font-weight: 400;
    line-height: 24px;
    cursor: default;
}

.general_button_anchor {
    text-decoration: none;
    display: inline-block;
    width: 190px;
    align-self: center;
    margin: 0;
    cursor: pointer;
}

.general_button {
    width: 190px;
    height: 50px;
    background-color: var(--button-color-bg);
    border-style: solid;
    border-width: 1px;
    border-color: var(--text-color-dark);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.general_button_text {
    font-size: var(--fS-dektop-text);
    color: var(--text-color-dark);
}

.general_button:hover {
    width: 185px;
    height: 48px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    background-color: var(--text-color-hover);
}





/* - - - - - HEADER - - - - - */





#mainNav .logo img {
    width: 235px;
    display: block;
    transition: font-size 0.4s;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    padding-top: 25px;
    padding-bottom: 50px;
    transition: transform 0.4s;
}

.logo a {
    text-decoration: none;
}

#mainNav {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    padding-top: 15px;
    position: fixed;
    width: 100%;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transition: height 0.4s, background 0.2s;
    z-index: 2;
}

#mainNav ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 70%;
    justify-content: space-around;
    padding-bottom: 15px;
    transition: transform 0.4s, opacity 0.2s;
}

#mainNav ul li a {
    text-decoration: none;
    color: var(--text-color-light);
    font-weight: 700;
    font-size: var(--fS-dektop-text);
    transition: color 0.4s;
}

#mainNav ul li a:hover {
    color: var(--text-color-hover);
    opacity: 0.8;
}





#mainNav_products .logo img {
    width: 235px;
    display: block;
    transition: font-size 0.4s;
    color: black;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    padding-top: 25px;
    padding-bottom: 50px;
    transition: transform 0.4s;
}

.logo a {
    text-decoration: none;
}

#mainNav_products {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    padding-top: 15px;
    position: fixed;
    width: 100%;
    top: 0px;
    background: var(--color-white);
    transition: height 0.4s, background 0.2s;
    z-index: 2;
}

#mainNav_products ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 70%;
    justify-content: space-around;
    padding-bottom: 15px;
    transition: transform 0.4s, opacity 0.2s;
}

#mainNav_products ul li a {
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 700;
    font-size: var(--fS-dektop-text);
    transition: color 0.4s;
}

#mainNav_products ul li a:hover {
    opacity: 0.8;
}





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





.back_to_top_wrapper {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    background-color: var(--color-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s;
    pointer-events: none;
}

.back_to_top_anchor {
    color: var(--text-color-light);
    font-size: 30px;
    text-decoration: none;
    transform: rotate(-90deg);
    padding-bottom: 3px;
    padding-left: 1px;
}

.back_to_top_wrapper:hover {
    background-color: var(--text-color-hover);
}

.back_to_top_wrapper:hover>a {
    color: var(--text-color-dark);
}


#footer_transparent {
    width: 100%;
    height: 880px;
    margin-top: -3px;
    pointer-events: none;
}

footer {
    width: 100%;
    height: 800px;
    margin-top: -3px;
    position: fixed;
    bottom: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: var(--color-black);
    color: var(--text-color-light);
    z-index: 0;
}

#footer_logo {
    width: 150px;
    display: block;
    padding-top: 115px;
    padding-bottom: 115px;
}

#footer_nav {
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 150px;
}

.footer_section {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
}

.footer_h2 {
    font-size: var(--fS-dektop-text);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color-light);
    padding-bottom: 25px;
    cursor: default;
}

.footer_anchor {
    text-decoration: none;
}

.footer_p {
    font-size: var(--fS-dektop-text);
    font-weight: 400;
    color: var(--text-color-footer);
    padding-bottom: 10px;
    cursor: default;
}

.footer_anchor p:hover {
    color: var(--text-color-light);
    cursor: pointer;
}

#footer_line {
    width: 80%;
}

#sm_nav {
    width: 100%;
    height: 80px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sm_nav_content {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

#footer_copyright {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color-footer);
    cursor: default;
}

#sm_icon {
    width: 30px;
    filter: invert() opacity(0.6);
}

#sm_icon:hover {
    filter: invert() opacity(1);
}





/* - - - - - MORE INGOT - - - - - */





.more_ingot_wrapper_bg {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    height: 100%;
    margin-top: -3px;
    z-index: 1;
}

.more_ingot_wrapper {
    width: 80%;
    text-align: center;
    margin: auto;
}

.more_ingot_image {
    width: 100%;
    margin-bottom: 25px;
}

.more_ingot_wrapper>p:first-child,
.more_ingot_wrapper>h2:first-of-type {
    padding-bottom: 50px;
}

.more_ingot_wrapper>p:nth-child(3) {
    padding-bottom: 10px;
}

.more_ingot_wrapper>a:first-of-type {
    margin-bottom: 200px;
}

.more_ingot_wrapper>p:last-of-type {
    padding-bottom: 25px;
    text-align: left;
}

.more_ingot_wrapper>p:last-of-type a {
    color: var(--text-color-footer);
    font-size: var(--fS-dektop-text);
    cursor: pointer;
}

.more_ingot_wrapper>p:last-of-type a:hover {
    color: var(--text-color-dark);
}





.product_item_1_more_ingot {
    grid-area: item1;
    text-align: center;
}

.product_item_2_more_ingot {
    grid-area: item2;
    text-align: center;
}

.product_item_3_more_ingot {
    grid-area: item3;
    text-align: center;
}

.grid_container_more_ingot {
    width: 100%;
    display: grid;
    margin: auto;
    grid-template-areas:
        'item1 item2 item3';
    row-gap: 150px;
    column-gap: 25px;
    padding-bottom: 200px;
}

#more_ingot_wrapper_product {
    padding-top: 200px;
}

#more_ingot_rL_h3 {
    padding-bottom: 10px;
}

#more_ingot_rL_p {
    padding-bottom: 50px;
}





/* - - - - - MODALS - - - - - */





.modal {
    display: none;
    position: fixed;
    z-index: 98;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal_content {
    background-color: var(--color-white);
    margin: auto;
    padding: 20px;
    width: 50%;
}

.modal_header {
    display: flex;
    justify-content: space-between;
}

.modal_close_button {
    font-size: 3.5rem;
    color: var(--text-color-dark);
    font-weight: 700;
    position: sticky;
    cursor: pointer;
    padding-right: 10px;
}

.modal_body {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);

    padding: 20px 25px 50px 25px;
}


#edge_of_today_modal {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
}

.edge_of_today_content {
    width: 80%;
}

#edge_of_today_image_container {
    overflow: hidden;
    margin: -5px -10px -10px -5px;
}

.edge_of_today_content>#edge_of_today_image_container>img {
    width: 100%;
}

.edge_of_today_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #11111165;
    padding: 100px;
}

.edge_of_today_text>p,
.edge_of_today_text>h2 {
    color: var(--text-color-light);
}

.edge_of_today_text>h2 {
    padding-bottom: 10px;
}

.edge_of_today_text>p:first-of-type {
    padding-bottom: 50px;
}

.edge_of_today_text>p {
    padding-bottom: 10px;
}

.edge_of_today_modal_header {
    display: flex;
    position: absolute;
    justify-content: space-between;
    position: absolute;
    top: 50px;
    right: 19px;
    transform: translate(-50%, -50%);
}

.edge_of_today_modal_close_button {
    font-size: 3.5rem;
    color: var(--text-color-light);
    font-weight: 700;
    position: sticky;
    cursor: pointer;
    padding-right: 10px;
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* STARTSEITE */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





.section_container {
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: -3px;
    z-index: 1;
}

.section_image {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.section_text {
    position: absolute;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: default;
}

.section_subheadline {
    font-size: var(--fS-dektop-text);
    color: var(--text-color-light);
    font-weight: 400;
    padding-bottom: 10px;
    cursor: default;
}

.section_headline {
    font-size: var(--fS-desktop-headline);
    color: var(--headline-color);
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    cursor: default;
}

.section_button_anchor {
    text-decoration: none;
    display: block;
    width: 190px;
    align-self: center;
}

.section_button {
    width: 190px;
    height: 50px;
    background-color: var(--button-color-bg);
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_button_text {
    font-size: var(--fS-dektop-text);
    color: var(--text-color-dark);
}

#sec2_img {
    transform: rotate(180deg);
}

.section_button:hover {
    width: 185px;
    height: 48px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    background-color: var(--text-color-hover);
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* HEROS */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





.hero_container {
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: -3px;
    z-index: 1;
}

.hero_image {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.hero_subheadline {
    font-size: var(--fS-dektop-text);
    color: var(--text-color-light);
    font-weight: 400;
    padding-bottom: 10px;
    cursor: default;
}

.hero_headline {
    font-size: var(--fS-desktop-headline);
    color: var(--headline-color);
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    cursor: default;
}

.hero_p {
    font-size: var(--fS-dektop-text);
    color: var(--text-color-light);
    font-weight: 400;
    padding-bottom: 15px;
    line-height: 24px;
    cursor: default;
}

.hero_button_anchor {
    text-decoration: none;
    display: inline-block;
    width: 190px;
    align-self: center;
}

.hero_button {
    width: 190px;
    height: 50px;
    background-color: var(--button-color-bg);
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_button_text {
    font-size: var(--fS-dektop-text);
    color: var(--text-color-dark);
}

.hero_button:hover {
    width: 185px;
    height: 48px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-left: 2.5px;
    margin-right: 2px;
    background-color: var(--text-color-hover);
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* KOLLEKTIONEN */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





#collections_text {
    position: absolute;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 45%;
    left: 50%;
}

.hero_text_res_bg {
    display: none;
    background-color: var(--color-white);
    margin-top: -3px;
}

.hero_text_res {
    margin: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 100px;
}

.products {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    margin-top: -3px;
    z-index: 1;
}

.pr_line_wrapper {
    width: 80%;
    margin: auto;
    padding-top: 110px;
}

.pr_overline_text {
    display: flex;
    justify-content: space-between;
    cursor: default;
}

.pr_text {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);
    font-weight: 400;
    cursor: default;
}

#pr_line {
    width: 100%;
    border-top: 1px solid var(--text-color-dark);
    margin-bottom: 110px;
}





.product_item_1 {
    grid-area: item1;
    text-align: center;
}

.product_item_2 {
    grid-area: item2;
    text-align: center;
}

.product_item_3 {
    grid-area: item3;
    text-align: center;
}

.product_item_4 {
    grid-area: item4;
    text-align: center;
}

.product_item_5 {
    grid-area: item5;
    text-align: center;
}

.product_item_6 {
    grid-area: item6;
    text-align: center;
}

.product_item_7 {
    grid-area: item7;
    text-align: center;
}

.product_item_8 {
    grid-area: item8;
    text-align: center;
}

.product_item_9 {
    grid-area: item9;
    text-align: center;
}

.product_item_10 {
    grid-area: item10;
    text-align: center;
}

.product_item_11 {
    grid-area: item11;
    text-align: center;
}

.product_item_12 {
    grid-area: item12;
    text-align: center;
}

.grid_container {
    width: 80%;
    display: grid;
    margin: auto;
    grid-template-areas:
        'item1 item2 item3'
        'item4 item5 item6'
        'item7 item8 item9'
        'item10 item11 item12';
    row-gap: 150px;
    column-gap: 25px;
}

.grid_container+div {
    width: 100%;
    height: 200px;
    background-color: var(--color-white);
}

.pr_image {
    width: 100%;
}

.pr_underline {
    width: 0%;
    opacity: 0;
    border-top: 2px solid var(--text-color-dark);
    margin-top: -2px;
}

.pr_image_anchor:hover~.pr_underline {
    width: 100%;
    opacity: 1;
    transition: width 0.15s, opacity 0.075s;
}

.pr_headline {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    padding-top: 20px;
    cursor: default;
}

.pr_spec_text {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);
    font-weight: 400;
    line-height: 24px;
    cursor: default;
}

.pr_price {
    color: var(--text-color-dark);
    font-size: var(--fS-dektop-text);
    font-weight: 700;
    padding-top: 20px;
    cursor: default;
}





#collection_description_bg {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    height: 100%;
    margin-top: -3px;
    z-index: 1;
}

.collection_description {
    position: relative;
    width: 80%;
    z-index: 1;
    text-align: center;
    margin: auto;
    padding-bottom: 100px;
}

#coll_desc_target {
    width: 100%;
    height: 100px;
    opacity: 0;
}

.collection_description>h3 {
    padding-bottom: 25px;
}

.collection_description>p {
    padding-bottom: 25px;
}

.coll_description_dropdown_wrapper {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-in-out;
}

#coll_description_hero_image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 150px;
}

.coll_description_dropdown {
    width: 80%;
    text-align: center;
    margin: auto;
}

.coll_description_dropdown>p {
    padding-bottom: 150px;
}

.coll_description_flex_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coll_description_flex_text_wrapper {
    text-align: left;
    width: 45%;
}

.coll_description_flex_text_wrapper>h3 {
    padding-bottom: 25px;
}

.coll_description_image {
    width: 45%;
    height: 800px;
    object-fit: cover;
}

.coll_description_flex_wrapper {
    padding-bottom: 50px;
    padding-top: 25px;
}

#coll_desc_spacer {
    width: 100%;
    height: 200px;
    position: relative;
    background-color: var(--color-white);
    margin-top: -3px;
    z-index: 1;
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* PRODUKTSEITEN */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





.product_wrapper_bg {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    height: 100%;
    padding-top: 250px;
    z-index: 1;
}

.product_wrapper {
    position: relative;
    width: 80%;
    z-index: 1;
    text-align: center;
    margin: auto;
    padding-bottom: 100px;
}

.product_flex_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_flex_text_wrapper {
    text-align: left;
    width: 45%;
}

.product_image {
    width: 45%;
    aspect-ratio: 0.75;
    object-fit: cover;
}

.product_line {
    width: 100%;
    border-top: 2px solid var(--text-color-dark);
}

.product_flex_text_wrapper>p:first-of-type {
    padding-top: 15px;
}

.product_flex_text_wrapper>p:nth-child(4),
.product_flex_text_wrapper>p:nth-child(5),
.product_flex_text_wrapper>p:nth-child(6) {
    padding-bottom: 15px;
}

.product_flex_text_wrapper>p:last-of-type {
    padding-bottom: 45px;
}

.product_flex_wrapper {
    padding-bottom: 50px;
}

.product_flex_wrapper_mockup {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_image_mockup {
    width: 45%;
    aspect-ratio: 0.75;
    object-fit: cover;
}

.product_flex_text_wrapper_mockup {
    text-align: left;
    width: 45%;
}

.product_flex_text_wrapper_mockup>p:first-of-type {
    padding-bottom: 50px;
}

.product_flex_text_wrapper_mockup>h3:first-of-type,
.product_flex_text_wrapper_mockup>p:nth-child(5) {
    padding-bottom: 15px;
}

#mockup_text_res {
    display: none;
    padding-bottom: 50px;
    padding-top: 50px;
}

#mock_up_text_flex {
    display: block;
}





/* - - - PRODUKT 1 - - - */





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* ÜBER UNS */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





#about_us_text {
    position: absolute;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 51%;
    left: 10%;
}

.about_us_bg {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    height: 100%;
    z-index: 1;
    margin-top: -3px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.about_us_wrapper {
    position: relative;
    width: 80%;
    z-index: 1;
    margin: auto;
    padding-bottom: 100px;
}

.about_us_flex_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

.about_us_flex_text_wrapper {
    width: 45%;
}

.about_us_image {
    width: 45%;
    height: 800px;
    object-fit: cover;
}

.about_us_video {
    width: 45%;
    height: 800px;
    object-fit: cover;
}

.about_us_flex_text_wrapper>h3:first-of-type {
    padding-bottom: 25px;
}

.about_us_flex_text_wrapper>p:first-of-type {
    padding-bottom: 25px;
}

.about_us_wrapper>.about_us_flex_wrapper:nth-child(even) {
    flex-direction: row-reverse;
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* POP-UP STORES */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */





#popup_text {
    position: absolute;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 51%;
    left: 56%;
}

.popup_container_bg {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    margin-top: -3px;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 150px;
}

.popup_container {
    position: relative;
    width: 80%;
    z-index: 1;
    margin: auto;
    text-align: center;
    padding-bottom: 100px;
}

.popup_container>p:first-of-type {
    padding-bottom: 25px;
}

.popup_dropdown_wrapper {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-in-out;
}

.popup_table_wrapper {
    overflow-x: auto;
}

.popup_table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    text-align: left;
    margin-top: 150px;
}

.tbody_th {
    border-bottom: 1px solid black;
    height: 75px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.popup_tr:hover {
    background-color: var(--text-color-hover);
}

.popup_container>h3:first-of-type {
    padding-top: 200px;
    padding-bottom: 10px;
}

#popup_concept_big_image {
    width: 100%;
    height: 800px;
    object-fit: cover;
    padding-top: 50px;
    padding-bottom: 100px;
}

.popup_container>p:last-of-type {
    padding-bottom: 200px;
}

.popup_concept_flex_wrapper {
    display: flex;
    justify-content: space-between;

}

.popup_concept_wrapper {
    width: 48%;
}

.popup_concept_wrapper>h3:first-of-type {
    padding-top: 50px;
    padding-bottom: 10px;
}

.popup_concept_wrapper>p {
    width: 75%;
    margin: auto;
}

.popup_concept_image {
    width: 100%;
}





/* - - - - - - - - - - - - - - - - - - - - - - - - - */

/* POP-UP STORES */

/* - - - - - - - - - - - - - - - - - - - - - - - - - */




.privacy_bg {
    position: relative;
    background-color: var(--color-black);
    width: 100%;
    height: 100%;
    padding-top: 300px;
    padding-bottom: 100%;
    z-index: 1;
}

.privacy_wrapper {
    width: 80%;
    margin: auto;
}

.privacy_wrapper>p {
    padding-bottom: 20px;
    color: var(--text-color-light);
}

.privacy_wrapper>h1 {
    padding-bottom: 50px;
    color: var(--text-color-light);
}

.privacy_wrapper>h2,
.privacy_wrapper>h3,
.privacy_wrapper>h4,
.privacy_wrapper>h5 {
    padding-bottom: 25px;
    color: var(--text-color-light);
}

.privacy_wrapper>ul>li {
    color: var(--text-color-light);
    font-size: var(--fS-dektop-text);
    font-weight: 400;
    line-height: 24px;
    cursor: default;
}

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