:root{

    --majochred: #ec0213;
    --majocrred: 230,2,19;

    --majochbrown: #332b2d;
    --majocrbrown: 51,45,43;

    --majochgray: #019BD9;
    --majocrgray: 1,155,217;

    --majochblue: #019BD9;
    --majocrblue: 1,155,217;


    --topad: 20vh;
    --npad: 210px;

    --delaymenu: 1.2s
}

* {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:middle;
    background:transparent;
    color: black;
}

html{
    scroll-behavior: smooth;
    scrollbar-width: none;
}

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

body{
    margin: 0;
    font-family: "Montserrat",sans-serif;
    background: #000000;
    color: white;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
    overflow: hidden;
}

body::-webkit-scrollbar{
    display: none;
}

#isopre{
    position: relative;
    width: 100vw;
    /*height: 10vh;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.2vw;
    opacity: .3;
    color: #2B3133;
    /*background: #5FE602;*/
}

#ipmap{
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: right center;
    margin-right: 2vw;
    opacity: .3;
}

#iso{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    min-height: 120vh;
    box-sizing: border-box;
    padding: 2vw;
    /*background: #d3d3d3;*/
}

#iso-template{
    visibility: hidden;
    display: none;
}

.iso{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 16vw;
    height: 16vw;
    /*height: 10vw;*/
    box-sizing: border-box;
    padding: 1.5vmax;
    transition: .7s;
    /*box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;*/
    /*border: solid 1px blue;*/
    filter: drop-shadow(12px 12px 12px rgba(0,0,0,.3));
}

.iso2w{
    width: 32vw;
    height: 16vw;
}

.iso2h{
    width: 16vw;
    height: 32vw;
}

.iso2x{
    width: 32vw;
    height: 32vw;
}


.iso:hover{
    transition: .7s;
    transform: none !important;
    filter: drop-shadow(30px 30px 12px rgba(0,0,0,.1));
}

.isop{
    z-index: 999999999;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition:all .3s, opacity 0s;
}

.iso:before{
    display: none;
    z-index: 9999999999;
    position: absolute;
    color: #E60213;
    content: attr(data-aid);
    text-align: center;
    width: 70%;
    font-weight: bold;
    background: rgba(0,0,0,.8);
    transform: translateY(-2vh);
}

.iso:after{
    display: none;
    z-index: 9999999999;
    position: absolute;
    color: #E60213;
    content: attr(data-price);
    text-align: center;
    width: 70%;
    font-weight: bold;
    background: rgba(0,0,0,.8);
    transform: translateY(2vh);
}

.isop:hover{
    transform: scale(1.1);
    transition: all .3s, opacity 0s;
}

#options{
    transform: translateY(80px);
    opacity: 0;
    width: 98vw;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 1vw;
    background: rgba(255,255,255,.5);
    box-sizing: border-box;
    border-radius: 12px 12px 0 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 .5vw;
}

#moptions{
    transform: translateY(100px);
    opacity: 0;
    width: 98vw;
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 1vw;
    background: rgba(255,255,255,.5);
    box-sizing: border-box;
    border-radius: 12px 12px 0 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 .5vw;
}

#mosub{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 .5vw;
}

.fitem{
    cursor: pointer;
    font-weight: bold;
    opacity: .3;
    font-size: .8vw;
    color: #E60213;
    margin: 0 .5vw;
    white-space: nowrap;
    transition: .3s;
}

.fitem:hover{
    transition: .3s;
    opacity: .7;
    transform: scale(1.1);
}

.fsel:hover{
    cursor: default;
    opacity: 1;
    transform: unset;
}

.ford{
    /*color: #E68902;*/
}

.fsel{
    cursor: pointer;
    opacity: 1;
    transition: .7s;
    text-decoration: underline;
}

.fsep{
    width: 100%;
}

#aux{
    pointer-events: none;
    height: 100%;
    width: 10px;
    background: #5FE602;
}

#fixbg{
    width: 100vw;
    height: 120vh;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translateY(20vh);
    background: #019BD9;
}

#bgc{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}

#bgcol{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #98f2d1;
    opacity: .5;
}

#mlogo{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 67vh);
    /*height: 16vh;*/
    height: 80vh;
    /*opacity: .3;*/
    opacity: 1;
}

#mlogopic{
    width: 100%;
    height: 100%;
    /*inset: 100px;*/
    object-position: center center;
    object-fit: contain;
}

#picf{
    position: absolute;
    right: 2vw;
    width: 48vw;
    height: 80%;
    object-position: center center;
    object-fit: contain;
    opacity: .7;
}

#bgd{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}

#portrait{
    position: fixed;
    height: 100vh;
    width: 25vw;
    right: 0;
    bottom: 0;
    opacity: 0;
    /*background: deeppink;*/
}

#portjoca{
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
}

#portshadow{
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: .5;
    object-fit: contain;
    object-position: bottom center;
}

#logobox{
    z-index: 999999999999999999999999999999;
    position: fixed;
    width: 25vw;
    height: 19vw;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 2vw;
    opacity: 0;
}

#hello {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #332D2B;
    position: fixed;
    width: 75vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    box-sizing: border-box;
    padding-left: 10vw;
    padding-right: 10vw;
    font-size: 2vw;
}

#hello:before{
    content: 'Hello, 你好, Olá, Oi! I am MAJÓ.';
    font-weight: bold;
    margin-bottom: 2vw;
}

#sig{
    margin-top: 10vmin;
    width: 100%;
    height: 10vmin;
    object-fit: contain;
    object-position: left center;
    opacity: .9;
}

.htitle {
    display: flex;
    color: #332D2B;
    position: fixed;
    font-size: 3vw;
}

#wscreen{
    visibility: hidden;
    overflow: hidden;
    position: fixed;
    top: 0;
    left:0;
    /*right: 66vh;*/
    /*width: 100vw;*/
    width: 75vw;
    height: 100vh;
    /*background: var(--majochbrown);*/
    background: rgba(255,255,255,.3);
    opacity: 1;
    /*backdrop-filter: blur(21px);*/
    /*-webkit-backdrop-filter: blur(21px);*/
}

#vpanel{
    width: 100vw;
    height: 45vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#vbg{
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
}

#name{
    z-index: 99999;
    position: fixed;
    /*top: 19vw;*/
    top: 2vw;
    right: 2vw;
    opacity: .9;
    width: 96vw;
    /*width: 21vw;*/
}

#namepic{
    width: 100%;
}

#nametop{
    position: fixed;
    top: 0;
    left: 2vw;
    font-size: 7vw;
    opacity: .9;
    color: var(--majochred);

}

.redt{
    color: var(--majochred);
}

.brownt{
    color: var(--majochbrown);
}

.po{
    width: 100vw;
    height: 100vh;
}

#bio{
    /*height: 120vh;*/
    display: flex;
    position: relative;
    flex-direction: column;
    color: #000000;
    width: calc(100vw - 67vh);
    padding-bottom: 4vw;
    /*opacity: 0;*/
}

#slide{
    z-index: 999999999999999;
    position: fixed;
    /*width: 75vw;*/
    width: 0;
    height: 100vh;
    opacity: 0;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.3);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

#slidebox{
    width: 100%;
    height: 100%;
}

#mock{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    opacity: 0;
}

.biotxt{
    font-size: 2.5vw;
    margin: 4vw;
    width: 50vw;
    color: #2B3133;
    opacity: .9;
}

.biot{
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 0;
    color: #332D2B;
    opacity: 1;
    /*opacity: .7;*/
}

.opposite{
    text-align: right;
    position: relative;
    transform: translateX(40vw);
}

.biomain{
    /*visibility: hidden;*/
    font-size: 2.8vw;
    margin: 4vw;
    height: 100vh;
    /*padding-top: 21vh;*/
}

.hide{
    /*display: none;*/
}

.sqright{
    width: 30vw;
    /*height: 40vh;*/
    left: 65vw;
    margin-top: 40vh;
    position: absolute;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.sqleft{
    width: 25vw;
    /*height: 60vh;*/
    right: 65vw;
    margin-top: 40vh;
    position: absolute;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.sqpicr{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right top;
}


.sqpicl{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left top;
}

#menu{
    z-index: 9999999999999999999999;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transform: translateX(-100vw);
    width: 100%;
}

.mitem{
    cursor: pointer;
    margin: 2vw;
    font-weight: bold;
    font-size: 20px;
    transition: .3s;
    opacity: .7;
    color: #332D2B;
    white-space: nowrap;
}



.mitem:hover{
    transition: .3s;
    opacity: .9;
    transform: scale(1.2);
}

#msoc{
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    margin-right: 100px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /*border: solid 1px greenyellow;*/
}

.imsoc{
    cursor: pointer;
    opacity: .7;
    height: 30px;
    width: 30px;
    margin: 10px 5px;
    transition: .3s;
}

.imsoc:hover{
    opacity: 1;
    transform: scale(1.3);
    transition: .3s;
}



#footer{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    width: 100vw;
    background: #2B3133;
}

#colaco{
    cursor: pointer;
    position: absolute;
    bottom: 1vw;
    left: 1vw;
    color: white;
    font-size: 1vw;
    opacity: .5;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ct{
    height: 1.6vw;
    width: 1.6vw;
    object-fit: contain;
    object-position: center center;
    margin-right: 1vw;
}

#colaco:hover{
    transition: .3s;
    opacity: 1;
    transform: scale(1.1) translateX(1vw);
}

#lic{
    position: absolute;
    bottom: 1vw;
    right: 1vw;
    color: white;
    font-size: 1vw;
    opacity: .5;
    transition: .3s;
}

#mail{
    position: absolute;
    left: 9vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 100%;
    opacity: 1;
}

#m1{
    color: white;
    font-size: 2vw;
    text-transform: uppercase;
    opacity: .5;
    margin-bottom: .2vw;
}

#m2{
    cursor: pointer;
    color: white;
    font-size: 3vw;
    font-weight: bold;
    opacity: .7;
    transition: .7s;
}

#m2:hover{
    transition: .3s;
    opacity: .9;
    transform: scale(1.2);
}

#socs{
    box-sizing: border-box;
    position: absolute;
    left: 2vw;
    /*padding: 3vw 0;*/
    padding-top: 2vw;
    padding-bottom: 4vw;
    height: 70vh;
    /*width: 70px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: space-between;*/
    justify-content: space-between;
    /*border: solid 1px deeppink;*/
}

.sitem{
    cursor: pointer;
    width: calc( 40vh / 6 );
    height: calc( 40vh / 6 );
    object-fit: contain;
    object-position: center center;
    opacity: .7;
    transition: .3s;
    /*margin: 25px 0;*/
}

.sitem:hover{
    transition: .3s;
    opacity: .9;
    transform: scale(1.2);
}

#zoombox{
    pointer-events: none;
    z-index: 999999999999999999999;
    display: flex;
    position: fixed;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*background: rgba(255,255,255,.9);*/
    background: rgba(0,0,0,.92);
    opacity: 0;
    overflow: hidden;
}

#atitle{
    white-space: nowrap;
    height: 5vh;
    width: 100vw;
    position: absolute;
    bottom: -10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5vh;
    font-weight: bold;
    text-transform: uppercase;
    /*color: #332D2B;*/
    color: #ffffff;
    opacity: 1;
    padding: 0;
    margin: 0;
    /*text-shadow: 2px 3px 5px rgba(0,0,0,0.1);*/
}

#abuy{
    height: 5vh;
    width: 100vw;
    position: absolute;
    top: -10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6vh;
    /*font-weight: bold;*/
    text-transform: uppercase;
    /*color: #332D2B;*/
    color: rgba(255,255,255,.3);
    opacity: 1;
    text-shadow: 2px 3px 5px rgba(0,0,0,0.1);
}

#adesc{
    position: absolute;
    left: 0;
    color: #ffffff;
    opacity: .7;
    /*line-height: 1;*/
    font-size: 78%;
}

.buy{
    position: absolute;
    right: 0;
    z-index: 9999999999999;
    cursor: pointer;
    background: #5FE602;
    color: rgba(0,0,0,.5);
    border-radius: .5vh;
    transition: .3s;
    padding: .5vh 1.5vh .65vh 1.5vh;
    margin-left: 2vh;
    /*box-shadow: inset -.2vh -.2vh .25vh rgba(0, 0, 0, 0.5), inset .2vh .2vh .25vh rgba(0, 0, 0, 0.12);*/
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;*/
    /*border-bottom: .3vh solid inherit;*/
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow: inset 0 -.3vh rgba(0,0,0,.3);
}

.buy:before{
    margin-top: -5px;
    position: absolute;
    font-size: 40%;
    content: 'FROM';
    font-weight: normal;
    /*color: rgba(255,255,255,.3);*/
    color: rgba(0,0,0,.5);
}

.buy:after{
    content: 'BUY NOW';
    font-weight: bold;
    color: rgba(0,0,0,.7);
    margin-left: 1.6vh;
}

.sold{
    cursor: not-allowed;
    opacity: .5;
    color: rgba(255,255,255,.5);
    text-decoration: line-through;
    text-decoration-color: rgba(0,0,0,.3);
}

.sold:after{
    display: inline-block;
    content: 'SOLD!';
    font-weight: bold;
    color: rgba(0,0,0,1);
    margin-left: 2vh;
    text-decoration: none;
}



.buy:hover{
    transform: scale(1.1);
    transition: .3s;
}



#zoomer{
    pointer-events: none;
    z-index: 9999999999;
    position: fixed;
    /*background: deeppink;*/
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    opacity: 0;
    /*padding: 5vw;*/
    /*box-sizing: border-box;*/
}

#zpic{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scale(.9);
}

#buycon{
    z-index: 99999999999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,.9);
    /*background: rgba(51,45,43,.9);*/
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#buybox{
    box-sizing: border-box;
    width: 95%;
    max-width: 800px;
    height: 100vh;
    border-radius: 12px;
    background: rgba(255,255,255,.9);
    position: absolute;
    bottom: -30px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#buyprv{
    position: absolute;
    width: 30%;
    top: -7px;
    left: -7px;
    object-fit: contain;
    object-position: left top;
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;*/
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#co{
    position: absolute;
    bottom: 60px;
    right: 30px;
    background: #cddc39;
    border-radius: 7px;
    font-weight: bold;
    font-size: 1.6vw;
    cursor: pointer;
    color: rgba(0,0,0,.7);
    padding: .5vh 1.5vh .65vh 1.5vh;
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow: inset 0 -.3vh rgba(0,0,0,.3);
    transition: .3s;
}

#co:hover{
    transition: .3s;
    transform: scale(1.1);
}

#co:before{
    pointer-events: none;
    position: absolute;
    text-align: center;
    width: 100%;
    content: attr(data-txt1);
    left: 0;
    font-weight: normal;
    /*background: deeppink;*/
    transform: translateY(-2vw);
    font-size: 1.2vw;
    color: #332D2B;
}

#co:after{
    pointer-events: none;
    position: absolute;
    text-align: center;
    width: 100%;
    content: attr(data-txt2);
    left: 0;
    font-weight: normal;
    /*background: deeppink;*/
    transform: translateY(2.5vw);
    font-size: .6vw;
    text-transform: uppercase;
    color: #332D2B;
}

#nope{
    position: absolute;
    bottom: 60px;
    left: 30px;
    opacity: .3;
    background: #2B3133;
    border-radius: 7px;
    font-size: 1.6vw;
    cursor: pointer;
    color: rgba(255,255,255,.5);
    transition: .3s;
    padding: .5vh 1.5vh .65vh 1.5vh;
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow: inset 0 -.3vh rgba(0,0,0,.3);
}

#nope:hover{
    transition: .3s;
    transform: scale(1.1);
}

#bopt{
    box-sizing: border-box;
    position: absolute;
    left: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 70%;
    height: 100%;
    padding: 1vw 1vw 150px;
    /*border: solid 1px deeppink;*/
}

.bopt{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 7px;
    width: 90%;
    margin-bottom: 12px;
    padding: .5vw 1vw;
    font-weight: bold;
    font-size: 1.2vw;
    user-select: none;
    transition: .3s;
    text-align: center;
}

.balt{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 7px;
    width: 90%;
    text-align: center;
    /*padding: .5vw 1vw;*/
    /*margin-bottom: 12px;*/
}

.bopt:after{
    content: attr(data-price);
    font-weight: normal;
    opacity: .7;
    font-size: 90%;
}

.bopt:before{
    content: attr(data-med);
    font-weight: normal;
    opacity: .3;
    font-size: 60%;
}

.bopt:hover{
    transition: .3s;
    transform: scale(1.05);
    opacity: 1;
}

#psel{
    display: none;
    position: absolute;
    color: deeppink;
    width: 25vw;
    text-align: right;
    bottom: calc( 30px + 100px);
    right: 2vw;
    font-weight: normal;
    font-size: 1.6vw;

    background: deeppink;
}

#collect{
    height: 100%;
    /*background: deeppink;*/
    /*background: #cddc39;*/
    align-items: center;
    justify-content: center;
}

.ti{
    box-sizing: border-box;
    background: rgba(205,220,57,.1);
    border: solid 2px rgba(205,220,57,.7);
    border-radius: 7px;
    margin-bottom: 3px;
    width: 100%;
    padding: .3vw;
    font-size: 1vw;
}

.til{
    color: #2B3133;
    opacity: .7;
    font-size: .7vw;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding-left: .3vw;
    margin-top: 7px;
    margin-bottom: 2px;
}

.tila{
    font-size: 1.6vw;
    padding-left: 0;
    text-align: center;
    opacity: .9;
}

input{
    font-family: "Montserrat", sans-serif;
}

#thanks{
    cursor: pointer;
    z-index: 9999999999999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#thanksbox{
    text-align: center;
    width: 80vmin;
    color: #332D2B;
    font-size: 3vw;
    font-weight: bold;
}

#thanksmin{
    width: 80vw;
    text-align: center;
    margin-top: 5vw;
    color: #2B3133;
    font-size: 2vw;
    font-weight: normal;
    opacity: .7;
}

#buyx{

}

#zoomx{

}

.xb{
    cursor: pointer;
    position: fixed;
    left: 0;
    top: 0;
    width: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5vw;
    opacity: .25;
    transition: .3s;
    /*background: #E60213;*/
}

.xb:hover{
    opacity: .7;
    transition: .3s;
}

.xi{
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.xt{
    color: white;
    width: 100%;
    text-align: center;
    font-size: .7vw;
    font-weight: bold;
}



/*FONTS*/

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.eot');
    src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Montserrat-Bold.woff2') format('woff2'),
    url('fonts/Montserrat-Bold.woff') format('woff'),
    url('fonts/Montserrat-Bold.ttf') format('truetype'),
    url('fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.eot');
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
    url('fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/Montserrat-Regular.woff2') format('woff2'),
    url('fonts/Montserrat-Regular.woff') format('woff'),
    url('fonts/Montserrat-Regular.ttf') format('truetype'),
    url('fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*@media (orientation: portrait) {*/

/*    :root{*/
/*        --magic: 12.5vh;*/
/*    }*/

/*}*/


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

    .iso {
        width: 24vw;
        height: 24vw;
    }
}




















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

    #buyx{
        display: none;
    }

    #nope{
        bottom: 130px;
        font-size: 3.5vw;
    }

    #co{
        bottom: 130px;
        font-size: 3.5vw;
    }

    #co:before{
        transform: translateY(-5vw);
        font-size: 3vw;
    }

    #co:after{
        transform: translateY(6vw);
        font-size: 2vw;
    }

    .bopt{
        font-size: 3vw;
    }

    .bopt:hover{
        transition: .3s;
        transform: scale(1.01);
    }

    .bopt:before{
        opacity: .7;
    }

    .bopt:after{
        content: attr(data-price);
        font-weight: normal;
        opacity: .7;
        font-size: 90%;
    }

    .til{
        font-size: 2vw;
    }

    .tila{
        font-size: 4vw;
    }

    .ti{
        font-size: 3vw;
    }

    .xb{
        position: fixed;
        left: 0;
        top: 0;
        width: 25px;
        height: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 7px;
        opacity: .25;
        transition: .3s;
        /*background: #E60213;*/
    }

    .xi{
        width: 25px;
        height: 25px;
        object-fit: contain;
        object-position: center;
    }

    .xt{
        display: none;
    }

    #thanksbox{
        width: 90vmin;
        font-size: 12vw;
    }

    #thanksmin{
        width: 90vw;
        margin-top: 9vh;
        font-size: 7vw;
    }

    .mex{
        display: none;
        visibility: hidden;
    }

    .imsoc{
        margin: 10px 2px;
        width: 22px;
        height: 22px;
        opacity: 1;
    }

    #msoc{
        overflow: hidden;
        /*width: 120px;*/
    }

    .iso {
        width: 46vw;
        height: 46vw;
    }

    .fitem{
        cursor: pointer;
        font-weight: bold;
        opacity: .3;
        font-size: 2vw;
        color: #E60213;
        margin: 0 .5vw;
        white-space: nowrap;
        transition: .3s;
    }

    .biotxt{
        font-size: 3vw;
        margin: 4vw;
        width: 50vw;
    }

    .biot{
        font-size: 6vw;
        white-space: nowrap;
    }

    #logobox{
        width: 60vw;
        height: 95vh;
        top: 0;
        left: 0;
        right: unset;
        padding: 5vw;
        opacity: 0;
    }


    #mlogopic{
        width: 100%;
        height: 100%;
        /*inset: 100px;*/
        object-position: bottom center;
        object-fit: contain;
    }

    #mail{
        left: unset;
        width: 100vw;
        height: unset;
        opacity: 1;
        top: 3vh;
    }

    #portrait{
        position: fixed;
        height: 28vh;
        width: 50vw;
        right: 0;
        bottom: -3vh;
        opacity: 0;
    }

    #portjoca{
        position: absolute;
        right: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: bottom right;
    }

    #portshadow{
        position: absolute;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: .5;
        object-fit: contain;
        object-position: bottom right;
    }

    #slide{
        position: fixed;
        width: 100vw;
        height: 0;
        opacity: 0;
        left: 0;
        top: 0;
        background: rgba(255,255,255,.9);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    #picf{
        right: unset;
        width: 100vw;
        height: 25vh;
        top: 16vh;
    }

    #m1{
        font-size: 7vw;
    }

    #m2{
        font-size: 8vw;
    }

    #socs{
        flex-direction: row;
        width: 100vw;
        bottom: 18vh;
        left: unset;
        padding: 0 5vw;
        height: 70px;
    }

    .sitem{
        width: calc( 100vw / 9 );
        height: calc( 100vw / 9 );
        transition: .3s;
        /*margin: 25px;*/
    }

    #lic{
        width: 100vw;
        text-align: center;
        position: absolute;
        bottom: 1vh;
        right: unset;
        font-size: 3vw;
    }

    #menu{
        padding-left: 3vw;
    }

    .mitem{
        margin: 1.6vw;
        font-size: 12px;
    }

    #name{
        z-index: 99999;
        position: fixed;
        /*top: 19vw;*/
        top: 62vh;
        right: 2vw;
        opacity: .9;
        width: 96vw;
        /*width: 21vw;*/
    }

    #colaco{
        flex-direction: column;
        width: 100vw;
        text-align: center;
        position: absolute;
        bottom: 7vh;
        right: unset;
        font-size: 3vw;
    }

    #ct{
        height: 5vw;
        width: 5vw;
        object-fit: contain;
        object-position: center center;
        margin-right: unset;
        margin-bottom: .5vh;
    }

    #hello {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        color: #332D2B;
        position: fixed;
        width: 100vw;
        height: 60vh;
        left: 0;
        top: 0;
        opacity: 0;
        box-sizing: border-box;
        padding-left: 5vw;
        padding-right: 5vw;
        font-size: 4vw;
        margin-top: 10vh;
    }

    #sig{
        margin-top: 5vmin;
        width: 90%;
        height: 10vmin;
        object-fit: contain;
        object-position: left top;
        opacity: .9;
    }

    #sdown{
        transform: scale(.5) translateY(40px);
    }

    #adesc{
        padding-left: 25px;
    }



}














#spin{
    pointer-events: none;
    position: fixed;
    z-index: 999999999;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .7;
}

.sk-chase {
    width: 10vmin;
    height: 10vmin;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
    opacity: .7;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #332D2B;
    /*background-color: #E60213;*/
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.redot:before{
    background-color: #E60213;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
    100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    } 100%, 0% {
          transform: scale(1.0);
      }
}


#sdown{
    opacity: 0;
    z-index: 9999999999;
    pointer-events: none;
    position: fixed;
    bottom: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 21px;
    color: rgba(0,0,0,.3);
}

.arrow-down{
    position: absolute;
    width:60px;
    height:40px;
    opacity: 0;
    /*left: 40px;*/
    bottom: 0;
    margin-bottom: 12px;
    margin-left: 30px;
    animation: arrow 0.5s 1s infinite ease-out alternate;

}

/*.arrow-down:hover{*/
/*    animation-play-state: paused;*/
/*}*/

.left{
    position:absolute;
    height:10px;
    width:40px;
    background: #E60213;
    transform:rotate(240deg);
    top:10px;
    left:10px;
    border-radius:4px;
    transform-origin:5px 50%;
    animation: leftArrow 0.5s 1s infinite ease-out alternate;
}

.right{
    position:absolute;
    height:10px;
    width:40px;
    background: #E60213;
    transform:rotate(-60deg);
    top:10px;
    left:10px;
    border-radius:4px;
    transform-origin:5px 50%;
    animation: rightArrow 0.5s 1s infinite ease-out alternate;
}

@keyframes arrow{
    0% {
        bottom:0px;
    }
    100%{
        bottom:40px;
    }
}

@keyframes leftArrow{
    0% {
    }
    100%{
        transform:rotate(225deg);
    }
}

@keyframes rightArrow{
    0% {
    }
    100%{
        transform:rotate(-45deg);
    }
}

