#studio .header{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100 * var(--vh) - var(--menuh));
}

#studio .header .paragraph{
    font-weight: 300;
    font-size: 1.09em;
}

#studio .copertina{
    flex-grow: 1;
}

#studio .l-section-top {
    width: 100%;
    height: 100%;
    position: relative;
}

#studio .c-title {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 1.5rem;
    font-family: 'Marcellus';
}

#studio .c-scrolldown {
    width: 1px;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
}

#studio .c-scrolldown .c-line {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, var(--darkgrey) 50%, var(--lightgrey) 50%);
    background-position: 0 -60px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.5, 0, 0.25, 1) forwards infinite;
}

@keyframes scrolldown {
    0% {
        background-position: 0 -60px;
    }

    75% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 60px;
    }
}

#studio .skills{
    border-bottom: 2px solid var(--lightgrey);
}

#studio #story .maskBackYear{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.sliderTitleCustom{
  font-family: 'Marcellus';
  font-size: 11.55rem;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.15;
}

#studio #story .sliderTitleCustom{
    opacity: 0;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
}

#studio #story .entrance .sliderTitleCustom{
    opacity: .15;
}

#studio #story .circleContainer{
    --circleSize: 11px;
    --offsetSize: .5rem;
    --fullSize: calc(var(--circleSize) + (2 * var(--offsetSize)));
    width: var(--fullSize);
    height: var(--fullSize);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 50%;
    border: var(--offsetSize) solid var(--snow);
}

#studio #story .circleContainer .circle{
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
    background-color: var(--darkgrey);
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#studio #story .entrance .circleContainer .circle{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

#studio #storyLine{
    position: relative;
    z-index: 10;
}

#studio #storyLine .row{
    position: relative;
}

#studio #storyLine .line{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background-color: var(--lightgrey);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    z-index: -1;
}

#studio #storyLine .textContainer{
    max-width: 80%;
}

@media (max-width: 1199px){

    #studio .skills #slide-column-0{
        border-bottom: 2px solid var(--lightgrey);
    }
}

/* xs, sm*/
@media (max-width: 767px){
  
    .sliderTitleCustom{
      font-size: 7.55rem;
    }
  
}

@media (max-width: 575px){
    
    #studio #story .entrance .circleContainer{
        display: none;
    }
    
    .year{
        position: relative;
        z-index: 1;
    }
    
    .year::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--snow);
        z-index: -1;
        -webkit-transform: scaleY(0.7);
        -moz-transform: scaleY(0.7);
        -o-transform: scaleY(0.7);
        transform: scaleY(0.7);
    }
    
}


@media (min-width: 1200px){


    #studio #storyLine .row:nth-child(even){
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    #studio #storyLine .row:nth-child(even) .date,
    #studio #storyLine .row .textContainer{
        text-align: left;
    }

    #studio #storyLine .row .date,
    #studio #storyLine .row:nth-child(even) .textContainer{
        text-align: right;
    }

    #studio #storyLine .row:nth-child(even) .textContainer{
        margin-left: auto;
    }

    #studio .skills > .container{
        border-left: 2px solid var(--lightgrey);
        border-right: 2px solid var(--lightgrey);
    }

    #studio .skills #slide-column-0{
        border-right: 2px solid var(--lightgrey);
    }
}