html, body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
}
a {
    color: #363636;
}

/* Resize logo with the screen */
.nav-item.is-brand {
    flex-shrink: 1;
    padding-left: 0 !important;
}

/* Text Bio */
.bio {
    padding: 0 20px;
}

.bio p {
    margin-bottom: 15px;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 20px;
    margin-top: 25px;
}

.menu-box {
    border: 2px solid #363636;
    padding: 0 25px;
    font-size: 15px;
    color: #363636;
    margin: 5px 0;
}

.menu-box.is-active {
    background-color: #363636;
    color: white;
}

.menu-list a {
    text-align: end;
    padding: 0 10px;
    color: #838383;
}

.menu-list a:hover {
    background-color: white;
    color: #363636;
}

.menu-list a.is-active {
    font-weight: bold;
    background-color: white;
    color: #363636;
}

.sitemap .column {
    padding-left: 20px;
}

.sitemap-photo-cols {
    margin-top: 1em;
    column-count: 2;
}

.sitemap-list a {
    text-align: start;
    /*padding: 0 10px;*/
    color: #838383;
    display: block;
    padding: 0 .75em;
}

.sitemap-list a:hover {
    background-color: white;
    color: #363636;
}

.item-wrapper {
    margin-top: 65px;
    margin-bottom: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item {
    max-width: 728px;
}

.photo-wrapper {
    max-width: 728px;
    margin: 0 auto;
}

/*.nav {
    position: fixed;
    top: 0;
    width: 100%;
}*/

.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
}

.nav-scrollable {
    padding-bottom: 25px;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
}

.space-from-top {
    margin-top: 130px;
    margin-bottom: 80px;
}

.footer {
    margin-top: 50px;
}

.nav-left {
    margin-top: 25px;
    /*margin-bottom: 25px;*/
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .nav-left {
        margin: 0;
    }
    .space-from-top {
        margin-top: 80px;
        margin-bottom: 30px;
    }
    .item-wrapper {
        margin-top: 80px;
        margin-bottom: 0;
    }
    .sitemap-photo-cols {
        column-count: 1;
    }
    .sitemap-list a {
        padding: .5em .75em;
    }
}

.nav-toggle {
    margin: 15px 0;
}

.nav-toggle span {
    height: 2px;
}

.nav-right {
    /* flex-grow: 2;*/
    justify-content: space-between;
    align-items: center;
}

.nav-item img {
    max-height: 60px;
}

.nav-item {
    font-size: 15px;
    font-weight: 300;
}

.is-box {
    border: 2px solid #363636;
    padding: 0 25px;
    color: #363636;
}

.is-active .is-box {
    background-color: #363636;
    color: white;
}

.nav > .container > .nav-right > .nav-item:last-child:not(.is-tab) {
    padding-right: 5px;
}
/*
.nav-item a.is-tab.is-active, a.nav-item.is-tab.is-active {
    border-bottom: 3px solid #363636;
    border-top: 3px solid transparent;
    color: #363636;
}

.nav-item a.is-tab:hover,
a.nav-item.is-tab:hover {
  border-bottom: 1px solid #363636;
  border-top: 1px solid transparent;
}
*/
.menu-wrapper {
    margin-top: 50px;
/*    margin-right: 30px;*/
}
/*.column.aside {
    width: 500px;
    flex-basis: 500px;
}
*/
.column.fotos {
    flex: 1;
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

/* CSS Trick to mantain aspect ratio */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video info */
.video-info {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    text-shadow: 1px 1px #000;
    margin: 0 5px 5px 5px;
}
.video-title {
    font-family: Montserrat;
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    padding-bottom: 5px;
    border-bottom: 1px solid white;
    margin-bottom: 5px;
}
.video-subtitle {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 16px;
    margin: 0 10px;
}
@media screen and (max-width: 768px) {
    .video-title {
        font-size: 20px;
    }
    .video-subtitle {
        font-size: 14px;
    }
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 5px 5px 5px;
    background-color: black;
    transition: opacity .25s ease-in-out;
    opacity: 0;
}
.grid-video-item a:hover .video-overlay {
    opacity: 0.7;
}
/* Masonry Photos */

/* 1 columns by default */
/*.grid-sizer, .grid-item { width: 100%; padding: 0 5px; margin-bottom: 10px; }
.gutter-sizer { width: 3%; }
.grid-item--width2 { width: 100%; }*/

/* 2 columns for larger screens */
/*@media screen and (min-width: 768px) {
  .grid-sizer, .grid-item { width: 50%; padding: 0 5px; margin-bottom: 10px; }
  .gutter-sizer { width: 2%; }
  .grid-item--width2 { width: 100%; }
}
*/
/* 2 columns by default */
.grid-sizer, .grid-item { width: 50%; padding: 0 5px; margin-bottom: 5px; }
.gutter-sizer { width: 2%; }
.grid-item--width2 { width: 100%; }

/* 3 columns for larger screens */
@media screen and (min-width: 769px) {
  .grid-sizer, .grid-item { width: 33%; padding: 0 5px; margin-bottom: 5px; }
  .gutter-sizer { width: 2%; }
  .grid-item--width2 { width: 66%; }
}

/* 4 columns for larger screens */
@media screen and (min-width: 1192px) {
  .grid-sizer, .grid-item { width: 25%; padding: 0 5px; margin-bottom: 5px; }
  .gutter-sizer { width: 2%; }
  .grid-item--width2 { width: 50%; }
}

/* 5 columns for extra-larger screens */
@media screen and (min-width: 1600px) {
  .grid-sizer, .grid-item { width: 20%; padding: 0 5px; margin-bottom: 5px; }
  .gutter-sizer { width: 2%; }
  .grid-item--width2 { width: 40%; }
}

/* Max good view under 1980px aprox */

/* Masonry Videos */

/* 1 column for x-small screens */
.grid-video-sizer, .grid-video-item { width: 100%; padding: 0 5px; margin-bottom: 5px; }
.gutter-sizer { width: 2%; }
.grid-video-item--width2 { width: 100%; }

/* 2 columns by touchable devices (mobile / tablet) */
@media screen and (min-width: 490px) {
    .grid-video-sizer, .grid-video-item { width: 50%; padding: 0 5px; margin-bottom: 5px; }
    .gutter-sizer { width: 2%; }
    .grid-video-item--width2 { width: 100%; }
}

/* 3 columns for larger screens */
@media screen and (min-width: 980px) {
  .grid-video-sizer, .grid-video-item { width: 33%; padding: 0 5px; margin-bottom: 5px; }
  .gutter-sizer { width: 2%; }
  .grid-video-item--width2 { width: 66%; }
}

/* 4 columns for extra-larger screens */
@media screen and (min-width: 1500px) {
  .grid-video-sizer, .grid-video-item { width: 25%; padding: 0 5px; margin-bottom: 5px; }
  .gutter-sizer { width: 2%; }
  .grid-video-item--width2 { width: 50%; }
}

/* Max good view under 1980px aprox */
