*{
    margin: 0;
    cursor: url(../img/cursor.png), auto;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: black;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .1s;
    transition-timing-function: ease-in-out;
}

a:hover {
    cursor: url(../img/cursorlink.png), pointer;
    transition: .1s;
    transition-timing-function: ease-in-out;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-repeat: no-repeat;
}

#sidebar{
    width: 90%;
    border-radius: 20px;
    height: 50px;
    border: solid black 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    z-index: 3;
}


#logo{
    width: 150px;
    height: 50px;
    text-align: center;
    border-right: solid black 2px;
    background-image: url(../img/logo.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#logo a{
    width: 100%;
    
}

#menu{
    display: flex;
    flex-direction: row;
    font-family: 'Space Grotesk', sans-serif;
    color: black;
    font-weight: 700;
    font-size: .95em;
    letter-spacing: 1px;
    align-items: center;
    margin-right: 3vw;
}

#menu a{
    width: 100%;
    margin: 0 2vw;
}

#menu a:hover {
    border-bottom: solid black 2px;
    padding-bottom: 2px;
    zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.4;
    transition: .1s;
    transition-timing-function: ease-in-out;
}

.selected{
    border-bottom: solid black 2px;
    padding-bottom: 2px;
}

/*

#header{
    position: absolute;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    z-index: 1;
}

*/

#header_reel{
    position: absolute;
    width: 90%;
    height: 50vh;
    margin-top: 15vh;
}

#reel_video{
    position: absolute;
    width: 100%;
    height: 50vh;
    border-radius: 20px;
    object-fit: cover;
}

#reel_video:hover{
    
}

#reel_text{
    position: absolute;
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 2.5em;
    letter-spacing: 0;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0;
    z-index: 1;
    transition: .3s;
    transition-timing-function: ease-in-out;
}

#reel_text:hover{
    background-color: rgba(255, 255, 255, .5);
    opacity: 1;
    letter-spacing: 1.5px;
    transition: .3s;
    transition-timing-function: ease-in-out;
    cursor: url(../img/cursorlink.png), pointer;
}

#intro_text{
    width: 80%;
    margin: 65vh 0 5vh 6%;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 2.5em;
    display: flex;
    justify-content: flex-start;
    
}

#intro_text p{
    width: 60%;
}

#content_section{
    width: 80%;
}

.all_posts{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.post{
    width: 42%;
    height: 40vh;
    margin: 4%;
    cursor: url(../img/cursorlink.png), pointer;
}

.post_header{
    position: absolute;
    width: 33.6%;
    padding-left: 0;
    height: inherit;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    letter-spacing: 0;
    opacity: 1;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0);
    transition: .3s;
    transition-timing-function: ease-in-out;
    cursor: url(../img/cursorlink.png), pointer;
}

.post_header:hover{
    width: 31.6%;
    padding-left: 2%;
    letter-spacing: 1px;
    opacity: .5;
    background-color: rgba(255, 255, 255, 1);
    transition: .3s;
    transition-timing-function: ease-in-out;
}

.post_title{
    height: 5vh;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.7em;
    display: flex;
    align-items: center;
    cursor: url(../img/cursorlink.png), pointer;
}

.post_arrow{
    height: 5vh;
    cursor: url(../img/cursorlink.png), pointer;
}

.post_image{
    width: 100%;
    height: 35vh;
    margin-top: 5vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    object-fit: cover;
    z-index: -1;
}

footer{
    width: 90%;
    height: 50px;
    border: solid white 2px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 10vh;
    background-color: black;
}

#logo_footer{
    width: 150px;
    height: 50px;
    text-align: center;
    border-right: solid white 2px;
    background-image: url(../img/logo_white.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#logo_footer a{
    width: 100%;
    
}

footer div{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: .9em;
    color: white;
}

#arrow{
    width: 50px;
    border-left: solid white 2px;
}

footer img{
    transform: rotate(270deg);
}

/*TABLET*/

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

    
    #intro_text p{
        width: 80%;
    }
    
    .all_posts{
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
   .post{
        width: 80%;
        height: 40vh;
        margin: 10%;
        cursor: url(../img/cursorlink.png), pointer;
    }

    .post_header{
        position: absolute;
        width: 64%;
        padding-left: 0;
        height: inherit;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        letter-spacing: 0;
        opacity: 1;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0);
        transition: .3s;
        transition-timing-function: ease-in-out;
        cursor: url(../img/cursorlink.png), pointer;
    }

    .post_header:hover{
        width: 62%;
        padding-left: 2%;
        letter-spacing: 1px;
        opacity: .5;
        background-color: rgba(255, 255, 255, 1);
        transition: .3s;
        transition-timing-function: ease-in-out;
    }
    
}




@media only screen 
and (min-device-width : 500px) 
and (max-device-width : 1200px){
    
    
    #intro_text p{
        width: 80%;
    }
    
    .all_posts{
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .post{
        width: 80%;
        height: 40vh;
        margin: 10%;
        cursor: url(../img/cursorlink.png), pointer;
    }

    .post_header{
        position: absolute;
        width: 64%;
        padding-left: 0;
        height: inherit;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        letter-spacing: 0;
        opacity: 1;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0);
        transition: .3s;
        transition-timing-function: ease-in-out;
        cursor: url(../img/cursorlink.png), pointer;
    }

    .post_header:hover{
        width: 62%;
        padding-left: 2%;
        letter-spacing: 1px;
        opacity: .5;
        background-color: rgba(255, 255, 255, 1);
        transition: .3s;
        transition-timing-function: ease-in-out;
    }        
        
}


/*MOVIL*/

@media only screen and (max-width: 650px) {
    
    #sidebar{
        height: 80px;
    }
    
    #logo{
        width: 30%;
        height: auto;
        text-align: center;
    }

    #logo img{
        max-width: 100%;
        height: auto;
        padding: 0;
    }

    #menu{
        font-size: 2.2em;
        font-weight: 500;
    }
    
    .post{
        width: 94%;
        height: 40vh;
        margin: 3%;
        cursor: url(../img/cursorlink.png), pointer;
    }
    
    .post_header{
        position: absolute;
        width: 75.2%;
        padding-left: 0;
        height: inherit;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        letter-spacing: 0;
        opacity: 1;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0);
        transition: .3s;
        transition-timing-function: ease-in-out;
        cursor: url(../img/cursorlink.png), pointer;
    }
    
    .post_header:hover{
        width: 73.2%;
        padding-left: 2%;
        letter-spacing: 1px;
        opacity: .5;
        background-color: rgba(255, 255, 255, 1);
        transition: .3s;
        transition-timing-function: ease-in-out;
    }  

    
    .post_title{
        font-size: 2.2em;
    }
    
    footer{
        height: 80px;
    }
    
    #logo_footer{
        width: 30%;
        height: 80px;
    }
        
    #copyright{
        font-size: 1.6em;
    }
    
    #footer_self{
        display: none;
    }
    
    #arrow{
        width: 80px;
    }
}


@media only screen 
and (min-device-width : 100px) 
and (max-device-width : 650px){
        
    #sidebar{
        height: 80px;
    }
    
    #logo{
        width: 30%;
        height: auto;
        text-align: center;
    }

    #logo img{
        max-width: 100%;
        height: auto;
        padding: 0;
    }

    #menu{
        font-size: 2.2em;
        font-weight: 500;
    }
    
    .post{
        width: 94%;
        height: 40vh;
        margin: 3%;
        cursor: url(../img/cursorlink.png), pointer;
    }
    
    .post_header{
        position: absolute;
        width: 75.2%;
        padding-left: 0;
        height: inherit;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        letter-spacing: 0;
        opacity: 1;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0);
        transition: .3s;
        transition-timing-function: ease-in-out;
        cursor: url(../img/cursorlink.png), pointer;
    }
    
    .post_header:hover{
        width: 73.2%;
        padding-left: 2%;
        letter-spacing: 1px;
        opacity: .5;
        background-color: rgba(255, 255, 255, 1);
        transition: .3s;
        transition-timing-function: ease-in-out;
    } 

    
    .post_title{
        font-size: 2.2em;
    }

    footer{
        height: 80px;
    }
    
    #logo_footer{
        width: 30%;
        height: 80px;
    }
    
    #copyright{
        font-size: 1.6em;
    }
    
    #footer_self{
        display: none;
    }
    
    #arrow{
        width: 80px;
    }
    
}