@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --main: rgb(255,255,255);
    --bgmain: rgb(0,0,0);
    --accent: #ff6438;
    --bgaccent: rgb(50,50,70);
    --border: transparent;
}

/*rgb(200,130,210)   rgb(110,240,120)*/

.color {display: none !important;}


body, html {
	background-color: var(--bgmain);
	color: var(--main);
	font-family: roboto;
	font-size: 11pt;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.2;
    min-height: 100vh;
}

.noscroll {
    overflow-y: hidden;
}

a, a:hover, a:visited {
    text-decoration: none;
    outline: none;
    border:none;
    -webkit-tap-highlight-color: transparent;
}

b {
    color: var(--accent);
    font-weight: 500;
}

.triptih {
	display: grid;
	grid-template-columns: auto 34.3% auto;
	height: 100%;
	pointer-events: none;
    position: absolute;
	width: 100%;
	z-index: 1;
}

.triptih div {
	outline: 7.5px solid var(--bgmain);
}

footer {
    margin-top: 50px;
    margin-bottom: 30px;
}

/*----------NAVBAR CLASSES----------*/

header {
    display: block;
    height: 55px;
}

.navbar-title img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: .1s ease-out;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
}

.navbar-title {
    display: inline-block;
    width: 110px;
    height: 100%;
}

.navbar {
    background-color: var(--bgmain);
    position: fixed;
    width: 100%;
    z-index: 2;
}

.navbar ul {
    width: 500px;
    height: 45px;
    list-style: none;
    margin: auto;
    padding: 10px;
}

.navbar li {
    display: block;
    float: left;
    position: relative;
    text-decoration: none;
    transition: background .1s ease-out;
    margin: 0;
}

.navbar a, .navbar li a {
    color: var(--main) !Important;
    letter-spacing: 1px;
}

.navbar li a li {
    color: var(--bgmain) !Important;
    letter-spacing: 0px;
    font-size: 11pt;
}

.navbar li a li:hover {
    color: var(--main) !Important;
}

.navbar li:hover,
.navbar li:focus-within {
    background: var(--accent) !important;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
}

.navbar li:focus-within a {
    outline: none;
}

.navbar ul li ul {
    visibility: hidden;
    position: absolute;
    margin: 0; padding: 0;
    margin-top: 2rem;
    display: none;
    margin-left: -15px;
    width: 170px;
    filter: drop-shadow(0 0 80px rgba(255,255,255,.1));
}

.navbar ul li:hover > ul,
.navbar ul li:focus-within > ul,
.navbar ul li ul:hover,
.navbar ul li ul:focus {
    visibility: visible;
    display: block;
}

.navbar ul li ul li {
    clear: both;
    width: 100%;
    opacity: 100%;
    background-color: var(--main) !important;
    color: var(--bgmain) !Important; 
    padding: 10px;
}

.navbar ul li ul li::before{
  padding-top: 20px;
}

.navbar .navmenu:hover::before{
    position:absolute;
    bottom: -47px;left: 0;
    width: 100%; height: 100%;
    background-color: transparent;
    content: '\25B2';
    color: var(--main) !important;
    font-size: 26pt;
    text-align: center;
}


/*----------BURGER CLASSES----------*/

.burger-btn {
    height: inherit;
    right: 0; top: 0;
    border: 0;
    z-index: 7;
    position: fixed;
    margin: 0;
    background-color: transparent;
    padding: 17px;
}

.burger-btn img {
    width: 100%; height: 100%;
    padding: 0; margin: 0;
    filter: invert(1);
}


.burger {
    height: 55px;
    width: 100%;
    z-index: 5;
    position: fixed;
    transition: .2s ease-out;
    background-color: var(--bgmain);
}

.burger a {
    color: var(--main);
    font-weight: 300;
}

.burger li {
    display: block;
    font-size: 14pt;
    margin: 0;
    padding: 10px 25px;
}

.burger ul li > a {
    height: 20px !Important;
    ;
}

.burger li li {
    padding: 10px 40px;
    font-weight: 300;
    letter-spacing: 0px;
}

/*
.burger ul a {
    color: var(--accent) !important;
    letter-spacing: 2px;
    font-size: 10pt;
    font-weight: 400;
    padding: 20px;
}*/

.burger ul a li {
    letter-spacing: 0px;
    font-weight: 300;
    color: var(--main);
}

.burger > ul {
    margin-left: 100%;
    transition: .2s ease-out;
    background-color: var(--bgmain);
    height: 100vh;
    width: 100% !important;
}

.burger ul:before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: " ";
    z-index: -1;
    overflow: hidden;
}

.burger #home {
    position: fixed;
    left: 28px;
    top: 14px;
    height: auto;
}

.burger #home img {
    height: 12px;

}

.enabled ul {margin-left: 0%;}
.enabled #home {display: none;}

.index, .index ul li  {
    background-color: transparent;
}

.index ul li a, .index a {
    color: white;
}

.enabled .burger-btn div {
    background-color: var(--main);
}

/*----------TEXT CLASSES----------*/

p, h1, h2, ul li {
    margin-bottom: 5px;
}

h1 {
    font-size: 17pt;
    font-weight: 400;
    color: var(--accent);
    text-align: center;
    margin-top: .6em;
    margin-bottom: .6em;
}

h2 {
    font-size: 10pt;
    color: var(--accent);
    text-align: center;
    font-weight: bold;
    margin-top: 0.83em;
}

ul {
    list-style-type: "-";
    padding-left: 5px;
}

.tab li {
    text-indent: -3em;
    list-style: none;
}

.tab li {
    padding-left: 3em;
}

/*----------IMAGE CLASSES----------*/

.autoportrait {
    width: 100%;
}

.color {
    filter: invert(0);
}

.pfp {
    width: 100%;
    max-width: 200px;
    margin: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
}
.pfp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/*----------BLOCK CLASES----------*/

.prodlogo{
	height: inherit;
	width: inherit;
	object-fit: contain;
}

.block-logos div {
	margin: 20px;
	display: inline-flex;
}

.block-logos {
    margin: auto;
    text-align: center;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.block {
    margin: auto;
    padding-left: 15px; padding-right: 15px;
    margin-bottom: 55px;
}

.block div {
  margin-bottom: 25px;
}
.block a {
    font-weight: bold;
    color: var(--accent);
    text-decoration: underline;
}

.block-embed {
    margin: auto;
    margin-bottom: 25px;

}

.video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.block-highlight {
    margin: auto;
    margin-bottom: 15px;
    background-color: var(--bgaccent);
    text-align: center;
}

.block-highlight ul {
    padding: 0;
    list-style-type: none;
}

.block-gallery {
    margin: auto;
    margin-top: -12px;
    outline: none;
    margin-bottom: 25px;
}

.block-gallery a:hover div {
    opacity: 1;
}

.block-index {
    overflow: hidden;
    height: 100%;
    position: absolute;
    width: 100%;
}

.block-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-gallery h3 {
    position: absolute;
    z-index: 3;
    background: red;
    padding: 15px;
    bottom: 0;
}

.block-gallery a div {
    z-index: 1;
    bottom: 10px;
    margin-left: 15px;
    opacity: 0;
    transition: .1s ease-out;
    text-align: right;
}

.nonsticky, .sticky {
    padding: 5px;
    margin-bottom: 20px;
    padding-right: 20px; padding-left: 10px;
    background-color: rgba(0,0,0,1);
}

.block-gallery h2, .block-gallery h1 {
    color: white;
    padding: 0; margin: 0;
    text-align: left;
    font-size: 12pt;
}

.nonsticky {position: absolute;}
.sticky {position: fixed;}

.notdisplayed {
    display: none;
    pointer-events: none;
    opacity: 0 !important;
}

.hidden img {
    opacity: 0;
}

.hidden {
    display: none;
}

.shorts-title {
    object-fit: contain;
    max-height: 100px;
    object-position: center;
    width: 100%;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
}

.works {
    opacity: 1 !important;
    padding: 5px 15px;
}

.works h1 {

}

.works-img {
    transition: opacity .8s, filter .1s !important;
    filter: brightness(1) contrast(1);
}

.works-img:hover {
    filter: brightness(.9) contrast(.9);
}

.block-index-gradient {
    background: linear-gradient(180deg,rgba(40, 40, 40, .4)0%,rgba(0,0,0,0)40%);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}


.block-grid {
    border: 1px var(--border) dotted;
    margin: auto;
    padding-left: 15px;    padding-right: 15px;
}

.block-grid ul {
    list-style-type: none;
    padding-left: 5px; padding-right: 5px;
    /*margin-bottom: 15px;*/
}

.block-grid div {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 55px;
}

.block-grid p {
    text-align: justify;
    letter-spacing: -.3px;
    padding-right: 5px; padding-left: 5px;
}

a:hover {
    text-decoration: none;
}

.without {
    border-color: transparent;
}

#gallery1 div {
    display: block !Important;
}

.fwrapper {
   width: 220px;
   margin: auto;
}

.fbutton {
    background-color: transparent;
    color: var(--main);
    padding: 15px;
    text-align: center;
    border: var(--main) 2px solid !important;
    transition: background-color .1s ease-out;
}

.fbutton:hover {
    background-color: var(--main);
    color: var(--bgmain);
}

.printshop {
    text-align: center;
}

.printshop div {
    margin: 0;
    margin-bottom: 5px;
}

.printshop .fwrapper {
    display: inline-block;
    width: 200px;
    padding: 0 7px;
}

.printshop a {
    text-decoration: none;
    font-weight: 500;
}

/*----------HOME BUTTON----------*/

#home {
    height: 100%;
    padding: 0px 36px;
	display: inline-block;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#home img {
    height: 12pt;
    width: auto;
    margin-bottom: -4px;
    transform: scale(1.8);
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
}

.navbar li {
    padding: 1rem;
}

/*----------INDEX SLIDESHOW---------*/

.slide {
	height: 100%;
	position: fixed;
	transition: .4s ease-out;
	width: 100%;
    margin: 0;
    padding: 0;
}

.slide img {
	height: inherit;
	object-fit: cover;
	width: inherit;
}

.slide div {
    position: fixed;
    background: black;
    padding: 10px;
    padding-left: 30px; padding-right: 30px;
    transition: background .1s ease-out;
}

.slide div:hover {
    background-color: var(--accent);
}

.slide div h1 {
    text-align: center;
    color: white;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 14pt;
}

.slide-prev, .slide-next {
	cursor: pointer;
	height: calc(100% - 260px);
	opacity: 0;
	position: absolute;
	width: 30%;
    -webkit-tap-highlight-color: transparent;
	bottom: 120px;
}

.slide-prev {left: 0;}
.slide-next {right: 0;}

.index a li #home,
.index .burger-btn div {filter: brightness(0) invert(1);}
.enabled .burger-btn div {filter: invert(0);}

/*----------SCALING----------*/

/*PHONE*/@media (min-width: 320px) {
    .navbar ul {width: calc(100% - 20px);}
    .navbar-title {opacity: 0;}
    .block {width: calc(100% - 40px)}
    .block-gallery {width: 100%}
    .block-embed {width: calc(100% - 10px)}
    .block-highlight {width: calc(100% - 50px);}
    .block-logos {width: calc(100% - 40px)}
    .block-grid {width: calc(100% - 40px)} .block-grid div {width: 100%;} .line {padding: 0; border: 0;}
    .slide div {bottom: 40px; left: auto; width: auto; right: 40px;}
    .sticky, .nonsticky {display: none;}
}
/*IPAD*/@media (min-width: 700px) {
    .navbar ul {width: 670px;}
    .navbar-title {opacity: 1; text-align: right;}
    .block {width: calc(600px);}
    .block-gallery {width: calc(100% - 28px);}
    .block-embed {width: 650px;}
    .block-highlight {width: 500px;}
    .block-logos {width: calc(100% - 28px);}
    .block-grid {width: calc(600px);}
    .enabled #home {display: inline;}
    .slide div {bottom: 80px; left: auto; width: auto; right: 80px;}
    .sticky, .nonsticky {display: block;}
    header {height: 66px;}
}
/*LAPTOP*/@media (min-width: 1200px) {
    .navbar ul {width: 100%; max-width: 1280px;}
    .navbar-title {opacity: 1; text-align: center;}
    .block {}
    .block-gallery {width: calc(100% - 250px);}
    .block-embed {width: 1000px;}
    .block-highlight {}
    .block-logos {width: 800px;}
    .block-grid {width:800px;} .block-grid div {width: 48.6%; padding-right: 8px;} .line {border-left: 1px var(--main) solid; padding-left: 8px; padding-right: 0 !important;}
}
