@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

:root
{
    --lightgrey: #ECF3F7;
    --darkergrey: #454B4D;
    --orange: #FF5C00;
}

body
{
    margin: 0;
    padding: 0;
    color: var(--darkergrey);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

a
{
    text-decoration: none;
    color: var(--darkergrey);
}

a:hover
{
    text-decoration: none;
    color: inherit;
}

.web-only
{
    display: none;
}

.divClear
{
    clear: both;
    height: 0;
    width: 100%;
}

#header
{
    position: fixed;
    height: 60px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 900;
    background-image: url(../images/header_bg-25.jpg);
    background-repeat: repeat-x;
    background-position: center bottom;
}

#header .header_container
{
    width: 100%;
    max-width: 1920px;
    padding: 0 40px;
}

#header #logo
{
    float: left;
    width: 100px;
    height: 50px;
    margin-top: 5px;
}

#header #logo img
{
    height: 100%;
    width: auto;
}

#header #nav
{
    float: right;
    position: relative;
    height: 60px;
    background-color: #EEE;
}

#header #nav .nav_display
{
    position: absolute;
    top: 12px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-image: url(../images/nav_btn.png);
    background-position: left center;
    background-repeat: no-repeat;
}

#header #nav .nav_display.active
{
    background-position: right center;
}

#header #nav .nav_display a
{
    display: block;
    width: 100%;
    height: 100%;
}

#header #nav .nav_container
{
    position: absolute;
    top: 100%;
    right: -40px;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
}

#header #nav .nav_content
{
    background-color: var(--darkergrey);
    text-align: right;
}

#header #nav .nav_content ul
{
    margin: 0;
    padding: 0;
}

#header #nav .nav_content ul li
{
    list-style: none;
    margin: 0;
    padding: 0;
}

#header #nav .nav_content a
{
    color: var(--lightgrey);
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
}

#header #nav .nav_content .active
{
    color: var(--orange) !important;
}

#head_offset
{
    width: 100%;
    height: 60px;
}

#main_area
{
    background-color: var(--lightgrey);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

#main_display
{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.video_item_wrapper
{
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    position: relative;
}

.video_item
{
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-box-shadow: 5px 10px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 10px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 5px 10px 5px 0px rgba(0,0,0,0.1);
}

.video_desc
{
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding-top: 10px;
}

.video_desc.small
{
    font-size: 10px;
}

.video_desc span
{
    font-size: 8px;
    color: #ACB2B5;
    font-weight: 400;
}

.video_desc.small span
{
    font-size: 7px;
}

.video_item a
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video_item .over
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}

.video_item:hover .over
{
    opacity: 0;
}

.video_item .over.active
{
    background-color: rgba(255,255,255,0.3) !important;
}

.video_item:hover .over.active
{
    opacity: 1;
}

.video_item:hover .title
{
    background-color: rgba(0,0,0,0.7);
    bottom: 0;
    transform: translate(0%,0%);
}

.video_item .title
{
    position: absolute;
    left: 0;
    bottom: 50%;
    width: 100%;
    padding: 5px;
    -webkit-transform: translate(0%,50%);
    -ms-transform: translate(0%,50%);
    -o-transform: translate(0%,50%);
    transform: translate(0%,50%);
    background-color: rgba(0,0,0,0.0);
    color: var(--lightgrey);
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.back_btn
{
    text-align: right;
    margin-bottom: 30px;
}

#contacto .contacto
{
    border: #CCC thin dashed;
    padding: 10px;
    padding-bottom: 20px;
    margin-top: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

#contacto .contacto .text
{
    font-size: 20px;
}

#contacto .contacto .button
{
    margin-top: 20px;
}

#contacto .contacto .button a
{
    padding: 8px 16px;
    border: var(--darkergrey) 2px solid;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

#contacto, 
#footer
{
    padding: 20px 0;
    width: 100%;
    background-color: var(--lightgrey);
}

#footer
{
    padding-bottom: 60px;
    font-size: 12px;
}

#footer .logos
{
    text-align: right;
}

#footer .logos_container
{
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    -o-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

#footer .logos a
{
    margin-left: 5px;
}

#footer .logos a img
{
    width: 25px;
    height: auto;
}

#footer_fix
{
    width: 100%;
    height: 0;
}

#lightbox
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
}

#lightbox .player_container
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 1920px;
    padding: 10px;
}

#lightbox .toClose
{
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
    text-transform: uppercase;
    color: var(--orange);
    font-size: 12px;
    pointer-events: none;
    font-weight: 700;
}

h1
{
    text-align: center;
    font-size: 46px;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 7;
}

h1.small_title
{
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#warning
{
    width: 100%;
    max-width: 1920px;
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
}

.project_player
{
    margin-bottom: 30px;
    padding: 20px 0;
    background-color: var(--lightgrey);
    width: 100%;
    text-align: center;
}

.project_player .project_player_container
{
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}

.reelTitle
{
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}


@media screen and (min-width: 600px) {
    
    .web-only
    {
        display: inline;
    }
    
    #header
    {
        height: 80px;
    }
    
    #header #logo
    {
        height: 66px;
    }
    
    #header #nav
    {
        height: 80px;
    }
    
    #header #nav .nav_display
    {
        display: none;
    }
    
    #header #nav .nav_container
    {
        height: auto;
        overflow: visible;
        top: 45px;
        right: 0;
        width: 600px;
    }
    
    #header #nav .nav_content
    {
        background-color: transparent !important;
        text-align: right;
    }

    #header #nav .nav_content ul li
    {
        display: inline-block;
    }

    #header #nav .nav_content a
    {
        color: var(--darkergrey);
        display: block;
        padding: 0px;
        margin-left: 20px;
        -webkit-transition: color 0.4s;
        -o-transition: color 0.4s;
        transition:color 0.4s ;
    }
    
    #header #nav .nav_content a:hover
    {
        color: var(--orange);
    }
    
    .video_desc
    {
        margin-bottom: 30px;
    }
    
    #contacto .contacto
    {
        padding: 20px;
    }
    
    #contacto .contacto .text
    {
        font-size: 40px;
        text-align: left;
        float: left;
        padding-left: 20px;
    }
    
    #contacto .contacto .button
    {
        float: right;
    }
    
    #footer
    {
        font-size: 14px;
    }
    
    #lightbox .player_container
    {
        padding: 70px;
    }
    
    h1
    {
        font-size: 72px;
    }
    
    h1.small_title
    {
        font-size: 36px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
}