@charset "UTF-8";
/*doc
---
title: Fullscreen
category: Module - Fullscreen
versionning:
- version: 1.0
  update: 2017-12-23T10:00:00Z
  owner: Axel Roche
---

Default Style CSS

```html
  <div id="fullscreen" class="page-fullscreen fullscreen">
    <img class="fullscreen__image" src="http://via.placeholder.com/1280x768" alt="" />
    <div id="fullscreen-block" class="fullscreen__table">
      <div class="fullscreen__inner">
        <div>
          <div class="row">
            <div class="col-xs-12 col-md-10 col-md-push-1">
              <div class="fullscreen__content text-center">
                <p class="fullscreen__title">Lorem ipsum</p>
                <p class="fullscreen__description">Blanditiis aperiam laborum eum</p>
                <div class="fullscreen__actions">
                  <a href="#" class="btn btn--default">Lorem Ipsum</a>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
```

*/
.fullscreen {
  position: relative;
  overflow: hidden;
  background: #D6D7D9;
  width: 100%; }
  @media (max-width: 54.785714em) {
    .fullscreen .fullscreen__background {
      position: relative;
      height: 150px; }
    .fullscreen .fullscreen__inner {
      padding-bottom: 3em; }
    .fullscreen .owl-theme .owl-nav {
      display: none; } }
  @media (min-width: 54.857143em) {
    .fullscreen {
      height: 510px; } }
  .fullscreen__table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10; }
  .fullscreen__inner {
    padding: 2em 0;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    z-index: 3; }
  @media (min-width: 54.857143em) {
    .fullscreen__image, .fullscreen__video {
      /* On met en place le fond d'écran */
      min-height: 100%;
      min-width: 1024px;
      /* On indique un redimensionnement proportionnel */
      width: 100%;
      height: auto;
      /* L'image est positionnée en haut à gauche */
      position: fixed;
      top: 0;
      left: 0; } }
  .fullscreen__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .fullscreen__image {
    animation: kenburn 60s infinite; }
  .fullscreen__video {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: 1s opacity;
    max-width: none;
    z-index: 2; }
  .fullscreen__title {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 500%;
    color: #333; }
  .fullscreen__description {
    font-weight: 100;
    font-style: normal;
    line-height: 1.5;
    font-size: 120%;
    color: #333; }
