/* products */
.products {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* BACKGROND */
body {
    background-image: url(https://i.postimg.cc/C1kpxhw3/DSC3861.jpg);
    background-size: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
    background-position: center;
}

/* MENU */
#menuToggle {
    top: 10px;
    right: 5px;
    overflow: hidden;
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(14, 13, 13, 0.7);
    background: rgba(14, 13, 13, 0.7);
}
#menuToggle input {
    display: flex;
    width: 35px;
    height: 35px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
}
#menuToggle span{
    width: 19px;
    height: 1px;
    margin: 2px;
    background-color: rgb(250, 249, 249);
    transition: all .5s cubic-bezier(.08,.81,.87,.71);
}
#span1 {
    transform-origin: 4px 0px;
}
#span3 {
    transform-origin: bottom right;
}
#menuToggle input:checked ~ #span1 {
    background-color:  rgb(250, 3, 3);
    transform: rotate(45deg) translate(3px);
} 
#menuToggle input:checked ~ #span2 {
    background-color:  rgb(250, 3, 3);
    transform: rotate(495deg) translate(1px);
}
#menuToggle input:checked ~ #span3 {
    background-color:  rgb(250, 3, 3);
    transform: rotate(45deg);
    opacity: 0;
}
#menuToggle input:hover ~ span {
    background-color: rgb(250, 3, 3);
}
.nav-menu {
    overflow: hidden;
    height: 35px;
    position: absolute;
    right: 49px;
    top: 10px;
    background: rgba(14, 13, 13, 0.7);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 5px rgba(14, 13, 13, 0.7);
}
#menu { 
    width: 0;
}
.nav-menu ul li {
    list-style: none;
    display: inline-block;
}
.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-family: 'Poiret One', cursive;
    font-size: 15px;
    line-height: 10px;
    margin: 3px;
}
.nav-menu ul li a:hover {
    color: rgb(250, 3, 3);
}

/* BASKET */
/* BASKET ICON */
.basket {
    right: 67px;
    top: 10px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    transition: ease-in-out 0.6s;
}
.basket:hover {
    cursor: pointer;
}
.basket:hover + .basketMessage {
    opacity: 1;
    visibility: visible;
}
.basketIcon {
    position: absolute;
}
.numOfBasket {
    position: absolute;
    top: -2px;
    right: -8px;
}
.basketIcon svg {
    max-width: 40px;
}
/* BASKET MESSAGE */
.basketMessage {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 10vh;
    right: 3px;
    background-color: rgba(14, 13, 13, 0.7);
    width: 250px;
    height: 150px;
    padding: 3px;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
.basketMessage:hover {
    opacity: 1;
    visibility: visible;
}
.basketMessageElm {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 0;
    padding-left: 10px;
    width: 100%;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}
.basketMessageText {
    padding-top: 25px;
    padding-left: 8px;
    position: absolute;
    overflow: auto;
    height: 90px;
    padding-bottom: 15px;
    margin-top: 25px;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}
.basketMessagePrice {
    position: absolute;
    left: 0;
    bottom: 3px;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}
.basketClear {
    bottom: 8px;
    right: 6px;
    position: absolute;
    cursor: pointer;
    border: 1px solid rgb(93, 17, 17);
    margin: 0;
    transition: background-color 0.6s ease-in-out;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    background-color:rgba(14, 13, 13, 0.1);
}
.noItems {
    padding-top: 25px;
    padding-left: 8px;
    position: absolute;
    overflow: auto;
    height: 90px;
    padding-bottom: 15px;
    margin-top: 25px;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}
.totalPrice {
    bottom: 3px;
    padding: 6px 6px;
    position: absolute;
    cursor: pointer;
    margin: 0;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}
.prices0Dom {
    bottom: 3px;
    padding: 6px 6px;
    position: absolute;
    cursor: pointer;
    margin: 0;
    color: rgb(250, 3, 3);
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}
.cart {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.cartItems {
    position: relative;
    top: 23px;
    color: rgb(250, 3, 3);
    font-size: 15px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
}

/* ART-CONTENT */

/* FIGURATIVE */
.figurative {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(14,13,13);
    overflow-x: hidden;
    transition: 0.4s;
}
.figurative1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.figurative .closebtn {
    position: absolute;
    top: 10px;
    right: 39px;
    font-size: 40px;
    color: rgb(250, 3, 3);
    text-decoration: none;
}
/* FIGURATIVE - ALL PAGES */
.img {
    top: 120px;
    left: 170px;
    position: relative;
}
.text {
    top: 110px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.text1 {
    top: 112px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.text2 {
    top: 114px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.text3 {
    top: 116px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.text4 {
    top: 118px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn1 {
    position: absolute;
    top: 940px;
    left: 640px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}

/* PAINTING */
.painting {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(14,13,13);
    overflow-x: hidden;
    transition: 0.4s;
}
.painting1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.painting .closebtn {
    position: absolute;
    top: 10px;
    right: 39px;
    font-size: 40px;
    color: rgb(250, 3, 3);
    text-decoration: none;
}
/* PAINTING PAGE 1 */
.img1 {
    top: 120px;
    left: 280px;
    position: relative;
}
.textA {
    top: 110px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textA1 {
    top: 112px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textA2 {
    top: 114px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textA3 {
    top: 116px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textA4 {
    top: 118px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn2 {
    position: absolute;
    top: 1080px;
    left: 510px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* PAINTING PAGE 2 */
.img2 {
    top: 120px;
    left: 280px;
    position: relative;
}
.textB {
    top: 110px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textB1 {
    top: 112px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textB2 {
    top: 114px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textB3 {
    top: 116px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textB4 {
    top: 118px;
    position: relative;
    left: 280px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
/* PAINTING PAGE 3 */
.img3 {
    top: 120px;
    left: 160px;
    /* width: 300px;
    height: 300px; */
    position: relative;
}
.textC {
    top: 110px;
    position: relative;
    left: 160px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textC1 {
    top: 112px;
    position: relative;
    left: 160px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textC2 {
    top: 114px;
    position: relative;
    left: 160px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textC3 {
    top: 116px;
    position: relative;
    left: 160px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textC4 {
    top: 118px;
    position: relative;
    left: 160px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn3 {
    position: absolute;
    top: 980px;
    left: 670px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* PAINTING PAGE 4 */
.img4 {
    top: 120px;
    left: 260px;
    position: relative;
}
.textD {
    top: 110px;
    position: relative;
    left: 260px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textD1 {
    top: 112px;
    position: relative;
    left: 260px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textD2 {
    top: 114px;
    position: relative;
    left: 260px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textD3 {
    top: 116px;
    position: relative;
    left: 260px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textD4 {
    top: 118px;
    position: relative;
    left: 260px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn4 {
    position: absolute;
    top: 980px;
    left: 570px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}

/* PORTRAIT */
.portrait {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(14,13,13);
    overflow-x: hidden;
    transition: 0.4s;
}
.portrait1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.portrait .closebtn {
    position: absolute;
    top: 10px;
    right: 39px;
    font-size: 40px;
    color: rgb(250, 3, 3);
    text-decoration: none;
}
/* PORTRAIT PAGE 1 */
.img5 {
    top: 120px;
    left: 140px;
    position: relative;
}
.textE {
    top: 110px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textE1 {
    top: 112px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textE2 {
    top: 114px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textE3 {
    top: 116px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textE4 {
    top: 118px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn5 {
    position: absolute;
    top: 880px;
    left: 650px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* PORTRAIT PAGE 2 */
.img6 {
    top: 120px;
    left: 200px;
    position: relative;
}
.textF {
    top: 110px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textF1 {
    top: 112px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textF2 {
    top: 114px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textF3 {
    top: 116px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textF4 {
    top: 118px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn6 {
    position: absolute;
    top: 980px;
    left: 610px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* PORTRAIT PAGE 3 */
.img7 {
    top: 120px;
    left: 120px;
    position: relative;
}
.textG {
    top: 110px;
    position: relative;
    left: 120px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textG1 {
    top: 112px;
    position: relative;
    left: 120px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textG2 {
    top: 114px;
    position: relative;
    left: 120px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textG3 {
    top: 116px;
    position: relative;
    left: 120px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textG4 {
    top: 118px;
    position: relative;
    left: 120px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn7 {
    position: absolute;
    top: 880px;
    left: 730px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* PORTRAIT PAGE 4 */
.img8 {
    top: 120px;
    left: 200px;
    position: relative;
}
.textH {
    top: 110px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textH1 {
    top: 112px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textH2 {
    top: 114px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textH3 {
    top: 116px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textH4 {
    top: 118px;
    position: relative;
    left: 200px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn8 {
    position: absolute;
    top: 980px;
    left: 610px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}

/* STILLIFE */
.stilllife {
    height: 100%;
    width: 0;
    position: fixed;;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(14,13,13);
    overflow-x: hidden;
    transition: 0.4s;
}
.stilllife1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.stilllife .closebtn {
    position: absolute;
    top: 10px;
    right: 39px;
    font-size: 40px;
    color: rgb(250, 3, 3);
    text-decoration: none;
}
/* STILLIFE PAGE 1 */
.img9 {
    top: 260px;
    left: 100px;
    position: relative;
}
.textI {
    top: 250px;
    position: relative;
    left: 100px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textI1 {
    top: 252px;
    position: relative;
    left: 100px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textI2 {
    top: 254px;
    position: relative;
    left: 100px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textI3 {
    top: 256px;
    position: relative;
    left: 100px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textI4 {
    top: 258px;
    position: relative;
    left: 100px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn9 {
    position: absolute;
    top: 810px;
    left: 710px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* STILLIFE PAGE 2 */
.img10 {
    top: 120px;
    left: 170px;
    position: relative;
}
.textJ {
    top: 110px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textJ1 {
    top: 112px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textJ2 {
    top: 114px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textJ3 {
    top: 116px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textJ4 {
    top: 118px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
/* STILLIFE PAGE 3 */
.img11 {
    top: 120px;
    left: 170px;
    position: relative;
}
.textK {
    top: 110px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textK1 {
    top: 112px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textK2 {
    top: 114px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textK3 {
    top: 116px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textK4 {
    top: 118px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
/* STILLIFE PAGE 4 */
.img12 {
    top: 120px;
    left: 170px;
    position: relative;
}
.textL {
    top: 110px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textL1 {
    top: 112px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textL2 {
    top: 114px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textL3 {
    top: 116px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textL4 {
    top: 118px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}

/* LANDSCAPE */
.landscape {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(14,13,13);
    overflow-x: hidden;
    transition: 0.4s;
}
.landscape1 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.landscape .closebtn {
    position: absolute;
    top: 10px;
    right: 39px;
    font-size: 40px;
    color: rgb(250, 3, 3);
    text-decoration: none;
}
/* LANDSCAPE PAGE 1 */
.img13 {
    top: 120px;
    left: 170px;
    position: relative;
}
.textM {
    top: 110px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textM1 {
    top: 112px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textM2 {
    top: 114px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textM3 {
    top: 116px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textM4 {
    top: 118px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
/* LANDSCAPE PAGE 2 */
.img14 {
    top: 120px;
    left: 170px;
    position: relative;
}
.textN {
    top: 110px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textN1 {
    top: 112px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textN2 {
    top: 114px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textN3 {
    top: 116px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textN4 {
    top: 118px;
    position: relative;
    left: 170px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
/* LANDSCAPE PAGE 3 */
.img15 {
    top: 220px;
    left: 140px;
    position: relative;
}
.textO {
    top: 210px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textO1 {
    top: 212px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textO2 {
    top: 214px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textO3 {
    top: 216px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textO4 {
    top: 218px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn10 {
    position: absolute;
    top: 880px;
    left: 650px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}
/* LANDSCAPE PAGE 4 */
.img16 {
    top: 220px;
    left: 140px;
    position: relative;
}
.textP {
    top: 210px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textP1 {
    top: 212px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textP2 {
    top: 214px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textP3 {
    top: 216px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.textP4 {
    top: 218px;
    position: relative;
    left: 140px;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poiret One', cursive;
    color: rgb(250, 3, 3);
}
.btn11 {
    position: absolute;
    top: 880px;
    left: 650px;
    color: rgb(250, 3, 3, 0.6);
    font-weight: 100;
    font-family: 'Arista Signature';
    font-size: 35px;
    width: 190px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    background-color: rgba(14,13,13);
}

/* SLIDER */
.prev:hover, .next:hover {
    color: rgb(250, 3, 3);
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 480px;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-size: 45px;
    transition: 0.6s ease;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    color: rgb(250, 3, 3);
}

/* FOOTER */
h1 {
    position: absolute;
    top: 834px;
    right: 7px;
    font-weight: 100;
    font-size: 68px;
    font-family: 'Arista Signature';
    color: rgb(7, 7, 7);
}
.social-icon {
    position: absolute;
    top: 885px;
    right: 2px;
    font-size: 30px;
}
.social-icon a {
    color: rgba(14,13,13);
}
.social-icon a:hover {
    color: rgb(250, 3, 3);
}


/* MEDIA SCREEN */
/* !!!!MUST CHANGE: ALL; WRONG MEDIA QUERIES */

/* -- FOR IPHONE 6 */
/* !!!!MUST ADD: m queries for .img3,4,6,7,8,10,11,12,15,16 */
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    body {
        background-size:cover; 
        background-attachment: fixed; 
        background-repeat: no-repeat; 
        background-position: center;
    }
    footer h1 {
        float: right;
        top: 834px;
        right: 7px;
        font-weight: 100;
        font-size: 54px;
        font-family: 'Arista Signature';
        color: rgb(7, 7, 7);
    }
    .social-icon {
        float: right;
        top: 875px;
        font-size: 25px;
    }
    .basket {
        width: 5px;
        height: 5px;
        margin-top: 13px;
    }
    #menuToggle {
        width: 30px;
        height: 30px;
        right: 5px;
    }
    .basketMessage {
        width: 220px;
        height: 120px;
    }
    .basketMessageElm, .noItems, .basketMessageText, .basketMessagePrice,
    .basketClear, .totalPrice, .cart, .cartItems, .prices0Dom {
        font-size: 15px !important;
    }
    .nav-menu {
       height: 30px;
       width: 200px;
       overflow: hidden;
    }
    #menu {
       height: 30px;
       max-width: 300px;
    }
    .nav-menu ul li a {
        text-decoration: none;
        color: white;
        font-family: 'Poiret One', cursive;
        font-size: 10px;
        line-height: 1px;
        margin: 3px;
        vertical-align: 9px;
    }
    #figurative1, #painting1, #landscape1, #portret1, #stillife1 {
        max-width: 480px;
        height: 100%;
    }
    #figurative1 img {
        width: 270px !important;
        height: 270px !important;
        top: 0 !important;
        left: -125px !important;
        position: relative;
    }
    .painting img {
        width: 250px !important;
        height: 400px !important;
        top: 0 !important;
        left: -230px !important;
        position: relative;
    } 
    .painting p {
        top: 110px;
        position: relative;
        left: 50px;
        font-size: 15px;
        font-weight: 100;
        font-family: 'Poiret One', cursive;
        color: rgb(250, 3, 3);
    }
    .figurative p {
        top: 110px;
        position: relative;
        left: 43px;
        font-size: 15px;
        font-weight: 100;
        font-family: 'Poiret One', cursive;
        color: rgb(250, 3, 3);
    }
    .painting .prev, .painting .next {
        top: 295px !important;
        width: auto !important;
        max-width: 1000px !important;
        padding: 3px !important;
        margin-top: 0!important;
        font-size: 30px !important;
    }
    .figurative .prev, .figurative .next {
        top: 235px !important;
        width: auto;
        max-width: 1000px !important;
        padding: 3px !important;
        margin-top: 0;
        font-size: 30px !important;
    }
    .figurative .next {
        right: 30px;
    }
    .painting .next {
        right: 40px;
    }
    .portrait .next {
        right: 30px;
    }
    .stilllife .next {
        right: 30px;
    }
    .landscape .next {
        right: 40px;
    }
    #figurative1 .closebtn, #painting1 .closebtn, #portrait1 .closebtn,
    #stilllife1 .closebtn, #landscape1 .closebtn {
        top: 5px !important;
        right: 15px !important;
        font-size: 30px !important;
        color: rgb(250, 3, 3);
        text-decoration: none;
        position: absolute;
    }
    #painting1 button {
        top: 655px;
        left: 161px;
        color: rgb(250, 3, 3, 0.6);
        font-weight: 100;
        font-family: 'Arista Signature';
        font-size: 30px;
        width: 145px;
        height: 35px;
        text-align: center;
        cursor: pointer;
        border: 1px solid rgb(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        background-color: rgba(14,13,13);
        position: absolute;
    }
    #figurative1 button {
        top: 510px;
        left: 172px;
        color: rgb(250, 3, 3, 0.6);
        font-weight: 100;
        font-family: 'Arista Signature';
        font-size: 30px;
        width: 145px;
        height: 35px;
        text-align: center;
        cursor: pointer;
        border: 1px solid rgb(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        background-color: rgba(14,13,13);
        position: absolute;
    }
    .portrait img {
        width: 300px !important;
        height: 300px !important;
        top: 0 !important;
        left: -110px !important;
        position: relative;
    }
    .portrait p {
        top: 110px;
        position: relative;
        left: 29px;
        font-size: 15px;
        font-weight: 100;
        font-family: 'Poiret One', cursive;
        color: rgb(250, 3, 3);
    }
    .stilllife img {
        width: 300px !important;
        height: 200px !important;
       top: -140px !important;
       left: -65px !important;
       position: relative;
    }
    .stilllife p {
        top: 110px;
        position: relative;
        left: 35px;
        font-size: 15px;
        font-weight: 100;
        font-family: 'Poiret One', cursive;
        color: rgb(250, 3, 3);
    }
    .landscape  img {
        width: 250px !important;
        height: 250px !important;
        top: 0 !important;
        left: -115px !important;
        position: relative;
    }
    .landscape p {
        top: 115px;
        position: relative;
        left: 55px;
        font-size: 15px;
        font-weight: 100;
        font-family: 'Poiret One', cursive;
        color: rgb(250, 3, 3);
    }
    .stilllife .prev, .stilllife .next {
        top: 200px !important;
        width: auto;
        max-width: 1000px !important;
        padding: 3px !important;
        margin-top: 0 !important;
        font-size: 30px !important;
    }
    .portrait .prev, .portrait .next {
        top: 250px !important;
        width:auto;
        max-width: 1000px !important;
        padding: 3px !important;
        margin-top: 0 !important;
        font-size: 30px !important;
    }
    .landscape .prev, .landscape .next {
        top: 230px !important;
        width: auto !important;
        max-width: 1000px !important;
        padding: 3px !important;
        margin-top: 0 !important;
        font-size: 30px !important;
    }
    #portrait1 button {
        top: 547px;
        left: 182px;
        color: rgb(250, 3, 3, 0.6);
        font-weight: 100;
        font-family: 'Arista Signature';
        font-size: 30px;
        width: 145px;
        height: 35px;
        text-align: center;
        cursor: pointer;
        border: 1px solid rgb(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        background-color: rgba(14,13,13);
        position: absolute;
    }
    #stilllife1 button {
        top: 445px;
        left: 185px;
        color: rgb(250, 3, 3, 0.6);
        font-weight: 100;
        font-family: 'Arista Signature';
        font-size: 30px;
        width: 145px;
        height: 35px;
        text-align: center;
        cursor: pointer;
        border: 1px solid rgb(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        background-color: rgba(14,13,13);
        position: absolute;
    }
    #landscape1 button {
        top: 500px;
        left: 161px;
        color: rgb(250, 3, 3, 0.6);
        font-weight: 100;
        font-family: 'Arista Signature';
        font-size: 30px;
        width: 145px;
        height: 35px;
        text-align: center;
        cursor: pointer;
        border: 1px solid rgb(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        background-color: rgba(14,13,13);
        position: absolute;
    }
} 

/* -- FOR IPAD PORTRAIT AND OTHER TABLETS */
/* !!!!MUST ADD: m queries for .img 1,2,3,4,5,6,7,8,9,15,16 */
@media only screen and (min-width: 480px) and (max-width: 768px) {
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    body {
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
    }
    #figurative1, #painting1, #landscape1, #portrait1, #stillife1 {
        max-width: 800px !important;
        height: 100%;
    }
    .figurative .next {
        right: 70px !important;
    }
    #figurative1 .closebtn, #painting1 .closebtn, #portrait1 .closebtn,
    #stilllife1 .closebtn, #landscape1 .closebtn {
        position: absolute;
        top: 10px;
        right: 39px;
        font-size: 40px;
        color: rgb(250, 3, 3);
        text-decoration: none;
    }
    #figurative1 img {
        width: 600px !important;
        height: 600px !important;
        top: 0;
        left: -110px;
        position: relative;
    }
    .figurative p {
        top: 110px;
        position: relative;
        left: 58px;
        font-size: 20px;
        font-weight: 100;
        font-family: 'Poiret One', cursive;
        color: rgb(250, 3, 3);
    }
    .figurative .prev, .figurative .next {
        top: 405px;
        width: auto;
        padding: 16px;
        max-width: 768px;
        margin-top: 0;
        font-size: 35px;
    }
    #figurative1 button {
        position: absolute;
        top: 890px;
        left: 470px;
        color: rgb(250, 3, 3, 0.6);
        font-weight: 100;
        font-family: 'Arista Signature';
        font-size: 35px;
        width: 190px;
        height: 40px;
        text-align: center;
        cursor: pointer;
        border: 1px solid rgb(255, 255, 255, 0.6);
        transition: all 0.3s ease;
       background-color: rgba(14,13,13);
    }
}
/* ++ FOR IPAD LANDSCAPE */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
}
/* !!!!must add: m queries for all pages */
/* ++ FOR IPAD PRO LANDSCAPE */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    #menuToggle {
        right: 13px !important;
    }
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
}
/* !!!!must add: m queries for all pages */
/* -- FOR IPAD PRO PORTRET */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    #menuToggle {
        right: 10px !important;
    }
    .closebtn {
        z-index: 99;
        transition: 0.4s;
    }
    footer h1 {
        float: right;
        top: 1234px;
        right: 7px;
    }
    .social-icon {
        float: right;
        top: 1275px;
    }
}
/* ++ FOR TABLETS LANDSCAPE */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    footer h1 {
        float: right;
        top: 1234px;
        right: 7px;
        font-size: 54px;
    }
    .social-icon {
        float: right;
        top: 1275px;
    }
}
/* ++ FOR LAPTOPS */
@media only screen and (min-width: 1024px) and (max-width: 1600px) {
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    footer h1 {
        float: right;
        top: 1234px;
        right: 7px;
        font-size: 54px;
    }
    .social-icon {
        float: right;
        top: 1275px;
    }
}
/* ++ FOR IMAC (27'') */
@media only screen and (min-width: 2560px){
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    footer h1 {
        float: right;
        top: 2230px;
        right: 7px;
        font-size: 54px;
    }
    .social-icon {
        float: right;
        top: 2265px;
    }
}
/* -- FOR IMAC RETINA(21.7'') */
/* !!!!must add: m queries for all art-content */
@media only screen and (min-width: 4096px){
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    footer h1 {
        float: right;
        top: 2234px;
        right: 7px;
        font-size: 54px;
    }
    .social-icon {
        float: right;
        top: 2275px;
    }
}
/* -- FOR IMAC RETINA(27'') */
/* !!!!must add: m queries for all art-content */
@media only screen and (min-width: 5120px){
    .closebtn {
        z-index:99;
        transition: 0.4s;
    }
    footer h1 {
        float: right;
        top: 2705px;
        right: 7px;
        font-size: 54px;
    }
    .social-icon {
        float: right;
        top: 2730px;
    }
}
