@import url("https://fonts.googleapis.com/css2?family=Taviraj:wght@300;400;500&display=swap");
@keyframes scale {
  0% {
    transform: scale(0, 0);
    opacity: 0; }
  100% {
    transform: scale(1, 1);
    opacity: 1; } }
@keyframes zoom {
  0% {
    width: 0%;
    height: 0%;
    opacity: 0; }
  80% {
    width: 0%;
    height: 0%;
    opacity: 0; }
  100% {
    width: 100%;
    height: 100%;
    opacity: 1; } }
@keyframes ml {
  from {
    opacity: 0;
    margin-left: -300px; }
  to {
    opacity: 1;
    margin-left: 0px; } }
@keyframes mr {
  from {
    opacity: 0;
    margin-left: 1900px; }
  to {
    opacity: 1;
    margin-right: 0px; } }
@keyframes mb {
  from {
    opacity: 0;
    transform: translateY(300px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fade {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes up {
  0% {
    opacity: 0;
    transform: translate(0, 400px); }
  40% {
    opacity: 1;
    transform: translate(0, 0); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade-in1 {
  0% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  0% {
    opacity: 0; } }
@keyframes width {
  from {
    width: 0;
    opacity: 0; }
  to {
    width: 75%;
    opacity: 1; } }
@keyframes height {
  0% {
    height: 100%;
    opacity: 1; }
  20% {
    height: 0;
    opacity: 1; }
  100% {
    height: 0;
    opacity: 1; } }
.block {
  height: 5em;
  line-height: 5em;
  width: 10em;
  background: #464646;
  color: #fdfdfd;
  text-align: center;
  margin: 1em auto;
  text-shadow: 0 0 1px #333;
  /* so one can see fadeBgColor properly */ }

.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused; }

/* show objects being animated */
.animated {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running; }

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  20% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  20% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  20% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  60% {
    opacity: 0; }
  20% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  60% {
    -webkit-transform: translateX(20px); }
  80% {
    -webkit-transform: translateX(-5px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px); }
  60% {
    -moz-transform: translateX(20px); }
  80% {
    -moz-transform: translateX(-5px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -o-transform: translateX(20px); }
  80% {
    -o-transform: translateX(-5px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  60% {
    transform: translateX(20px); }
  80% {
    transform: translateX(-5px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  60% {
    -webkit-transform: translateX(-20px); }
  80% {
    -webkit-transform: translateX(5px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px); }
  60% {
    -moz-transform: translateX(-20px); }
  80% {
    -moz-transform: translateX(5px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px); }
  60% {
    -o-transform: translateX(-20px); }
  80% {
    -o-transform: translateX(5px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  60% {
    transform: translateX(-20px); }
  80% {
    transform: translateX(5px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3); }
  50% {
    -webkit-transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3); }
  50% {
    -moz-transform: scale(1.05); }
  70% {
    -moz-transform: scale(0.9); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3); }
  50% {
    -o-transform: scale(1.05); }
  70% {
    -o-transform: scale(0.9); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@-webkit-keyframes moveUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@-moz-keyframes moveUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(40px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }
@-o-keyframes moveUp {
  0% {
    opacity: 1;
    -o-transform: translateY(40px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }
@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateY(40px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeBgColor {
  0% {
    background: none; }
  70% {
    background: none; }
  100% {
    background: #464646; } }
@-o-keyframes fadeBgColor {
  0% {
    background: none; }
  70% {
    background: none; }
  100% {
    background: #464646; } }
@keyframes fadeBgColor {
  0% {
    background: none; }
  70% {
    background: none; }
  100% {
    background: #464646; } }
.animated.animationDelay {
  animation-delay: .4s;
  -webkit-animation-delay: .4s; }

.animated.animationDelayMed {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s; }

.animated.animationDelayLong {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s; }

.animated.fadeBgColor {
  -webkit-animation-name: fadeBgColor;
  -moz-animation-name: fadeBgColor;
  -o-animation-name: fadeBgColor;
  animation-name: fadeBgColor; }

.animated.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn; }

.animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight; }

.animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn; }

.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown; }

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp; }

.animated.moveUp {
  -webkit-animation-name: moveUp;
  -moz-animation-name: moveUp;
  -o-animation-name: moveUp;
  animation-name: moveUp; }

.clear:before, .clear:after {
  content: ' ';
  display: table; }

.clear {
  *zoom: 1; }
  .clear:after {
    clear: both; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background-color: transparent; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0; }

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto; }

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: 700; }

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

td, th {
  padding: 0; }

@font-face {
  font-family: 'proximanova-thin';
  src: url("./fonts/proximanova-thin.ttf") format("truetype"), url("./fonts/proximanova-thin.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'proximanova_light';
  src: url("./fonts/proximanova_light.ttf") format("truetype"), url("./fonts/proximanova_light.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'ProximaNova-Reg';
  src: url("./fonts/ProximaNova-Reg.ttf") format("truetype"), url("./fonts/ProximaNova-Reg.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'proximanova-sbold';
  src: url("./fonts/proximanova-sbold.otf") format("otf");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'ProximaNova-Bold';
  src: url("./fonts/ProximaNova-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
html,
body {
  scroll-behavior: smooth;
  font-family: "Taviraj", serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 100%; }

body {
  opacity: 0; }

.no-js body,
.touch body {
  opacity: 1; }

/* ===== ScrollMagic Class ==============================================
   Author: Petr Tichy - ihatetomatoes.net
   ========================================================================== */
body {
  font-family: "Taviraj", serif; }

h1 {
  font-size: 20px;
  font-family: "Taviraj", serif;
  color: #000; }
  @media (min-width: 1361px) {
    h1 {
      font-size: 20px; } }
  @media (min-width: 1601px) {
    h1 {
      font-size: 30px; } }

h2 {
  font-size: 20px;
  font-family: "Taviraj", serif;
  margin-top: 40px;
  margin-bottom: 20px; }
  @media (min-width: 1441px) {
    h2 {
      font-size: 22px; } }

h3 {
  font-size: 18px;
  font-family: "Taviraj", serif;
  margin: 30px 0; }
  @media (min-width: 1441px) {
    h3 {
      font-size: 20px; } }

h4 {
  font-size: 16px;
  font-family: "ProximaNova-Bold";
  color: #000; }

a {
  color: #000;
  text-decoration: none;
  opacity: 1; }
  a:hover {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }

p {
  font-family: "proximanova_light";
  font-size: 16px;
  padding: 5px 0; }
  @media (min-width: 1601px) {
    p {
      font-size: 16px; } }

.light {
  font-family: "proximanova_light"; }

.font-14 {
  font-size: 14px; }

strong {
  font-family: "ProximaNova-Reg";
  font-weight: normal; }

.strong {
  font-family: "ProximaNova-Reg";
  font-weight: normal; }

.w-40 {
  min-width: 40%; }

[class^="col-"] {
  padding-right: 0;
  padding-left: 0;
  position: relative; }

.text-float-right {
  text-align: right; }

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px; }

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000; }

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff; }

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 16px;
  height: 16px;
  background: #000;
  position: absolute;
  top: 3px;
  left: 0px;
  border-radius: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; }

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0); }

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
header .logo-header {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  text-align: center;
  opacity: 0;
  display: inline-block;
  margin-top: 20px; }
  header .logo-header h1 {
    font-weight: 400;
    font-size: 21px;
    letter-spacing: 0.08em; }
header.scroll .logo-header {
  margin-top: 0; }

.start-text {
  width: 280px;
  height: 83px;
  overflow: hidden;
  z-index: 1000;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  font-size: 23px;
  color: #fff;
  top: 60%;
  opacity: 0.5; }

.trigger-main {
  opacity: 0;
  height: 0; }

.intro {
  width: 100vw;
  height: 100%;
  display: block; }
  @media (min-width: 768px) {
    .intro {
      display: flex; } }
  .intro .left-intro,
  .intro .right-intro {
    width: 100%;
    min-height: 400px;
    height: 45vh;
    position: relative; }
    @media (min-width: 768px) {
      .intro .left-intro,
      .intro .right-intro {
        width: 50%;
        height: 100%; } }

.loading .intro .left-intro #left-carousel {
  animation: fade-in 4s; }
.loading .intro .right-intro .intro-in {
  overflow: hidden; }
  .loading .intro .right-intro .intro-in #right-carousel .carousel-item::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    animation: height 4s;
    animation-delay: 3s;
    background-color: #fff; }
  .loading .intro .right-intro .intro-in h1 {
    opacity: 0;
    animation: fade-in1 5s;
    animation-delay: 2s; }

.scroll-logo {
  opacity: 0; }

.open-menu .galerry-intro-text strong {
  opacity: 0; }

.container-fluid {
  max-width: 1700px;
  margin: auto; }

.max-1400 {
  width: 100%;
  margin: auto; }
  @media (min-width: 1601px) {
    .max-1400 {
      max-width: 1400px; } }

.max-970 {
  width: 100%;
  margin: auto; }

.main {
  background: #fff;
  margin-top: 100px !important;
  padding: 0 40px;
  animation: fade 1.5s; }
  .main.publications {
    margin-top: 180px !important; }
  .main.main-parcour {
    margin-top: 20px !important; }

.menstions-legales a:hover {
  opacity: 0.6; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
.transp {
  background-color: transparent !important; }

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

.show {
  display: block !important; }

.hide {
  display: none !important;
  visibility: hidden; }

.opacity-0 {
  opacity: 0; }

.opacity-zero {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  opacity: 0; }
  @media (min-width: 576px) {
    .opacity-zero {
      opacity: 1; } }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

.absolute {
  position: relative !important; }

.pt-80 {
  padding-top: 20px; }
  @media (min-width: 992px) {
    .pt-80 {
      padding-top: 140px !important; } }
  @media (min-width: 1441px) {
    .pt-80 {
      padding-top: 180px !important; } }

.min-vh {
  min-height: 45vh;
  position: relative; }

.v-al {
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%; }

footer {
  background-color: white;
  text-align: center; }
  footer .container {
    font-size: 13px;
    font-family: "proximanova_light";
    margin: auto;
    text-align: center;
    width: 100%;
    padding: 30px; }
    @media (min-width: 576px) {
      footer .container {
        max-width: 1530px;
        margin: auto; } }
    @media (min-width: 992px) {
      footer .container {
        text-align: right; } }
    footer .container a {
      color: #222222;
      margin: 0 10px; }

/*     .loading {
        height: 100vh;
        position: fixed;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-color: #000;
        overflow: hidden;
        .loader {
            position: absolute;
            width: 100vw;
            height: 100%;
            overflow: hidden;
            z-index: 2000;
            animation: loader 2s;
            h1 {
                @include centerDivXY();
                font-size: 40px;
                opacity: 0;
                text-transform: uppercase;
                color: #fff;
                transition: top 2s;
                top:-200px;
            }

           
            &.start {
               h1 {
                   top:50%;
                   opacity: 1;
               } 
            }
        }
        .bgr-loader {
            background-color: #fff;
        }
    }
    @keyframes loader {
        0% {
            top:-200px;
            opacity: 0;
            transform: scale(3);
        }


        100% {
            top:50%;
            opacity: 1;
            transform: scale(1);
        }
    } */
header {
  padding-bottom: 10px; }
  header .container {
    position: relative;
    margin: 0;
    text-align: center; }
    @media (min-width: 576px) {
      header .container {
        max-width: 1530px;
        margin: auto; } }
  header .main-menu {
    position: relative;
    display: block;
    width: 100vw;
    text-align: center;
    z-index: 1000; }
    header .main-menu .menu-in {
      display: inline-block;
      margin: auto;
      margin-top: 25px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      header .main-menu .menu-in a {
        position: relative;
        font-family: "proximanova_light";
        font-size: 16px;
        padding: 5px 10px;
        margin: 0 10px;
        opacity: 0.7; }
        header .main-menu .menu-in a.active::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #000;
          opacity: 0.7; }
  header:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0px;
    background-color: transparent;
    z-index: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  header.scroll:before {
    background-color: #fff;
    height: 100%; }
  header.scroll .hamburger {
    top: 15px !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    header.scroll .hamburger .line {
      background-color: #000; }
    @media (min-width: 1441px) {
      header.scroll .hamburger {
        top: 20px; } }
  header.scroll #hamburger-1.is-active {
    opacity: 0.5; }
  header.scroll .main-menu .menu-in {
    margin-top: 15px; }

.hamburger {
  display: none;
  width: 38px;
  height: 25px;
  position: absolute;
  top: 15px;
  right: 20px;
  overflow: hidden;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .hamburger .line {
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
    width: 30px;
    height: 2px;
    background-color: #000;
    display: block;
    margin: 4px auto; }
    .hamburger .line:first-child {
      margin-top: 8px; }
  .hamburger:hover {
    cursor: pointer; }
    .hamburger:hover .line {
      animation: line 1.5s; }
      .hamburger:hover .line:last-child {
        animation-delay: 0.1s; }

.index .hamburger,
.visible-menu .hamburger {
  opacity: 1;
  background-color: #fff; }

@keyframes line {
  0% {
    transform: translate(0%, 0%); }
  50% {
    transform: translate(150%, 0%); }
  100% {
    transform: translate(0%, 0%); } }
@keyframes line1 {
  0% {
    width: 30px; }
  50% {
    width: 0px; }
  100% {
    width: 30px; } }
.header-white .hamburger .line {
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  background-color: #fff; }

.btn-close {
  border: 0px solid #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-x-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.854 2.146a.5.5 0 0 1 0 .708l-11 11a.5.5 0 0 1-.708-.708l11-11a.5.5 0 0 1 .708 0Z'/%3E%3Cpath fill-rule='evenodd' d='M2.146 2.146a.5.5 0 0 0 0 .708l11 11a.5.5 0 0 0 .708-.708l-11-11a.5.5 0 0 0-.708 0Z'/%3E%3C/svg%3E") !important;
  width: 20px !important;
  height: 20px !important;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  right: 50px !important;
  top: 25px !important;
  border-radius: 0 !important; }

.img-show {
  padding: 0 !important;
  margin: 0 !important; }
  .img-show img {
    margin-top: 3%;
    height: 90% !important;
    width: auto !important;
    position: relative !important; }

.btn-next::before {
  position: absolute;
  content: "" !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'%3E%3C/path%3E%3C/svg%3E") !important;
  width: 20px !important;
  height: 30px !important;
  background-size: 100% !important;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%; }

.btn-prev::before {
  position: absolute;
  content: "" !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") !important;
  width: 20px !important;
  height: 30px !important;
  background-size: 100% !important;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%; }

.img-caption {
  left: 0;
  background-color: #fff !important; }
  .img-caption::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff !important;
    opacity: 0.5;
    left: 0;
    top: 0px;
    z-index: -1; }

.container-fluid.gallery {
  width: 100%;
  max-width: 1650px;
  display: block;
  margin: 150px auto; }
.container-fluid .row,
.container-fluid .col {
  padding: 0 !important; }
.container-fluid .card {
  text-align: center;
  display: block;
  border: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  height: 100%; }
  .container-fluid .card .card-image {
    border: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    padding: 0; }
    .container-fluid .card .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .container-fluid .card .card-image:hover {
      opacity: 0.7;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      background-color: #e7ddd2; }
  .container-fluid .card.anime .card-image {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    animation: scale 1s; }

@keyframes scale {
  0% {
    transform: translate(0%, 150%);
    opacity: 0; }
  100% {
    transform: translate(0%, 0%);
    opacity: 1; } }
.serie-title {
  max-width: 1000px;
  margin: 0px auto 0 auto;
  padding: 0 20px;
  font-size: 20px;
  font-family: "Taviraj", serif;
  z-index: 1;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  animation: fade 3.5s; }

.scroll .serie-title {
  color: #000 !important;
  font-size: 16px;
  line-height: 13px;
  padding: 0 25px 5px 25px; }
.scroll .gallery-menu::after {
  background-color: #000 !important; }
.scroll .gallery-menu div a {
  padding: 3px 20px 5px 20px;
  font-size: 16px;
  color: #000 !important; }
  .scroll .gallery-menu div a::after {
    background-color: #000 !important; }
  .scroll .gallery-menu div a:hover::after, .scroll .gallery-menu div a.selected::after {
    width: 70%; }

.header-white .gallery-menu::after {
  background-color: #fff; }
.header-white .gallery-menu div a {
  color: #fff; }
  .header-white .gallery-menu div a::after {
    background-color: #fff; }
.header-white .serie-title {
  color: #fff; }

.slider-nav {
  display: none !important; }

@keyframes menu-line {
  0% {
    width: 0; }
  80% {
    width: 0; }
  100% {
    width: calc(100% - 310px); } }
.polaroids.gallery {
  width: 100%;
  max-width: 1650px;
  display: block;
  margin: 150px auto; }
.polaroids .row,
.polaroids .col {
  padding: 0 !important; }
.polaroids .row {
  border-left: 1px solid #d1d1d1;
  border-top: 1px solid #d1d1d1; }
.polaroids .card {
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  align-items: center;
  text-align: center;
  display: flex;
  border-radius: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  height: 100%; }
  .polaroids .card .card-image {
    display: block;
    margin: auto; }
    .polaroids .card .card-image img {
      width: 80%;
      height: 80%;
      object-fit: contain; }
  .polaroids .card.anime .card-image {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    animation: fadeIn 1s; }

@keyframes scale {
  0% {
    transform: translate(0%, 150%);
    opacity: 0; }
  100% {
    transform: translate(0%, 0%);
    opacity: 1; } }
.serie-title {
  max-width: 1000px;
  margin: 0px auto 0 auto;
  padding: 0 20px;
  font-size: 20px;
  font-family: "Taviraj", serif;
  z-index: 1;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  animation: fade 3.5s; }

.scroll .serie-title {
  color: #000 !important;
  font-size: 16px;
  line-height: 13px;
  padding: 0 25px 5px 25px; }
.scroll .gallery-menu::after {
  background-color: #000 !important; }
.scroll .gallery-menu div a {
  padding: 3px 20px 5px 20px;
  font-size: 16px;
  color: #000 !important; }
  .scroll .gallery-menu div a::after {
    background-color: #000 !important; }
  .scroll .gallery-menu div a:hover::after, .scroll .gallery-menu div a.selected::after {
    width: 70%; }

.header-white .gallery-menu::after {
  background-color: #fff; }
.header-white .gallery-menu div a {
  color: #fff; }
  .header-white .gallery-menu div a::after {
    background-color: #fff; }
.header-white .serie-title {
  color: #fff; }

.slider-nav {
  display: none !important; }

@keyframes menu-line {
  0% {
    width: 0; }
  80% {
    width: 0; }
  100% {
    width: calc(100% - 310px); } }
.peintures.gallery {
  width: 100%;
  max-width: 1650px;
  display: block;
  margin: 150px auto; }
.peintures .row,
.peintures .col {
  padding: 0 !important; }
.peintures .row {
  border-left: 1px solid #d1d1d1;
  border-top: 1px solid #d1d1d1; }
.peintures .card {
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  align-items: center;
  text-align: center;
  display: flex;
  border-radius: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  height: 430px; }
  .peintures .card .card-image {
    display: block;
    margin: auto;
    border-radius: 0; }
    .peintures .card .card-image img {
      width: 80%;
      height: 80%;
      object-fit: contain; }
  .peintures .card.anime .card-image {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    animation: fadeIn 1s; }

@keyframes scale {
  0% {
    transform: translate(0%, 150%);
    opacity: 0; }
  100% {
    transform: translate(0%, 0%);
    opacity: 1; } }
.serie-title {
  max-width: 1000px;
  margin: 0px auto 0 auto;
  padding: 0 20px;
  font-size: 20px;
  font-family: "Taviraj", serif;
  z-index: 1;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  animation: fade 3.5s; }

.scroll .serie-title {
  color: #000 !important;
  font-size: 16px;
  line-height: 13px;
  padding: 0 25px 5px 25px; }
.scroll .gallery-menu::after {
  background-color: #000 !important; }
.scroll .gallery-menu div a {
  padding: 3px 20px 5px 20px;
  font-size: 16px;
  color: #000 !important; }
  .scroll .gallery-menu div a::after {
    background-color: #000 !important; }
  .scroll .gallery-menu div a:hover::after, .scroll .gallery-menu div a.selected::after {
    width: 70%; }

.header-white .gallery-menu::after {
  background-color: #fff; }
.header-white .gallery-menu div a {
  color: #fff; }
  .header-white .gallery-menu div a::after {
    background-color: #fff; }
.header-white .serie-title {
  color: #fff; }

.slider-nav {
  display: none !important; }

@keyframes menu-line {
  0% {
    width: 0; }
  80% {
    width: 0; }
  100% {
    width: calc(100% - 310px); } }
.parcours.main-text {
  width: 100%;
  max-width: 950px;
  display: block;
  margin: 250px auto !important; }
.parcours p {
  line-height: 30px; }
  .parcours p strong {
    font-family: "ProximaNova-Bold"; }
.parcours h1 {
  font-weight: 400;
  font-size: 21px;
  margin: 120px auto 30px;
  text-align: center;
  letter-spacing: 0.08em; }

.contact.main-text {
  width: 100%;
  max-width: 950px;
  display: block;
  margin: 250px auto !important; }
.contact p {
  line-height: 30px;
  text-align: center; }
  .contact p strong {
    font-family: "ProximaNova-Bold"; }

.mentions.main-text {
  width: 100%;
  max-width: 950px;
  display: block;
  margin: 250px auto !important; }
.mentions p {
  line-height: 30px; }
  .mentions p strong {
    font-family: "ProximaNova-Bold"; }
.mentions h1 {
  font-weight: 400;
  font-size: 21px;
  margin: 120px auto 30px;
  text-align: center;
  letter-spacing: 0.08em; }

.cookie {
  z-index: 20;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); }
  .cookie .cookie-info {
    padding: 25px 20px 25px 20px;
    width: calc(100% - 40px);
    background-color: #fff;
    position: absolute;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    max-width: 380px; }
    .cookie .cookie-info p {
      font-size: 11px;
      line-height: 18px;
      font-family: "Taviraj", serif;
      word-spacing: 0.1em;
      color: #000;
      text-align: justify; }
    .cookie .cookie-info button {
      font-size: 13px;
      padding: 10px;
      display: block;
      width: 100%;
      background-color: #000;
      color: #fff;
      border: 0;
      font-weight: 500; }
    @media (min-width: 768px) {
      .cookie .cookie-info {
        max-width: 380px; } }
  .cookie .btn-link {
    position: relative;
    margin: auto;
    display: block;
    text-align: center;
    font-size: 12px;
    color: black;
    margin-top: 20px;
    font-weight: 700;
    text-decoration: none; }
    .cookie .btn-link span {
      position: relative;
      padding-bottom: 3px;
      word-spacing: 0.1em; }
      .cookie .btn-link span::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #000; }

.btn {
  border-radius: 0;
  font-size: 12px;
  min-width: 110px; }
  @media (min-width: 768px) {
    .btn {
      min-width: 150px; } }

.cookie-btn {
  width: calc(100% - 40px);
  text-align: center;
  z-index: 11;
  position: relative; }
  .cookie-btn a {
    color: #000;
    font-size: 11px;
    line-height: 18px; }
  @media (min-width: 768px) {
    .cookie-btn {
      position: absolute;
      bottom: 20px;
      left: 20px;
      text-align: left;
      width: auto;
      bottom: 50px;
      left: 50px; }
      .cookie-btn a {
        color: #fff;
        font-size: 11px;
        line-height: 18px; } }

.btn-retour {
  position: fixed;
  font-family: "proximanova_light";
  top: 90%;
  left: 40px;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 16px;
  padding: 5px 13px 5px 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor'  viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 5px center;
  z-index: 1000;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .btn-retour:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E"); }

.plus {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 12px;
  right: 0;
  overflow: hidden;
  z-index: 100;
  cursor: pointer; }
  .plus .line {
    width: 20px;
    height: 1px;
    background-color: #000;
    display: block;
    margin: 4px auto; }
    .plus .line:first-child {
      margin-top: 10px; }
    .plus .line:nth-child(2) {
      width: 1px;
      height: 20px;
      margin-left: 12px;
      margin-top: -14px;
      opacity: 1;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      /* margin-top: -1px;
      -webkit-transform: translateY(-6x) rotate(90deg);
      -ms-transform: translateY(-6px) rotate(90deg);
      -o-transform: translateY(-6px) rotate(90deg);
      transform: translateY(-6px) rotate(90deg); */ }
  .plus.minus .line:nth-child(2) {
    height: 0;
    margin-top: -5px; }

.flag-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  background-size: auto 16px; }

.flag-icon-at {
  background-image: url("../images/flags/at.svg"); }

.flag-icon-be {
  background-image: url("../images/flags/be.svg"); }

.flag-icon-bg {
  background-image: url("../images/flags/bg.svg"); }

.flag-icon-ca {
  background-image: url("../images/flags/ca.svg"); }

.flag-icon-cz {
  background-image: url("../images/flags/cz.svg"); }

.flag-icon-de {
  background-image: url("../images/flags/de.svg"); }

.flag-icon-dk {
  background-image: url("../images/flags/dk.svg"); }

.flag-icon-ee {
  background-image: url("../images/flags/ee.svg"); }

.flag-icon-es {
  background-image: url("../images/flags/es.svg"); }

.flag-icon-fi {
  background-image: url("../images/flags/fi.svg"); }

.flag-icon-fr {
  background-image: url("../images/flags/fr.svg"); }

.flag-icon-gb {
  background-image: url("../images/flags/gb.svg"); }

.flag-icon-gr {
  background-image: url("../images/flags/gr.svg"); }

.flag-icon-hr {
  background-image: url("../images/flags/hr.svg"); }

.flag-icon-hu {
  background-image: url("../images/flags/hu.svg"); }

.flag-icon-ie {
  background-image: url("../images/flags/ie.svg"); }

.flag-icon-it {
  background-image: url("../images/flags/it.svg"); }

.flag-icon-lu {
  background-image: url("../images/flags/lu.svg"); }

.flag-icon-lv {
  background-image: url("../images/flags/lv.svg"); }

.flag-icon-nl {
  background-image: url("../images/flags/nl.svg"); }

.flag-icon-pl {
  background-image: url("../images/flags/pl.svg"); }

.flag-icon-pt {
  background-image: url("../images/flags/pt.svg"); }

.flag-icon-ro {
  background-image: url("../images/flags/ro.svg"); }

.flag-icon-se {
  background-image: url("../images/flags/se.svg"); }

.flag-icon-si {
  background-image: url("../images/flags/si.svg"); }

.flag-icon-sk {
  background-image: url("../images/flags/sk.svg"); }

.flag-icon-us {
  background-image: url("../images/flags/us.svg"); }

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .slide {
    display: none; } }

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