@import url('https://fonts.googleapis.com/css2?family=BioRhyme+Expanded:wght@200;300;400;700;800&family=BioRhyme:wght@200..800&display=swap');
:root{
    --text: #0e2429;
    --main-color: #36C4B6;
    --main-color-2: #EA4681;
    --secondary-color: #106B5B;
    --secondary-color-2: #6D1A56;
    --secondary-color-3: #E1F56B;
    --tertiary-color: #EEFEAC;
    --tertiary-color-2: #F9FFE0;
    --background-color: #FFE5F2;
    --bakground-color-2: #E9FFFD;
  
}
*{
    box-sizing: border-box;
}
#vendors-main{
    background-image: url(../images/background-texture.svg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 2000px;
    background-position: center;
    margin: 0 auto;
    
}

#vendors-wrap{
    margin: 0 auto;
    /*padding: 0 4em 15em 4em;*/
    max-width: 1500px;

}
#vendors{
    margin: 0 auto;
    padding: 0 3em;
    display: flex;
    justify-content: space-between;
}
#vendors-photos-wrap{
    margin-left: 10em;
    min-width: 400px;
    width: 670px;
    max-width: 730px;
    position: relative;
}
#vendors-photo{
    width: 850px;
    height:1030px;

}
#vendors-photos-wrap img{
    min-width: 200px;
    width: 350px;
    max-width: 500px;
    height: auto;
    border: solid 2.5px var(--secondary-color);
}
#back-photo{
    position: absolute;
    transform: rotate(-13deg);
}
#front-photo{
    position: absolute;
    transform: rotate(13deg);
    margin-left: 16em;
    margin-top: 18em;

}
.vendors-list > ul {
    font-family: BioRhyme, monospace, sans-serif;
    color: var(--text);
    margin: auto;
    padding-top: 2em;
    font-weight: 800;
    font-size: 1.7em;
    line-height: 125%;
    margin-left: 1em;
    
}
.vendors-list > ul > li{
    display: block;
    padding-bottom: 1.2em;
    counter-reset: inherit;
}


/* Booths */

#booths-wrap{
    background-color: var(--tertiary-color-2);
    padding-bottom: 11em;
    margin-bottom: 12em;
}
#booths{
    display: flex;
    padding: 0 12em;
    margin: 0 auto;
    justify-content: space-between;
}
#booths > img{
    min-width: auto;
    width: auto;
    max-width: auto;
    height: 600px;
    min-height: 200px;
    border: solid 2.5px var(--secondary-color);
}
@media screen and (max-width: 1200px){
    main{
        overflow-x: hidden;
    }
    #vendors{
        flex-direction: column;
        padding: 0 1.2em;
    }
    #vendors-photos-wrap{
        margin-left: 10em;
        margin-top: 2em;
    }
    #vendors-photo{
        margin: 0 auto;
        height: 750px;
        max-width: 100vh;
    
    }
    #booths{
        display: flex;
        flex-direction: column;
        padding: 0 1.2em;
    }

    #booths > img{
        width: 400px;
        height: 100%;
        margin: 0 auto;
    }


    .vendors-list > ul {

        font-size: 1.4em;
        margin-left: 1em;
        
    }

}
@media screen and (max-width: 800px){
    #vendors-photos-wrap{
       margin: 1em auto;
        margin-top: 2em;

    }
    #vendors-photos-wrap img{
        min-width: 100px;
        width: 300px;
        height: auto;
    }
    #vendors{
        padding: 0 1.2em;
    }
    #front-photo{
        margin-left: 6em;
        margin-top: 16em;
    
    }

}
@media screen and (max-width: 500px){
    #vendors-photos-wrap{
        margin-left: 2em;
 
     }

}

