/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import "https://fonts.googleapis.com/css?family=Fjalla+One|Ubuntu:300,400,700";
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
button,
input,
select,
table,
textarea {
  font-family: "Ubuntu", sans-serif;
  color: #232323;
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
}

p {
  margin: 15px 0;
}

body {
  background-color: #000000;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.intro-text {
  font-size: 18px;
}

a, button {
  color: #232323;
  text-decoration: none;
}
a.button, button.button {
  border: 2px solid #232323;
  padding: 8px 12px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 16px;
  border-radius: 0;
  overflow: hidden;
}
a.button i, button.button i {
  margin-left: 10px;
}
a.button.white, button.button.white {
  border-color: #ffffff;
  color: #ffffff;
}
a.button.primary, button.button.primary {
  border-color: #ffffff;
  color: #ffffff;
}
a:hover, button:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.no-touch a, .no-touch button {
  transition: all 0.3s;
}
.no-touch a.button:hover, .no-touch button.button:hover {
  background-color: #232323;
  color: #fff;
}
.no-touch a.button.white:hover, .no-touch button.button.white:hover {
  background-color: #ffffff;
  color: #232323;
}
.no-touch a.button.primary:hover, .no-touch button.button.primary:hover {
  background-color: #ffffff;
  color: #ffffff;
}

.site-content {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  text-transform: uppercase;
  font-family: "Fjalla One", sans-serif;
}

h1 {
  font-size: 36px;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 26px;
  margin: 0 0 20px 0;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 36px;
  }
}

section.simple {
  padding: 40px;
  background-color: #f6f5f3;
  text-align: center;
}
section.simple h2.primary {
  position: relative;
  margin-bottom: 40px;
}
section.simple h2.primary span:nth-child(2) {
  font-weight: bold;
}
section.simple h2.primary::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 50px;
  margin-left: -25px;
  bottom: -20px;
  height: 3px;
}

section.basic-title {
  padding: 120px 0 20px 0;
  text-align: center;
  color: #ffffff;
}
section.basic-title h1 span {
  display: block;
}
section.basic-title h1 span.pre-title {
  color: #ffffff;
  font-size: 18px;
}
@media only screen and (max-width: 900px) {
  section.basic-title {
    padding: 70px 0 20px 0;
  }
}

section.no-title {
  padding: 120px 0 20px 0;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 1200px) {
  section.no-title {
    padding: 70px 0 20px 0;
  }
}

section.intro {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
}

.product-title {
  color: #ffffff;
  padding: 120px 20px 20px 20px;
  transition: background-color 0.3s;
}
.product-title .site-content {
  position: relative;
}
.product-title p.intro {
  max-width: 800px;
}
.product-title h1 {
  margin: 20px 0 40px 0;
  position: relative;
}
.product-title h1 span {
  display: block;
}
.product-title h1 span:nth-child(2) {
  font-weight: bold;
}
.product-title h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #ffffff;
  width: 100px;
  height: 2px;
}
.product-title ul {
  padding: 20px 0;
}
.product-title ul li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  vertical-align: top;
}
.product-title ul li a {
  display: block;
  display: flex;
  border: 2px solid #ffffff;
  width: 150px;
  height: 150px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px;
  font-size: 14px;
  text-align: center;
  z-index: 0;
  position: relative;
  align-items: center;
  justify-content: center;
}
.product-title ul li a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #ffffff;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.product-title ul li a:hover::after {
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .product-title {
    padding: 120px 20px 20px 20px;
  }
}

.list-big-gallery-item {
  position: relative;
  background-color: #ffffff;
}
.list-big-gallery-item h2 {
  margin-bottom: 30px;
}
.list-big-gallery-item h2 span {
  display: block;
}
.list-big-gallery-item h2 span:nth-child(2) {
  font-weight: bold;
}
.list-big-gallery-item > .infos {
  position: relative;
  width: 50%;
  background-color: #ffffff;
  z-index: 2;
  min-height: 400px;
}
.list-big-gallery-item > .picture {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.list-big-gallery-item > .picture > img {
  display: none;
  width: 100%;
  max-width: 100%;
}
.list-big-gallery-item .site-content {
  max-width: 600px;
  position: relative;
}
.list-big-gallery-item:nth-child(odd) > .infos .site-content, .list-big-gallery-item.odd > .infos .site-content {
  margin: 0 0 0 auto;
  padding: 50px 50px 50px 20px;
}
@media only screen and (max-width: 1200px) {
  .list-big-gallery-item:nth-child(odd) > .infos .site-content, .list-big-gallery-item.odd > .infos .site-content {
    margin: 0;
    padding: 20px;
  }
}
.list-big-gallery-item:nth-child(odd) > .picture, .list-big-gallery-item.odd > .picture {
  left: 50%;
  right: 0;
}
.list-big-gallery-item:nth-child(even) > .infos, .list-big-gallery-item.even > .infos {
  margin: 0 0 0 auto;
}
.list-big-gallery-item:nth-child(even) > .infos .site-content, .list-big-gallery-item.even > .infos .site-content {
  margin: 0 auto 0 0;
  padding: 50px 20px 50px 50px;
}
@media only screen and (max-width: 1200px) {
  .list-big-gallery-item:nth-child(even) > .infos .site-content, .list-big-gallery-item.even > .infos .site-content {
    margin: 0;
    padding: 20px;
  }
}
.list-big-gallery-item:nth-child(even) > .picture, .list-big-gallery-item.even > .picture {
  left: 0;
  right: 50%;
}
.list-big-gallery-item:nth-child(even) > .picture .site-content, .list-big-gallery-item.even > .picture .site-content {
  margin: 0 0 0 auto;
  padding: 50px 50px 50px 20px;
}
.list-big-gallery-item a {
  margin-top: 20px;
}
@media only screen and (max-width: 999px) {
  .list-big-gallery-item .site-content {
    max-width: none;
  }
  .list-big-gallery-item > .infos {
    position: static;
    width: auto;
    min-height: 0;
  }
  .list-big-gallery-item > .picture {
    position: static;
    width: auto;
  }
  .list-big-gallery-item > .picture > img {
    display: block;
  }
}

.group {
  clear: both;
  padding: 50px 10px;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  text-align: center;
}
.group h2 span:nth-child(2) {
  font-weight: bold;
}
.group p {
  margin-bottom: 20px;
}
.group a {
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  border: 2px solid #fff;
}
.group a:hover {
  color: #232323;
}

section.simple-product-gallery {
  background-color: #f6f5f3;
  padding: 20px 0;
}
section.simple-product-gallery ul {
  margin: 0 auto;
}
section.simple-product-gallery li {
  margin-bottom: 20px;
  vertical-align: top;
  background-color: #fff;
}
section.simple-product-gallery li img {
  width: 100%;
}
section.simple-product-gallery li .infos {
  padding: 20px 30px;
}
section.simple-product-gallery li h2 span:nth-child(2) {
  font-weight: bold;
}

@media only screen and (min-width: 590px) {
  section.simple-product-gallery li {
    width: 590px;
  }
}
section.footer {
  background-color: #000000;
  color: #e1e1e1;
  padding: 30px 10px;
  text-align: center;
  font-size: 14px;
}
section.footer a {
  color: #e1e1e1;
}
.no-touch section.footer a:hover {
  color: #ffffff;
}
section.footer address {
  margin: 15px 0;
}
section.footer .menu-footer {
  margin: 5px;
}
section.footer .menu-footer li {
  display: inline-block;
}
section.footer .menu-footer li::after {
  content: ' - ';
}
section.footer .menu-footer li.last::after {
  content: '';
}

section.contact {
  color: #fff;
  padding: 30px;
  background-position: center center;
  background-size: cover;
  text-align: left;
  text-transform: uppercase;
}
section.contact span {
  display: block;
}
section.contact span:nth-child(1) {
  font-weight: bold;
  font-size: 36px;
}
section.contact span:nth-child(2) {
  font-size: 20px;
}
section.contact .site-content {
  text-align: center;
}
@media (min-width: 1000px) {
  section.contact .site-content {
    display: flex;
    align-items: center;
  }
  section.contact .site-content .text {
    flex: 2;
    text-align: left;
  }
  section.contact .site-content .buttons {
    flex: 1;
    text-align: right;
  }
}

@media only screen and (max-width: 1200px) {
  section.contact {
    text-align: center;
  }
  section.contact a.button {
    float: none;
  }
}
ul.menu-social {
  text-align: center;
}
ul.menu-social li {
  display: inline-block;
}
ul.menu-social li a {
  color: #ffffff;
}
ul.menu-social li a:hover {
  color: #fff;
}
ul.menu-social li span {
  display: none;
}
ul.menu-social li i {
  margin: 0;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

section.home-banner {
  padding: 100px 15px 120px 15px;
  text-align: center;
  position: relative;
  color: #ffffff;
  background-color: #232323;
  transition: background-color 0.5s;
}
section.home-banner h1 span {
  display: block;
}
section.home-banner h1 span:nth-child(2) {
  font-weight: normal;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  text-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.7);
}
section.home-banner h1 span:nth-child(1) {
  color: #ffffff;
  font-size: 18px;
}
section.home-banner .locator {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  text-align: center;
}
section.home-banner .locator a {
  color: #ffffff;
}
.no-touch section.home-banner .locator a:hover {
  color: #ffffff;
}
section.home-banner .locator i {
  color: #ffffff;
  margin-right: 5px;
  font-size: 120%;
}
section.home-banner .site-content {
  min-height: 500px;
}
section.home-banner .site-content > ul > li {
  vertical-align: top;
  display: inline-block;
}
section.home-banner .list-navigation-item {
  margin: 15px 35px;
}
section.home-banner .list-navigation-item a {
  display: block;
  position: relative;
  border: 2px solid transparent;
}
section.home-banner .list-navigation-item a img {
  width: 220px;
}
section.home-banner .list-navigation-item a .text {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px;
  margin: 0 auto;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  text-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.7);
}
.no-touch section.home-banner .list-navigation-item a, .no-touch section.home-banner .list-navigation-item a .text {
  transition: all 0.3s;
}
.no-touch section.home-banner .list-navigation-item a:hover {
  transform: translateY(25px);
}
.no-touch section.home-banner .list-navigation-item a:hover .text {
  border-color: #ffffff;
  border-radius: 100px;
  background-color: #ffffff;
  bottom: 90px;
}

.parallax-images-loaded section.home-banner {
  background-color: transparent;
}

section.box-on-picture .site-content {
  position: relative;
  padding: 50px 20px;
}
@media only screen and (max-width: 768px) {
  section.box-on-picture .site-content {
    padding: 0;
  }
}
section.box-on-picture .box {
  position: relative;
  padding: 30px;
  width: 55%;
  margin: 0 auto;
}
section.box-on-picture .box h2 {
  margin-bottom: 0;
}
section.box-on-picture .box h2 span {
  display: block;
}
section.box-on-picture .box h2 span:nth-child(2) {
  font-weight: bold;
}
section.box-on-picture .box .text {
  margin: 20px 0;
}
section.box-on-picture.position-bg .box {
  background-color: #1a1a1a;
  text-align: center;
  color: #e1e1e1;
}
section.box-on-picture.position-bg .box h2 {
  color: #ffffff;
}
section.box-on-picture.position-bg .box a.button {
  color: #ffffff;
  border-color: #ffffff;
}
.no-touch section.box-on-picture.position-bg .box a.button:hover {
  background-color: #ffffff;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  section.box-on-picture.position-bg {
    padding: 0;
  }
  section.box-on-picture.position-bg .site-content {
    padding: 0;
  }
  section.box-on-picture.position-bg .picture {
    position: static;
    width: auto;
    height: 200px;
  }
  section.box-on-picture.position-bg .box {
    position: static;
    width: auto;
  }
}
section.box-on-picture.position-left, section.box-on-picture.position-right {
  background-color: #f6f5f3;
  padding: 50px 0;
}
section.box-on-picture.position-left .box, section.box-on-picture.position-right .box {
  background-color: #ffffff;
}
section.box-on-picture.position-left .picture, section.box-on-picture.position-right .picture {
  position: absolute;
  width: 50%;
  background-size: cover;
  background-position: center center;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  section.box-on-picture.position-left, section.box-on-picture.position-right {
    padding: 0;
  }
  section.box-on-picture.position-left .site-content, section.box-on-picture.position-right .site-content {
    padding: 0;
  }
  section.box-on-picture.position-left .picture, section.box-on-picture.position-right .picture {
    position: static;
    width: auto;
    height: 200px;
  }
  section.box-on-picture.position-left .box, section.box-on-picture.position-right .box {
    position: static;
    width: auto;
  }
}
section.box-on-picture.position-left .picture {
  left: 0;
}
section.box-on-picture.position-left .box {
  margin: 0 0 0 auto;
}
section.box-on-picture.position-right .picture {
  right: 0;
}
section.box-on-picture.position-right .box {
  margin: 0 auto 0 0;
}

section.simple-gallery {
  background-color: #f6f5f3;
  text-align: center;
  padding: 30px 0;
}
section.simple-gallery h2 span {
  display: block;
}
section.simple-gallery h2 span:nth-child(2) {
  font-weight: bold;
}
@media (min-width: 1240px) {
  section.simple-gallery .list-simple-gallery {
    margin: 0 -20px 20px -20px;
  }
}
section.simple-gallery .list-simple-gallery-item {
  text-align: center;
  background-color: #ffffff;
  display: inline-block;
  margin: 20px;
  width: 260px;
  vertical-align: top;
}
section.simple-gallery .list-simple-gallery-item img {
  width: 260px;
  height: 200px;
}
section.simple-gallery .list-simple-gallery-item .title {
  color: #ffffff;
  padding: 20px 20px 10px 20px;
  text-transform: uppercase;
}
section.simple-gallery .list-simple-gallery-item .text {
  padding: 10px 20px 20px 20px;
}
section.simple-gallery .slider {
  position: relative;
}
section.simple-gallery .slider .list-client {
  margin: 20px 70px;
}
section.simple-gallery .slider .list-client-item {
  width: 540px;
  height: 300px;
}
section.simple-gallery .slider .client {
  width: 550px;
  height: 300px;
  overflow: hidden;
  position: relative;
}
section.simple-gallery .slider .client .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 460px;
  height: 300px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
section.simple-gallery .slider .client .logo {
  position: absolute;
  width: 180px;
  top: 70px;
  bottom: 70px;
  right: 40px;
  background-color: #ffffff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.simple-gallery .slider .client .logo .name {
  font-size: 18px;
  text-transform: uppercase;
  white-space: normal;
}
section.simple-gallery .slider .client .logo img {
  display: block;
  position: absolute;
  max-width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 15px;
}
section.simple-gallery .slider .prev, section.simple-gallery .slider .next {
  display: block;
  position: absolute;
  top: 120px;
  z-index: 1001;
  height: 60px;
  cursor: pointer;
}
section.simple-gallery .slider .prev i, section.simple-gallery .slider .next i {
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  width: 60px;
  line-height: 60px;
  font-size: 40px;
  color: #232323;
}
section.simple-gallery .slider .next {
  right: 0;
}
section.simple-gallery .slider .prev {
  left: 0;
}

.no-touch section.simple-gallery .slider .prev:hover i {
  transform: translateX(-10px);
}
.no-touch section.simple-gallery .slider .next:hover i {
  transform: translateX(10px);
}

section.simple-slider {
  background-color: #ffffff;
  text-align: center;
  padding: 30px 0;
}
section.simple-slider h2 span {
  display: block;
}
section.simple-slider h2 span:nth-child(2) {
  font-weight: bold;
}
section.simple-slider .slider-container {
  position: relative;
  padding: 0 100px;
}
section.simple-slider .slider-container .prev, section.simple-slider .slider-container .next {
  display: block;
  position: absolute;
  top: 70px;
  z-index: 1001;
  height: 60px;
  cursor: pointer;
}
section.simple-slider .slider-container .prev i, section.simple-slider .slider-container .next i {
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  width: 60px;
  line-height: 60px;
  font-size: 40px;
  color: #232323;
}
section.simple-slider .slider-container .next {
  right: 0;
}
section.simple-slider .slider-container .prev {
  left: 0;
}
section.simple-slider .slider img {
  width: 200px;
  height: 200px;
  margin: 0 25px;
}

.no-touch section.simple-slider .slider-container .prev:hover i {
  transform: translateX(-10px);
}
.no-touch section.simple-slider .slider-container .next:hover i {
  transform: translateX(10px);
}

section.simple-product-view {
  background-color: #f6f5f3;
  padding: 20px 0;
}
section.simple-product-view .cover {
  height: 400px;
  background-color: #232323;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
section.simple-product-view .empty-cover {
  height: 50px;
}
section.simple-product-view .details {
  background-color: #ffffff;
  text-align: center;
  position: relative;
}
section.simple-product-view .details .text {
  padding: 50px 100px;
  text-align: left;
}

@media only screen and (max-width: 1200px) {
  section.blog-view .post .details .text {
    padding: 20px 0;
  }
}
section.contact-form {
  background-color: #f6f5f3;
  overflow: hidden;
}
section.contact-form .wrapper .infos {
  padding: 50px;
  text-align: center;
}
section.contact-form .wrapper .infos h3 {
  font-size: 36px;
}
section.contact-form .wrapper .infos h3 span {
  display: block;
}
section.contact-form .wrapper .infos h3 span:nth-child(2) {
  font-weight: bold;
}
section.contact-form .wrapper .infos .address {
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: 50px;
  line-height: 2;
}
section.contact-form .wrapper .infos .phone {
  font-size: 36px;
}
section.contact-form .wrapper .form {
  position: relative;
  z-index: 10;
  padding: 50px;
  background-color: #ffffff;
}
section.contact-form .wrapper .form h3 {
  color: #ffffff;
  font-size: 36px;
}
section.contact-form .wrapper .form input, section.contact-form .wrapper .form textarea {
  width: 100%;
}
section.contact-form .wrapper .form input.error, section.contact-form .wrapper .form textarea.error {
  box-shadow: 0 0 7px #ff0000 inset;
}
section.contact-form .wrapper .form::after {
  content: '';
  background-color: #ffffff;
  position: absolute;
  width: 5000px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 1200px) {
  section.contact-form .wrapper {
    display: flex;
  }
  section.contact-form .wrapper .infos {
    flex: 1;
    text-align: right;
  }
  section.contact-form .wrapper .form {
    flex: 2;
  }
}
section.contact-form .title {
  height: 180px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  text-transform: uppercase;
  padding-top: 50px;
}
section.contact-form .title h2 {
  color: #ffffff;
}
section.contact-form .title h2 span {
  display: block;
}
section.contact-form h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
section.contact-form .message {
  display: none;
}
@media only screen and (min-width: 1200px) {
  section.contact-form .infos {
    float: left;
    width: 50%;
  }
  section.contact-form .form {
    float: right;
    width: 50%;
  }
  section.contact-form .map {
    clear: both;
  }
}

section.google-map {
  background-color: #f6f5f3;
}
section.google-map #google-map {
  height: 260px;
}

ul.list-point li.list-point-item {
  position: relative;
  height: 120px;
}
ul.list-point li.list-point-item .picto {
  position: absolute;
  width: 75px;
  height: 75px;
  transform: rotateZ(45deg);
  border: 5px solid rgba(255, 255, 255, 0.5);
  left: -88px;
}
ul.list-point li.list-point-item .picto .image {
  background-color: #ffffff;
  width: 65px;
  height: 65px;
  padding: 12px;
}
ul.list-point li.list-point-item .picto .image img {
  width: 40px;
  height: 40px;
  transform: rotateZ(-45deg);
}
ul.list-point li.list-point-item .infos {
  padding-left: 40px;
  color: #232323;
}
ul.list-point li.list-point-item .infos h3 {
  font-size: 24px;
  text-transform: none;
}

@media only screen and (max-width: 1200px) {
  ul.list-point li.list-point-item {
    height: auto;
    text-align: center;
  }
  ul.list-point li.list-point-item .picto {
    left: 50%;
    margin-left: -37px;
  }
  ul.list-point li.list-point-item .infos {
    padding: 100px 0 20px 0;
  }
}
form .form-control {
  margin: 10px 0;
}
form input, form textarea {
  background-color: #f6f5f3;
  border: 0;
  color: #232323;
  padding: 15px;
  border-radius: 0;
  transition: box-shadow 0.3s;
}
form input {
  line-height: 20px;
}
form button, form a.form-button {
  border: 0;
  padding: 10px 15px;
  font-size: 18px;
  background-color: #eeeeee;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 0;
}
form select {
  border: 0;
  border-radius: 0;
  background-color: #f6f5f3;
  color: #232323;
  padding: 15px;
  transition: box-shadow 0.3s;
}

section.quotation-form {
  padding: 30px 0;
  background-color: #1a1a1a;
  color: #fff;
  text-align: left;
  font-size: 26px;
}
section.quotation-form .step {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 910px;
}
section.quotation-form #step-1 {
  display: block;
}
section.quotation-form form {
  float: right;
  text-align: right;
  position: relative;
  width: 910px;
}
section.quotation-form select {
  background-color: #ffffff;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
}
section.quotation-form select[name=prestation] {
  width: 200px;
}
section.quotation-form select.error {
  box-shadow: 0 0 7px #ff0000 inset;
}
section.quotation-form input {
  line-height: 40px;
  background-color: #ffffff;
  height: 40px;
  padding: 0 10px;
  border-left: 1px solid #1a1a1a;
}
section.quotation-form input[name=description] {
  width: 580px;
}
section.quotation-form input[name=email], section.quotation-form input[name=telephone] {
  width: 200px;
}
section.quotation-form input[name=nom] {
  width: 380px;
}
section.quotation-form input.error {
  box-shadow: 0 0 7px #ff0000 inset;
}
section.quotation-form a.form-button {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
  color: #ffffff;
  vertical-align: bottom;
  width: 130px;
  text-align: center;
}
section.quotation-form span {
  text-transform: uppercase;
  line-height: 40px;
}
section.quotation-form span:nth-child(2) {
  font-weight: bold;
}

.no-touch section.quotation-form a.form-button:hover {
  opacity: 0.7;
}

header {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  color: #fff;
  text-transform: uppercase;
  transition-property: box-shadow, background-color;
  transition-duration: 0.3s,  0.3s;
}
header a {
  color: #fff;
}
header a:hover {
  color: #fff;
  background-color: transparent;
}
header .site-content {
  position: relative;
  height: 100px;
}
header li {
  display: inline-block;
}
header .logo {
  position: absolute;
  bottom: 18px;
  left: 10px;
}
header .logo img {
  display: block;
  transition: height 0.3s, opacity 0.3s;
}
.no-touch header .logo a:hover img {
  opacity: 0.7;
}
header .top-menus {
  position: absolute;
  top: 20px;
  right: 200px;
  font-weight: bold;
  transition: top 0.3s;
}
header .top-menus ul {
  margin: 0 3px;
}
header .top-menus ul li {
  font-size: 12px;
}
header .top-menus ul li i {
  margin-left: 0;
}
header .top-menus ul li a {
  color: #ffffff;
}
header .top-menus ul li a:hover {
  opacity: 0.7;
}
header .top-menus ul.menu-social {
  display: block;
}
header .top-menus ul.menu-social li {
  background-color: transparent;
  margin-left: 20px;
}
header .top-menus ul.menu-social li i {
  font-size: 18px;
  width: auto;
  height: auto;
  line-height: 1.1;
}
header .contact-box {
  position: absolute;
  bottom: 32px;
  right: 0;
  width: 180px;
  text-align: center;
  transition: bottom 0.3s;
}
header .contact-box a.button.primary {
  padding: 4px 12px;
  font-size: 18px;
  font-weight: bold;
  color: #eeeeee;
  border-color: #ffffff;
  background-color: #ffffff;
}
header .contact-box a.button.primary:hover {
  color: #eeeeee;
  border-color: #ffffff;
  background-color: #ffffff;
}
header .contact-box a.button.primary i {
  margin-left: 0;
  margin-right: 5px;
}
header .top-menu, header .social-menu, header .phone-button, header .language-switcher {
  display: inline-block;
}
header .bottom-menu {
  position: absolute;
  bottom: 30px;
  right: 200px;
  transition: bottom 0.3s;
}
header .bottom-menu ul {
  text-align: right;
}
header .bottom-menu ul li {
  margin-left: 20px;
  position: relative;
}
header .bottom-menu ul li i {
  display: none;
}
header .bottom-menu ul li:hover a, header .bottom-menu ul li.current a {
  color: #ffffff;
}
header .navbar-button {
  display: none;
}
header.fixed {
  top: -35px;
  background-color: #eeeeee;
  position: fixed;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header.fixed .site-menu, header.fixed .logo::after, header.fixed .contact-box::after {
  display: none;
}
header.fixed .logo img {
  height: 45px;
}
header.fixed .contact-box {
  bottom: 10px;
}
header.fixed .bottom-menu {
  bottom: 22px;
}
header.fixed .top-menus {
  top: 0;
}
header .language-switcher .active {
  color: #ffffff;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  header {
    height: 50px;
  }
  header .site-content {
    height: 65px;
  }
  header .site-content .logo {
    left: 20px;
    bottom: 15px;
  }
  header .site-content .logo img {
    height: 35px;
  }
  header .site-content .logo::after {
    display: none;
  }
  header .site-content .top-menus, header .site-content .bottom-menu, header .site-content .contact-box, header .site-content .language-switcher {
    display: none;
  }
  header .site-content .navbar-button {
    display: block;
    float: right;
    margin: 10px;
  }
}
@media only screen and (max-width: 768px) {
  header .site-content .contact-box {
    display: none;
  }
}
.open-nav {
  display: inline-block;
  background: transparent;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  z-index: 100003;
}
.open-nav span.hamburger {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 4px;
  background-color: #ffffff;
}
.open-nav span.hamburger:before, .open-nav span.hamburger:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .3s, background .3s;
  -webkit-transition: -webkit-transform .3s, background .3s;
  -moz-transition: -moz-transform .3s, background .3s;
  -o-transition: -o-transform .3s, background .3s;
  -ms-transition: -ms-transform .3s, background .3s;
  background-color: #ffffff;
}
.open-nav span.hamburger:before {
  -webkit-transform: translateY(-10px) rotate(0deg);
  -moz-transform: translateY(-10px) rotate(0deg);
  -ms-transform: translateY(-10px) rotate(0deg);
  -o-transform: translateY(-10px) rotate(0deg);
  transform: translateY(-10px) rotate(0deg);
}
.open-nav span.hamburger:after {
  -webkit-transform: translateY(10px) rotate(0deg);
  -moz-transform: translateY(10px) rotate(0deg);
  -ms-transform: translateY(10px) rotate(0deg);
  -o-transform: translateY(10px) rotate(0deg);
  transform: translateY(10px) rotate(0deg);
}
.open-nav span.hamburger.is-clicked:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.open-nav span.hamburger.is-clicked:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.open-nav span.hamburger.is-clicked {
  background-color: transparent !important;
}
.open-nav:hover span:before {
  -webkit-transform: translateY(-13px) rotate(0deg);
  -moz-transform: translateY(-13px) rotate(0deg);
  -ms-transform: translateY(-13px) rotate(0deg);
  -o-transform: translateY(-13px) rotate(0deg);
  transform: translateY(-13px) rotate(0deg);
}
.open-nav:hover span:after {
  -webkit-transform: translateY(13px) rotate(0deg);
  -moz-transform: translateY(13px) rotate(0deg);
  -ms-transform: translateY(13px) rotate(0deg);
  -o-transform: translateY(13px) rotate(0deg);
  transform: translateY(13px) rotate(0deg);
}

header .mobile-menu {
  display: none;
  background-color: #eeeeee;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
}
header .mobile-menu .wrapper {
  opacity: 0;
}
header .mobile-menu .bottom-menu {
  position: static;
  font-size: 26px;
}
header .mobile-menu .bottom-menu ul {
  text-align: center;
}
header .mobile-menu .bottom-menu ul li {
  display: block;
  margin-left: 0;
}
header .mobile-menu .bottom-menu ul li::after {
  display: none;
}
header .mobile-menu .top-menu {
  display: block;
  position: static;
  font-size: 18px;
  padding-top: 20px;
}
header .mobile-menu .top-menu ul {
  text-align: center;
}
header .mobile-menu .top-menu ul li {
  display: block;
  margin: 0 5px;
}
header .mobile-menu .social-menu {
  display: block;
  position: static;
  font-size: 18px;
  padding-top: 20px;
}
header .mobile-menu .social-menu ul {
  text-align: center;
}

section.simple-text {
  background-color: #ffffff;
}
section.simple-text .site-content {
  padding: 30px;
}

.scroll-down {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  font-size: 50px;
  line-height: 50px;
  text-align: center;
}
.scroll-down a {
  color: #ffffff;
}
.scroll-down.right {
  left: auto;
  right: 20px;
  margin-left: 0;
}
.scroll-down.animated i {
  -webkit-animation: ca3_fade_move_down 1s infinite;
  -moz-animation: ca3_fade_move_down 1s infinite;
  -o-animation: ca3_fade_move_down 1s infinite;
  animation: ca3_fade_move_down 1s infinite;
}

/*animated scroll arrow animation*/
@-webkit-keyframes ca3_fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
}
@-moz-keyframes ca3_fade_move_down {
  0% {
    -moz-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(0, 20px);
    opacity: 0;
  }
}
@keyframes ca3_fade_move_down {
  0% {
    transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}
footer {
  clear: both;
}

.show-more {
  text-align: center;
  text-transform: uppercase;
  padding-top: 20px;
}
.show-more a {
  display: inline-block;
  position: relative;
  padding-bottom: 40px;
}
.show-more a span:first-child {
  font-weight: bold;
}
.show-more a span {
  display: block;
}
.show-more a i {
  position: absolute;
  line-height: 36px;
  font-size: 36px;
  bottom: 10px;
  left: 50%;
  width: 50px;
  margin-left: -25px;
  transition: bottom 0.3s;
}
.show-more a:hover {
  opacity: 0.7;
}
.show-more a:hover i {
  bottom: 0;
}

#newsletter-form .message {
  display: none;
}
#newsletter-form [name=email] {
  background-color: #eeeeee;
  padding: 0 15px 0 20px;
  font-size: 18px;
  line-height: 40px;
  color: #f6f5f3;
  width: 220px;
  height: 40px;
  display: inline-block;
  vertical-align: top;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
#newsletter-form .form-button {
  background-color: #ffffff;
  color: #ffffff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #ffffff;
  line-height: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
  vertical-align: top;
  padding: 0 20px 0 15px;
}
.no-touch #newsletter-form .form-button:hover {
  background-color: transparent;
  color: #ffffff;
}
#newsletter-form input.error, #newsletter-form textarea.error {
  box-shadow: 0 0 7px #ff0000 inset;
}

ul.twitter-feed {
  font-size: 14px;
}
ul.twitter-feed a {
  color: #ffffff;
}
ul.twitter-feed li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  word-wrap: break-word;
}
ul.twitter-feed li i {
  position: absolute;
  top: 4px;
  left: 2px;
  color: #ffffff;
}

.wysiwyg-content a {
  text-transform: uppercase;
  font-weight: bold;
}

section.error-message {
  background: url(../img/404.jpg) center center no-repeat;
  background-size: cover;
}
section.error-message .message {
  padding: 200px 10px;
  text-align: center;
}
section.error-message .message .code {
  font-size: 200px;
  font-weight: bolder;
}
section.error-message .message .buttons {
  margin-top: 20px;
}

section.activity-price-list {
  background-color: #f6f5f3;
  padding: 30px 10px;
  text-align: center;
}
section.activity-price-list h2 span {
  display: block;
}
section.activity-price-list h2 span:nth-child(2) {
  font-weight: bold;
}

section.workshop-prices {
  background: #f6f5f3;
  padding: 30px 10px;
  text-align: center;
}
section.workshop-prices h2 span {
  display: block;
}
section.workshop-prices h2 span:nth-child(2) {
  font-weight: bold;
}

ul.list-workshop-prices {
  margin: 0 auto;
}
ul.list-workshop-prices h3 {
  font-size: 30px;
}
ul.list-workshop-prices > li {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 40px;
}
ul.list-workshop-prices > li table {
  width: 100%;
}
ul.list-workshop-prices > li table .name {
  text-transform: uppercase;
  padding-top: 10px;
}
ul.list-workshop-prices > li table .description {
  color: #999999;
  background-image: url(../img/list_bg.png);
  background-repeat: repeat-x;
  background-position: 100% 100%;
}
ul.list-workshop-prices > li table .description > span {
  background-color: #ffffff;
  padding-right: 5px;
}
ul.list-workshop-prices > li table .price {
  text-align: left;
  color: #ffffff;
  white-space: nowrap;
  font-size: 26px;
  vertical-align: bottom;
  width: 50px;
  padding-left: 5px;
}

@media only screen and (min-width: 580px) {
  ul.list-workshop-prices > li {
    width: 550px;
  }
}
section.partners {
  background-color: #f6f5f3;
  padding: 50px 20px;
  text-align: center;
}
section.partners .partner {
  margin-bottom: 15px;
}
section.partners .partner .name {
  font-size: 20px;
  text-transform: uppercase;
}
section.partners .category {
  margin-bottom: 20px;
}
section.partners .category h2 {
  margin-bottom: 5px;
}
@media (min-width: 900px) {
  section.partners {
    text-align: left;
  }
  section.partners .row-2-cols {
    display: flex;
  }
  section.partners .col {
    flex: 1;
  }
}

section.newsletter {
  background-color: #232323;
  color: #e1e1e1;
  padding: 20px;
}
section.newsletter .site-content {
  text-align: center;
}
section.newsletter .title {
  font-size: 18px;
}
section.newsletter .title span:nth-child(1) {
  text-transform: uppercase;
  font-size: 22px;
}
section.newsletter form {
  margin-top: 15px;
}
@media (min-width: 1200px) {
  section.newsletter .site-content {
    display: flex;
  }
  section.newsletter .title {
    flex: 1;
    text-align: right;
    padding-right: 40px;
  }
  section.newsletter form {
    flex: 1;
    padding-left: 40px;
    margin-top: 0;
    padding-top: 8px;
    text-align: left;
  }
}

section.two-column-text {
  background-color: #f6f5f3;
  padding: 30px 0;
}
section.two-column-text h2 span {
  display: block;
}
section.two-column-text h2 span:nth-child(2) {
  font-weight: bold;
}
@media (min-width: 1200px) {
  section.two-column-text .site-content {
    display: flex;
  }
  section.two-column-text .col {
    flex: 1;
  }
}

section.activity-list {
  background-color: #f6f5f3;
  padding: 30px 0;
  text-align: center;
}
section.activity-list h2 span {
  display: block;
}
section.activity-list h2 span:nth-child(2) {
  font-weight: bold;
}
section.activity-list .list-activity-item {
  overflow: hidden;
  width: 260px;
  height: 260px;
  position: relative;
}
section.activity-list .list-activity-item img {
  width: 260px;
  height: 260px;
  position: absolute;
  top: -25px;
  left: 0;
}
section.activity-list .list-activity-item .normal-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  transition: all 0.3s;
}
section.activity-list .list-activity-item .normal-overlay h2 {
  font-size: 18px;
  line-height: 50px;
  padding: 0 10px;
}
section.activity-list .list-activity-item .normal-overlay .picto {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 50px;
  padding-right: 10px;
  color: #ffffff;
}
section.activity-list .list-activity-item .hover-overlay {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(35, 35, 35, 0.7);
  transition: all 0.3s;
  text-align: center;
  color: #ffffff;
}
section.activity-list .list-activity-item .hover-overlay .links {
  margin-top: 100px;
}

.no-touch section.activity-list {
  text-align: center;
}
.no-touch section.activity-list .list-activity-item {
  margin: 20px;
  display: inline-block;
  text-transform: uppercase;
  text-align: left;
}
.no-touch section.activity-list .list-activity-item img {
  transition: all 0.3s;
}
.no-touch section.activity-list .list-activity-item .hover-overlay {
  display: block;
}
.no-touch section.activity-list .list-activity-item:hover img {
  top: 0;
}
.no-touch section.activity-list .list-activity-item:hover .normal-overlay {
  bottom: -50px;
}
.no-touch section.activity-list .list-activity-item:hover .hover-overlay {
  opacity: 1;
}

section.basic-title h1 span:nth-child(1) {
  color: #ffffff;
  font-size: 18px;
}

/*
 * jQuery FlexSlider v2.6.1
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
body {
  background-color: #1a1a1a;
}

a {
  font-family: "Fjalla One", sans-serif;
  color: #007576;
}
.no-touch a:hover {
  color: #04c2c4;
}
a.button {
  padding: 10px 25px;
  border: 1px solid #007576;
  display: inline-block;
  color: #007576;
  text-transform: uppercase;
}
.no-touch a.button:hover {
  background-color: #007576;
  color: #ffffff;
}

p {
  margin: 0;
  padding-bottom: 10px;
}

h2 {
  color: #007576;
}

.flex-control-paging li {
  margin: 0 4px;
}
.flex-control-paging li a {
  width: 17px;
  height: 17px;
  display: block;
  background: transparent;
  cursor: pointer;
  text-indent: -9999px;
  box-shadow: none;
  border-radius: 20px;
  border: 3px solid #007576;
}
.flex-control-paging li a.flex-active {
  background: #007576;
  cursor: default;
}
.flex-control-paging li a:hover {
  background: #007576;
}

header {
  height: 90px;
}
@media (min-width: 1200px) {
  header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .logo-fixed {
  position: relative;
  float: left;
  bottom: 0;
  left: 0;
  margin-top: 15px;
  margin-left: 20px;
  display: none;
  opacity: 0;
  transition: all 0.7s;
}
header .logo-fixed img {
  height: 60px;
}
header.fixed {
  top: 0;
  background-color: #232323;
  position: fixed;
  box-shadow: none;
  border-bottom: none;
}
header.fixed .logo {
  display: none;
  opacity: 0;
}
header.fixed .logo-fixed {
  display: block;
  opacity: 1;
}
header .site-content {
  max-width: none;
  height: 90px;
  overflow: hidden;
  *zoom: 1;
}
header .site-content .logo {
  position: relative;
  float: left;
  bottom: 0;
  left: 0;
  margin-top: 15px;
  margin-left: 20px;
  opacity: 1;
  transition: all 0.7s;
}
header .site-content .logo img {
  height: 60px;
}
header .navbar-button {
  display: block;
  float: right;
  margin: 10px;
}
@media (min-width: 1200px) {
  header .navbar-button {
    display: none;
  }
}
header .main-menus {
  position: relative;
  float: right;
  display: none;
  overflow: hidden;
  *zoom: 1;
}
@media (min-width: 1200px) {
  header .main-menus {
    display: block;
  }
}
header .main-menus > div {
  float: left;
  padding: 35px 15px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  height: 90px;
}
.no-touch header .main-menus > div a:hover {
  color: #04c2c4;
}
header .main-menus > div a::after {
  display: none;
}
header .main-menus > div li {
  margin-right: 15px;
}
header .main-menus > div li.last {
  margin-right: 0;
}
header .main-menus > div.phone-button {
  border-right: 0;
}
header .main-menus > div.phone-button .phone {
  font-family: "Fjalla One", sans-serif;
}
header .main-menus > div.language {
  padding: 35px 15px 0;
}
header .main-menus > div.language li {
  margin-right: 0;
}
header .mobile-menu {
  background-color: #232323;
}
header .mobile-menu .main-menu li {
  display: block;
  padding-bottom: 15px;
  font-size: 24px;
}
header .mobile-menu .social-menu {
  padding-bottom: 10px;
}
header .mobile-menu .social-menu li {
  margin-right: 5px;
}
header .mobile-menu .language li {
  margin-left: 13px;
  padding-left: 15px;
}
header .logo-mobile {
  padding-bottom: 25px;
}
header .logo-mobile img {
  height: 60px;
}
header .language li {
  border-left: 3px solid #ffffff;
  margin-left: 3px;
  padding-left: 6px;
}
header .language li:nth-child(1) {
  border-left: 0;
  margin: 0;
  padding: 0;
}

section.home-banner h1 {
  padding-bottom: 45px;
}
section.home-banner h1 span {
  font-size: 44px;
}
section.home-banner h1 span:nth-child(1) {
  font-size: 44px;
  text-shadow: none;
}
section.home-banner h1 span:nth-child(2) {
  font-size: 44px;
  text-shadow: none;
}
section.home-banner a {
  color: #ffffff;
  font-family: "Ubuntu", sans-serif;
}
.no-touch section.home-banner a:hover {
  color: #ffffff;
}
section.home-banner ul {
  overflow: hidden;
}
section.home-banner ul li {
  margin: 25px 0 15px;
  position: relative;
  transition: all 0.3s;
  padding: 20px 0;
  overflow: hidden;
  width: 250px;
}
@media (min-width: 425px) {
  section.home-banner ul li {
    margin: 25px 70px 15px;
  }
}
.no-touch section.home-banner ul li:hover {
  transform: translateY(-25px);
}
.no-touch section.home-banner ul li:hover .buttons {
  top: 70px;
}
section.home-banner .text {
  padding-bottom: 30px;
}
section.home-banner .text span {
  display: block;
}
section.home-banner .buttons {
  display: block;
  position: absolute;
  top: -25px;
  transition: all 0.3s;
  font-size: 14px;
  left: 0;
  right: 0;
}
section.home-banner .push {
  position: relative;
}
.no-touch section.home-banner .push:hover i {
  margin-left: 15px;
}
section.home-banner .push i {
  font-size: 16px;
  margin-left: 5px;
  transition: all 0.3s;
  color: #04c2c4;
  position: absolute;
  top: 6px;
}
section.home-banner .push a {
  padding: 5px 0;
  display: inline-block;
  color: #04c2c4;
  border-bottom: 1px solid #04c2c4;
}
.no-touch section.home-banner .push a:hover {
  color: #04c2c4;
}
section.home-banner .site-content {
  min-height: 100px;
}
section.home-banner .scroll-down i {
  font-size: 24px;
  color: #04c2c4;
}

section.bloc-intro {
  background-color: #eeeeee;
  color: #ffffff;
  padding: 50px 10px;
  position: relative;
}
section.bloc-intro .box-on-picture .box h2 {
  color: #007576;
}
section.bloc-intro .box-on-picture .box h2 span:nth-child(2) {
  font-weight: normal !important;
}
section.bloc-intro .box-on-picture {
  position: relative;
  margin-bottom: 60px;
}
section.bloc-intro .box-on-picture .box {
  position: relative;
  padding: 40px;
  width: 52%;
  margin: 0 auto;
  background-color: #ffffff;
  color: #232323;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
section.bloc-intro .box-on-picture .box h2 {
  margin-bottom: 20px;
}
section.bloc-intro .box-on-picture .box h2 span {
  display: block;
}
section.bloc-intro .box-on-picture .box h2 span:nth-child(2) {
  font-weight: bold;
}
section.bloc-intro .box-on-picture .box .text {
  font-size: 14px;
  font-weight: 300;
  padding-bottom: 20px;
  line-height: 24px;
}
section.bloc-intro .box-on-picture .box ul {
  list-style-type: none;
  /* no default bullets */
  padding-bottom: 10px;
}
section.bloc-intro .box-on-picture .box li {
  margin-left: 10px;
}
section.bloc-intro .box-on-picture .box li::before {
  /* the custom styled bullets */
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #007576;
  border-radius: 50%;
  margin-bottom: 2px;
}
section.bloc-intro .box-on-picture.position-right {
  padding: 50px 0;
}
section.bloc-intro .box-on-picture.position-right .picture {
  position: absolute;
  width: 50%;
  background-size: cover;
  background-position: center center;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  section.bloc-intro .box-on-picture.position-right {
    padding: 0;
  }
  section.bloc-intro .box-on-picture.position-right .site-content {
    padding: 0;
  }
  section.bloc-intro .box-on-picture.position-right .picture {
    position: static;
    width: auto;
    height: 200px;
  }
  section.bloc-intro .box-on-picture.position-right .box {
    position: static;
    width: auto;
    text-align: center;
  }
}
section.bloc-intro .box-on-picture.position-right .picture {
  right: 0;
}
section.bloc-intro .box-on-picture.position-right .box {
  margin: 0 auto 0 0;
}
section.bloc-intro .complementary-text {
  margin: 0 auto;
  max-width: 800px;
  color: #232323;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

section.gallery {
  background-color: #ffffff;
  padding-bottom: 40px;
  text-align: center;
}
section.gallery ul {
  display: inline-block;
  font-size: 0;
  text-align: center;
}
@media (min-width: 1140px) {
  section.gallery ul {
    flex-wrap: wrap;
    display: flex;
  }
}
section.gallery li {
  display: flex;
  border: 1px solid #eeeeee;
  position: relative;
  font-size: 14px;
  text-align: left;
  min-width: 320px;
  padding: 30px 30px 60px;
  transition: all 0.3s;
  flex: 1;
}
@media (min-width: 400px) {
  section.gallery li {
    min-width: 380px;
    padding: 50px 50px 80px;
  }
}
section.gallery .title {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Fjalla One", sans-serif;
  padding-bottom: 15px;
  color: #007576;
}
section.gallery .link {
  position: absolute;
  bottom: 0;
  right: 0;
}
section.gallery .link a {
  background-color: #007576;
  padding: 13px 17px;
  display: block;
}
.no-touch section.gallery .link a:hover {
  background-color: #04c2c4;
}
section.gallery .link i {
  font-size: 26px;
  color: #ffffff;
}

section.logo-list {
  padding: 30px 10px;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
}
section.logo-list h2 {
  color: #007576;
  padding-bottom: 15px;
}
section.logo-list .slides {
  display: inline-block;
}
section.logo-list .logos {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
section.logo-list .custom-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  margin-left: -550px;
  margin-top: -20px;
  display: none;
  overflow: hidden;
  *zoom: 1;
}
@media (min-width: 1100px) {
  section.logo-list .custom-navigation {
    display: block;
  }
}
.no-touch section.logo-list .custom-navigation a:hover i {
  color: #04c2c4;
}
section.logo-list .custom-navigation a:nth-child(1) {
  float: left;
}
section.logo-list .custom-navigation a:nth-child(2) {
  float: right;
}
section.logo-list .custom-navigation a i {
  font-size: 24px;
  padding: 3px 10px 4px 8px;
  transition: all 0.3s;
  color: #007576;
}
section.logo-list .custom-navigation a.flex-next i {
  padding: 3px 8px 4px 10px;
}
section.logo-list img {
  height: 75px;
}
section.logo-list .flex-control-nav {
  bottom: -25px;
}
@media (min-width: 1100px) {
  section.logo-list .flex-control-nav {
    display: none;
  }
}

section.footer {
  padding: 30px 10px 0 10px;
  overflow: hidden;
  background-color: #232323;
}
.no-touch section.footer a:hover {
  color: #04c2c4;
}
section.footer .footer {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
section.footer .footer ul li {
  width: 170px;
}
section.footer .footer ul li::after {
  content: '';
}
section.footer .footer ul li a {
  font-weight: bold;
  font-family: "Fjalla One", sans-serif;
  text-transform: uppercase;
}
section.footer .footer ul li a i {
  font-size: 30px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: super;
}
section.footer .footer ul li a span {
  display: inline-block;
  width: 80px;
}
section.footer .wrapper {
  text-align: left;
  margin: 20px 0;
}
@media (min-width: 750px) {
  section.footer .wrapper {
    display: flex;
    align-items: flex-start;
  }
}
section.footer .wrapper .logo {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 750px) {
  section.footer .wrapper .logo {
    flex: 2;
    text-align: left;
  }
}
section.footer .wrapper .logo img {
  max-height: 60px;
}
section.footer .wrapper .info {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 750px) {
  section.footer .wrapper .info {
    flex: 2;
    text-align: left;
  }
}
section.footer .wrapper .info i {
  color: #007576;
  margin-right: 8px;
}
section.footer .wrapper .info .phone i {
  font-size: 24px;
}
section.footer .wrapper .info > div {
  line-height: 22px;
}
section.footer .wrapper .legal {
  text-align: center;
  margin-bottom: 10px;
}
section.footer .wrapper .legal li {
  padding-bottom: 5px;
}
section.footer .wrapper .legal .social li {
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 750px) {
  section.footer .wrapper .legal {
    flex: 1;
    text-align: left;
  }
}
section.footer .wrapper .legal .contact a {
  text-transform: uppercase;
}
section.footer .wrapper .language li {
  text-transform: uppercase;
  border-left: 3px solid #ffffff;
  margin-left: 3px;
  padding-left: 6px;
  display: inline-block;
  padding-bottom: 0;
  margin-bottom: 5px;
}
section.footer .wrapper .language li:nth-child(1) {
  border-left: 0;
  margin: 0;
  padding: 0;
}
section.footer .bottom {
  background-color: #1a1a1a;
  padding: 15px 0;
  position: relative;
  text-align: center;
}
@media (min-width: 750px) {
  section.footer .bottom {
    display: flex;
    justify-content: space-between;
  }
}
section.footer .bottom::before {
  content: '';
  background-color: #1a1a1a;
  position: absolute;
  top: 0;
  height: 100%;
  width: 10000px;
  right: 100%;
}
section.footer .bottom::after {
  content: '';
  background-color: #1a1a1a;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 10000px;
}
section.footer .bottom .copyright {
  margin-bottom: 10px;
  flex: 1;
}
@media (min-width: 750px) {
  section.footer .bottom .copyright {
    text-align: left;
    margin-left: 25px;
  }
}
section.footer .bottom .made-by {
  margin-bottom: 10px;
  flex: 1;
}
@media (min-width: 750px) {
  section.footer .bottom .made-by {
    text-align: right;
    margin-right: 25px;
  }
}
section.footer .bottom .made-by a:hover {
  color: #04c2c4;
}

section.basic-title {
  background-size: cover;
  background-position: center center;
}
section.basic-title h1 {
  padding: 25px 0 15px;
}

section.basic-intro {
  background-color: #ffffff;
  padding: 45px 10px;
  text-align: center;
}
section.basic-intro .text {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
}

section.content-masonry {
  background-color: #eeeeee;
  padding: 40px 10px;
}
section.content-masonry .flex-direction-nav {
  display: none;
}
section.content-masonry .boxes {
  margin: 0 auto;
}
section.content-masonry .grid-item {
  max-width: 570px;
  margin-bottom: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.2);
}
section.content-masonry .slideshow {
  position: relative;
}
section.content-masonry .picture img {
  width: 100%;
  display: block;
}
section.content-masonry h2 {
  font-size: 24px;
  font-weight: normal;
}
section.content-masonry .box {
  padding: 30px 25px 20px;
  position: relative;
}
section.content-masonry .box .text {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 26px;
}
section.content-masonry .box .text ul, section.content-masonry .box .text ol {
  list-style-type: none;
  /* no default bullets */
  margin-left: 20px;
  padding: 20px 0;
}
section.content-masonry .box .text li:before {
  /* the custom styled bullets */
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #007576;
  border-radius: 50%;
  margin-bottom: 2px;
}
section.content-masonry .box .text a {
  color: #007576;
}
.no-touch section.content-masonry .box .text a:hover {
  color: #04c2c4;
}
section.content-masonry .arrow-up {
  top: -9px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  left: 50%;
  z-index: 2;
  margin-left: -4px;
}
section.content-masonry .flex-control-nav {
  bottom: 10px;
  z-index: 2;
}
section.content-masonry .buttons {
  margin-bottom: 15px;
}
section.content-masonry .buttons a {
  text-transform: uppercase;
}

section.contact-form {
  position: relative;
  background-color: #ffffff;
}
section.contact-form .wrapper .infos {
  text-align: center;
  z-index: 1;
  font-size: 18px;
}
@media (min-width: 1200px) {
  section.contact-form .wrapper .infos {
    text-align: left;
  }
}
section.contact-form .wrapper .infos h2 {
  font-size: 24px;
}
section.contact-form .wrapper .infos > div {
  height: 60px;
}
section.contact-form .wrapper .infos > div.extra-infos span {
  display: inline-block;
}
@media (min-width: 1200px) {
  section.contact-form .wrapper .infos > div.extra-infos span {
    width: 90%;
  }
}
section.contact-form .wrapper .infos > div.extra-infos span:nth-child(1) {
  vertical-align: top;
}
@media (min-width: 1200px) {
  section.contact-form .wrapper .infos > div.extra-infos span:nth-child(1) {
    width: 5%;
  }
}
section.contact-form .wrapper .infos > div i {
  color: #007576;
  font-size: 18px;
  margin-right: 10px;
}
section.contact-form .wrapper .infos > div p {
  margin: 0;
}
section.contact-form .wrapper .infos > div.phone {
  font-size: 18px;
  color: #007576;
}
section.contact-form .wrapper .infos > div.phone i {
  font-size: 26px;
}
section.contact-form .wrapper .form {
  padding: 50px 20px;
}
section.contact-form .wrapper .form::after {
  content: none;
}
section.contact-form .wrapper .form h2 {
  font-size: 24px;
  text-align: center;
}
@media (min-width: 1200px) {
  section.contact-form .wrapper .form h2 {
    text-align: left;
  }
}
section.contact-form .wrapper .form .form-control {
  width: 100%;
  position: relative;
}
@media (min-width: 650px) {
  section.contact-form .wrapper .form .form-control {
    width: 32%;
    display: inline-block;
  }
}
section.contact-form .wrapper .form .form-control.two-tier {
  width: 100%;
}
@media (min-width: 650px) {
  section.contact-form .wrapper .form .form-control.two-tier {
    width: 75%;
  }
}
section.contact-form .wrapper .form .form-control.tier {
  width: 100%;
  text-align: center;
  vertical-align: text-bottom;
}
@media (min-width: 650px) {
  section.contact-form .wrapper .form .form-control.tier {
    width: 23%;
    text-align: right;
  }
}
section.contact-form .wrapper .form .form-control input.error, section.contact-form .wrapper .form .form-control textarea.error {
  box-shadow: 0 0 7px #ff0000 inset;
}
section.contact-form .wrapper .form .form-control input {
  width: 100%;
  border: 1px solid #232323;
  padding: 6px 10px 6px 30px;
  background-color: #ffffff;
}
@media (min-width: 650px) {
  section.contact-form .wrapper .form .form-control input {
    width: 95%;
  }
}
section.contact-form .wrapper .form .form-control input:focus {
  outline: none;
  border: 1px solid #007576;
}
section.contact-form .wrapper .form .form-control textarea {
  width: 100%;
  border: 1px solid #232323;
  padding: 6px 10px 6px 30px;
  height: 130px;
  background-color: #ffffff;
}
@media (min-width: 650px) {
  section.contact-form .wrapper .form .form-control textarea {
    width: 96%;
  }
}
section.contact-form .wrapper .form .form-control textarea:focus {
  outline: none;
  border: 1px solid #007576;
}
section.contact-form .wrapper .form .form-control a {
  text-decoration: underline;
}
section.contact-form .wrapper .form .form-control button {
  background-color: #007576;
  color: #ffffff;
  border: 1px solid #007576;
}
.no-touch section.contact-form .wrapper .form .form-control button:hover {
  background-color: #ffffff;
  color: #007576;
}
.no-touch section.contact-form .wrapper .form .form-control button:hover i {
  color: #007576;
}
section.contact-form .wrapper .form .form-control button i {
  color: #ffffff;
  transition: color 0.3s;
  position: initial;
}
section.contact-form .wrapper .form .form-control i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #007576;
}

section.basic-text {
  padding: 45px 10px;
  background-color: #ffffff;
}
section.basic-text .text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 26px;
}
section.basic-text ul, section.basic-text ol {
  list-style-type: none;
  /* no default bullets */
  margin-left: 20px;
  padding: 20px 0;
}
section.basic-text li:before {
  /* the custom styled bullets */
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #007576;
  border-radius: 50%;
  margin-bottom: 2px;
}

section.error-message {
  height: 100%;
  height: 1200px;
  background-color: #007576;
}
section.error-message .button {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.no-touch section.error-message .button:hover {
  background-color: #04c2c4;
  border: 1px solid #04c2c4;
}

/*# sourceMappingURL=screen.css.map */
