@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* @font-face {
    font-family: 'NewOrder-Semibold';
    src: url(NewOrder-Semibold.ttf) format('woff2');
} */
@font-face {
    font-family: 'Area-Regular';
    src: url('src/font/Area-Regular.otf') format('woff2');
}

@font-face {
    font-family: 'Area-Extrabold';
    src: url('src/font/Area-Extrabold.otf') format('woff2');
}

/* @font-face {
    font-family: 'Area-Semibold';
    src: url('src/font/Area-Semibold.otf') format('woff2');
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
}

:root{
    --white: #ffffff;
    --black: #000000;
    --grey90: #e5e5e5;
    --seller-background-color: #D104AB;
    --shopper-background-color: #DEF348;
    box-sizing: border-box;
    --dark-green: #0D1300;

    --btn-white: #ffffff;
    --btn-black: #000000;
}

.body-wrapper{
    overflow-x: hidden;
}

.sellerBackground{
    background: linear-gradient(263deg, rgba(209, 4, 171, 1.00) 0%, rgb(180 0 235) 100%);
}

.buyerBackground{
    background: linear-gradient(136deg, rgba(238,255,65,1.00) 0%,rgba(178,255,89,1.00) 100%);
}

.black{
    color: var(--black);
}

.white{
    color:var(--white)
}

body{
    background-position: center center;
    height: 100%;
}

.buyerColor{
    color:var(--shopper-background-color);
}

.sellerColor{
    color:var(--seller-background-color);
}

.btn-buyer{
    color: var(--shopper-background-color);
    background-color: black;
}

.btn-seller{
    color: var(--seller-background-color);
    background-color: white ;
}

h1{
    letter-spacing: -0.02em;
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

}

h2{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 120%;
    /* letter-spacing: -0.02em; */
}

h3{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 2rem;
}

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

HEADER

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


.header{
    padding: 1rem;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
}

.paragraph{
    font-family: 'Area-Regular';
    font-size: 1rem;
    line-height: 180%;
}

.paragraph_bold{
    font-family: 'Area-Extrabold';
    font-size: 1rem;
    line-height: 180%;
}

.header ul>li{
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border: 1px solid transparent;
    padding: 4px 16px;
    border-radius: 2rem;
    /* color: var(--white); */
}

/* .header ul>li:not(:last-of-type){
    margin-right: 0.5rem;
} */

li.paragraph_bold{
    cursor: pointer;

}
li.paragraph_bold.buyer:hover{
    /* font-family: "Area-Extrabold"; */
    border: 1px solid black;
}

li.paragraph_bold.seller:hover{
    /* font-family: "Area-Extrabold"; */
    border: 1px solid white;
}

.title{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.sliderSeller{
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--seller-background-color);
    border: 1px solid var(--grey90);
    border-radius: 5rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sliderBuyer{
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--shopper-background-color);
    border: 1px solid var(--black);
    border-radius: 5rem;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle{
    width: 100%;
    height: 3rem;
    border-radius: 1.5rem;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.toggle.buyer{
    background-color: var(--white);
}


.toggle.seller{
    background-color: var(--grey90);
}

.toggle p{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    top: 50%;
    /* left: 15%; */
    width: 40px;
    transform: translateY(-50%);
}

.toggle_seller{
    left: 15%;
}

.toggle_buyer{
    left: 65%;
}


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

HERO

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


.notify{
    font-family: 'Area-Extrabold';
    font-size: 1rem;
}

input{
    text-indent: 1rem;
    max-width: 500px;
}


input::placeholder{
    font-family: 'Area-Regular';
}

input.seller,
input.seller::placeholder,
input.seller:focus
{
    color: var(--white);
}

input.buyer,
input.buyer::placeholder,
input.buyer:focus{
    color: var(--black);
}

.btn{
    cursor: pointer;
    position: relative;
    width: 10rem;
    height: 3rem;
    border: none;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: 3rem;
    /* background-color: white; */
}

.btn:after{
    border-radius: 1.5rem;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btn.seller:after{
    background: var(--btn-white);
}
.btn.buyer:after{
    background: var(--btn-black);
}

.waiting_list{
    height: 3rem;
    width: 100%;
    background-color: transparent;
    border-radius: 0.25rem;
    margin-top: 1rem;
}

.waiting_list.seller{
    border: 1px solid var(--white);
}

.waiting_list.buyer{
    border: 1px solid var(--black);
}

@media only screen and (max-width: 768px) {
    h1{
        font-size: 4rem;
        line-height: 125%;
        font-optical-sizing: auto;
    }

    .painpointTitle.sticky{
        top: 0px;
    }
    
    h3{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    
    /* h4{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.5rem;
    } */
    
    
    p{
        font-family: 'Area-Regular';
        font-size: 1rem;
        line-height: 180%;
    }

    .nav{
        position: -webkit-sticky;
        position: sticky;
        top: -60px;
        z-index: 100;
    }

    .header{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center; 
    }
    .header img.logo{
        /* color: var(--logo);
        fill: var(--logo); */
    }

    .header ul{
        display: none;
    }

    .wrapper
    {
        width: 100%;
        padding: 1rem;
        position: -webkit-sticky; 
        position: sticky;
        top: 0;
        z-index: 10;
    }

    /* .toggle{
        border-radius: 1.5rem;
        position: relative;
        display: inline-block;
        cursor: pointer;
    } */

    /* .sliderSeller{
        display: inline-flex;
        align-items: center;
        justify-content: center;
    } */

    .hero{
        padding-left: 1rem;
        padding-right: 1rem;
        /* color: var(--colorSeller); */
        text-align: center;

        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center; 
    }
    
    .hero div{
        margin-bottom: 0rem;
        margin-top: 1rem;
    }
    


    #hero-seller, 
    #hero-buyer{
        display: none;
    }
    
    ul {
        padding: 0 auto 0 auto;
        transform: translate(15%, 20%);
    }

    .painpointDesc li {
        margin-bottom: 0rem;
        text-align: left;
        width: 70vw;
        padding: 30v;
        left: 30vw;
    }

    #painpoint-container{
        height: auto;
        background-color: var(--black);
        color: var(--white);
    }

    #painpoints{
        top: 6rem;
        z-index: 9;
        background-color: var(--black);
    }

    #painpoints > *:not(:first-child){
        margin-bottom: 0rem;
    }

    #painpoints > *:first-child{
        margin-bottom: 1rem;
    }

    #painpoints >*:last-child{
        margin-bottom: 2rem;
    }

    #steps.seller{
        background-color: var(--white);
    }

    #steps.buyer{
        background-color: var(--dark-green);
    }

    .container{
        justify-content: left;
        padding: 6rem 1rem;
        text-align: center;
    }

    .seller .step{
        color: var(--black);
    }

    .buyer .step{
        color: var(--white);
    }

    .step{
        padding: 6rem 0 0 0;
    }

    .step > *:not(:last-child){
        margin-bottom: 1rem;
        
    }

    .step >*:nth-child(3){
        margin-bottom: 3rem;
    }

    .diagonal_separator_transb{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 0 10rem 100vw;
        border-color: transparent transparent var(--black) transparent;
    }
    .diagonal_separator_bw{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3rem 100vw 0 0;
        border-color: var(--black) var(--white) transparent transparent;
    }

    .diagonal_separator_wb{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3rem 0 0 100vw;
        border-color: var(--white) transparent transparent var(--black);
    }

    .diagonal_separator_btrans{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3rem 0 0 100vw;
        border-color: var(--black) transparent transparent transparent;
    }

    .diagonal_separator_bgreen{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3rem 100vw 0 0;
        border-color: var(--black) var(--dark-green) transparent transparent;
    }

    #questions{
        background-color: var(--black);
        color: var(--white);
    }

    #questions >*{
        margin-bottom: 1rem;
        width: 95vw;
    }

    /* .skew{
        margin-top: 2rem;
        height: 400px;
        width: 100%;
        background-color: var(--black);
        -webkit-clip-path: polygon(0 33%,100% 10%,100% 60%,0 85%);

        -webkit-transform: skewY(-5deg);
        -moz-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        -o-transform: skewY(-5deg);
        transform: skewY(-5deg);
    } */
    /* .snap-container{
        scroll-snap-type: y mandatory;
        height: 100vh;
        overflow: auto;
    } */
    /* .snap-child{
        scroll-snap-align: end;
        height: 100vh;
    } */

    /* .snap-container{
        position: -webkit-sticky; 
        position: sticky;
        bottom: 0;
        z-index: 8;
        background-color: var(--black);
        height: auto;
    } */

    .snap-child{
        /* height: 50vh; */
        /* width: 60vh; */
        display: none;
        padding: 4rem;
    }

    .description-wrapper{
        display: none;
    }

    #steps{
        display: block;
    }

    #wantit_info.seller,
    #questions.seller,
    #wantit_info.buyer,
    #question.buyer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .information_item {
        margin-bottom: 2rem;
    }

    .information_item:first-of-type{
        margin-bottom: 6rem;
    }

    #social_icons img:not(:last-of-type) {
        margin-right: 2.5rem;
    }

    .seller#wantit_info {
        border-bottom: 0.5px solid var(--white);
        margin: 0 2rem;
    }

    .buyer#wantit_info {
        border-bottom: 0.5px solid var(--black);
        margin: 0 2rem;
    }

    #copyright {
        text-align: center;
        margin: 2rem 0 2rem 0;
        /* color: var(--white); */
    }

    #information_item_socials_tablet{
        display: none;
    }

    #notify_hint_top_mobile{
        display: block;
    }

    #notify_hint_top{
        display: none;
    }

    .paintings{
        margin-top: 2rem;
        margin-bottom: 8rem;
        border: 2px solid black;
        height: 45vh;
        transition: 1s;
        position: sticky;
        bottom:6rem;
    }

    .painpointTitle {
        position: sticky;
        top: 0px;
        z-index: 99;
        padding-top: 4.5rem;
        padding-bottom: 1rem;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .painpointTitle h2{
        max-width: 34rem;
        margin: 1rem auto;
    }

    .paintings.buyer #painting4{
        background-image: url(src/img/snapshot_w.jpeg);
        background-position: 70%;
    }
}

/* add 992 breakpoint */


@media only screen and (min-width: 769px) and (max-width: 1280px) {

    h1{
        font-size: 5rem;
        line-height: 5.5rem;
        letter-spacing: -0.02em;
    }

    h2{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 4rem;
        line-height: 5rem;
        /* letter-spacing: -0.02em; */
    }
    
    h3{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    
    /* h4{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 1.5rem;
    } */
    
    
    p{
        font-family: 'Area-Regular';
        font-size: 1rem;
        line-height: 180%;
    }

    .nav
    {
        /* display: flex; */
        /* align-items: center; */
        /* flex-direction: row; */
        /* justify-content:space-between;  */
    }

    .header{
        display: flex;
        width: auto;
        justify-content: space-between;
        padding: 1.5rem 0 1rem 6rem;
    }

    .header ul{
        display: block;
    }

    .wrapper
    {
        width: 100%;
        padding: 1rem;
        margin-bottom: 2.5rem;
        position: -webkit-sticky; 
        position: sticky;
        top: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center; 
    }

    .toggle{
        width: 320px;
        /* border-radius: 1.5rem;
        position: relative;
        display: inline-block;
        cursor: pointer; */
        
    }

    /* .sliderSeller{
        display: inline-flex;
        align-items: center;
        justify-content: center;
    } */

    .hero{
        padding-left: 6rem;
        padding-right: 6rem;
        /* color: var(--colorSeller); */
        text-align: center;

        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center; 
    }
    
    .hero div{
        margin-bottom: 3rem;
    }
    
    .hero .cross{
        /* text-decoration: line-through; */
        position: relative;
        background-image: url("src/img/strike90.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 70%;
    }

    #hero-seller, 
    #hero-buyer{
        display:none;
        /* position: block;
        width: 320px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
        border-radius: 1rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 1rem;
        margin-top: 6rem;

        width: 40vw; 
        height: auto; */
    }

    .hero h2{
        margin-bottom: 1rem;
    }

    /* .waiting_list{
        width: 100%;
        border: 1px solid var(--white);
        border-radius: 0.25rem;
        margin-top: 1rem;
    } */
    
    /* .hero .cross:after{
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        right: 0;
        border-top: 0.5rem solid;
        border-color: inherit;
    
        -webkit-transform:rotate(-10deg);
        -moz-transform:rotate(-10deg);
        -ms-transform:rotate(-10deg);
        -o-transform:rotate(-10deg);
        transform:rotate(-10deg);
    } */

    #painpoint-container{
        height: auto;
        background-color: var(--black);
        color: var(--white);
    }

    #painpoints{
        top: 6rem;
        z-index: 9;
        background-color: var(--black);
    }

    #painpoints > *:not(:first-child){
        margin-bottom: 0rem;
    }

    #painpoints > *:first-child{
        margin-bottom: 1rem;
    }

    #painpoints >*:last-child{
        margin-bottom: 2rem;
    }

    #steps{
        background-color: var(--white);
    }

    .container{
        justify-content: left;
        padding: 3rem 6rem 3rem 6rem;
        text-align: center;
    }

    .step{
        padding: 6rem 0 0 0;
        color: var(--black);
    }

    .step > *:not(:last-child){
        /* margin-bottom: 1rem;  */
        max-width: 450px;
        margin: 0 auto 1rem auto;
    }



    .diagonal_separator_transb{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 0 8rem 100vw;
        border-color: transparent transparent var(--black) transparent;
    }
    .diagonal_separator_bw{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8rem 100vw 0 0;
        border-color: var(--black) var(--white) transparent transparent;
    }

    .diagonal_separator_wb{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8rem 0 0 100vw;
        border-color: var(--white) transparent transparent var(--black);
    }

    .diagonal_separator_btrans{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8rem 0 0 100vw;
        border-color: var(--black) transparent transparent transparent;
    }

    #questions{
        background-color: var(--black);
        color: var(--white);
    }

    #questions >*{
        margin-bottom: 1rem;
    }

    .snap-child{
        /* margin-bottom: 20vh; */
        display: none;
        padding: 4rem;
    }

    .description-wrapper{
        display: none;
    }

    #steps{
        display: block;
    }

    .painpointDesc li {
        margin-bottom: 0rem;
        text-align: left;
        width: 70vw;
        padding: 30v;
        left: 30vw;
    }

    ul {
        padding: 0 auto 0 auto;
        margin-right: 4rem;
        /* transform: translate(10%, 20%); */
    }

    .seller#wantit_info {
        border-bottom: 0.5px solid var(--white);
        margin: 0 4rem;
    }

    #copyright {
        text-align: center;
        margin: 2rem 0 2rem 0;
        /* color: var(--white); */
    }

    #wantit_info.seller, #wantit_info.buyer{
        display: flex;
        flex-direction: row;
    }

    #wantit_info {
        margin: 0 4rem;
        justify-content: space-between;
        align-items: baseline;
        color: var(--white);
        /* height: auto; */
        padding-bottom: 4.5rem;
    }

    .information_item p {
        text-decoration: underline;
    }

    /* #social_icons img {
        margin-right: 2.5rem;
    } */

    #steps.buyer {
        background-color: var(--dark-green);
    }

    .buyer .step {
        color: var(--white);
    }

    #questions img{
        display: none;
    }

    #questions{
        height: 40vh;
    }

    #information_item_socials{
        display: none;
    }

    #contact_section{
        padding: 0 15vw;
    }

    #wantit_info>:nth-child(2)
    {
        display: flex;
        flex-direction: column;
        margin: auto 0;
    }

    div#information_item_socials_tablet {
        height: 3em;
    }

    #social_icons {
        justify-content: space-around;
        direction: row;
        display: flex;
        /* margin-right: 2.5rem; */
    }

    .buyer#wantit_info {
        border-bottom: 0.5px solid var(--black);
    }

    .btn{
        display: block;
        margin: 1rem auto;
    }

    #notify_hint_top_mobile{
        display: block;
    }

    #notify_hint_top{
        display: none;
    }

    .paintings{
        margin-top: 2rem;
        margin-bottom: 8rem;
        border: 2px solid black;
        height: 55vh;
        transition: 1s;
        position: sticky;
        bottom:6rem;
    }

    .painpointTitle {
        position: sticky;
        top: 0px;
        z-index: 99;
        padding-top: 4.5rem;
        padding-bottom: 1rem;
        background-color: rgba(0, 0, 0, 0.9);
    }



}

@media only screen and (min-width: 1440px){
    .wrapper
    {
        padding: 1.5rem 0rem 1rem 1rem;
    }
    #hero-seller {
        margin-right: 180px;
    }

    #hero-buyer {
        margin-right: 180px;
    }

    #questions{
        max-width: 1440px;
        padding: 4rem 0rem 0 0rem;
      }
}

@media only screen and (min-width: 1281px){

    #information_item_socials_tablet{
        display: none;
    }

    /* .nav{
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 10;
    } */

    h1{
        font-size: 5rem;
        line-height: 5.5rem;
        letter-spacing: -0.02em;
    }

    h2{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 4rem;
        line-height: 5rem;
        letter-spacing: -1px;
    }

    .howitwork{
        position: absolute;
        top: 1rem;
        width: 100%;
        text-align: center;
        
    }
    
    h3{
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .nav
    {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content:space-between;
        max-width: 1440px;
        margin: 0 auto;
        /* padding-right: 2rem; */
    }

    .header{
        display: flex;
        width: auto;
        justify-content: space-between;
        gap: 4rem;
        padding: 1.5rem 0 1rem 2.5rem;
    }

    .header ul{
        display: block;
    }

    .wrapper
    {
        width: 20rem;
        padding: 1rem;
        position: -webkit-sticky; /* for browser compatibility */
        position: sticky;
        top: 0;
        z-index: 10;
        padding: 1.5rem 2rem 1rem 1rem;
        /* background: linear-gradient(263deg, rgba(209,4,171,1.00) 0%,rgba(197,1,229,1.00) 100%); */
    }

    /* .toggle{
        border-radius: 1.5rem;
        position: relative;
        display: inline-block;
        cursor: pointer;
    } */

    /* .toggle p{
        width: 8rem;
    } */

    /* .sliderSeller{
        display: inline-flex;
        align-items: center;
        justify-content: center;
    } */

    .hero{
        /* display: table-cell; */
        /* height: 70vh; */
        padding-left: 4rem;
        padding-top: 4rem;
        /* color: var(--white); */
        /* width: 60vw;
        max-width: 720px; */
    }

    .hero-wrapper{
        max-width: 55vw;
    }
    .hero h3{
        margin-bottom: 1rem;
    }

    .hero h1{
        margin-bottom: 3rem;
    }

    .main{
        transform: translateY(-140px) !important;
    }


    #animation-container{
        transform: translateY(-140px);
    }

    #hero-buyer > div:nth-of-type(1) {
        background-color: lightblue;
    }

    .waiting_list {
        width: 20rem;
        margin-right: 1rem;
    }

    #painpoint-container {
        background-color: var(--black);
        color: var(--white);
        height: auto;
    }
    /* .hero{
        padding-left: 1rem;
        padding-right: 1rem;
        color: var(--colorSeller);
        text-align: center;

        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content:space-between; 
    } */

    .painpointDesc li{
        margin-bottom: 1.5rem;
    }

    #painpoints{
        order:2;
        height: 100%;
        text-align: left;
        width: 50vw;
        padding: 8rem 0 0 3rem;
    }

    #painpoints > h3:not(:last-of-type){
        margin-bottom: 2rem;

    }

    .snap-container{
        width: 50vw;
        align-items: center;
        padding: 8rem 0rem 0 6rem;
    }

    .snap-child{
        height: 50vh;
        width: 60vh;
        display: none;
    }

    .painpoint-wrap{
        display: flex;
        flex-direction: row;
        max-width: 1440px;
        margin: 0 auto 0 auto;
    }

    .paintings{
        margin-top: 2rem;
        margin-bottom: 8rem;
        /* background-color: #D104AB; */
        border: 2px solid black;
        height: 55vh;
        flex: 1;
        transition: 1s;
        opacity: 0.6;
        text-align: left;
    }

    .paintings:hover{
        flex: 2;
        opacity: 1;
    }

 

    .diagonal_separator_transb{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 0 16rem 100vw;
        border-color: transparent transparent var(--black) transparent;
        position: relative;
        z-index: -1;
        
    }

    .diagonal_separator_transb.seller{
        transform: translateY(-14rem);
    }

    .diagonal_separator_transb.buyer{
        transform: translateY(-14rem);
    }

    .diagonal_separator_bw{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8rem 100vw 0 0;
        border-color: var(--black) var(--white) transparent transparent;
        padding-bottom: 6rem;
    }

    .diagonal_separator_wb{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8rem 0 0 100vw;
        border-color: var(--white) transparent transparent var(--black);
    }

    .diagonal_separator_btrans{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8rem 0 0 100vw;
        border-color: var(--black) transparent transparent transparent;
    }

    #hero-seller {
        /* position: absolute;
        left: 60vw;
        top: 0vh; */
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
        /* background: rgba(255, 255, 255, 0.08); */
        border-radius: 1rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 1rem;
        /* width: 20vw;  */
        /* height: auto; */
        width: 280px;
        /* height: 500px; */
        z-index: 99;
    }

    #hero-buyer{
        /* position: absolute;
        left: 60vw;
        top: 0vh; */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(6.7px);
        -webkit-backdrop-filter: blur(6.7px);
        /* padding-top: 1rem; */
        /* width: 20vw;  */
        /* height: auto; */
        /* height: 500px; */
        width: 280px;
        z-index: 99;
        padding: 0.5rem;
        /* background-image: url(src/img/texture.png); */
        /* background-size: cover; */
    }

    .hero-container{
        justify-content: space-between;
    }

    .container{
        padding: 3rem 4rem 14rem 4rem;        
        text-align: center;
    }

    #steps{
        background-color: var(--white);
    }

    #questions{
        background-color: var(--black);
        color: var(--white);
        height: auto;
    }

    .max_width_container{
        background: black;

    }

    /* #question_section{
        background-color: #000000;
    } */

    #questions > *{
        margin-bottom: 2rem;
    }

    #notify{
        height: auto;
    }

    #notify{
        text-align: left;
        padding: 0rem 4rem 0 6rem;
    }

    #questions{
        text-align: left;
        max-width: 1440px;
        margin: 0 auto;
        padding: 4rem 4rem 0 4rem;
        align-items: center;
        justify-content: space-between;
      }

    .description-wrapper{
        display: block;
        position: relative;
        width: 100%;
        height: 100vh;
        scroll-behavior: smooth;
        /* overflow: auto; */
        scroll-snap-type: y mandatory;
    }

    .description-wrapper.buyer{
        background-color: var(--dark-green);
    }

    .description-wrapper.seller{
        background-color: var(--white);
    }

    #steps{
        display: none;
    }

    /* steps progressive animation display */
    .container-step {
        width: 100%;
        height: 100vh;
        position: relative;
      }
    
      
      .content {
        width: 50%;
        height: 12000px;
        margin-left: 50%;
      }
      
      .lottie-progress {
        width: auto;
        height: 78vh;
        position: absolute;
        top: 17vh;
        left: 25vw;
      }
      
    
      .description{
        /* background-color: beige; */
        /* margin-top: 10rem; */
        margin-left: 6rem;
        margin-right: 8rem;
        width: 26rem;
        color: var(--black);
        top: 16rem;
        height: 100vh;
        /* opacity: 0; */
      }

      .descriptions{
        /* opacity: 0; */
        position: absolute;
        top: 35vh;
        left: 53vw;
      }

      .description h1{
        font-family: "Outfit", sans-serif;
        /* color: var(--seller-background-color); */
        margin-bottom: 2rem;
      }

      .description h3{
        margin-bottom: 2rem;

      }

      .description p{
        font-family: 'Area-Regular';
        font-size: 1rem;
        line-height: 180%;

      }
    
      .description_container{
        height: 100vh;
      }

      .fixed{
        position:fixed;
        display: block;
        right: 0;
        top: 30vh;
      }


      #questions img{
        /* margin-right: 12vw;
        margin-left: auto;
        transform: scale(0.9) translateY(-3rem); */
        width: 38rem;
      }

      #questions h2{
        margin-bottom: 2rem;
      }

      #questions .paragraph{
        width: 34rem;
      }

      .scroll-content{
        /* background-color: var(--white); */
      }
      #wantit_info {
        margin: 0 4rem;
        justify-content: space-between;
        align-items: baseline;
        color: var(--white);
        /* height: auto; */
        padding-bottom: 4.5rem;
    }

    .seller#wantit_info {
        border-bottom: 0.5px solid var(--white) ;
    }

    .buyer#wantit_info {
        border-bottom: 0.5px solid var(--black) ;
    }
      .information_item {
        width: 20vw;
        text-align: center;
        cursor: pointer;
        /* align-items: center; */
    }

    .information_item p{
        text-decoration: underline;
    }

    #social_icons img{
        margin-right: 2.5rem;
    }

    #wantit_icon{
        transform: translate(-1rem, 2rem);
    }

    #copyright{
        text-align: center;
        margin: 2rem 0 2rem 0;
        /* color: var(--white); */
    }

    .painpointDesc h3{
        cursor: pointer;
    }

    .container-max{
        max-width: 1440px;
        margin: 0 auto 0 auto;
        transform: translate(0, 0);
        padding-right: 2rem;
    }

    #painpoint-container{
        padding-bottom: 6rem;
    }

    section{
        transform: translateY(-14rem);
        /* position: relative;
        z-index: -1; */

    }

    #wantit_info.seller,
    #questions.seller,
    #wantit_info.buyer,
    #questions.buyer{
        display: flex;
        flex-direction: row;
    }

    #notify_hint_top_mobile{
        display: none;
    }

    #notify_hint_top{
        display: inline-block;
    }

    .painpointTitle h2{
        max-width: 60rem;
        margin: auto;
    }

    .paintings.buyer #painting4{
        background-image: url(src/img/snapshot_w.jpeg);
        background-position: 65%;
    }

    
}

@media only screen and (min-width: 1281px) and (max-width: 1440px){
    .hero .container-max {
        margin: 0 6rem 0 0;
        transform: translate(0, 0);
    }

}



.gradient-text.seller{
    background: linear-gradient(269deg, rgba(227,6,106,1.00) 14%,rgba(186,1,255,1.00) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text.buyer{
    background: var(--shopper-background-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pink-text{
    color: var(--seller-background-color);
}

.shopper-color{
    color: var(--seller-background-color);
}

.seller-color{
    color: var(--shopper-background-color);
}

.p-bold{
    font-family: 'Area-Extrabold';
}

/* #notify{
    color: var(--white);
} */

footer{
    height: 10vh;
}

#contact{
    cursor: pointer;
}

#contact:hover{
    transform: scale(1.1);
    transition-duration: 0.1s;
}

.opa04{
    opacity: 0.4;
    transition: 0.5s;
}

.opa1{
    opacity: 1;
    transition: 0.5s;
}

.sticky{
    position: -webkit-sticky; /* for browser compatibility */
    position: sticky;
}



.color-seller{
    color: var(--seller-background-color);
}

.color-buyer{
    color: var(--shopper-background-color);
}

.flex-row{
    display: flex;
    flex-direction: row;
}



.selected{
    opacity: 1;
    transition: 0.5s;
}

.space-between{
    justify-content:space-between;
}

.flex-end{
    justify-content: flex-end;
}

.p-extrabold{
    font-family: 'Area-Extrabold';
}

a{
    text-decoration: underline;
    color: inherit;
}

.show{
    display: block;
    transition: 0.5s;
}

.dot{
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}


.painpointDesc li::marker{
    font-size: 2rem;

}

.diagonal_separator_bgreen{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8rem 100vw 0 0;
    border-color: var(--black) var(--dark-green) transparent transparent;
}

.diagonal_separator_greenb{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10rem 0 0 100vw;
    border-color: var(--dark-green) var(--black);
}

.hero .cross{
    /* text-decoration: line-through; */
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 65%;
}

.cross.buyer{
    background-image: url("src/img/strike_black.png");
}

.cross.seller{
    background-image: url("src/img/strike90.png");
}

/* .nav{
    position: -webkit-sticky;
    position: sticky;
    top: -60px;
    z-index: 10;
} */

.tooltiptext{
    visibility: hidden;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 9;
    top: -0.5rem;
    left: 10%;
    margin-left: 1em;
    opacity: 1;
    transition: opacity 1s;
    width: 120px;
    background-color: rgb(0, 0, 0, 0.8);
    color: white;
}

.tooltip{
    position: relative;
}        

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-20px);}
} 
 
 .bounce {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

.hint{
    color: #d50000;
    display: inline-block;
    padding-top: 0.5rem;
    font-family: 'Area-Regular';
}

.painting{
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.paintings h3{
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 120%;
    background-color: black;
    padding-bottom: 6rem;
}

.paintings.buyer #painting1{
    background-image: url(src/img/out_of_stock_w.jpeg);
}

.paintings.buyer #painting2{
    background-image: url(src/img/high_demand_item_w.jpeg);
}

.paintings.buyer #painting3{
    background-image: url(src/img/off_season_w.jpeg);
}

.paintings.buyer #painting4{
    background-image: url(src/img/snapshot_w.jpeg);
}

.paintings.seller #painting1{
    background-image: url(src/img/guess_preference_w.jpeg);
}

.paintings.seller #painting2{
    background-image: url(src/img/listing_w.jpeg);
}

.paintings.seller #painting3{
    background-image: url(src/img/waiting_w.jpeg);
}

#painting1_wrap{
    z-index: 4;
}

#painting2_wrap{
    z-index: 3;
}

#painting3_wrap{
    z-index: 2;
}

#painting4_wrap{
    z-index: 1;
}







