* {
    box-sizing: border-box;
    font-family: 'mundial', serif;
}

*::selection {
    color: #f4f4ec;
    background-color: #071719;
}

*:focus{
    outline: none;
}

*{
    -webkit-overflow-scrolling: touch;
}


/*----- CUSTOM SCROLLBAR ---*/
/* width */
::-webkit-scrollbar {
    width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #afafaf;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8d8d8d;
}

/*-----------------------------*/


.mobile{
    display: none;
}

.desktop{
    display: block;
}

body{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

main{
    width: 100%;
    top:0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    overflow: hidden;
/*
    background-image: url(../img/coming-soon-placeholder.jpg);
*/
    background-size: cover;
    background-position:center;
    background: #071719;
}

p, h1, h2, h3, h4, h5, h6{
    color: #071719;
}

p{
    font-size: 17px;
    font-weight: 300;
}

main > .title, main > .date{
    position: fixed;
    display: flex;
}

main > .title{
    text-transform: uppercase;
    text-align: left;
    font-size: 23px;
    color: #f4f4ec;
    font-weight: 100;
    z-index: 1500;
    max-width: 2em;
    max-height: 2em;
}

main > .title .backarrow{
    transition : all 1000ms cubic-bezier(.34, 0, 0, 1.01);
    font-size: 1em;
    padding-right: 0.2em;
    transform: translate(0px,0px);
}

main > .title .backarrow.hidden{
    transform: translate(-50px,0px);
}

main > .title{
    top: 1em;
    left: 1em;
    align-items: center;
}

main > .title.clickable{
    cursor: pointer;
}

main > .date{
    bottom: 1em;
    right: 1em;
    text-align: right;

}

main .darker{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
    opacity: 0;
    transition : all 1000ms cubic-bezier(.34, 0, 0, 1.01);
}


main .noise{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(-20deg, #071719, #071719bf), url(https://grainy-gradients.vercel.app/noise.svg);
    mix-blend-mode: color;

}

main .darker.show{
    opacity: 1;
}

main .bgvideo{
    position:fixed;
    z-index: 0;
    width:100%;
    height:100%;
    top:0;
    left: 0;
    bottom:0;
    right:0;
    object-fit: cover;
    pointer-events: none;
}

main>section{
    transition : all 1000ms cubic-bezier(.34, 0, 0, 1.01);
    position: fixed;
    
    top:calc(50% - 3em);
    transform: translate(-50%,-50%);

    
    /* pour coller en haut
    top:-3em;
    transform: translate(-50%,0%);
    */
    
    left: 50%;
    z-index: 3!important;
    width: 90%;
}

main>section::after{
    position: fixed;
    content:"";
    display: block;
    width: 90%;
    height: 100%;
    z-index: -1;
    background: black;
    filter: blur(150px);
    opacity: .3;
}

main .whoami{
    left: calc(100% + 50vw);
    width: 100vw;
    height: 100vh;
/*
    top: 0;
*/
}

main .whoami.slideIn{
    left: 50%;
}

main .whoami .content{
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    position: relative;
    padding: 3em;
    display: inline-block;
    text-align: center;
    flex-direction: column;
    z-index: 1
}

main .whoami .content *{
    color: #f4f4ec;
}

main .whoami .content .pp{
    max-width: 183px;
}

main .whoami .content .textePres{
    padding: 2em 0em;
    max-width: 500px;
    text-align: center;
    font-weight: 300;
}

main .whoami .content .infosPerso{
    font-weight: 600;
    text-align: center;
    line-height: 1.4em;
}


main .whoami .content .infosPerso .reseaux{
    margin-top: 1em;
}

main .whoami .content .infosPerso .reseaux a{
    font-size: 20px;
    margin: 0em 0.2em;
}

main .whoami .content .infosPerso .reseaux a img{
    max-width: 1.5em;
}

main .whoami .content .infosPerso .reseaux a .ytbimg{
    max-width: 2em!important;
}

main .whoami .clickout{
    z-index: 0;
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
}

main .inner.slideOut{
    left: -50vw;
    opacity: 0;
}

main .inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .inner .logo{
    width: 450px;
    position: relative;
    z-index: 3;
}

.logo.img{
/*
    cursor: pointer;
*/
    opacity: 0;
    transition: opacity 800ms ease-in-out;
    transition: all 1000ms cubic-bezier(.19, .01, 0, .99);
}

.mouse .logo.img.remove{
    transition: all 600ms cubic-bezier(1, .01, .57, .99);
    transform: translate(-50%,-50%) scale(0) rotate(90deg);
}

.logo.img.show{
    opacity: 1;
}

.menu{
    top:-8em;
    display: flex;
    position: relative;
    z-index: 4;
    flex-wrap: wrap;
    justify-content: center;
}

.page{
    cursor: pointer;
    margin: 1.5em 3em;
    transition: all 600ms cubic-bezier(0, 0, .13, 1.01);
}

.page.down {
    transform: translate(0px, 2em);
    opacity: 0;
}

.page *{
    transition: all 600ms cubic-bezier(.34, 0, 0, 1.01);
}

.menu .page h2::after{
    content: " ";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: white;
    left: 0;
    bottom: -8px;
    transition: all 600ms cubic-bezier(.34, 0, 0, 1.01);
}

.menu .page:hover h2::after{
    width: calc(100% - 8px);
}

.menu .page:hover .nom{
}

.page .nom h2 {
    position: relative;
    text-align: center;
    font-size: 1.2em;
    color: #f4f4ec;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0px 1px 9px black;
}

main .slideshow, main .tagline{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    object-fit: cover;
    height: 75vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .slideshow{
/*    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 75%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 75%);
    background-image: url(../img/flares.jpg);*/
}

main .tagline{
    z-index: 2;
}

main .tagline h1{
    text-align: center;
    max-width: 700px;
    font-size: 2em;
    font-weight: 800;
    color: #f4f4ec;
    font-style: italic;
    text-shadow: 1px 1px 30px black;
    line-height: 1.3em;
    letter-spacing: -1px;
    transform: translate(0px,0px);
    position: relative;
    opacity: 1;
    transition : all 1000ms cubic-bezier(.24, -0.03, .17, .99);
}

main .tagline h1.slideOut{
    transform: translate(-50vw,0em);
    opacity: 0;
}

/*main .slideshow img{
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    object-fit: cover;
}*/

article.fullscreen{
    background: #1d1d1d;
    transition-delay: 0ms;
}

article.fullscreen .left{
    transform: translate(-100%,0%);
    width: 65%;
}

article.fullscreen aside{
    background-color: #1d1d1d;
    transition: all 1000ms cubic-bezier(.34, 0, 0, 1.01);
    width: 100.5%;
}
article.fullscreen aside img#couv{
    min-width:110%;
    min-height: 110%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}
article.fullscreen aside img#couv.hidden{
    opacity: 0.2;
}

article{
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 0;
    bottom: 0;
/*    height: 100%;*/
    display: flex;
    overflow: hidden;
    transition-property: background, transform;
    transition-duration: 0ms, 600ms;
    transition-delay: 1000ms, 0ms;
    transition-timing-function: cubic-bezier(.34, 0, 0, 1.01);
}

article p a{
    color: inherit;
    text-decoration: none;
    border-bottom: solid 3px;
    border-color: #1daacc;
    font-weight: 800;
    transition: border 300ms cubic-bezier(.34, 0, 0, 1.01);
}

article p a:hover{
  border-width: 8px;
}

article.closed{
    z-index: 0;
    opacity: 0;
}

article .left.closed{
    transform: translate(calc(-100% + -75px),0%);
}

article aside.closed{
    transform: translate(100%,0%);
}

article .left{
    transition: transform 1000ms cubic-bezier(.34, 0, 0, 1.01);
    transform: translate(0%,0%);
    background-color: #f7f7f7;
    height:100%;
    position: relative;
    width: 75%;
    z-index: 2;
    border-radius: 0px 15px;
}

article .left .noise{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(-20deg, #f7f7f700, #f7f7f700), url(https://grainy-gradients.vercel.app/noise.svg);
    filter: opacity(1);
    border-radius: 0px 15px;
    
}

article.navigation aside, article.navigation .left{
    transition-delay: 0ms;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(.5, 0, .5, 1);
}

/*
article .left::after{
    content: "";
    position: fixed;
    width: 100%;
    background-image: linear-gradient(rgba(247, 247, 247, 0), #f7f7f7);
    z-index: 12;
    bottom: 0;
    height: 50px;
}
*/

article .left #nextArticle, article .left #prevArticle, article .left .close, article .left #smallLogo{
    position: fixed;
    z-index: 1000;
    cursor: pointer!important;
    transition: all 500ms cubic-bezier(.34, 0, 0, 1.01);
}

article .left #nextArticle, article .left #prevArticle{
    text-transform: uppercase;
    top: 50%;
    transform: translate(0%,-50%);
    font-size: 17px;
    font-weight: 500;
}

article .left #nextArticle i, article .left #prevArticle i, article .left #close i{
    font-size: 30px;
    color : #555555;
}

article .left #prevArticle{
    left: 1em;
}

article .left #nextArticle{
    right: 1em;
}

article .left #prevArticle:hover{
    left: 0.7em;
}
article .left #nextArticle:hover{
    right:0.7em;
}

article .left .close{
    right: 1em;
    top: 1em;
}

article .left #smallLogo{
    left: 2em;
    top: 1em;
    width: 10em;
}

article .left .close:hover, article .left .smallLogo:hover{
    transform: scale(0.8);
}

article .left .close img{
    position: absolute;
}

article .left .close .croix, article .left .close .arrow{
    z-index: 1;
    width: 60%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

article .left .inner{
    height: 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%,0%);
    overflow: auto;
    padding-bottom: 5em;
    padding-left: 12%;
    padding-right: 12%;
}

article .left .inner .title{
    padding: 3em 0em;
    position: relative;
}

article .left .inner .title *{
    text-align: center;
}

article .left .inner .title h3{
    font-size: 5em;
    line-height: 1.5em;
    font-weight: 800;
}

article .left .inner .title p{
    font-size: 1.2em;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 200;
}

article .left .inner .text{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
/*
    padding-bottom: 3em;
*/
}


article .left .inner .text img{
    opacity: 0.1;
    width: 10em;
}

article .left .inner .text #description{
    margin-left: -30px;
    line-height: 1.3em;
}

article .left .inner video{
    height: auto;
    position: relative;
}


.video-js video{
    height: auto;
    position: relative;
}

.video-js{
    height: auto;
    width: 100%;
    position: relative;
    background-color: transparent;
    padding-top: 9em;
}

.vjs-poster{
    background-color: transparent;
}

.vjs-fullscreen video{
    top: 50%!important;
    transform: translate(0%,-50%);
}

.video-js .vjs-big-play-button{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50px;
    height: 1.5em;
    width: 1.5em;
}

.video-js .vjs-control-bar{
    background-color: rgba(0,0,0,0.5);
}

.video-js .vjs-load-progress div{
    background-color: rgba(103, 103, 103, 0.7);
}

article .left .inner .images{
    display: flex;
    flex-direction: column;
    padding: 0em 1em 5em;
    max-width: 1000px;
    margin: 0 auto;
}

.images .ytResponsive{
    overflow:hidden; 
    padding-bottom:56.25%; 
    position:relative; 
    height:0;
    width: 100%!important;
    max-width: none!important;
    border-radius: 15px;
}

.images .ytResponsive iframe{
    left:0; 
    top:0; 
    height:100%;
    width:100%;
    position:absolute;
}

article .left .inner .images .caption{
    margin-top: 1em;
    line-height: 1.2em;
}

article .left .inner .images .caption .nomProjet{
    font-weight: 800;
    font-size: 1.2em;
}

article .left .inner .images .caption .bigTitle{
    font-weight: 800;
    font-size: 2.2em;
    line-height: 1.1em;
}

article .left .inner .images .caption .nomClient{
    font-weight: 200;
    font-size: 1em;
    margin-bottom: 1em;
}
article .left .inner .images .caption .nomClient::after{
    content:' ';
    display: block;
    margin-bottom: -12px;
}

article .left .inner .images div{
    width: 66%;
    position: relative;
    max-width: 500px;
    align-self: center;
}

article .left .inner .images div.multiple{
    width: 100%;
    max-width: 100%;
    margin-left: 0!important;
}

article .left .inner .images div.multiple .img{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin-left: 0!important;
}

article .left .inner .images div.multiple .img img, article .left .inner .images div.multiple .img video{
    max-height: 200px;
    width: auto!important;
}

article .left .inner .images div.small{
    max-width: 350px;
    width: 100%;
}

article .left .inner .images div.medium{
    max-width: 600px;
    width: 100%;
}

article .left .inner .images div.two-thirds{
    max-width: 800px;
    width: 100%;
}

article .left .inner .images .video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
    width: 100%!important;
    max-width: none!important;
}

article .left .inner .images .video-container iframe,  
article .left .inner .images .video-container object,  
article .left .inner .images .video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

article .left .inner .images div.big{
    max-width: none;
    width: 100%;
    margin-right: 0!important;
    margin-left: 0!important;
}

article .left .inner .images > div{
    margin-top: 100px;
}

article .left .inner .images > div:nth-child(even){
    align-self: flex-end;
}


article .left .inner .images > div:nth-child(odd){
    align-self: flex-start;
}

article .left .inner .images div img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, .2);
}

article .left .inner .images div video{
  width: 100%;
}

article .left .inner #more{
    position: relative;
}

article .left .inner #more a{
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: white;
    background-color: #ff8500;
    padding: 0.7em 1.2em 0.55em;
    border-radius: 7px;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.34, 0, .4, 1.0);
}

article .left .inner #more a:hover{
    transform: translate(-50%,-50%) scale(1.03);
}

/*
article .left .footer::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120%;
    height: 100%;
    background: #071719;
    border-radius: 50%;
    transform: translate(-50%,-24%);
}
*/

article .left .footer{
    background-color: #071719;
    position: absolute;
    left: 0;
    right: 0;
    height: 25em;
    margin-top: 5em;
}

article .left .footer::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url(../img/logo-cameo-alone-white.svg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

article .left .footer *{
    color: #f4f4ec;
}

article .left .footer .cta{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 87%;
    align-items: center;
    justify-content: center;
}

article .left .footer .cta p{
    font-weight: 200;
}

article .left .footer .cta .boutonContact{
    background: #f4f4ec;
    color: #071719;
    cursor: pointer;
    padding: 1em;
    font-weight: 800;
    margin-top: 1em;
    transform: scale(1);
    transition: all 500ms cubic-bezier(.34, 0, 0, 1.01);
    border-radius: 5px;

}

article .left .footer .cta .boutonContact:hover{
    transform: scale(1.1);
}

article .left .footer .base-footer{
    position: relative;
    display: flex;
    height: 13%;
    align-items: center;
    justify-content: center;
    font-weight: 200;
    background-color: rgba(0, 0, 0, 0.3);
}

article .left .footer .base-footer *{
    font-size: 15px;
}

/*-----------------*/

.clients{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5em;
    margin-bottom: 5em;
}

.clients a{
    display: contents;
}

.clients p{
    margin-bottom: 1em;
    font-weight: 800;
    color: rgb(100,100,100);
    text-transform: uppercase;
    letter-spacing: 7px;
    text-align: center;
}

.clients .logos{
    display: flex;
/*
    height:100px;
*/
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 100%!important;
    width: 100%!important;
    align-self: center!important;
}

.clients .logos img{
    width:100%;
    height:100%;
    object-fit:contain;
    margin: 1em 2em;
    max-width: 150px;
    max-height: 70px;
/*
    filter: grayscale(1);
*/
    transition: all 300ms ease-in-out;
    flex-basis: content;
    border-radius: 0!important;
    box-shadow: none!important;
}

.clients .logos img:hover{
    filter: grayscale(0);
    transform: scale(1.1);

}

/*-----------------*/


article aside{
    position: absolute;
    height:100%;
    width: 27%;
    z-index: 1;
    overflow: hidden;
    transition: all 600ms cubic-bezier(.34, 0, .4, 1.01);
    padding: 2em;
/*
    transition-delay: 200ms;
*/
    right:-1%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

article aside .close{
    top: 0.5em;
    position: fixed;
    z-index: 12;
    cursor: pointer;
    transition: all 500ms cubic-bezier(.34, 0, 0, 1.01);
}

article aside .close:hover{
    transform: scale(0.8);
}

article aside .close i{
    font-size: 28px;
    color: white;    
}

article.fullscreen aside{
    cursor:auto;
}

article aside img#couv{
    min-width: 110%;
    min-height: 110%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

article aside img#lightbox{
    opacity: 0;
    transition-delay: 0ms;
    transition: all 500ms ease-in-out;
    position: relative;
    filter: blur(0px);
    height: auto;
    max-height: calc(100% - 3em);
    max-width: 100%;
    top: 2em;
    object-fit: contain;
}

article aside img#lightbox.opened{
    opacity: 1;
    transition-delay: 200ms;
}

article aside p.caption{
    position: relative;
    max-width: 500px;
    color: white;
    font-weight: 300;
    opacity: 0;
    transition: all 500ms ease-in-out;
    transition-delay: 0ms;
    transition-duration: 200ms;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

article aside p.caption.opened{
    opacity: 1;
    transition-delay: 400ms;
    transition-duration: 500ms;
    margin-top: 3em;

}

.tag-element[active=true] {
    color: red;
}

.lightbox-download {
    z-index: 12;
    cursor: pointer;
    transition: all 500ms cubic-bezier(.34, 0, 0, 1.01);
    margin-bottom: 1.5em;
}

.lightbox-download a{
    border-bottom: none;
}

.lightbox-download:hover {
    transform: scale(0.8);
}

@media all and (max-width: 1200px) {
    article .left .inner .title h3{
        font-size: 4em;
    }
}

@media all and (max-width: 767px) {
    

    .mobile{
        display: block;
    }

    .desktop{
        display: none;
    }


    .page .nom{
        opacity: 1;
    }
    
    
    .page{
        margin: .5em 1em;
    }
    
    main .inner{
        transform: translate(-50%, 0%);
        bottom: -2.5em;
        top: auto;
    }
    
    main .inner .logo{
        width:400px;
    }

    main > .date{
        top: 1em;
        bottom: auto;
    }
    
    main .slideshow{
        bottom: auto;
        top: 0;
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 75%);
        mask-image: linear-gradient(to top, transparent 0%, black 75%);
    }
    
    main .tagline{
        bottom: auto;
        top: 0;
        transform: scale(.7);
    }
    
    menu h2{
        font-size: 1.1em
    }

    main .whoami .content{
        padding: 1em;
    }

    article{
        flex-direction: column-reverse;
/*
        position: relative;
*/
    }

    article .left.closed{
        transform: translate(0%, calc(-100% - 75px));
    }

    article aside.closed{
        transform: translate(0%, 100%);
    }

    article .left{
        position: absolute;
        width: 101%;
        height: 90%;
        top: 0;
        border-radius: 0px 0px 15px 15px;
        left: -.5%;
    }
  
    article .left .noise{
        border-radius: 0px 0px 15px 15px;
    
}
    
    article .left #nextArticle, article .left #prevArticle, article .left .close{
        bottom:-3.5%!important;
        transition: all 300ms ease-in-out;
        transition-delay: 300ms;
        position: fixed;
        transform: translate(0%,100%);

    }
    
    article .left #smallLogo{
        display: none;
    }
    
    article .left .close{
        left: 50%;
        transform: translate(-50%,100%);
        right: auto;
        bottom: -3.5%!important;
    }

    article .left #nextArticle i, article .left #prevArticle i, article .left .close i {
        color: white!important;
    }

    article.navigation .left #nextArticle, article.navigation .left #prevArticle{
        transition-delay: 300ms;
    }


    article.navigation .left.closed #nextArticle, article.navigation .left.closed #prevArticle{
        opacity: 0;
        transition-delay: 0ms;
        transition-duration: 500ms;
    }

    article.fullscreen .left{
        width: inherit;
    }
    
    article .left .footer{
        height:15em;
        margin-top: 0em;
    }

    article.fullscreen aside{
        height: 100vh;
        transition-delay: 300ms;
    }

    article.fullscreen aside #lightbox, article aside p.caption{
    }

    article aside{
        position: absolute;
        width: 100%;
        height: 14%;
        padding: 0.5em;
        bottom:-2%;
        left:0;
    }

    article aside img{
        width: 110%;
        height: auto;
        position: relative;
        filter: blur(2px) brightness(.7);
    }

    article aside .lightbox-download img{
        filter: none;
        width: 100%;
    }

    article .left .inner{
        padding-bottom: 4em;
        padding-left:6%;
        padding-right:6%;
    }

    article .left .inner .title{
        padding:  3em 0em 1em;
    }

    article .left .inner .title h3 {
        font-size: 3em;
        }

    article .left .inner .title p {
        font-size: 1.3em;
        letter-spacing: 0.2em;
    }

    article .left .inner .text {
        flex-direction: column;
    }

    article .left .inner .text img {
        width: 6em;
    }

    article .left .inner .text #description{
        margin-left: 0px;
        margin-top: -50px;
    }

    article .left .inner .images {
        padding: 0em;
        padding-bottom: 4em;
    }
    
    article .left .inner .images > div{
        margin-top: 50px;
    }
    
    article .left .inner .images div.multiple .img{
    display: inline-block;
    text-align: center;
}
    
    article .left .inner .images div.multiple .img img, article .left .inner .images div.multiple .img video{
        max-height: 200px;
        max-width: 90%;
        margin-top: 1em;
}

    article .left .inner .images div {
        width: 100%;
        margin-right: 0!important;
        margin-left: 0!important;
    }
    
    .clients .logos img{
    margin: .5em .5em;
        max-width: 100px;
    max-height: 50px;
    }
}

@media all and (max-width: 550px) {
    main .inner{
        transform: translate(-50%,0%) scale(0.8);
        bottom: -5em;
    }
    
    main .tagline h1{
        max-width: none;
    }
    
    main > .title, main > .date, main > .title h1{
        letter-spacing: 4px;
    }
    
}

@media all and (max-width: 475px) {
    .page{
        margin: .4em .8em; 
    }
    
    .menu h2{
        letter-spacing: 5px;
    }
}
