* {
    margin: 0;
    padding: 0;
    font-family: 'Muli', sans-serif;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Signature';
  src: url('../fnts/signature/Signature.otf'),
       url('../fnts/signature/Signature.ttf');
}
@font-face {
  font-family: 'Muli';
  src: url('../fnts/Muli/Muli-ExtraLight.ttf');
  font-weight: 200;
}
@font-face {
  font-family: 'Muli';
  src: url('../fnts/Muli/Muli-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'Muli';
  src: url('../fnts/Muli/Muli-SemiBold.ttf');
  font-weight: 600;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0; right: 0;
    background: white;
    height: 80px;
    border-bottom: 1px solid #dee0df;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
}
.title-header {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    font-family: 'Signature', sans-serif;
    line-height: 80px;
    margin-left: 50px;
    font-size: 1.6em;
    font-weight: 100;
    color: #3a879b;
}
.nav-main {
    position: absolute;
    top: 0px;
    right: 0;
    height: 80px;
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    color: #959595;
    margin-right: 50px;
}
header a {
    color: inherit;
    text-decoration: inherit;
    transition: color 300ms ease-in-out;
}
header a:hover {
    color: #3a879b;
}
header a:hover li {
    border-bottom: solid #3a879b 5px;
}
.nav-main li {
    height: 80px;
    line-height: 80px;
    padding: 0 25px;
    border-bottom: solid transparent 2px;
    transition: border-bottom 300ms ease-in-out;
}
.nav-main li.linkedIn {
    line-height: 112px;
}
.nav-main img.linkedIn {
    width: 45px;
}

.back-main {
    /*background: url('https://images.unsplash.com/photo-1496674205429-924b32acd421?ixlib=rb-0.3.5&s=24e1c3221cd598a2be6f21ccc4362167&auto=format&fit=crop&w=5193&q=80');*/
    /*background: url('https://images.unsplash.com/photo-1502209944943-85c1d6146367?ixlib=rb-0.3.5&s=f23b55bd93cbd9e05c767209e0dce1b1&auto=format&fit=crop&w=4529&q=80');*/
    background: url('/img/backgrounds/wave.jpg');
    background-size: cover;
    position: fixed;
    z-index: 0;
    top: 0; bottom: 0;
    left: 0; right: 0;
    filter: brightness(95%);
}
#content {
    position: absolute;
    top: 80px;
    z-index: 1;
}
.pane {
    position: relative;
    width: 100vw;
    padding: 75px 0;
    overflow: hidden;
}
.pane h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.2em;
    text-transform: uppercase;
    color: #959595;
    font-weight: 200;
}

.pane-1 {
    height: calc(75vh - 80px);
}
.pane-1 h1 {
    position: absolute;
    top: 80px; bottom: 0; left: 0; right: 0;
    margin: auto;
    height: 80px;
    width: 450px;
    background: rgba(0, 0, 0, 0.75);
    color: #d7e9f6;
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
    font-size: 2.5em;
    line-height: 2em;
}
.pane-2 {
    background: #d7e9f6;
}
.pane-2 img {
    display: block;
    border-radius: 100%;
    width: 250px;
    margin: 40px auto;
}
cite {
    display: block;
    font-family: 'Tangerine';
    color: #555555;
    font-size: 2.2em;
    text-align: center;
    margin: 24px auto;
}
.pane-2 p {
    line-height: 3em;
    color: #959595;
    font-size: 18px;
    font-weight: 200;
    text-align: center;
}
.pane-2 p a {
    color: inherit;
    text-decoration: inherit;
    font-style: italic;
}
.pane-2 p a.imta {
    color: #00b8de;
    text-decoration: inherit;
}

.pane-3 {
    background: #eee;
    height: calc(100vh - 80px);
    min-height: 625px;
    padding: 0;
}
.cards {
    position: relative;
    width: 100vw;
    height: 100%;
}
.back-cards {
    min-height: 104%;
    min-width: 104%;
    top: -2%; left: -2%;
    position: absolute;
    background: url('/img/backgrounds/dropkick-murphys.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 80px);
    filter: blur(5px);
    z-index: 0;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
}
.back-cards.active {
    opacity: 0.75
}
.content-cards {
    position: absolute;
    z-index: 1;
    width: 100vw;
}
.caroussel {
    display: flex;
    position: relative;
    transition: left 600ms ease-in-out;
}
.content-cards h2 {
    padding: 50px 0;
}
.card {
    display: inline-block;
    position: relative;
    height: 300px;
    min-width: 250px;
    background: #EEE;
    border-radius: 4px;
    overflow: hidden;
    color: #959595;
    filter: blur(1px) brightness(90%);
    z-index: 1;
    transition: all 600ms ease-in-out;
    pointer-events: none;
}
.card.active {
    transform: scale(1.2);
    filter: blur(0px) brightness(100%);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
    pointer-events: auto;
}
.illustration-card {
    background: url('https://www.fkpscorpio.se/wp-content/uploads/2017/01/GreenDay_webb2.jpg');
    height: 125px;
    width: 100%;
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
}
.title-card {
    text-transform: uppercase;
    font-weight: 200;
    font-size: 22px;
    text-align: center;
    padding-top: 20px;
    color: #3a879b;
}
.group-card {
    font-weight: 200;
    font-size: 16px;
    text-align: center;
}
.btn-play-card {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
}
.btn-play-card img {
    display: block;
    margin: auto;
    cursor: pointer;
}
.container-btn-nav {
    width: 453px;
    padding-top: 75px;
    margin: auto;
}
.btn-next, .btn-prev {
    display: inline-block;
    margin: 12px;
    width: 200px;
    height: 50px;
    line-height: 42px;
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.btn-next.disable, .btn-prev.disable {
    filter: grayscale(0.7);
    opacity: 0.7
}
.btn-next {
    border: solid #F7CA18 2px;
    color: #F7CA18;
}
.btn-prev {
    border: solid #F7CA18 2px;
    color: #F7CA18;
}
#player {
    display: none;
}
.label {
    position: fixed;
    bottom: 0;
    background: rgba(255, 0, 0, 1);
    padding: 12px 45px;
    border-top-right-radius: 7px;
    z-index: 900;
    color: #FFF;
    font-weight: 200;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}
.label.active {
    opacity: 1;
}

.pane-4 {
    background: #d7e9f6;
}
.container-series {
    display: flex;
    width: 80vw;
    margin: auto;
    justify-content: space-around;
    flex-wrap: wrap;
}
.serie {
    position: relative;
    min-width: 350px;
    height: 200px;
    font-size: 2.5em;
    text-transform: uppercase;
    line-height: calc(250px - 0.75em);
    text-align: center;
    color: #d7e9f6;
    font-weight: 200;
    margin: 25px auto;
}
.back-serie {
    position: absolute;
    width: 350px;
    height: 200px;
    background-position: center;
    background-size: cover;
    filter: brightness(0.4);
    z-index: 1;
    transition: filter 300ms ease-in-out;
}
.serie:hover .back-serie {
    filter: brightness(0.75);
}
.serie p {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    text-align: center;
    line-height: calc(200px);
    z-index: 2;
    color: #FFF;
    transform: rotate(-7deg);
}

.pane-5 {
    background: #ececec;
}
.container-films {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.o-wrapper {
    position: relative;
    width: 380px;
    margin: 30px;
}

.c-movie-card {
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.19), 0 6px 50px rgba(0, 0, 0, 0.23);
    border-radius: 4px;
    padding-bottom: 20px;
    background: white;
}
.c-movie-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.42);
    -webkit-transform: skewY(7deg);
          transform: skewY(7deg);
    top: 160px;
    z-index: 9;
}
.c-movie-card:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 16, 31, 0.3) 40%, rgba(0, 0, 0, 0.1) 100%);
    -webkit-transform: skewY(7deg);
          transform: skewY(7deg);
    top: 80px;
    z-index: 8;
}
.c-movie-card__img {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: 75% 20%;
    border-radius: 4px 4px 0 0;
    background-image: url("https://i.pinimg.com/564x/13/81/a1/1381a1e50520d039274a2cd5d98270b0.jpg");
}
.c-movie-card__img:after {
    content: "";
    display: block;
    width: 100%;
    height: 30%;
    -webkit-transform: skewY(-7deg);
          transform: skewY(-7deg);
    background: white;
    position: absolute;
    z-index: 500;
    bottom: -45px;
}
.c-movie-card__content {
    padding-top: 2rem;
    position: relative;
    color: #222222;
    background: white;
    z-index: 700;
}
.c-movie-card__title {
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    top: -20px;
    font-size: 1.8em;
}
.c-movie-card__description {
    width: 85%;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 25px;
    min-height: 50px;
}

@media screen and (max-width: 700px) {
    header {
        position: relative;
        z-index: 1000;
        top: 0;
        left: 0; right: 0;
        background: white;
        height: 80px;
        border-bottom: 1px solid #dee0df;
        font-family: 'Muli', sans-serif;
        font-weight: 700;
    }
    .title-header {
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        font-family: 'Signature', sans-serif;
        line-height: 80px;
        margin-left: 0px;
        font-size: 1.6em;
        font-weight: 100;
        color: #3a879b;
        z-index: 1000;
        text-align: center;
    }
    .nav-main {
        position: relative;
        top: 0;
        right: 0;
        padding-top: 80px;
        padding-bottom: 12px;
        height: auto;
        display: inherit;
        list-style-type: none;
        justify-content: inherit;
        color: #959595;
        margin-right: 0px;
        background: white;

    }
    .nav-main li {
        height: 40px;
        line-height: 40px;
        padding: 0 auto;
        text-align: center;
    }
    .nav-main li.linkedIn {
        display: none;
    }

    .pane-1 {
        display: none;
    }
    .pane-1 h1 {
        display: none;
        position: absolute;
        top: 80px; bottom: 0; left: 0; right: 0;
        margin: auto;
        height: 80px;
        width: 450px;
        background: rgba(0, 0, 0, 0.75);
        color: #d7e9f6;
        text-transform: uppercase;
        font-weight: 200;
        text-align: center;
        font-size: 2.5em;
        line-height: 2em;
    }
    .pane-2 {
        background: #d7e9f6;
        padding-top: 160px;
    }

    .pane-3 {
        background: #eee;
        min-height: 755px;
        /*min-height: 625px;*/
        padding: 0;
    }
    .container-btn-nav {
        width: 100vw;
        padding-top: 50px;
        margin: auto;
    }
    .btn-next, .btn-prev {
        display: block;
        margin: 12px auto;
        width: 200px;
        height: 50px;
        line-height: 42px;
        font-size: 18px;
        font-weight: 200;
        text-align: center;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 4px;
        cursor: pointer;
        transition: all 300ms ease-in-out;
    }


}
