@charset "utf-8";
/* CSS Document */

@font-face{
	font-family: header-font;
	src: url("PPRader-Bold.woff")
}

@font-face{
	font-family: body-font;
	src: url("Helvetica\ Neue\ LT\ Std\ 43\ Light\ Extended.woff")
}

/*lightbox*/
#lightbox {
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background-color:#000000d7 ; 
    text-align:center;
	display: table-cell;
	z-index: 999 !important;
	display: none;
}

.responsive-image-container:hover{
	cursor: pointer;
}

#lightbox p {
    text-align:right; 
    color:#fff; 
    margin-right:20px; 
    font-size:12px; 
}

#lightbox img {
    box-shadow:0 0 25px #111;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
	z-index: 99999;;
}
/**/

a{
    text-decoration: none;
    color: #ff4a67;
    font-weight: bold;
}

:root {
    touch-action: pan-x pan-y;
    height: 100%; 
}

html{
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
    height:100%;
}

body{
    background-color: #fffbf1;
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    transition: background 0.5s ease;
}

body::-webkit-scrollbar {
    width: 5px;
}

/* body::-webkit-scrollbar-track {

} */

body::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 100px;
}

*, *:after, *:before {
    box-sizing: border-box;
}

ul, li, a{
    text-decoration: none;
    list-style-type: none;
}

.wrapper{
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
}

.dark-mode{
    background-color: green;
    color: red;
}

/*Navigation*/
.nav-bar{
    width: 100%;
    position: fixed;
    z-index: 1;
    display: flex;
    padding-top: 32px;
    padding-bottom: 100px;
    align-items: center;
}

.logo{
    width: 100%;
}

.logo img{
    padding: 8px;
    width: 150px;
}

.nav-buttons{
    padding: 8px;
    width: 100%;
    display: flex;
}
.btn_1{
    display: flex;
    width: 50%;
    margin-left: 20vw;
}

.btn_2{
    width: 50%;
}

button{
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'body-font';
    font-weight: 900;
}

button:hover{
    color: grey;
    transition: 0.3s ease;
}

.space{
    width: 100%;
    height: 150px;
}

/*Modal*/
.modal {
    display: none; /* Hidden by default */
    z-index: 1; /* Sit on top */
    width: 100%; /* Full width */
    overflow: hidden; /* Enable scroll if needed */
    -moz-animation: slide 1s ease 0.3s forwards;
    -webkit-animation: slide 1s ease 0.3s forwards;
    -o-animation: slide 1s ease 0.3s forwards;
    -ms-animation: slide 1s ease 0.3s forwards;
    animation: slide 1s ease 0.3s forwards;
    transition: all 0.3s ease;
}

.modal2{
    display: none !important;
}

/* Modal Content */
.modal-content {
    /* padding-bottom: 200px; */
    margin: auto;
    width: 100%;
    height: 100%;
    padding-bottom: 32px;
}

.about-title{
    font-family: 'header-font';
    font-size: 36px;
    padding-bottom: 20px;
}

.about-body{
    font-family: 'body-font';
    font-size: 16px;
    line-height: 24px;
}
  
@-moz-keyframes slide /* Firefox */
{
from {height: 0;}
to {height: 200px;}
}

@-webkit-keyframes slide /* Safari and Chrome */
{
from {height: 0;}
to {height: 200px;}
}

@-ms-keyframes slide /* IE10 */
{
from {height: 0;}
to {height: 200px;}
}

@keyframes slide
{
from {height: 0;}
to {height: 200px;}
}

/* The Close Button */
.close {
    display: none;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/*WIP-header*/
.wip-header{
    padding: 100px 0 0px 0;
    font-size: 30px;
    font-family: 'header-font';
}

.wip-body{
    padding-bottom: 50px;
    font-family: 'body-font';
    font-size: 16px;
}

.storyboard-container{
    padding: 50px;
}

/*Content Works*/
.width-container{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.content-works{
    display: flex;
    width: 100%;
}

.content-works2{
    width: 100%;
}

.works{
    transition: 0.3s ease;
    position: relative;
}

/*iframe corpo pdf*/
iframe{
    margin: 0 auto;
    /* margin-top: 50px; */
    display: flex;
    width: 90%;
    height: 960px
}

/*Projects-container*/
.projects-container{
    width: 100%;
    margin: 0 auto;
    padding-left: 3vw;
    padding-right: 3vw;
}

.works img{
    display: flex;
    width: 100%;
    padding: 5px;
    margin: 0 auto;
}

.work-details{
    position: absolute;
    margin-top: 1vw;
    margin-left: 1vw;
    z-index: 999;
}

.works-overlay{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #000000b7;
}

.header-works{
    font-family: 'header-font';
    font-size: 2.050em;
    color: white;
}

.body-works{
    font-family: 'body-font';
    font-size: 0.9em;
    color: white;
}

.works:hover .works-overlay{
    padding: 5px !important;
    opacity: 1;
    transition: 0.3s ease;
}

/*Footer*/
.footer{
    width: 100%;
    display: flex;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5vw;
    padding-right: 5vw;
    font-family: 'body-font';
    font-size: 16px;
}

.instagram{
    width: 33.33%;
    transition: 0.3s ease;
}

.instagram a:hover{
    transition: 0.3s ease;
    color: grey;
}

.instagram a{
    text-decoration: underline;
    color: #1c1c1c;
}

.dm{
    font-size: 14px;
}

.discord{
    width: 33.33%;
    margin: 0 auto;
    text-align: center;
}

.discord img{
    width: 35px;
}

.contact{
    display: flex;
    flex-direction: row-reverse;
    width: 33.33%;
}

/*Works Page*/
.work-desc{
    padding-top: 200px;
}

.work-title{
    font-family: 'header-font';
    font-size: 36px;
    padding: 5px;
}

.description{
    font-family: 'body-font';
    font-size: 16px;
    padding: 5px;
    width: 550px;
}

.header-work{
    padding-top: 50px;
}

.header-work img{
    width: 100%;
    padding: 5px;
}

.work-content{
    display: flex;
    width: 100% !important;
}

.work-image img{
    width: 100%;
    padding: 5px;
}

.video-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.video-content iframe{
    width: 100%;
    height: 100%;
    border: none;
}

.video{
    flex: 1 1 45%;
    aspect-ratio: 16 / 9;
    padding: 5px;
}

.shorts-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    /* max-width: 1440px; */
    width: 100%;
    /* height: 1011px; */
    gap: 5px;
    height: auto;
    /* background: red; */

}

.shorts{
    flex: 1 1 clamp(300px, 40%, 715px);
    aspect-ratio: 5 / 4;
    /* max-width: 715px; */
    width: 100%;
    min-height: auto;
}

.shorts img{
    width: 100%;
    height: auto;
}

.shorts iframe{
    width: 100%;
    height: 100%;
}


@media only screen and (max-width: 425px) {

    iframe{
        margin: 0 auto;
        margin-top: 32px;
        display: flex;;
        height: 400px;
    }

    .storyboard-container{
        padding: 0;
        width: 100%;
    }

    .story-container{
        width: 100%;
        display: flex;
        flex: 2;
    }

    .story-image img{
        flex: 2
    }

    .wip-header{
        padding-top: 50px;
    }

    .wip-body{
        padding-bottom: 20px;
    }

    .projects-container{
       width: 100%;
    }
    
    .nav-bar{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        margin-top: 32px;
        align-content: center;
    }

    .nav-buttons{
        width: 100%;
        padding: 0px;
        margin: 0 auto;
        text-align: center;
        font-size: 14px !important;
    } 

    .btn_1{
        margin-left: 16px;
        width: 10%;
    }

    .btn_2{
        margin-left: 16px;
    }

    .logo{
        width: 30%;
        padding: 0;
    }

    .logo img{
        padding: 0;
        margin: 0 auto;
        width: 60px;
    }

    .nav-button{
        flex-direction: column;
    }

    .about-title{
        padding-top: 32px;
        font-family: 'header-font';
        font-size: 32px;
        padding-bottom: 10px;
    }

    .modal{
        display: block;
        height: 100% !important;
    }

    .header-work{
        padding-top: 0px;
    }

    .work-details{
        margin-top: 3vw;
        margin-left: 3vw;
    }

    .description{
        width: 350px;
    }

    .work-desc{
        padding-top: 150px;
    }

    .content-works{
        flex-direction: column;
    }

    .video-content{
        flex-direction: column !important;
        align-items: center;
    }
    
    .video{
       width: 100%;
       max-width: 600px!important;
    }

    .shorts-content{
        flex-direction: column;
        align-items:center;
    }

    .shorts img{
        width: 100px;
    }

    .shorts iframe{
        width: 100%;
    }

    .valo_index{
        object-fit: cover;
        width: 100%;
        height: 250px;
    }

    @-moz-keyframes slide /* Firefox */
    {
    from {height: 0;}
    to {height: 300px;}
    }

    @-webkit-keyframes slide /* Safari and Chrome */
    {
    from {height: 0;}
    to {height: 300px;}
    }

    @-ms-keyframes slide /* IE10 */
    {
    from {height: 0;}
    to {height: 300px;}
    }

    @keyframes slide
    {
    from {height: 0;}
    to {height: 300px;}
    }

    .footer{
        flex-direction: column;
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact, .instagram, .discord{
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    /*Work Page (414px)*/
    .work-content{
        flex-direction: column;
    }
}