/* Reset */
body,
html {
    background: #000;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
  

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0 0 1rem 0;
    padding: 0;
}

ol,
ul {
    list-style-type: none;
}

img {
    height: auto;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.8rem;
}

h6 {
    font-size: 0.6rem;
}

a {
    text-decoration: none
}

.video-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
}

.section {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
}
.scroll-more{
    position: absolute;
    bottom: 2px;
    display: flex;
    width: 100%;

}
.scroll-more a{
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.title {
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    position: fixed;
    top: 0;
    left: 0;
    margin-left: 25%;
    transform: scale(1);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
    opacity: 0;
}

.section.in-page .title {
    transform: scale(1.2);
    opacity: 1;
}

.panel {
    height: auto;
    width: 100%;
    background: #080808;
    position: relative;
    z-index: 2;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel--white {
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1600px;
    padding: 15% 5% 0 5%;
}

.intro {
    font-size: 20px;
    font-weight: bold;
}

.title-big {
    font-size: 5rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(10vh);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.fade-in.in-page {
    opacity: 1;
    transform: translateY(0vh);
}

.img-big-left {
    width: 70vw;
    position: relative;
    left: -30vw;
    display: block;
}

.img-big-center {
    width: 100%;
    position: relative;
    left: 0vw;
    display: block;
}


.title-med {
    font-size: 1.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #666;
    max-width: 500px;
    padding-bottom: 10%;
}

.orange-text {
    font-size: 2rem;
    color: #f56900;
    text-align: center;
    font-weight: bold;
}


.header {
    background-color: #1d1d1f;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}

.header__content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header__logo {
    padding: 16px;
    color: #eee
}

.header__menu {
    padding-bottom: 0;
    margin-bottom: 0;
}

.header__menu li {
    display: inline-block;
}

.header__menu li a {
    color: #fff;
    opacity: 0.8;
    display: block;
    padding: 16px;
    font-size: 15px;
}

.header__icons {
    /*width: 50px;*/
    
}

.row {
    display: flex;
    margin-bottom: 5vh;
    align-items: center;
    justify-content: center;
}

.row-title-foto {
    display: flex;
    margin-bottom: 5vh;
    align-items:start;
    justify-content:left;
}

.img-big {
    flex: 1;
    margin: 0 30px;
    width: 81%;
}

.img-cell {
    flex: 1;
    margin: 0 5px;
    width: 33%;
}

.img-cellv {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
}

.img-s {
    flex: 1;
    margin: 0 30px;
    width: auto;
    height: auto;
    max-width: 50%;
}

.videoo {
    width: 100%;
    height: 40vh;
}

.row-video {
    padding: 30px;
    max-height: 40vh;
}


@media (max-width: 768px) {
    .header__menu {
        position: absolute;
        top: 50px;
        background-color: #1d1d1f;
        width: 100%;
        height: 100vh;
        height: 0vh;
        overflow: hidden;
        transition: all 1s cubic-bezier(.215, .61, .355, 1);
    }

    .header__menu li {
        width: 100%;
        border-bottom: 1px solid #444
    }

    .menu-open .header__menu {
        height: 100vh;
        padding: 3%;
    }

    .icon-hamburger {
        height: 50px;
        width: 50px;
        margin-left: 20px;
        padding-top: 5px;
    }

    .icon-hamburger span {
        height: 1px;
        width: 30px;
        background: #fff;
        position: relative;
        display: block;
        margin-top: 12px;
        transition: all 0.2s cubic-bezier(.215, .61, .355, 1);
    }

    .menu-open .icon-hamburger span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
    }

    .menu-open .icon-hamburger span:nth-child(2) {
        transform: rotate(-45deg) translateY(-9px);
    }

    .header__icons {
        display: flex;
        width: 80px;
    }
    

}



footer {
    height: 100px;
    background: #000;
    position: relative;
    z-index: 3;
}

.active {
    color: #fff;
    text-decoration: underline;
}

.still-image {
    content: "";
    display: table;
    clear: both;

}

.half {
    width: 49.99999%;
    float: left;
}

.img-art {
    width: 80%;
    margin-bottom: -8px;
    vertical-align: middle;
    margin: 5%;
}
@media (min-width: 769px) {
    .header__menu .link__icons {
        display: none;
    }
}

@media (max-width: 768px) {
    .zoom {
        min-height: 350px;
        object-fit: cover;
        object-position: 10% 10%;
    }

    .zoomb {
        min-height: 325px;
        object-fit: cover;
        object-position: 10% 10%;
    }
    .header__icons .icon{
        display: none;
    }
    
    .header__menu .link__icons {
        position:absolute;
        
        top: calc(90vh - 50px);
        right: 5vh;
    }

}

.zoom {
    min-height: 350px;
    object-fit: cover;
    object-position: 10% 10%;
}

.zoomb {
    min-height: 325px;
    object-fit: cover;
    object-position: 10% 10%;
}

p {
    color: #eee;
    font-weight: 500;
}

/*iframe {
    width: 40%;
    min-height: 250px;

}*/

.trama {
    flex: 1;
}

.crew {
    padding-left: 2em;
    font-size: 11px;
    font-weight: 300;

}

h2 {
    color: #eee;
}
.blankp{
    flex: 1;
}
.header__icons embed{
    margin-left: 0.5em;
    margin-top: 0.5em;
}
#last{
    margin-right: 0.5em;
}
.container-iframe {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    /*max-width:500px;*/
}
  
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.title-short{
    color: #eee; margin-right: 2em;text-align: center;
}
.d-1{
    flex: 1;
}
.max-w-600{
    max-width: 600px;
    flex: 1;
}
.max-w-800{
    max-width: 800px;
    flex: 1;
}

@media (max-width: 768px) {
    .rowr {
       flex-direction: column !important;
    }
    .d-1{
        width: 100%;
        justify-content: left;
    }
    .title-short{
        margin-left: 2em;text-align: left;
        font-size: 1.5rem;
        color: #4169E1;
        font-weight: bold;
    }
    .trama {
        flex: 2;
        padding-left: 5%;
    }
    .img-cellv{
        flex: 1;
    margin: 0 10%;
    width: 33%;
    }
}
    