/** FONT CALL ************************************************************************************************/
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i');

/** RESET STYLE **********************************************************************************************/
html,body { height: 100%; margin: 0px; padding: 0px; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: normal;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/** GENERAL STYLE ********************************************************************************************/
body {
  background: #2E3A81 url(../img/main-bg.png) no-repeat;
  width: 100%;  
  height: 100%;
  background-size: cover;
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
}
a {
    color: #ACBAC1;
    word-wrap: break-word;
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}
a:hover,
a:focus {
    color: #4F92AF;
    text-decoration: none;
    outline: 0;
}

a:before,
a:after {
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

/** WRAPPER (CENTER) *****************************************************************************************/
#wrapper {
  margin:1% 0 1% 0;
  min-height: 100%;
  min-height: 100vh; 
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; 
  -webkit-box-align : center;
  -webkit-align-items : center;
  -moz-box-align : center;
  -ms-flex-align : center;
  align-items : center;
  width: 100%;
  -webkit-box-pack : center;
  -moz-box-pack : center;
  -ms-flex-pack : center;
  -webkit-justify-content : center;
  justify-content : center;
}

/** RESPONSIVE ***********************************************************************************************/
@media only screen and (min-width : 992px) {
   h1.title {
    color: #fff;
    font-size: 40px;
    line-height: 1.1em;
    font-weight: 700;
  }
  h2.subtitle, h2.timer {
    margin-top: 0;
    font-size: 30px;
  }
  h2 {
    margin-top:20px;
    font-size: 20px;
  }
  h3 {
    font-size: 14px;
  }
  .bloc-presentation {
    display: flex;
  }
    .leftside, .rightside {
    align-items: stretch;
  }
  .civilite {
    text-align: right !important;
  }
  .spacer {
    border-left:1px solid #fff;
  }
  .bloc-contact {
    border-left: 1px solid #fff;
    text-align: left !important;
  }
  .nopadding {
   padding: 0 !important;
}
}
@media only screen and (min-width : 320px) and (max-width: 991px) {
   h1.title {
    color: #fff;
    font-size: 30px;
    line-height: 1.1em;
    font-weight: 700;
  }
  h2.subtitle, h2.timer {
    margin-top: 0;
    font-size: 20px;
  }
  h2 {
    margin-top:20px;
    font-size: 15px;
  }
  h3 {
    font-size: 10px;
  }  
  .civilite {
    text-align: center;
  }
  .bloc-contact {
    text-align: center;
  }
}

/** SOCIAL ***************************************************************************************************/
.social, .adress, .contact, .mentions, .mail {
    padding: 20px 0 0 0;
}
.social a {
    font-size: 24px;
    color: #fff;
    padding: 0 5px;
    transition: all 0.3s;
}
.social a:hover {
    color: #5cacce;
}

/** MODAL ****************************************************************************************************/
.modal {
  text-align: center;
  padding: 0!important;
}
.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-content {
  border-radius: 0px !important;
  color: #2E3A81;
}
.modal-title {
  font-size: 25px;
  text-align: center;
}