/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Abhaya+Libre:regular,600,800");
.anim {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
  .anim-1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .anim-2 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .anim-3 {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .anim-4 {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .anim-5 {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .anim-6 {
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

.delay {
  animation-delay: 1s; }
  .delay-0-5 {
    animation-delay: 0.5s; }
  .delay-1 {
    animation-delay: 1s; }
  .delay-1-5 {
    animation-delay: 1.5s; }
  .delay-2 {
    animation-delay: 2s; }
  .delay-3 {
    animation-delay: 3s; }
  .delay-4 {
    animation-delay: 4s; }
  .delay-5 {
    animation-delay: 5s; }
  .delay-6 {
    animation-delay: 6s; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    transform: translateY(-200px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
    display: none; } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

/**
 * Swiper 4.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.border {
  border: 1px solid red; }

body,
html {
  margin: 0;
  padding: 0;
  letter-spacing: 0.2px;
  background-color: #1a2a4b; }

body {
  position: relative;
  height: 100%;
  max-width: 100vw; }

#request_error_modal {
  top: 40%; }
  #request_error_modal .btn-secondary {
    font-size: 15px;
    background-color: #1a2a4b; }

.wrapper {
  position: relative;
  overflow: hidden; }

input {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0 !important; }

a {
  text-decoration: none;
  color: #e4022d; }
  a:hover, a:active, a:focus, a:visited {
    text-decoration: none;
    color: #e4022d; }

.block {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1640px; }
  @media (max-width: 700px) {
    .block {
      width: calc(100% - 40px);
      padding: 0 20px; } }
  .block.abso {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

.title-head-block {
  font-size: 26px;
  color: #e4022d;
  display: block;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 10px 0 10px 0;
  margin: 0;
  font-weight: 400; }
  @media (max-width: 700px) {
    .title-head-block {
      font-size: 20px; } }
  .title-head-block.t-w {
    color: white; }

@media (max-width: 700px) {
  .fix-height-mobile {
    min-height: 717px !important; } }

.modal-email .modal-dialog {
  top: 20%; }
  .modal-email .modal-dialog .modal-content {
    background-color: transparent;
    border: none; }
    .modal-email .modal-dialog .modal-content .backer-email-form .backer-email-input {
      padding: 5px 10px;
      width: 100%;
      border-radius: 0; }
      .modal-email .modal-dialog .modal-content .backer-email-form .backer-email-input::-webkit-input-placeholder {
        color: #1a2a4b; }
      .modal-email .modal-dialog .modal-content .backer-email-form .backer-email-input:-ms-input-placeholder {
        color: #1a2a4b; }
      .modal-email .modal-dialog .modal-content .backer-email-form .backer-email-input::-ms-input-placeholder {
        color: #1a2a4b; }
      .modal-email .modal-dialog .modal-content .backer-email-form .backer-email-input::placeholder {
        color: #1a2a4b; }
    .modal-email .modal-dialog .modal-content .backer-email-submit {
      background-color: #e4022d;
      color: #fff;
      border: 0;
      padding: 10px;
      font-family: "Montserrat Regular";
      font-weight: 500;
      font-size: 15px;
      margin-left: auto;
      margin-right: auto;
      display: block;
      margin-top: 20px; }

.shopify-buy__layout-vertical {
  text-align: unset !important; }

.wot {
  height: 100vh; }

#goToWotFR,
#goToWotEN {
  width: 40%;
  font-size: 14px; }

.modal-press {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .modal-press .press-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 700px) {
      .modal-press .press-div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    .modal-press .press-div button {
      margin: 10px;
      width: 185px;
      font-size: 15px; }

.div-footer div a {
  color: #fff; }

.cta-testimonials a {
  color: #fff; }

html, body {
  font-family: 'Montserrat', 'Helvetica', sans-serif;
  font-size: 12px; }

.font-play, .title-head-block, .press-kit-section .block .title-press-kit-media, .press-kit-section .block .write-us span.l_1, main.page.acheter .block_buy_product .block .col.infos .content .price, main.page.acheter .spec-aerator .block_2_details .block .col .info .titre, .home_block_two .block .con .title-head-block {
  font-family: 'Abhaya Libre', 'Helvetica', sans-serif; }

.abhaya {
  font-family: 'Abhaya Libre', 'Helvetica', sans-serif; }

.menu-top-bar {
  position: fixed;
  z-index: 2;
  height: 70px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 2%; }
  @media (max-width: 1150px) {
    .menu-top-bar {
      display: none; } }
  .menu-top-bar.about {
    background-color: #1a2a4b; }
    .menu-top-bar.about div ul li a {
      color: #fff; }
    .menu-top-bar.about .pro-space a {
      color: #fff; }
  .menu-top-bar.home div ul li a {
    color: #1a2a4b; }
  .menu-top-bar .logo-menu {
    margin-left: 20%;
    width: 50%; }
  .menu-top-bar .custom-menu-class {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .menu-top-bar .custom-menu-class ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      list-style: none;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0;
      padding: 0; }
      .menu-top-bar .custom-menu-class ul .current_page_item {
        border-bottom: 2px solid #e4022d; }
      .menu-top-bar .custom-menu-class ul li {
        padding-bottom: 3px;
        margin-left: 35px; }
        @media (min-width: 1150px) and (max-width: 1300px) {
          .menu-top-bar .custom-menu-class ul li {
            margin-left: 20px;
            text-align: center; } }
        .menu-top-bar .custom-menu-class ul li a {
          font-size: 14px;
          color: #1a2a4b;
          font-weight: 500; }
          .menu-top-bar .custom-menu-class ul li a img {
            max-width: 35px; }
      .menu-top-bar .custom-menu-class ul li:last-child a {
        padding-left: 10px;
        font-style: italic;
        font-weight: 400; }
  .menu-top-bar .pro-space {
    border-radius: 3px;
    background-color: transparent;
    border: 2px solid #e4022d;
    padding: 10px 10px 10px 10px;
    font-weight: 400;
    font-size: 14px;
    min-width: 110px;
    width: 250px;
    text-align: center; }
    .menu-top-bar .pro-space:hover {
      cursor: pointer; }
      .menu-top-bar .pro-space:hover a {
        font-weight: 800; }
    .menu-top-bar .pro-space a {
      color: #1a2a4b;
      font-weight: 500; }

/* MENU MOBILE */
.menu-mobile {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: -18px; }

.main-navigation {
  padding-bottom: 20px;
  position: fixed;
  width: 100%; }
  .main-navigation .container-menu-mob {
    background-color: #1a2a4b; }
    .main-navigation .container-menu-mob ul {
      width: 100%;
      padding: 0; }
      .main-navigation .container-menu-mob ul li {
        margin-top: 24px;
        margin-top: 1.714285714rem;
        font-size: 12px;
        line-height: 1.5;
        list-style-type: none;
        text-align: center; }
        .main-navigation .container-menu-mob ul li a {
          font-weight: 600;
          color: #fff; }
          .main-navigation .container-menu-mob ul li a img {
            width: 25px; }
      .main-navigation .container-menu-mob ul li:last-child a {
        font-style: italic;
        font-weight: 400; }
  .main-navigation .pro-space-mobile {
    color: white;
    background-color: #e4022d;
    text-align: center;
    padding: 7px;
    display: none;
    font-size: 12px;
    font-size: 1.1rem; }
    .main-navigation .pro-space-mobile a {
      color: #fff; }

.main-navigation a:hover,
.main-navigation a:focus {
  color: #21759b; }

.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
  display: none; }

.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
  display: inline-block; }

.pro-space-mobile.toggled-on {
  display: block; }

input + label {
  position: fixed;
  top: 40px;
  right: 40px;
  height: 20px;
  width: 15px;
  z-index: 5;
  display: none; }
  @media (max-width: 1150px) {
    input + label {
      display: block; } }
  input + label span {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: #e4022d;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
  input + label span:first-child {
    top: 3px; }
  input + label span:last-child {
    top: 16px; }

label:hover {
  cursor: pointer; }

input:checked + label span {
  opacity: 0;
  top: 50%; }
input:checked + label span:first-child {
  opacity: 1;
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg); }
input:checked + label span:last-child {
  opacity: 1;
  -webkit-transform: rotate(-405deg);
  transform: rotate(-405deg); }

/* FOOTER */
.footer .block_newsletter {
  background: #1a2b4c;
  margin-top: 15px;
  padding: 40px 0; }
  @media (max-width: 700px) {
    .footer .block_newsletter {
      padding: 30px 0;
      position: relative; } }
  .footer .block_newsletter .sign-newsletter {
    font-size: 1.5rem;
    text-align: center;
    color: white; }
    @media (max-width: 700px) {
      .footer .block_newsletter .sign-newsletter {
        display: none; } }
    .footer .block_newsletter .sign-newsletter .txt .sur a {
      color: #e4022d;
      text-decoration: underline; }
  .footer .block_newsletter .mobile_sign_newsletter {
    display: none; }
    @media (max-width: 700px) {
      .footer .block_newsletter .mobile_sign_newsletter {
        text-align: center;
        display: block;
        font-size: 12px;
        color: white; }
        .footer .block_newsletter .mobile_sign_newsletter .txt .sur a {
          color: #e4022d;
          text-decoration: underline; } }
.footer .label-input .bold {
  font-weight: bold; }
.footer .btn {
  font-size: 20px; }
.footer .footer-line {
  background-color: #fff;
  height: 10px; }
.footer .div-footer {
  background-color: #1a2b4c;
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #fff;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }
  @media (max-width: 700px) {
    .footer .div-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
      height: 100vh; } }
  @media (max-width: 700px) and (orientation: landscape) {
    .footer .div-footer {
      height: 200vh; } }

  .footer .div-footer .footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly; }
    .footer .div-footer .footer-row .footer-socials {
      margin: 20px -5px 0 -5px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      .footer .div-footer .footer-row .footer-socials div {
        width: 30px;
        margin: 0px 5px; }
        .footer .div-footer .footer-row .footer-socials div a img {
          width: 100%; }
  .footer .div-footer .row-list a:hover {
    text-decoration: underline; }
  .footer .div-footer .row-1,
  .footer .div-footer .row-3 {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly; }
    .footer .div-footer .row-1 a,
    .footer .div-footer .row-3 a {
      max-width: 70%; }
      .footer .div-footer .row-1 a img,
      .footer .div-footer .row-3 a img {
        width: 100%; }
    .footer .div-footer .row-1 .adress,
    .footer .div-footer .row-3 .adress {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-top: 10%; }
    .footer .div-footer .row-1 .press,
    .footer .div-footer .row-3 .press {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }

.press-kit-section {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999999;
  width: 50vw;
  transform: translate(-50%, -50%);
  background: rgba(228, 2, 45, 0.7);
  display: none;
  padding: 60px 0 40px 0; }
  @media (max-width: 700px) {
    .press-kit-section {
      padding: 40px 0 20px 0;
      width: 90vw; } }
  .press-kit-section .icon-close-kit-section {
    position: absolute;
    top: 30px;
    z-index: 9999999999;
    right: 30px; }
    .press-kit-section .icon-close-kit-section:hover {
      cursor: pointer; }
    .press-kit-section .icon-close-kit-section img {
      width: 45px;
      height: 45px; }
      @media (max-width: 700px) {
        .press-kit-section .icon-close-kit-section img {
          height: 30px;
          width: 30px; } }
  .press-kit-section .block {
    text-align: center; }
    .press-kit-section .block .title-press-kit-media {
      display: block;
      text-align: center;
      padding: 45px 0;
      color: white;
      font-size: 26px; }
      @media (max-width: 700px) {
        .press-kit-section .block .title-press-kit-media {
          font-size: 20px; } }
    .press-kit-section .block .btn {
      margin: 20px 20px;
      padding-left: 30px;
      padding-right: 30px; }
      @media (max-width: 700px) {
        .press-kit-section .block .btn {
          display: block;
          margin: 20px 0 20px 50%;
          transform: translateX(-50%);
          width: 45%; } }
    .press-kit-section .block .write-us {
      padding: 70px 0 20px 0;
      text-align: center; }
      @media (max-width: 700px) {
        .press-kit-section .block .write-us {
          padding: 40px 0 10px 0; } }
      .press-kit-section .block .write-us span {
        display: block;
        color: white; }
        .press-kit-section .block .write-us span.l_1 {
          font-size: 24px; }
        .press-kit-section .block .write-us span.l_2 {
          font-size: 20px; }

.btn {
  padding: 0px 20px;
  font-size: 16px;
  font-weight: 300;
  height: 53px;
  line-height: 53px; }
  @media (max-width: 700px) {
    .btn {
      font-size: 17px; } }
  .btn.red {
    background: #e4022d;
    color: white; }
  .btn.white {
    color: #1a2b4c;
    background: white; }
  .btn.border-white {
    color: white;
    border: 1px solid white; }
  .btn.bleu {
    background: #1a2b4c;
    color: white; }
  .btn.upper {
    text-transform: uppercase; }

main.page.articles .block_4_press {
  position: relative;
  padding-top: 45px;
  background-color: #fff; }
  main.page.articles .block_4_press .title-head-block {
    font-size: 35px;
    padding-top: 50px; }
  main.page.articles .block_4_press .list-articles-press {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc((100% / 12) * 8); }
    @media (max-width: 700px) {
      main.page.articles .block_4_press .list-articles-press {
        width: calc(100% - 40px); } }
    main.page.articles .block_4_press .list-articles-press .article-press {
      width: calc((100% / 3) - 80px);
      padding: 40px 40px; }
      @media (max-width: 700px) {
        main.page.articles .block_4_press .list-articles-press .article-press {
          width: calc((100% / 2) - 40px);
          padding: 20px 20px; } }
      main.page.articles .block_4_press .list-articles-press .article-press .content .img-press {
        position: relative;
        margin: 0 auto;
        width: 100%;
        overflow: hidden; }
        main.page.articles .block_4_press .list-articles-press .article-press .content .img-press:after {
          content: "";
          display: block; }
        main.page.articles .block_4_press .list-articles-press .article-press .content .img-press img {
          width: 100%; }
      main.page.articles .block_4_press .list-articles-press .article-press .content .title-b {
        text-align: center;
        margin-top: 10px; }
        main.page.articles .block_4_press .list-articles-press .article-press .content .title-b .lang-b-t {
          font-size: 16px;
          color: #e4022d;
          text-transform: uppercase;
          font-weight: 300;
          display: block;
          padding: 4px 0; }
        main.page.articles .block_4_press .list-articles-press .article-press .content .title-b .title-b-t {
          font-size: 16px;
          color: #1a2b4c; }
          @media (max-width: 700px) {
            main.page.articles .block_4_press .list-articles-press .article-press .content .title-b .title-b-t {
              font-size: 12px; } }

/*CONTACT PAGE */
.contact-block {
  display: -webkit-box;
  margin-top: 200px;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: white;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }
  @media (max-width: 700px) {
    .contact-block {
      margin-top: 50px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .contact-block .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin: 0 5%; }
    .contact-block .address h2 {
      padding: 20px 0;
      text-align: center; }
      @media (max-width: 700px) {
        .contact-block .address h2 {
          padding: 0; } }
    .contact-block .address span {
      margin: 10px;
      text-align: center; }
      .contact-block .address span a {
        color: #fff !important; }
    .contact-block .address iframe {
      padding: 10px; }
  .contact-block .line-separator {
    width: 1px;
    margin: 2% 0;
    background: white; }
  .contact-block .form-block h1 {
    padding-top: 20px;
    text-align: center; }
  .contact-block .form-block .wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5%; }
    .contact-block .form-block .wpcf7-form .primary-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly; }
      @media (max-width: 700px) {
        .contact-block .form-block .wpcf7-form .primary-block {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; } }
      .contact-block .form-block .wpcf7-form .primary-block .left-block {
        max-width: 45%; }
        @media (max-width: 700px) {
          .contact-block .form-block .wpcf7-form .primary-block .left-block {
            max-width: 80%; } }
        .contact-block .form-block .wpcf7-form .primary-block .left-block .cf7md-text {
          margin: 2% 2% 2% 0 !important; }
        .contact-block .form-block .wpcf7-form .primary-block .left-block p span input {
          max-width: 90%; }
        .contact-block .form-block .wpcf7-form .primary-block .left-block h3 {
          font-size: 14px;
          text-decoration: underline;
          padding: 3% 0; }
      .contact-block .form-block .wpcf7-form .primary-block .right-block {
        margin-top: 5%; }
        .contact-block .form-block .wpcf7-form .primary-block .right-block .cf7md-textarea span div {
          min-height: 200px !important; }
          .contact-block .form-block .wpcf7-form .primary-block .right-block .cf7md-textarea span div .mdc-text-field__input {
            padding: 16px !important; }
    .contact-block .form-block .wpcf7-form .button-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .contact-block .form-block .wpcf7-form .button-block .wpcf7-submit {
        background-color: white;
        border: 1px solid white;
        color: #1a2a4b !important;
        margin-left: 25px; }

main.page.page-txt {
  background-color: #fff; }
  main.page.page-txt .block_content {
    padding: 50px 0 60px 0; }
    main.page.page-txt .block_content .block .title {
      font-family: 'Abhaya Libre', 'Helvetica', sans-serif;
      font-size: 35px;
      color: #e4022d;
      padding: 40px 0 50px 0;
      text-align: center; }
    main.page.page-txt .block_content .block h3 {
      font-family: 'Abhaya Libre', 'Helvetica', sans-serif;
      font-size: 30px;
      padding: 20px 0 15px 0;
      color: #e4022d;
      font-weight: 400; }
    main.page.page-txt .block_content .block p {
      font-family: 'Montserrat', 'Helvetica', sans-serif;
      font-size: 16px;
      color: #1a2b4c;
      text-align: justify; }
      @media (max-width: 700px) {
        main.page.page-txt .block_content .block p {
          font-size: 14px;
          text-align: left; } }

.privacy-policy p a {
  color: #e4022d;
  text-decoration: underline; }
.privacy-policy .pp-credit {
  text-align: center !important;
  font-size: 14px !important; }

.menu-header {
  height: 100vh;
  background: url("https://www.aveine.paris/wp-content/uploads/2019/07/20190721_home.png") no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative; }
  @media (max-width: 700px) {
    .menu-header {
      background: url("https://www.aveine.paris/wp-content/uploads/2019/07/20190721_home.png") no-repeat center;
      background-size: auto 100%; } }
  @media (max-width: 700px) and (orientation: landscape) {
    .menu-header {
      height: 150vh; } }

  .menu-header .info-header {
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: absolute;
    top: 55%;
    left: 7%; }
    @media (max-width: 700px) {
      .menu-header .info-header {
        height: 85%;
        top: 10%;
        left: 0;
        align-items: center;
        width: 100vw; } }
    .menu-header .info-header .info-1 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      color: #1a2a4b;
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 30px; }
      @media (max-width: 700px) {
        .menu-header .info-header .info-1 {
          flex-direction: column;
          align-items: center;
          font-size: 2.5rem; } }
      .menu-header .info-header .info-1 span {
        text-align: center; }
        @media (max-width: 700px) {
          .menu-header .info-header .info-1 span {
            margin-top: 10px; } }
      .menu-header .info-header .info-1 .second-info {
        font-style: italic;
        font-weight: 100;
        font-size: 30px; }
    @media (max-width: 700px) {
      .menu-header .info-header .info-2 {
        margin: 5px 0; } }
    @media (max-width: 700px) {
      .menu-header .info-header .info-3 {
        margin: 5px 0; } }
    .menu-header .info-header .info-2,
    .menu-header .info-header .info-3 {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      color: #1a2a4b;
      font-size: 1.5rem;
      font-weight: bold; }
      @media (max-width: 700px) {
        .menu-header .info-header .info-2,
        .menu-header .info-header .info-3 {
          flex-direction: column;
          text-align: center;
          align-items: center;
          font-size: 1.5rem; } }
      .menu-header .info-header .info-2 span,
      .menu-header .info-header .info-3 span {
        margin: 10px 0 0 0; }
        @media (max-width: 700px) {
          .menu-header .info-header .info-2 span,
          .menu-header .info-header .info-3 span {
            margin: 10px 20px 0 20px; } }
      .menu-header .info-header .info-2 .second-info,
      .menu-header .info-header .info-3 .second-info {
        padding-left: 10px;
        text-align: center; }
    .menu-header .info-header .info-3 {
      margin-bottom: 10px;
      font-style: italic;
      font-weight: unset; }
    .menu-header .info-header .cta-head {
      display: flex; }
      @media (max-width: 700px) {
        .menu-header .info-header .cta-head {
          flex-direction: column;
          max-width: 244px; } }
      @media (max-width: 700px) {
        .menu-header .info-header .cta-head .info-button {
          color: #fff;
          font-size: 1.5rem;
          width: 240px;
          padding: 0px 0px 0px 35px;
          font-weight: bold; } }
      .menu-header .info-header .cta-head .cta-testimonials {
        margin-top: 20px;
        margin-right: 40px;
        width: 240px;
        height: 53px;
        background-color: #1a2a4b;
        border: 1px solid #1a2a4b;
        border-radius: 3px;
        text-align: center;
        margin-right: 40px;
        cursor: pointer; }
        .menu-header .info-header .cta-head .cta-testimonials:hover a {
          font-weight: 500; }
        .menu-header .info-header .cta-head .cta-testimonials a {
          width: 100%;
          height: 100%;
          line-height: 53px;
          font-size: 16px;
          text-align: center;
          font-weight: 100; }

.home_app {
  background: url("https://cdn.aveine.paris/website/wp-content/uploads/2019/10/04105132/Screenshot-2019-10-02-at-16.32.07.png") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 95vh;
  position: relative; }
  @media (max-width: 700px) {
    .home_app {
      background: url("https://cdn.aveine.paris/website/wp-content/uploads/2019/10/11131154/image-app-mobile.jpg") no-repeat center center;
      background-color: #fff;
      height: 100vh;
      display: flex; } }
  .home_app .home_app_block {
    position: absolute;
    width: 500px;
    top: 30%;
    left: 100px; }
    @media (max-width: 700px) {
      .home_app .home_app_block {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        width: 100%;
        margin: 0 40px;
        padding-top: 40px;
        top: unset;
        left: unset; } }
    .home_app .home_app_block h2 {
      font-size: 50px;
      font-weight: bold;
      color: #1a2a4b; }
      @media (max-width: 1150px) {
        .home_app .home_app_block h2 {
          font-size: 30px; } }
      @media (max-width: 700px) {
        .home_app .home_app_block h2 {
          font-size: 20px; } }
    .home_app .home_app_block h3 {
      font-size: 50px;
      font-weight: 200;
      color: #1a2a4b; }
      @media (max-width: 1150px) {
        .home_app .home_app_block h3 {
          font-size: 30px; } }
      @media (max-width: 700px) {
        .home_app .home_app_block h3 {
          font-size: 20px; } }
    .home_app .home_app_block p {
      font-size: 22px;
      font-weight: 200;
      margin: 20px 0; }
      @media (max-width: 1150px) {
        .home_app .home_app_block p {
          font-size: 18px; } }
      @media (max-width: 700px) {
        .home_app .home_app_block p {
          font-size: 14px;
          margin: 10px 0; } }
    .home_app .home_app_block div {
      display: flex;
      flex-direction: row;
      justify-content: space-around; }
      @media (max-width: 700px) {
        .home_app .home_app_block div {
          flex-direction: column;
          margin-top: 30px; } }
      .home_app .home_app_block div a {
        margin: 5px 0; }
        .home_app .home_app_block div a img {
          max-height: 75px; }
          @media (max-width: 700px) {
            .home_app .home_app_block div a img {
              max-width: 224px; } }
    .home_app .home_app_block .sep {
      border: 1px solid #1a2a4b;
      width: 108px;
      margin-left: 0; }
      @media (max-width: 700px) {
        .home_app .home_app_block .sep {
          width: 100%; } }

.home_aerator {
  display: flex;
  justify-content: space-evenly;
  background-color: #fff;
  padding: 5% 0;
  align-items: center; }
  @media (max-width: 700px) {
    .home_aerator {
      flex-direction: column; } }
  .home_aerator .home_aerator_blocks {
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media (max-width: 700px) {
      .home_aerator .home_aerator_blocks {
        margin-bottom: 10%; } }
    .home_aerator .home_aerator_blocks .home_aerator_div_img img {
      max-width: 250px; }
      @media (max-width: 700px) {
        .home_aerator .home_aerator_blocks .home_aerator_div_img img {
          max-width: 200px; } }
    .home_aerator .home_aerator_blocks .home_aerator_div_title {
      flex-direction: column;
      align-items: center;
      display: flex;
      margin-top: 20px;
      text-align: center; }
      .home_aerator .home_aerator_blocks .home_aerator_div_title span {
        font-size: 26px;
        color: #1a2b4c;
        font-weight: 500; }
        @media (max-width: 700px) {
          .home_aerator .home_aerator_blocks .home_aerator_div_title span {
            font-size: 20px; } }
    .home_aerator .home_aerator_blocks .home_aerator_div_list {
      margin-top: 50px; }
      .home_aerator .home_aerator_blocks .home_aerator_div_list ul {
        padding: 0; }
        @media (max-width: 700px) {
          .home_aerator .home_aerator_blocks .home_aerator_div_list ul {
            padding: 0; } }
        .home_aerator .home_aerator_blocks .home_aerator_div_list ul li {
          color: #e4022d;
          font-size: 16px;
          list-style: none;
          text-align: center;
          padding-top: 5px; }
          @media (max-width: 700px) {
            .home_aerator .home_aerator_blocks .home_aerator_div_list ul li {
              font-size: 12px;
              list-style: none;
              text-align: center;
              padding-top: 5px; } }
    .home_aerator .home_aerator_blocks .home_aerator_div_button {
      border: 2px solid #1a2a4b;
      border-radius: 3px;
      color: #1a2a4b;
      margin-top: 50px;
      padding: 15px 5px;
      width: 260px;
      font-size: 1.2rem;
      text-align: center;
      font-weight: 500; }
      .home_aerator .home_aerator_blocks .home_aerator_div_button:hover {
        font-weight: 800;
        cursor: pointer; }
    .home_aerator .home_aerator_blocks .red-border {
      border-color: #e4022d; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  padding: 5px;
  margin: 0 20px;
  background-color: #1a2b4c; }

.swiper-pagination {
  width: 100%; }

.swiper-container-temoignages-slide {
  padding: 25px; }

.testimonials {
  color: #1a2b4c;
  background-color: white; }
  @media (max-width: 1150px) {
    .testimonials {
      padding: 20px 0 40px 0; } }
  .testimonials .block_2_temoignages {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid #d9d9d4; }
    .testimonials .block_2_temoignages .block {
      height: 530px; }
      @media (max-width: 700px) {
        .testimonials .block_2_temoignages .block {
          height: 480px; } }
    @media (max-width: 700px) {
      .testimonials .block_2_temoignages .swiper-container-temoignages-slide {
        display: none; } }
    .testimonials .block_2_temoignages .swiper-container-temoignages-slide-mob {
      display: none; }
      @media (max-width: 700px) {
        .testimonials .block_2_temoignages .swiper-container-temoignages-slide-mob {
          display: block;
          margin: 0 calc(100% - 340px); } }
  .testimonials .title-head-block {
    font-size: 36px;
    font-weight: 600;
    padding: 3% 0 3% 0;
    color: #1a2b4c; }
    @media (max-width: 700px) {
      .testimonials .title-head-block {
        padding: 50px 0 30px 0;
        font-size: 25px; } }
  .testimonials .temoignage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
    background-color: white;
    border: 3px solid white;
    border-radius: 5px;
    box-shadow: 1px 1px 7px grey; }
    .testimonials .temoignage .head picture img {
      max-width: 300px; }
    .testimonials .temoignage .infos {
      flex-direction: column;
      display: flex;
      width: 340px;
      padding: 20px 17px;
      background: url("https://cdn.aveine.paris/website/wp-content/uploads/2019/05/21110242/Group-74.png") no-repeat white;
      background-position: 7% 10%;
      background-size: 25%;
      height: 250px;
      justify-content: space-evenly; }
      .testimonials .temoignage .infos .infos-1 .desc {
        line-height: 22px;
        font-weight: 600;
        text-align: left;
        padding: 0 10px; }
      .testimonials .temoignage .infos .infos-2 {
        display: flex;
        flex-direction: column;
        justify-content: flex-end; }
        .testimonials .temoignage .infos .infos-2 .name {
          text-align: right;
          font-size: 13px;
          padding: 10px 0 5px 0;
          font-style: italic;
          font-weight: 400; }
        .testimonials .temoignage .infos .infos-2 .poste,
        .testimonials .temoignage .infos .infos-2 .entreprise {
          text-align: right;
          font-size: 12px;
          font-weight: 100;
          color: grey; }
  .testimonials .testimonials-button-pro {
    border-radius: 3px;
    border: 2px solid #e4022d;
    padding: 15px 10px 15px 10px;
    font-weight: 400;
    font-size: 15px;
    min-width: 110px;
    width: 250px;
    text-align: center;
    margin-top: 50px; }
    .testimonials .testimonials-button-pro:hover {
      cursor: pointer; }
      .testimonials .testimonials-button-pro:hover a {
        font-weight: 800; }
    .testimonials .testimonials-button-pro a {
      color: #1a2a4b;
      font-weight: 500; }

.page.home .home_block_one {
  position: relative;
  background: #1a2b4c;
  min-height: 100vh;
  overflow: hidden; }
  .page.home .home_block_one .img_back {
    position: relative;
    width: 50vw;
    height: 100vh;
    margin-top: 0;
    overflow: hidden; }
    @media (max-width: 700px) {
      .page.home .home_block_one .img_back {
        width: 115vw;
        height: 120vh;
        margin-top: 320px; } }
    .page.home .home_block_one .img_back img {
      position: absolute;
      top: 0%;
      left: 50%;
      transform: translateX(-50%);
      height: 100%;
      min-width: 100%; }
      @media (max-width: 700px) {
        .page.home .home_block_one .img_back img {
          position: relative;
          left: 60%; } }
  .page.home .home_block_one .btns-mob {
    display: none; }
    @media (max-width: 700px) {
      .page.home .home_block_one .btns-mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        bottom: 50px;
        width: 100%; }
        .page.home .home_block_one .btns-mob a {
          width: 240px;
          margin-top: 10px; } }
  .page.home .home_block_one .block {
    transform: translate(-50%, -50%);
    top: 50%; }
    @media (max-width: 700px) {
      .page.home .home_block_one .block {
        top: 0;
        left: 0;
        transform: none;
        padding: 0;
        width: 100%; } }
    .page.home .home_block_one .block .content {
      width: calc((100% / 12) * 8);
      margin-left: calc((100% / 12) * 4); }
      @media (max-width: 700px) {
        .page.home .home_block_one .block .content {
          margin-left: 0;
          width: 100%;
          line-height: inherit; } }
      .page.home .home_block_one .block .content .box {
        background: white;
        padding: 65px 60px 55px 75px; }
        @media (max-width: 700px) {
          .page.home .home_block_one .block .content .box {
            padding: 25px 10px 25px 15px; } }
        .page.home .home_block_one .block .content .box .title-head-block {
          text-align: left;
          padding-top: 0;
          text-transform: uppercase;
          padding-bottom: 40px;
          font-size: 35px; }
          @media (max-width: 700px) {
            .page.home .home_block_one .block .content .box .title-head-block {
              font-size: 25px;
              text-align: center;
              padding-bottom: 10px; } }
        .page.home .home_block_one .block .content .box .content-box {
          font-size: 16px;
          margin: 0;
          color: #1a2b4c;
          text-align: justify; }
          @media (max-width: 700px) {
            .page.home .home_block_one .block .content .box .content-box {
              padding: 0 20px;
              font-size: 12px;
              line-height: 25px; } }
      .page.home .home_block_one .block .content .cta-learn {
        display: flex;
        justify-content: flex-end; }
        @media (max-width: 700px) {
          .page.home .home_block_one .block .content .cta-learn {
            display: none; } }
        .page.home .home_block_one .block .content .cta-learn .btns {
          margin-left: 40px; }
          .page.home .home_block_one .block .content .cta-learn .btns .btn {
            font-weight: 100;
            float: right;
            margin-top: 20px;
            width: 244px; }
            @media (max-width: 700px) {
              .page.home .home_block_one .block .content .cta-learn .btns .btn {
                float: none;
                margin: 10px 0 !important;
                display: block;
                padding: 5px 0;
                text-align: center;
                border: 1px solid #e4022d; } }
            .page.home .home_block_one .block .content .cta-learn .btns .btn.btn-1 {
              font-weight: 100;
              padding-left: 46px;
              padding-right: 46px; }
              .page.home .home_block_one .block .content .cta-learn .btns .btn.btn-1:hover {
                font-weight: 800; }
              @media (max-width: 700px) {
                .page.home .home_block_one .block .content .cta-learn .btns .btn.btn-1 {
                  padding: 7px 0; } }
            .page.home .home_block_one .block .content .cta-learn .btns .btn.btn-2 {
              margin-left: 20px; }

.ambassador_map {
  height: 80vh;
  width: 100vw;
  background-color: #fff; }
  @media (max-width: 700px) {
    .ambassador_map {
      height: 100vh; } }
  .ambassador_map .ambassador_map_block {
    height: 70vh;
    width: 80vw;
    margin: 0 10vw;
    padding-top: 70px; }
    @media (max-width: 700px) {
      .ambassador_map .ambassador_map_block {
        padding-top: 0px; } }
    .ambassador_map .ambassador_map_block h2 {
      color: #1a2a4b;
      font-size: 36px;
      font-weight: 600; }
      @media (max-width: 700px) {
        .ambassador_map .ambassador_map_block h2 {
          font-size: 25px; } }
    .ambassador_map .ambassador_map_block h3 {
      text-align: center;
      font-weight: 300;
      font-size: 18px;
      font-style: italic; }
      @media (max-width: 700px) {
        .ambassador_map .ambassador_map_block h3 {
          font-size: 15px; } }
    .ambassador_map .ambassador_map_block #map {
      -webkit-box-shadow: -1px 3px 10px 1px rgba(0, 0, 0, 0.28);
      -moz-box-shadow: -1px 3px 10px 1px rgba(0, 0, 0, 0.28);
      box-shadow: -1px 3px 10px 1px rgba(0, 0, 0, 0.28);
      height: 100%;
      margin-top: 30px; }

.block_3_partenaires {
  position: relative;
  background-color: #fff;
  padding: 5% 0 0 0; }
  @media (max-width: 700px) {
    .block_3_partenaires {
      height: auto;
      min-height: auto; } }
  .block_3_partenaires .title-head-block {
    text-transform: uppercase;
    color: #1a2a4b;
    border-top: 2px solid #d9d9d4;
    font-size: 36px;
    font-weight: 600;
    padding: 3% 0 0 0; }
    @media (max-width: 700px) {
      .block_3_partenaires .title-head-block {
        padding: 50px 0 0 0;
        font-size: 25px; } }
  .block_3_partenaires .block {
    padding: 30px 0;
    width: 100%; }
    .block_3_partenaires .block .content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin-top: 50px; }
      .block_3_partenaires .block .content .logo {
        position: relative;
        padding: 15px 15px; }
        @media (max-width: 700px) {
          .block_3_partenaires .block .content .logo {
            padding: 10px 10px; } }
        .block_3_partenaires .block .content .logo:nth-child(1) {
          width: calc(50% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(1) img {
            max-width: 398px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(1) {
              width: calc(50% - 20px); } }
        .block_3_partenaires .block .content .logo:nth-child(2) {
          width: calc(50% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(2) img {
            max-width: 398px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(2) {
              width: calc(50% - 20px); } }
        .block_3_partenaires .block .content .logo:nth-child(3) {
          width: calc(100% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(3) img {
            max-width: 261px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(3) {
              width: calc(100% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(3) img {
                max-width: 150px; } }
        .block_3_partenaires .block .content .logo:nth-child(4) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(4) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(4) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(4) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(5) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(5) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(5) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(5) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(6) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(6) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(6) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(6) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(7) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(7) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(7) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(7) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(8) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(8) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(8) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(8) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(9) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(9) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(9) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(9) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(10) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(10) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(10) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(10) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(11) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(11) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(11) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(11) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(12) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(12) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(12) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(12) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo:nth-child(13) {
          width: calc(16.66% - 30px); }
          .block_3_partenaires .block .content .logo:nth-child(13) img {
            max-width: 122px; }
          @media (max-width: 700px) {
            .block_3_partenaires .block .content .logo:nth-child(13) {
              width: calc(25% - 20px); }
              .block_3_partenaires .block .content .logo:nth-child(13) img {
                max-width: 70px; } }
        .block_3_partenaires .block .content .logo img {
          margin-left: 50%;
          transform: translateX(-50%);
          width: 100%; }

.block_1_press {
  background-color: #fff;
  position: relative;
  padding: 5% 0 0 0; }
  .block_1_press .title-head-block {
    text-transform: uppercase;
    color: #1a2a4b;
    border-top: 2px solid #d9d9d4;
    font-size: 36px;
    font-weight: 600;
    padding: 3% 0 0 0; }
    @media (max-width: 700px) {
      .block_1_press .title-head-block {
        padding: 50px 0 20px 0;
        font-size: 25px; } }
  .block_1_press .list-articles-press {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; }
    .block_1_press .list-articles-press .article-press {
      width: calc((100% / 6) - 80px);
      padding: 40px 20px; }
      @media (max-width: 700px) {
        .block_1_press .list-articles-press .article-press {
          display: none;
          width: 100%;
          padding: 20px; }
          .block_1_press .list-articles-press .article-press:nth-child(-n + 3) {
            display: block; } }
      .block_1_press .list-articles-press .article-press .content .img-press {
        position: relative;
        margin: 0 auto;
        width: 100%;
        overflow: hidden; }
        @media (max-width: 700px) {
          .block_1_press .list-articles-press .article-press .content .img-press {
            width: 120px;
            height: 120px; } }
        .block_1_press .list-articles-press .article-press .content .img-press img {
          width: 100%; }
      .block_1_press .list-articles-press .article-press .content .title-b {
        text-align: center;
        margin-top: 10px; }
        .block_1_press .list-articles-press .article-press .content .title-b .lang-b-t {
          font-size: 16px;
          color: #e4022d;
          text-transform: uppercase;
          font-weight: 300;
          display: block;
          padding: 4px 0; }
        .block_1_press .list-articles-press .article-press .content .title-b .title-b-t {
          font-size: 14px;
          color: #1a2b4c; }
          @media (max-width: 700px) {
            .block_1_press .list-articles-press .article-press .content .title-b .title-b-t {
              font-size: 12px; } }
  .block_1_press .btn-more {
    padding: 0 0 30px 0; }
    .block_1_press .btn-more .btn-m {
      border-radius: 2px;
      position: relative;
      width: 250px;
      background: #e4022d;
      display: block;
      margin-left: 50%;
      transform: translateX(-50%);
      padding: 10px 10px; }
      @media (max-width: 700px) {
        .block_1_press .btn-more .btn-m {
          width: 230px; } }
      .block_1_press .btn-more .btn-m .txt {
        color: white;
        font-size: 18px;
        line-height: 33px;
        display: block; }
        @media (max-width: 700px) {
          .block_1_press .btn-more .btn-m .txt {
            font-size: 16px;
            line-height: 25px; } }
      .block_1_press .btn-more .btn-m img {
        position: absolute;
        top: 15px;
        right: 20px;
        width: 20px; }
        @media (max-width: 700px) {
          .block_1_press .btn-more .btn-m img {
            width: 24px;
            top: 10px; } }

.block_4_succes {
  background-color: #fff;
  position: relative;
  padding: 5% 0 0 0; }
  .block_4_succes .title-head-block {
    text-transform: uppercase;
    color: #1a2a4b;
    border-top: 2px solid #d9d9d4;
    font-size: 36px;
    font-weight: 600;
    padding: 3% 0 0 0; }
    @media (max-width: 700px) {
      .block_4_succes .title-head-block {
        padding: 50px 0 0 0;
        font-size: 25px; } }
  .block_4_succes .block {
    padding: 0 0 70px 0;
    width: 100%; }
    .block_4_succes .block .content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin-top: 50px; }
      .block_4_succes .block .content .logo {
        position: relative;
        padding: 15px 15px; }
        @media (max-width: 700px) {
          .block_4_succes .block .content .logo {
            padding: 10px 10px; } }
        .block_4_succes .block .content .logo:nth-child(1) {
          width: calc(((100% / 12) * 2) - 30px); }
          .block_4_succes .block .content .logo:nth-child(1) img {
            max-width: 277px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(1) {
              width: calc(50% - 20px); } }
        .block_4_succes .block .content .logo:nth-child(2) {
          width: calc(((100% / 12) * 2) - 30px); }
          .block_4_succes .block .content .logo:nth-child(2) img {
            max-width: 282px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(2) {
              width: calc(50% - 20px); } }
        .block_4_succes .block .content .logo:nth-child(3) {
          width: calc(((100% / 12) * 1) - 30px); }
          .block_4_succes .block .content .logo:nth-child(3) img {
            max-width: 261px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(3) {
              width: calc(50% - 20px); } }
        .block_4_succes .block .content .logo:nth-child(4) {
          width: calc(((100% / 12) * 2) - 30px); }
          .block_4_succes .block .content .logo:nth-child(4) img {
            max-width: 260px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(4) {
              width: calc(50% - 20px); } }
        .block_4_succes .block .content .logo:nth-child(5) {
          width: calc(((100% / 12) * 1) - 30px); }
          .block_4_succes .block .content .logo:nth-child(5) img {
            max-width: 260px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(5) {
              width: calc(50% - 20px); } }
        .block_4_succes .block .content .logo:nth-child(6) {
          width: calc(((100% / 12) * 2) - 30px); }
          .block_4_succes .block .content .logo:nth-child(6) img {
            max-width: 376px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(6) {
              width: calc(50% - 20px); } }
        .block_4_succes .block .content .logo:nth-child(7) {
          width: calc(((100% / 12) * 2) - 30px); }
          .block_4_succes .block .content .logo:nth-child(7) img {
            max-width: 376px; }
          @media (max-width: 700px) {
            .block_4_succes .block .content .logo:nth-child(7) {
              width: calc(100% - 20px); } }
        .block_4_succes .block .content .logo img {
          margin-left: 50%;
          transform: translateX(-50%);
          width: 100%; }

#content-infowindow {
  display: flex;
  flex-direction: row; }
  @media (max-width: 700px) {
    #content-infowindow {
      flex-direction: column; } }
  #content-infowindow div {
    margin: 0 10px;
    padding-top: 12px; }
  #content-infowindow h2 {
    font-size: 15px; }
    @media (max-width: 700px) {
      #content-infowindow h2 {
        text-align: center; } }
  @media (max-width: 700px) {
    #content-infowindow p {
      text-align: center; } }
  #content-infowindow .gmapAdress {
    margin: 0; }
  #content-infowindow .gmapLink {
    padding-top: 12px; }
    #content-infowindow .gmapLink a {
      font-size: 12px;
      text-decoration: underline;
      color: #1a2a4b; }
  #content-infowindow .gmapImage {
    width: auto;
    height: 100px; }

/* PAGE Buy */
main.page.acheter .block_buy_product {
  position: relative;
  padding: 70px 0;
  min-height: 100vh;
  background-color: #fff; }
  main.page.acheter .block_buy_product .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
    @media (max-width: 1300px) {
      main.page.acheter .block_buy_product .block {
        display: block;
        position: relative !important;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0); } }
  @media (max-width: 1300px) and (max-width: 1300px) {
    main.page.acheter .block_buy_product .block.abso-mob {
      position: absolute;
      z-index: 1;
      left: 50%;
      top: 0;
      margin: 0;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); } }

    main.page.acheter .block_buy_product .block .col.image {
      width: 45%; }
      @media (max-width: 1300px) {
        main.page.acheter .block_buy_product .block .col.image {
          width: 100%; } }
      main.page.acheter .block_buy_product .block .col.image .title-head-block {
        display: none; }
        @media (max-width: 1300px) {
          main.page.acheter .block_buy_product .block .col.image .title-head-block {
            display: block;
            padding: 0; } }
      main.page.acheter .block_buy_product .block .col.image #mySpriteSpin {
        width: 100%;
        cursor: ew-resize; }
        @media (max-width: 1300px) {
          main.page.acheter .block_buy_product .block .col.image #mySpriteSpin {
            width: 50%;
            margin-left: 27%; } }
      main.page.acheter .block_buy_product .block .col.image .arrow_view_3D {
        margin-left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 120px; }
        @media (max-width: 1300px) {
          main.page.acheter .block_buy_product .block .col.image .arrow_view_3D {
            width: 60px; } }
    main.page.acheter .block_buy_product .block .col.infos {
      position: relative;
      width: 55%; }
      @media (max-width: 1300px) {
        main.page.acheter .block_buy_product .block .col.infos {
          width: 100%; } }
      main.page.acheter .block_buy_product .block .col.infos .content {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
        @media (max-width: 1300px) {
          main.page.acheter .block_buy_product .block .col.infos .content {
            position: relative;
            top: inherit;
            -webkit-transform: none;
            transform: none; } }
        main.page.acheter .block_buy_product .block .col.infos .content .title-head-block {
          text-transform: uppercase;
          text-align: left;
          padding: 0 0 40px 0;
          font-size: 35px; }
          @media (max-width: 1300px) {
            main.page.acheter .block_buy_product .block .col.infos .content .title-head-block {
              display: none; } }
          main.page.acheter .block_buy_product .block .col.infos .content .title-head-block span {
            font-style: italic;
            font-weight: 100; }
        main.page.acheter .block_buy_product .block .col.infos .content p {
          display: inline-block;
          width: calc(73% - 30px);
          margin: 0;
          font-size: 16px;
          padding-right: 20px;
          color: #1a2b4c;
          line-height: 30px;
          font-weight: 300; }
          @media (max-width: 1300px) {
            main.page.acheter .block_buy_product .block .col.infos .content p {
              display: block;
              width: 100%;
              padding: 20px 0; } }
          main.page.acheter .block_buy_product .block .col.infos .content p strong {
            color: #e4022d;
            font-weight: 600; }
        main.page.acheter .block_buy_product .block .col.infos .content .price {
          display: inline-block;
          width: 27%;
          vertical-align: top;
          font-size: 26px;
          color: #1a2b4c; }
          @media (max-width: 1300px) {
            main.page.acheter .block_buy_product .block .col.infos .content .price {
              width: 100%;
              padding: 20px 0; } }
          @media (max-width: 700px) {
            main.page.acheter .block_buy_product .block .col.infos .content .price {
              text-align: center; } }
          main.page.acheter .block_buy_product .block .col.infos .content .price img {
            width: 99px; }
        @media (max-width: 700px) {
          main.page.acheter .block_buy_product .block .col.infos .content #product-component-23493bd8bb8 {
            margin: 0 0 0 5%; } }
  @media (max-width: 700px) and (orientation: landscape) {
    main.page.acheter .block_buy_product .block .col.infos .content #product-component-23493bd8bb8 {
      margin: 0 0 0 35%; } }

        main.page.acheter .block_buy_product .block .col.infos .content .link-more-details {
          display: block;
          font-size: 20px;
          font-style: italic;
          color: #1a2b4c;
          margin-top: 30px;
          text-decoration: underline; }
          main.page.acheter .block_buy_product .block .col.infos .content .link-more-details:hover {
            cursor: pointer; }
          @media (max-width: 1300px) {
            main.page.acheter .block_buy_product .block .col.infos .content .link-more-details {
              font-size: 14px;
              text-align: center; } }
        main.page.acheter .block_buy_product .block .col.infos .content .link-cgv {
          display: block;
          font-size: 15px;
          font-style: italic;
          color: #1a2b4c;
          margin-top: 30px;
          text-decoration: underline; }
          @media (max-width: 1300px) {
            main.page.acheter .block_buy_product .block .col.infos .content .link-cgv {
              font-size: 12px;
              text-align: center; } }
main.page.acheter .tuto-aerator {
  margin: 5%; }
  main.page.acheter .tuto-aerator .tuto-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 50px 0; }
    @media (max-width: 700px) {
      main.page.acheter .tuto-aerator .tuto-steps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    main.page.acheter .tuto-aerator .tuto-steps .tuto-step {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      max-width: 250px;
      color: #fff;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      @media (max-width: 700px) {
        main.page.acheter .tuto-aerator .tuto-steps .tuto-step {
          margin-bottom: 50px; } }
      main.page.acheter .tuto-aerator .tuto-steps .tuto-step img {
        max-width: 70%; }
      main.page.acheter .tuto-aerator .tuto-steps .tuto-step .tuto-title {
        font-weight: bold;
        font-size: 1.2rem;
        margin: 7% 0; }
      main.page.acheter .tuto-aerator .tuto-steps .tuto-step .tuto-desc {
        text-align: center; }
main.page.acheter .spec-aerator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 700px) {
    main.page.acheter .spec-aerator {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  main.page.acheter .spec-aerator .block_2_details {
    background-color: #fff;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    position: relative;
    height: 0;
    margin-bottom: 15px;
    overflow: hidden; }
    main.page.acheter .spec-aerator .block_2_details .title-head-block {
      font-size: 35px;
      text-transform: uppercase; }
      @media (max-width: 700px) {
        main.page.acheter .spec-aerator .block_2_details .title-head-block {
          font-size: 25px; } }
    main.page.acheter .spec-aerator .block_2_details .spec-title {
      text-align: center;
      padding-bottom: 20px;
      font-size: 2rem; }
      @media (max-width: 700px) {
        main.page.acheter .spec-aerator .block_2_details .spec-title {
          font-size: 1.5rem; } }
    main.page.acheter .spec-aerator .block_2_details .block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      @media (max-width: 700px) {
        main.page.acheter .spec-aerator .block_2_details .block {
          display: block;
          width: 100%;
          position: relative;
          -webkit-transform: none;
          transform: none;
          margin: 0;
          left: 0;
          top: 0; } }
      main.page.acheter .spec-aerator .block_2_details .block .col {
        width: 50%;
        padding: 0 25px; }
        @media (max-width: 700px) {
          main.page.acheter .spec-aerator .block_2_details .block .col {
            width: 100%;
            padding: 0; } }
        main.page.acheter .spec-aerator .block_2_details .block .col .info span {
          display: block; }
        main.page.acheter .spec-aerator .block_2_details .block .col .info .titre {
          color: #e4022d;
          font-size: 18px;
          padding: 7px 0; }
          @media (max-width: 700px) {
            main.page.acheter .spec-aerator .block_2_details .block .col .info .titre {
              font-size: 16px;
              text-align: center; } }
        main.page.acheter .spec-aerator .block_2_details .block .col .info .l_1,
        main.page.acheter .spec-aerator .block_2_details .block .col .info .l_2 {
          color: #1a2b4c;
          font-size: 14px; }
          @media (max-width: 700px) {
            main.page.acheter .spec-aerator .block_2_details .block .col .info .l_1,
            main.page.acheter .spec-aerator .block_2_details .block .col .info .l_2 {
              font-size: 14px;
              text-align: center; } }
  main.page.acheter .spec-aerator .spec-image {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%; }
    @media (max-width: 700px) {
      main.page.acheter .spec-aerator .spec-image {
        margin: 50px 0 20px 0; } }
    main.page.acheter .spec-aerator .spec-image img {
      width: 75%;
      padding: 0px 0px 50px 100px; }
main.page.acheter .block_4_app {
  position: relative;
  min-height: 65vh;
  background: #1a2b4c;
  margin-bottom: 15px;
  overflow: hidden; }
  @media (max-width: 900px) {
    main.page.acheter .block_4_app {
      padding-top: 90px; } }
  main.page.acheter .block_4_app .back_white {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 100%;
    background: white; }
    @media (max-width: 900px) {
      main.page.acheter .block_4_app .back_white {
        width: 100vw;
        height: 75%; } }
  main.page.acheter .block_4_app .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media (max-width: 900px) {
      main.page.acheter .block_4_app .block {
        display: block;
        position: relative;
        top: -90px;
        -webkit-transform: none;
        transform: none;
        -webkit-box-align: inherit;
        -ms-flex-align: inherit;
        align-items: inherit;
        -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
        justify-content: inherit;
        left: 0; } }
    main.page.acheter .block_4_app .block .col-img {
      width: 50%; }
      @media (max-width: 900px) {
        main.page.acheter .block_4_app .block .col-img {
          width: 100%; } }
      main.page.acheter .block_4_app .block .col-img img {
        width: 80%; }
        @media (min-width: 500px) and (max-width: 900px) {
          main.page.acheter .block_4_app .block .col-img img {
            margin-left: 5vw; } }
        @media (max-width: 900px) {
          main.page.acheter .block_4_app .block .col-img img {
            width: 80vw; } }
    main.page.acheter .block_4_app .block .col-txt {
      width: 50%;
      padding-left: 0%;
      font-size: 16px;
      color: #1a2b4c;
      text-align: justify; }
      @media (max-width: 900px) {
        main.page.acheter .block_4_app .block .col-txt {
          width: 70vw;
          font-size: 16px;
          padding: 0;
          float: right; } }
      @media (max-width: 700px) {
        main.page.acheter .block_4_app .block .col-txt {
          font-size: 14px; } }
      main.page.acheter .block_4_app .block .col-txt .title-head-block {
        text-align: left;
        padding-top: 0;
        font-size: 35px;
        text-transform: uppercase; }
        @media (max-width: 700px) {
          main.page.acheter .block_4_app .block .col-txt .title-head-block {
            font-size: 25px;
            margin-top: 10%; } }
      main.page.acheter .block_4_app .block .col-txt .store-app {
        display: flex;
        justify-content: flex-end;
        flex-direction: row; }
        @media (max-width: 700px) {
          main.page.acheter .block_4_app .block .col-txt .store-app {
            flex-direction: column;
            justify-content: center;
            align-items: center; } }
        main.page.acheter .block_4_app .block .col-txt .store-app a {
          margin: 30px 0 30px 15px; }
          @media (max-width: 700px) {
            main.page.acheter .block_4_app .block .col-txt .store-app a {
              margin: 15px 0; } }
          main.page.acheter .block_4_app .block .col-txt .store-app a img {
            max-height: 75px; }
            @media (max-width: 700px) {
              main.page.acheter .block_4_app .block .col-txt .store-app a img {
                max-width: 224px; } }

.app-line {
  display: none; }
  @media (max-width: 700px) {
    .app-line {
      margin: 0 0 50px 0;
      height: 10px;
      background-color: white; } }

/* ABOUT PAGE */
.about-header {
  height: 80vh;
  background: url("https://cdn.aveine.paris/website/wp-content/uploads/2019/05/13141237/20180912_Histoire-Aveine.jpg") no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative; }
  .about-header .about-info {
    bottom: 0;
    left: 10%;
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    padding: 2%;
    position: absolute; }
    .about-header .about-info h2 {
      padding-bottom: 2%; }
    .about-header .about-info p {
      text-align: justify;
      font-size: 16px; }
      @media (max-width: 700px) {
        .about-header .about-info p {
          font-size: 12px; } }

.home_block_two {
  position: relative;
  background: #1a2b4c;
  min-height: 60vh;
  margin: 3%; }
  @media (max-width: 700px) {
    .home_block_two {
      min-height: inherit;
      padding: 75px 0; } }
  .home_block_two .block {
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 30vh;
    padding: 9px;
    width: calc((100% / 12) * 10);
    overflow: hidden; }
    @media (max-width: 700px) {
      .home_block_two .block {
        padding: 7px;
        position: relative;
        top: inherit;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); } }
    .home_block_two .block .border_motifs {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; }
    .home_block_two .block .con {
      position: relative;
      z-index: 2;
      background: #1a2b4c;
      padding: 20px 10%; }
      .home_block_two .block .con .title-head-block {
        text-transform: uppercase;
        font-size: 35px; }
        @media (max-width: 700px) {
          .home_block_two .block .con .title-head-block {
            font-size: 20px; } }
      .home_block_two .block .con p {
        text-align: center;
        color: white;
        font-size: 16px;
        margin: 0;
        font-weight: 300;
        padding: 0;
        line-height: 30px; }
        @media (max-width: 700px) {
          .home_block_two .block .con p {
            font-size: 12px;
            line-height: inherit; } }
        .home_block_two .block .con p strong {
          font-weight: 500; }
      .home_block_two .block .con .btns {
        text-align: right;
        padding: 40px 0 15px 0; }
        @media (max-width: 700px) {
          .home_block_two .block .con .btns {
            text-align: center; } }

.aveine-value {
  background-color: #fff;
  height: 15px; }

.block_4_team {
  position: relative;
  background: #1a2b4c;
  margin-bottom: 15px;
  padding: 50px 0 100px 0; }
  @media (max-width: 700px) {
    .block_4_team {
      padding: 30px 0 50px 0; } }
  .block_4_team .title-head-block {
    font-size: 35px;
    text-transform: uppercase; }
    @media (max-width: 700px) {
      .block_4_team .title-head-block {
        padding: 10px 0;
        font-size: 20px; } }
  .block_4_team .list-membre {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px; }
    .block_4_team .list-membre .membre {
      position: relative;
      width: calc((100% / 6) - 20px);
      overflow: hidden;
      margin: 8px 10px; }
      @media (max-width: 700px) {
        .block_4_team .list-membre .membre {
          margin: 3px 5px;
          width: calc((100% / 2) - 10px); } }
      .block_4_team .list-membre .membre .img {
        height: 100%;
        width: 100%; }
      .block_4_team .list-membre .membre .img_hover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0; }
      .block_4_team .list-membre .membre .infos {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(228, 2, 45, 0.4);
        width: calc(100%);
        height: calc(100%); }
        .block_4_team .list-membre .membre .infos .con {
          text-align: center;
          width: 100%;
          padding-top: 3px; }
          .block_4_team .list-membre .membre .infos .con .l_1 {
            font-weight: 600;
            font-size: 16px; }
            @media (max-width: 700px) {
              .block_4_team .list-membre .membre .infos .con .l_1 {
                font-size: 12px; } }
          .block_4_team .list-membre .membre .infos .con .l_2 {
            font-size: 13px;
            line-height: 13px; }
            @media (max-width: 700px) {
              .block_4_team .list-membre .membre .infos .con .l_2 {
                line-height: 10px;
                font-size: 10px; } }
          .block_4_team .list-membre .membre .infos .con .l_1, .block_4_team .list-membre .membre .infos .con .l_2 {
            display: block;
            color: #1a2b4c; }

.page.second.err {
  background: #1a2b4c;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999999999999999; }
  .page.second.err .block-one {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%); }
    .page.second.err .block-one .err {
      margin-left: 50%;
      transform: translateX(-50%);
      display: inline-block; }
      .page.second.err .block-one .err span {
        font-size: 180px;
        display: inline-block;
        vertical-align: top; }
        .page.second.err .block-one .err span:nth-child(1) {
          color: #e4022d; }
        .page.second.err .block-one .err span:nth-child(2) {
          color: white;
          padding-top: 30px; }
        .page.second.err .block-one .err span:nth-child(3) {
          color: #e4022d; }
    .page.second.err .block-one h1 {
      text-align: center;
      color: white;
      font-size: 35px;
      font-weight: 300; }

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