/*
Theme Name: Torpez
Author: Akatomy
*/

/* Reset CSS
 * --------------------------------------- */
 
* {
    box-sizing: border-box;
    transition: all .2s ease-in-out;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
  text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
  font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#333;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}

/* Page
 * --------------------------------------- */

body {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.3em;
    color: #54565a;
}

body, html {
    position: relative;
    width: 100%;
    height: 100%;
}

.pleinecran {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.intraAccueil1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    background: #4e4949;
}

.vidAccueil {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.vidAccueil video {
  position: absolute;
  top: 0;
  width: 400%;
  left: -150%;
  height: 100%;
}

@media (min-aspect-ratio: 1920 / 1080) {
  /* line 53, assetic_compass6ignCW.scss */
  .vidAccueil video {
    height: 300%;
    top: -100%;
    left: 0;
    width: 100%;
  }
}

div.container {
    padding: 30px;
    text-align: center;
}

img.logo {
    width: 100%;
    max-width: 280px;
    height: auto;
}

p:first-of-type {
    margin-top: 60px;
}

p:not(:last-child):not(.beforeSocial) {
    margin-bottom: 30px;
}

p.bottom {
    position: relative;
    text-transform: uppercase;
}

ul.social  {
    margin-bottom: 30px;
}

ul.social li {
    display: inline-block;
    padding: 6px 3px;
}

ul.social img {
    width: 25px;
    height: auto;
}

/* Preloader */

body {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:99; /* makes sure it stays on top */
}

#status {
    width:200px;
    height:200px;
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    background-image:url(../img/loader.gif); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px; /* is width and height divided by two */
}