/* raleway-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/raleway-v34-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/raleway-v34-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "bebas_neueregular";
  src: url("/fonts/bebasneue-regular-webfont.woff2") format("woff2"), url("/fonts/bebasneue-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #e5e5e5;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 600;
  z-index: 1;
}

img {
  height: auto;
  width: auto;
  max-width: 100%;
  border: 0;
}

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

input[type=text], input[type=email], input[type=tel], input[type=submit], textarea {
  -webkit-appearance: none;
}

iframe {
  max-width: 100%;
  border: 0;
}

.yellow {
  color: #fab70e;
}

#topbanner {
  line-height: 20px;
  padding: 7px 20px;
  background: #fab70e;
  color: #fff;
  font-size: 15px;
}
#topbanner a {
  color: #fff;
  text-decoration: none;
}
#topbanner a:hover {
  text-decoration: underline;
}

#wrapper {
  max-width: 1600px;
  margin: 40px auto;
}

header {
  background: #fff;
  z-index: 1000;
}

header .wrapper {
  display: flex;
  flex-wrap: nowrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 35px 30px 35px 30px;
  position: relative;
}

#logo {
  width: 60px;
  height: 60px;
  background-image: url("/epsilon-formation.svg");
  background-repeat: no-repeat;
  background-position: -15px -40px;
  background-size: 190px 140px;
  text-indent: -10000px;
  overflow: hidden;
}
#logo > a {
  display: block;
  width: 100%;
  height: 100%;
}

#logo img {
  width: 320px;
  height: 130px;
}

#main-menu {
  width: calc(100% - 140px);
  text-align: right;
}
#main-menu button {
  width: 50px;
  height: 50px;
  border: 5px solid #e5e5e5;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}
#main-menu button i {
  display: block;
  width: 30px;
  height: 5px;
  margin: 5px auto;
  background: #009de2;
  border-radius: 5px;
}
#main-menu button i:nth-child(2) {
  margin: 0 auto;
  background: #fab70e;
}
#main-menu > ul.open {
  display: block;
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  padding: 10px 0 0 0;
  z-index: 2000;
}
#main-menu > ul {
  display: none;
  width: 100%;
  list-style-type: none;
  background: #fff;
  z-index: 100;
}
#main-menu > ul > li {
  position: relative;
  display: block;
  line-height: 32px;
  text-transform: uppercase;
  color: #666;
  text-align: center;
}
#main-menu > ul > li > a {
  display: inline-block;
  line-height: 38px;
  padding: 4px 0 0 0;
  text-transform: uppercase;
  color: #666;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 4px solid transparent;
}
#main-menu > ul > li > a:hover {
  border-bottom: 4px solid #fab70e;
}
#main-menu > ul > li.dropdown > a:after {
  float: right;
  display: block;
  margin-left: 8px;
  content: "";
  width: 10px;
  height: 38px;
  background: url("/assets/img/dropdown.png");
  background-size: 30px 40px;
  background-position: center center;
}
#main-menu > ul > li.dropdown > a:hover {
  border-bottom: 4px solid transparent;
}
#main-menu > ul > li > ul {
  position: relative;
  display: none;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  list-style-type: none;
}
#main-menu > ul > li > ul > li {
  text-align: left;
  background: #fab70e;
}
#main-menu > ul > li > ul > li > a {
  display: block;
  line-height: 40px;
  margin: 0 15px;
  padding: 6px 0 4px 0;
  text-transform: uppercase;
  color: #666;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  text-decoration: none;
  white-space: nowrap;
}
#main-menu > ul > li > ul > li:last-child > a {
  border-bottom: 2px solid transparent;
}
#main-menu > ul > li:hover > ul {
  display: block;
}
#main-menu > ul > li:hover > ul > li {
  display: block;
}
#main-menu > ul > li:hover > ul > li:last-child {
  border: 0;
}

#header-right {
  margin-left: 30px;
}

#delta {
  display: none;
}

#account-link a {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  border: 5px solid #e5e5e5;
  border-radius: 8px;
  color: #666;
  text-transform: uppercase;
  text-decoration: none;
  background-image: url("/assets/img/account.svg");
  background-repeat: no-repeat;
  text-indent: -10000px;
  overflow: hidden;
}
#account-link a span {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #92e475;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}

main {
  position: relative;
  margin: 0 auto;
}
main #main-content {
  padding: 60px 15px;
  background: #fff;
}
main .wrapper {
  background: #fff;
}
main .wrapper:after {
  clear: both;
  content: " ";
  display: table;
}
main h1 {
  font-size: 18px;
}

#cms main #main-content {
  padding: 60px 30px;
}
#cms main #main-content .wrapper {
  max-width: 1200px;
}
#cms main h2 {
  margin: 20px 0 20px 0;
  color: #009de2;
  text-transform: uppercase;
}
#cms main p {
  margin: 10px 0;
  line-height: 20px;
  color: #666;
}
#cms main ul {
  list-style-position: inside;
  color: #666;
}
#cms main a {
  color: #fab70e;
}

.top-shadow {
  position: relative;
  overflow: hidden;
}
.top-shadow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.3) inset;
}

.chart {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  padding: 20px 0;
  background: #fff;
  text-align: center;
}
.chart > div {
  width: 100%;
}
.chart canvas {
  max-width: 360px;
  margin: 0 auto;
}
.chart h3 {
  margin-bottom: 30px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 36px;
  text-align: center;
  color: #666;
}
.chart h4 {
  margin-bottom: 20px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
  text-align: center;
  color: #666;
}
.chart button {
  display: inline-block;
  line-height: 28px;
  margin: 20px auto 20px auto;
  padding: 2px 18px;
  background-color: #fab70e;
  color: #fff;
  border-radius: 4px;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  #background-video {
    background-image: url("/assets/img/background-video.jpg");
    background-color: #666;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: 1920px 1080px;
  }
  #background-video video {
    display: none;
  }
}
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
}
#background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#background-video h3 {
  color: #fff;
  text-align: center;
}
#background-video #background-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

#home-header {
  display: none;
}

#home-content .left {
  background: #009de2;
}
#home-content .right {
  padding: 30px;
  background: #fab70e;
  color: #fff;
}
#home-content .right > p {
  line-height: 22px;
  margin-bottom: 10px;
}

#next-events .wrapper {
  padding: 40px 0;
  background: #fff;
}

#latest-news {
  min-height: 350px;
  padding: 40px 0;
  background-color: #f5f5f5;
  background-image: url("/assets/img/background-news.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
#latest-news h3 {
  font-family: "bebas_neueregular", sans-serif;
  font-size: 30px;
  color: #666;
  text-align: center;
}
#latest-news .main-link {
  margin: 20px 0;
  text-align: center;
}
#latest-news .main-link a {
  display: inline-block;
  line-height: 36px;
  padding: 0 20px;
  color: #fab70e;
  border: 4px solid #fab70e;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
}

.transparent-header {
  display: table;
  width: 100%;
  height: 200px;
}
.transparent-header > h1, .transparent-header h3 {
  display: table-cell;
  vertical-align: middle;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 36px;
  color: #fff;
  text-align: center;
  text-shadow: #000 0 3px 9px;
}

#module-certification #certification-list {
  padding: 40px 0 20px 0;
  background: #fff;
}
#module-certification ul {
  width: 95%;
  list-style-type: none;
  text-align: center;
}
#module-certification ul > li {
  display: inline-block;
}

#category-list {
  margin: 0 auto;
  padding: 40px 0 60px 0;
}
#category-list > div {
  position: relative;
}
#category-list > div img {
  display: block;
}
#category-list > div > div.name {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: table;
  text-align: center;
}
#category-list > div > div.name > h3 {
  display: table;
  width: 100%;
  height: 100%;
}
#category-list > div > div.name > h3 > a {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-transform: uppercase;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 26px;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 1s ease;
}
#category-list > div > div.name > h3 > a:hover {
  background-color: rgba(86, 199, 247, 0.8);
}

span.flag {
  position: absolute;
  top: 14px;
  right: 14px;
}

span.esp {
  width: 114px;
  height: 90px;
  background-image: url("/assets/img/flags/esp.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 680px) and (max-width: 959px) {
  #product-img span.flag {
    top: 30px;
    right: 30px;
  }
  #product-img span.esp {
    width: 215px;
    height: 170px;
  }
}
@media screen and (min-width: 1280px) {
  #product-img span.flag {
    top: 30px;
    right: 30px;
  }
  #product-img span.esp {
    width: 215px;
    height: 170px;
  }
}
#product-list {
  margin: 0 auto;
  padding: 40px 0 60px 0;
}
#product-list > div {
  width: 280px;
  height: 360px;
  margin: 0 auto 30px auto;
  text-align: left;
  perspective: 600px;
}
#product-list > div > div {
  position: relative;
  transition: transform 1s;
  transition-delay: 0.5s;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
#product-list > div > div:hover {
  transform: rotateY(180deg);
}
#product-list > div > div > div {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
#product-list > div > div .front {
  background: #f2f2f2;
}
#product-list > div > div .back {
  background: #fab70e;
  transform: rotateY(180deg);
  display: table;
}
#product-list > div > div .back a {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}
#product-list > div > div .event {
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-size: 0;
}
#product-list > div > div .event .date_begin {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 100%;
  padding: 0 6px;
  background: #009de2;
  font-size: 15px;
}
#product-list > div > div .event .date_begin:after {
  content: " ";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: -10px;
  border-top: 20px solid #fab70e;
  border-bottom: 20px solid #fab70e;
  border-left: 20px solid #009de2;
}
#product-list > div > div .event .date_end {
  display: inline-block;
  width: 50%;
  height: 100%;
  padding: 0 6px;
  background: #fab70e;
  font-size: 15px;
}
#product-list > div > div .product-img {
  position: relative;
}
#product-list > div > div .product-img img {
  display: block;
}
#product-list > div > div .level {
  text-transform: uppercase;
  color: #666;
}
#product-list > div > div .product-info {
  padding: 14px;
}
#product-list > div > div h3 {
  height: 72px;
  line-height: 20px;
}
#product-list > div > div h3 a {
  color: #009de2;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}
#product-list > div > div .price {
  margin-top: 10px;
  height: 34px;
  line-height: 34px;
}
#product-list > div > div .price span {
  display: inline-block;
  padding: 0 10px;
  background-color: #fab70e;
  color: #fff;
}
#product-list:after {
  clear: both;
  content: " ";
  display: table;
}

#product-img {
  position: relative;
}
#product-img img {
  display: block;
}

#product-info {
  padding: 60px 20px;
  background: #fff;
  color: #666;
}
#product-info h1 {
  line-height: 40px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 40px;
  color: #fab70e;
}
#product-info h2 {
  line-height: 40px;
  margin-bottom: 20px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 40px;
  color: #009de2;
}
#product-info #product-category {
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
#product-info #product-category > a {
  text-decoration: none;
  color: #fab70e;
}
#product-info #product-level {
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
#product-info ul {
  list-style-position: inside;
}
#product-info select {
  height: 32px;
  margin-top: 8px;
  padding: 0 8px;
}
#product-info select option {
  line-height: 28px;
  padding: 0 8px;
}

#product-description {
  margin: 15px 0;
}
#product-description p {
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

#product-gallery img {
  display: block;
}

#product main button.dropdown {
  width: 100%;
  line-height: 20px;
  margin-bottom: 15px;
  padding: 11px 13px;
  background: transparent;
  border: 4px solid #fff;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
#product main button.dropdown:after {
  display: block;
  content: "";
  float: right;
  width: 20px;
  height: 20px;
  background: url("/assets/img/dropdown-white.svg");
  background-repeat: no-repeat;
  background-size: 20px 11px;
  background-position: center center;
  transition: all 1s ease;
}
#product main button.dropdown.open:after {
  transform: rotateX(180deg);
}

#product-detail > div {
  padding: 30px;
  line-height: 22px;
}
#product-detail h3 {
  margin-bottom: 10px;
  color: #fff;
}
#product-detail p {
  margin: 10px 0;
}
#product-detail ul {
  margin: 0 0 15px 0;
  list-style-position: inside;
  color: #fff;
}

.product-detail-block {
  display: none;
  padding: 0 17px;
}

#product-detail-left {
  background: #009de2;
  color: #fff;
}

#product-detail-right {
  background: #fab70e;
  color: #666;
}
#product-detail-right ul {
  color: #666;
}
#product-detail-right ul > li > ul {
  margin-left: 10px;
}

.download {
  margin: 30px 0;
}
.download a {
  display: inline-block;
  line-height: 42px;
  padding: 0 18px;
  background: #e5e5e5;
  color: #666;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.registration {
  margin: 30px 0 0 0;
}
.registration > button {
  display: inline-block;
  line-height: 52px;
  padding: 0 20px;
  background: #fab70e;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

select.product_event {
  height: 32px;
  padding: 0 8px;
}
select.product_event option {
  line-height: 28px;
  padding: 0 8px;
}

#team-list {
  max-width: 1360px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}
#team-list > div {
  max-width: 290px;
  margin: 0 auto 30px auto;
}
#team-list > div .picture a {
  display: block;
}
#team-list > div .picture a img {
  display: block;
}
#team-list > div > h3 {
  background-color: #009de2;
}
#team-list > div > h3 > a {
  display: block;
  padding: 26px 0;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 30px;
}
#team-list > div > h3 > a .lastname {
  display: block;
  color: #fab70e;
}
#team-list > div > h3 > a .firstname {
  display: block;
  color: #fff;
}

#news-list {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 30px 30px 30px;
  text-align: center;
}
#news-list > div {
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto 30px auto;
  padding: 0 15px 20px 15px;
  background: #fff;
  border: 12px solid #009de2;
}
#news-list > div:hover {
  border: 12px solid #fab70e;
}
#news-list > div > p.date {
  padding: 20px 0;
  text-align: center;
  color: #666;
  border-bottom: 2px solid #e5e5e5;
}
#news-list > div > p.more {
  margin-top: 15px;
  text-align: center;
}
#news-list > div > p.more a {
  display: inline-block;
  line-height: 36px;
  padding: 0 14px;
  color: #fab70e;
  border: 2px solid #fab70e;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
}
#news-list > div > h3 {
  margin-top: 20px;
  height: 96px;
  text-align: center;
  overflow: hidden;
}
#news-list > div > h3 > a {
  display: block;
  line-height: 24px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
  color: #666;
  text-transform: uppercase;
  text-decoration: none;
}

#team-picture img {
  display: block;
  margin: 0 auto;
}

#team-header {
  padding: 50px 30px 20px 30px;
  background: #009de2;
  color: #fff;
}
#team-header h1 {
  font-family: "bebas_neueregular", sans-serif;
  font-size: 42px;
}
#team-header h1 .lastname {
  display: block;
  color: #fab70e;
}
#team-header h1 .firstname {
  display: block;
  color: #fff;
}

#team-content {
  padding: 30px;
  background: #fab70e;
  color: #666;
  font-size: 17px;
}
#team-content h2 {
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
}
#team-content p {
  margin: 10px 0;
}
#team-content #team-phone {
  margin: 10px 0;
}
#team-content #team-phone a {
  color: #666;
}
#team-content #team-email {
  margin: 10px 0;
}
#team-content #team-email a {
  color: #666;
}

#news-header {
  padding: 40px 20px;
  background: #009de2;
  color: #fff;
}
#news-header h1 {
  line-height: 34px;
  margin-top: 10px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 34px;
  color: #fab70e;
  text-transform: uppercase;
}

#news-content {
  padding: 40px 20px;
  background: #fab70e;
  color: #fff;
  font-size: 17px;
}
#news-content h2, #news-content h3 {
  margin: 15px 0 10px 0;
}
#news-content p {
  margin-bottom: 10px;
}
#news-content a {
  color: #009de2;
}
#news-content table {
  border-collapse: collapse;
}
#news-content table th, #news-content table td {
  padding: 3px 5px;
  border: 1px solid #fff;
}

#news-pagination {
  padding: 40px 0;
}
#news-pagination a {
  display: inline-block;
  line-height: 36px;
  padding: 0 12px;
  color: #fab70e;
  border: 4px solid #fab70e;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
}
#news-pagination p.center {
  text-align: center;
}

#contact-map {
  width: 100%;
  height: 300px;
  background: #e5e5e5;
}

#product-form .wrapper {
  background: #fff;
}
#product-form form {
  max-width: 870px;
  margin: 0 auto;
  padding: 60px 15px;
}
#product-form form input[type=text], #product-form form input[type=email], #product-form form input[type=tel], #product-form form textarea {
  border-bottom: 2px solid #e5e5e5;
}
#product-form form input.quantity {
  width: 45px;
  border: 1px solid #e5e5e5;
  padding: 4px 0 4px 6px;
}
#product-form form button {
  background: #fab70e;
  color: #fff;
}
#product-form form .form-info a {
  color: #666;
}

#contact-form {
  padding: 60px 30px;
  background: #fab70e;
}
#contact-form h1 {
  line-height: 40px;
  margin-bottom: 15px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
}
#contact-form form input, #contact-form form textarea {
  border-bottom: 2px solid #fff;
}
#contact-form form button {
  background: #fff;
  color: #fab70e;
}

form.default > div:last-child {
  margin-top: 45px;
}
form.default p {
  width: 100%;
  margin-bottom: 15px;
  text-align: left;
}
form.default label {
  display: inline-block;
  padding: 0 10px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
}
form.default select {
  display: inline-block;
}
form.default input[type=text], form.default input[type=email], form.default input[type=tel], form.default input[type=password] {
  width: 100%;
  line-height: 40px;
  padding: 0 10px;
  font-size: 17px;
  background: transparent;
  color: #666;
  border: 0;
}
form.default input[type=text]::-webkit-input-placeholder, form.default input[type=email]::-webkit-input-placeholder, form.default input[type=tel]::-webkit-input-placeholder, form.default input[type=password]::-webkit-input-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default input[type=text]:-moz-placeholder, form.default input[type=email]:-moz-placeholder, form.default input[type=tel]:-moz-placeholder, form.default input[type=password]:-moz-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default input[type=text]::-moz-placeholder, form.default input[type=email]::-moz-placeholder, form.default input[type=tel]::-moz-placeholder, form.default input[type=password]::-moz-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default input[type=text]:-ms-input-placeholder, form.default input[type=email]:-ms-input-placeholder, form.default input[type=tel]:-ms-input-placeholder, form.default input[type=password]:-ms-input-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default input[type=checkbox] {
  margin-right: 4px;
}
form.default textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  font-size: 17px;
  resize: none;
  color: #666;
}
form.default textarea::-webkit-input-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default textarea:-moz-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default textarea::-moz-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default textarea:-ms-input-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #666;
  opacity: 1;
}
form.default button {
  line-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
form.default .form-info {
  font-size: 14px;
}
form.default .form-info a {
  color: #fff;
  font-size: 14px;
}
form.default .submit {
  text-align: right;
}

form input.mail {
  display: none !important;
}

#contact-banner {
  display: table;
  width: 100%;
  height: 240px;
  background: #009de2;
}
#contact-banner > div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  font-family: "bebas_neueregular", sans-serif;
}
#contact-banner > div > h2 {
  line-height: 40px;
  color: #fab70e;
  font-size: 40px;
}
#contact-banner > div > h3 {
  line-height: 40px;
  font-size: 40px;
  color: #fff;
}

#contact-blocks {
  max-width: 1080px;
  margin: 20px auto;
}
#contact-blocks > div {
  padding: 40px;
  text-align: center;
}
#contact-blocks > div > h4 {
  margin: 20px 0 10px 0;
  line-height: 30px;
  color: #009de2;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}
#contact-blocks > div > p {
  line-height: 24px;
  color: #666;
}
#contact-blocks > div > p > a {
  color: #666;
  text-decoration: none;
}
#contact-blocks > div > p img {
  width: 90px;
  height: auto;
  border: 4px solid #e5e5e5;
  border-radius: 100%;
}

#partners {
  max-width: 1600px;
  margin: 20px auto;
  text-align: center;
}
#partners > div {
  display: inline-block;
  margin: 0 auto;
  padding: 15px;
  width: 290px;
}
#partners > div a {
  display: block;
}
#partners > div img {
  display: block;
}

#forgot-password h1 {
  margin-bottom: 30px;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 22px;
  color: #fff;
}
#forgot-password form {
  max-width: 420px;
  margin: 20px auto;
  padding: 20px;
  background: #fab70e;
}
#forgot-password form input {
  border-bottom: 2px solid #fff;
}
#forgot-password form button {
  background: #fff;
  color: #fab70e;
}

footer {
  background: #e5e5e5;
  text-align: center;
}
footer #footer-top {
  height: 120px;
  padding-top: 40px;
  background-color: #fff;
  background-image: url("/assets/img/donkey.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 60px 60px;
}

footer .wrapper {
  padding: 50px 20px 20px 20px;
  color: #666;
  font-weight: 700;
}
footer .wrapper > div {
  margin-bottom: 40px;
  padding: 0 10px;
  text-align: center;
}
footer .wrapper > div h4 {
  line-height: 24px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
}
footer .wrapper > div p {
  line-height: 24px;
  font-size: 15px;
}

footer .logo a {
  display: block;
  max-width: 230px;
  margin: 0 auto;
}
footer .logo a img {
  display: block;
}

/* newsletter */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-content {
  background: #fab70e;
  margin: 15% auto;
  padding: 40px 20px;
  width: 80%;
  max-width: 300px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: 3px solid #fab70e;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
}

#newsletter-response {
  display: none;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 26px;
}

.newsletter_error {
  color: #fff;
}

.newsletter_success {
  color: #fff;
}

form#newsletter-confirmation {
  max-width: 420px;
  margin: 40px auto;
  padding: 20px;
  background: #fab70e;
}
form#newsletter-confirmation input {
  border-bottom: 2px solid #e5e5e5;
}
form#newsletter-confirmation button {
  background: #fff;
  color: #fab70e;
}

footer #newsletter form {
  max-width: 400px;
  margin: 0 auto;
}
footer #newsletter form fieldset {
  border: 0;
  font-size: 0;
}
footer #newsletter form fieldset legend {
  width: 100%;
  line-height: 24px;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 24px;
}
footer #newsletter form fieldset input[type=email] {
  display: inline-block;
  width: calc(100% - 38px);
  line-height: 36px;
  padding: 0 12px;
  border: 4px solid #fab70e;
  border-right: 0;
  border-radius: 7px 0 0 7px;
  font-size: 15px;
}
footer #newsletter form fieldset input[type=email]::-webkit-input-placeholder {
  font-family: "Raleway", sans-serif;
  color: #666;
  opacity: 1;
}
footer #newsletter form fieldset input[type=email]:-moz-placeholder {
  font-family: "Raleway", sans-serif;
  color: #666;
  opacity: 1;
}
footer #newsletter form fieldset input[type=email]::-moz-placeholder {
  font-family: "Raleway", sans-serif;
  color: #666;
  opacity: 1;
}
footer #newsletter form fieldset input[type=email]:-ms-input-placeholder {
  font-family: "Raleway", sans-serif;
  color: #666;
  opacity: 1;
}
footer #newsletter form fieldset button {
  display: inline-block;
  width: 38px;
  line-height: 36px;
  background: #fab70e;
  border: 4px solid #fab70e;
  border-radius: 0 7px 7px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

footer .footer-links ul {
  list-style-type: none;
}
footer .footer-links ul li {
  margin-bottom: 6px;
}
footer .footer-links ul li a {
  display: block;
  line-height: 20px;
  margin-bottom: 10px;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "bebas_neueregular", sans-serif;
  font-size: 20px;
}
footer .footer-links ul li a:hover {
  color: #fab70e;
}

footer .footer-social ul {
  margin-top: 7px;
  list-style-type: none;
}
footer .footer-social ul > li {
  display: inline-block;
}
footer .footer-social ul > li a {
  display: block;
  width: 44px;
  margin: 0 auto;
}
footer .footer-social ul > li a img {
  display: block;
}

footer #copy {
  text-align: center;
  padding-bottom: 30px;
}
footer #copy ul {
  list-style-type: none;
}
footer #copy ul li {
  display: inline-block;
}
footer #copy ul li a {
  display: block;
  width: 24px;
}
footer #copy ul li a img {
  display: block;
}

#modal_warning {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}
#modal_warning > p {
  width: 90%;
  margin: 20px auto;
  padding: 10px;
  background: #fff600;
  color: #000;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 420px) {
  #logo {
    width: 190px;
    background-position: -15px -40px;
    background-size: 190px 140px;
  }
  #main-menu {
    width: calc(100% - 270px);
  }
}
@media screen and (min-width: 480px) {
  #product-info {
    padding: 60px 30px;
  }
}
@media screen and (min-width: 680px) {
  #main-menu button {
    display: none;
  }
  #main-menu > ul {
    display: flex;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    vertical-align: middle;
    position: relative;
    min-width: 320px;
    max-width: 420px;
    margin: 0 auto;
  }
  #main-menu > ul > li {
    vertical-align: middle;
  }
  #main-menu > ul > li > ul {
    position: absolute;
    top: 38px;
    left: -5px;
    width: auto;
    padding: 15px 0 0 0;
  }
  #main-menu > ul > li {
    display: inline-block;
  }
  #product-list {
    width: 640px;
  }
  #product-list > div {
    float: left;
    margin: 0 20px 30px 20px;
  }
  #category-list {
    width: 640px;
  }
  #category-list > div {
    float: left;
    width: calc(50% - 40px);
    margin: 0 20px 30px 20px;
  }
  #category-list:after {
    clear: both;
    content: " ";
    display: table;
  }
  #team-list {
    display: flex;
    flex-wrap: wrap;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  #team-list > div {
    margin: 0 15px 30px 15px;
  }
  #news-list > div {
    display: inline-block;
    margin: 0 15px 30px 15px;
  }
  #news-list:after {
    clear: both;
    content: " ";
    display: table;
  }
  footer .wrapper {
    display: flex;
    flex-wrap: wrap;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  footer .wrapper > div {
    width: 50%;
  }
}
@media screen and (min-width: 640px) {
  #product-info {
    padding: 60px;
  }
  #home-content .right {
    padding: 60px;
  }
  #contact-form {
    padding: 60px;
  }
}
@media screen and (min-width: 720px) {
  #main-menu {
    width: calc(100% - 380px);
  }
  form.default > div {
    display: flex;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
  form.default > div.col-2 > p {
    width: calc(50% - 10px);
  }
  #contact-blocks {
    display: flex;
  }
  #contact-blocks > div {
    width: 360px;
  }
}
@media screen and (min-width: 800px) {
  .chart > div {
    width: auto;
    padding: 50px;
  }
  #chart-child section > div {
    padding: 20px;
  }
  .chart {
    width: 100%;
  }
  .chart.col2 > div {
    width: 50%;
  }
  .chart.col3 > div {
    width: 33.33%;
  }
}
@media screen and (min-width: 900px) {
  #account-link {
    min-width: 150px;
  }
  #account-link a {
    width: auto;
    line-height: 40px;
    padding: 0 10px;
    background-image: none;
    font-family: "bebas_neueregular", sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-indent: 0;
  }
  #module-certification ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
  #team-picture {
    float: left;
    width: 290px;
  }
  #team-header {
    float: right;
    width: calc(100% - 290px);
  }
  #team-content {
    float: right;
    width: calc(100% - 290px);
  }
  #latest-news {
    background-size: cover;
    background-attachment: fixed;
  }
  #news-pagination {
    clear: both;
    display: table;
    width: 100%;
    padding: 40px;
  }
  #news-pagination p {
    display: table-cell;
    width: 33.33%;
  }
  #news-pagination p.left {
    text-align: left;
  }
  #news-pagination p.right {
    text-align: right;
  }
}
@media screen and (min-width: 960px) {
  #header-right {
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  #delta {
    display: block;
    margin-left: 5px;
  }
  #delta img {
    height: 60px;
    width: auto;
  }
  #product-header {
    display: flex;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
  }
  #product-img {
    width: 50%;
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
    z-index: -1;
  }
  #product-info {
    width: 50%;
  }
  #product-detail {
    display: flex;
  }
  #product-detail > div {
    width: 50%;
  }
  #product-detail #product-detail-left {
    order: -1;
  }
  .product-detail-block {
    display: block;
  }
  #cms main #main-content .wrapper {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1280px) {
  #home-header {
    display: table;
    width: 100%;
    height: 640px;
  }
  #home-header > div {
    display: table-cell;
    margin: 0 auto;
    vertical-align: middle;
    text-align: center;
  }
  #home-header > div > h3 {
    position: relative;
    max-width: 260px;
    line-height: 45px;
    margin: 0 auto 25px auto;
    font-family: "bebas_neueregular", sans-serif;
    font-size: 45px;
    color: #fff;
    text-transform: upercase;
    text-shadow: #000 0 3px 9px;
  }
  #home-header > div > h3:before {
    content: "";
    position: absolute;
    height: 4px;
    background: #009de2;
    top: 45px;
    left: -290px;
    width: 240px;
  }
  #home-header > div > h3:after {
    content: "";
    position: absolute;
    height: 4px;
    background: #fab70e;
    top: 45px;
    right: -290px;
    width: 240px;
  }
  #home-header > div > a {
    display: inline-block;
    line-height: 39px;
    padding: 0 30px;
    background: #fab70e;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
  }
  #home-content {
    display: flex;
  }
  #home-content > div {
    width: 50%;
  }
  #category-list {
    width: 1000px;
  }
  #product-list {
    width: 1000px;
  }
  #product-list > div {
    height: 360px;
  }
  #news-header {
    float: left;
    width: 20%;
    text-align: right;
  }
  #news-content {
    float: right;
    width: 80%;
    min-height: 300px;
  }
  #news-picture {
    float: right;
    width: 80%;
    margin: 30px 0;
  }
  #contact main .wrapper {
    display: flex;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
  }
  #contact-map {
    width: 50%;
    height: auto;
    order: 1;
  }
  #contact-form {
    width: 50%;
    order: 2;
  }
  footer .wrapper > div {
    width: 33.33%;
  }
}
@media screen and (min-width: 1320px) {
  footer .wrapper > div {
    width: 25%;
  }
}
@media screen and (min-width: 1600px) {
  #home-content .right {
    padding: 100px;
  }
  #contact-form {
    padding: 100px;
  }
}
@media screen and (min-width: 1460px) {
  #product-list {
    width: 1400px;
  }
  #product-list > div {
    width: 420px;
    height: 510px;
  }
  #product-list > div > div .event {
    height: 60px;
    line-height: 60px;
  }
  #product-list > div > div .event .date_begin:after {
    right: -15px;
    border-top: 30px solid #fab70e;
    border-bottom: 30px solid #fab70e;
    border-left: 30px solid #009de2;
  }
  #product-list > div > div h3 > a {
    line-height: 24px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1920px) {
  #product-list {
    width: 1840px;
  }
}/*# sourceMappingURL=global.css.map */