:root {
  --main-color: rgb(9, 34, 150);
}

*, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Baskerville';
  src: url('../fonts/Baskerville.ttf');
}

html {
  font-size: 13px;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
 color: var(--main-color);
}

p {
  line-height: 1.5rem;
}

.material-icons {
  font-size: 60px !important;
}

.bold {
  font-weight: bold;
}

/**********/
/* INDEX **/
/**********/
.header-index__title {
  font-family: 'Baskerville', serif;
  color: var(--main-color);
  float: left;
  position: absolute;
  margin: 0;
  padding-left: 40px;
  padding-top: 40px;
  font-size: 20px;
  z-index: 1;
}

.header-index__title--atelier {
  font-weight: 400;
}

.header-index__ariane {
  position: absolute;
  left: -10000px;
}

.hero-index__img {
  margin: 0;
  z-index: 0;
}

.hero-index > div {
  animation: imageAnimation 27s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 0;
}

.hero-index > div:nth-child(1) {
  background-image: url('../img/accueil/ABP-01.jpg');
}

.hero-index > div:nth-child(2) {
  animation-delay: 3s;
  background-image: url('../img/accueil/ABP-02.jpg');
}

.hero-index > div:nth-child(3) {
	animation-delay: 6s;
	background-image: url('../img/accueil/ABP-03.jpg');
}

.hero-index > div:nth-child(4) {
	animation-delay: 9s;
	background-image: url('../img/accueil/ABP-04.jpg');
}

.hero-index > div:nth-child(5) {
	animation-delay: 12s;
	background-image: url('../img/accueil/ABP-05.jpg');
}

.hero-index > div:nth-child(6) {
	animation-delay: 15s;
	background-image: url('../img/accueil/ABP-06.jpg');
}

.hero-index > div:nth-child(7) {
	animation-delay: 18s;
	background-image: url('../img/accueil/ABP-07.jpg');
}

.hero-index > div:nth-child(8) {
	animation-delay: 21s;
	background-image: url('../img/accueil/ABP-08.jpg');
}

.hero-index > div:nth-child(9) {
	animation-delay: 24s;
	background-image: url('../img/accueil/ABP-09.jpg');
}

@keyframes
imageAnimation {  0% {
  animation-timing-function: ease-in;
  opacity: 0;
}
  1% {
  animation-timing-function: ease-out;
  opacity: 1;
}
  17% {
  opacity: 1
}
  25% {
  opacity: 0
}
  100% {
  opacity: 0
}
}

.footer-index {
  font-family: 'Baskerville', serif;
  color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 40px;
  padding-left: 40px;
  z-index: 2;
}

.footer-index__title {
  font-size: 20px;
 color: var(--main-color);
}

.footer-index__infos {
  font-size: 14px;
  line-height: 0.3rem;
}

/************/
/** HEADER **/
/** FOOTER **/
/************/
.menu__topbar__left h1 {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 20px;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding-left: 40px;
  padding-top: 40px;
}

.menu__topbar__right > a {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 20px;
  position: fixed;
  top: 0;
  right: 0;
  padding-right: 40px;
  padding-top: 40px;
}

.menu__bottombar__left > a {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 20px;
  padding-left: 40px;
  padding-bottom: 40px;
  position: fixed;
  bottom: 0;
  left: 0;
}

.menu__bottombar__right > a {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 20px;
  padding-right: 40px;
  padding-bottom: 40px;
  position: fixed;
  bottom: 0;
  right: 0;
}

/**********/
/** PAGE **/
/** MENU **/
/**********/
.menu {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.menu__links {
  color: black;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 4rem;
  display: block;
}

.menu__links:hover {
 color: var(--main-color);
}

#indisponible:hover {
  color: lightgray;
}

#autolien-menu {
  cursor: pointer;
}

/*************/
/** OVERLAY **/
/*** MENU ****/
/*************/
.menu-overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
}

.menu-overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.menu-overlay a {
  color: black;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 4rem;
  display: block;
}

.menu-overlay a:hover, .overlay a:focus {
 color: var(--main-color);
}

.menu-overlay .closebtn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 60px;
}

.overlaybtn {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 20px;
  position: fixed;
  top: 0;
  right: 0;
  padding-right: 40px;
  padding-top: 40px;
  cursor: pointer;
  margin: 0
}



/**************/
/* CONTAINERS */
/**************/
.main {
  margin: auto;
  max-width: 1000px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.propos-container {
  padding-left: 40px;
  padding-right: 40px;
}

.makingof-container {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 700px;
  margin: auto;
}

.prev-next {
  text-align: center;
  font-size: 60px;
 color: var(--main-color);
  margin-top: 60px;
  line-height: 0;
}

/**************/
/*** PAGES ****/
/* CATEGORIES */
/**************/
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  flex: 33.33333333%;
  max-width: 33.33333333%;
  padding: 0 20px;
}

.column-2 {
  flex: 50%;
  max-width: 50%;
  padding: 0 20px;
}

.largeimg img {
  width: 100%;
  padding: 0 20px;
  margin-top: 60px;
}

.column-unequal-left {
  flex: 33.33333333%;
  max-width: 33.33333333%;
  padding: 0 20px;
}

.column-unequal-right {
  flex: 66.66666667%;
  max-width: 66.66666667%;
  padding: 0 20px;
}

.imgcontainer {
  position: relative;
  margin-top: 60px;
}

.slidercontainer {
  position: relative;
  margin-top: 60px;
  padding-top: 60px;
}

#firstslider {
  margin-top: 60px;
  padding-top: 0px;
}

.column img {
  width: 100%;
  vertical-align: middle;
}

.column-2 img {
  width: 100%;
  vertical-align: middle;
}

.column-unequal-left img {
  width: 100%;
  vertical-align: middle;
}

.column-unequal-right img {
  width: 100%;
  vertical-align: middle;
}

/***************/
/*** IMAGES ****/
/* SPECIFIQUES */
/***************/
#row-car {
  padding: 0;
}

#col-car-1, #col-car-2 {
  padding: 0;
}

#col-car-1 {
  padding-right: 10px;
  flex: 40%;
  max-width: 40%;
}

#col-car-2 {
  padding-left: 10px;
  flex: 60%;
  max-width: 60%;
}

#aubervilliers {
  color: lightgray;
}

/***********/
/* OVERLAY */
/** IMAGES */
/***********/
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #FFF;
}

.imgcontainer {
  position: relative;
}

.slidercontainer {
  position: relative;
}

.imgcontainer:hover .overlay {
  opacity: 1;
}

.slidercontainer:hover .overlay {
  opacity: 1;
}

.textoverlay {
  color: black;
  font-size: 18px;
  font-family: Roboto, sans-serif;
  position: absolute;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/***********/
/** PAGES **/
/* PROJETS */
/***********/
.text-prez-projet {
  margin-top: 60px;
}

.h1-projets {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
}

.h2-projets {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 35px;
}

.text-prez-projet p {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  line-height: 0.5rem;
}

.text-projets {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

.first-text {
  padding-top: 40px;
}

table {
  table-layout: fixed;
  width: 350px;
}

tr {
  line-height: 1.1rem;
}

.text-prez-projet td {
  font-family: 'Roboto', sans-serif;
  vertical-align: top;
}

.td-40 {
  width: 40%;
}

.td-60 {
  width: 60%;
}

.td-bold {
  font-weight: 700;
}

/************/
/*** PAGE ***/
/* A PROPOS */
/************/
.propos__titles {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: bold;
  padding-top: 60px;
  padding-bottom: 40px;
  margin: 0;
}

.propos-text-and-photos {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

.text-propos {
  font-family: 'Roboto', sans-serif;
}

.text-first {
  margin-top: 0;
}

.image-af__container {
  width: 100%;
}

.image-af__img {
  width: 100%;
}

.propos__list {
  list-style: none;
  padding-left: 0px;
  margin: 0;
}

.propos__list-nombre {
  padding-left: 0px;
}

.propos__list li {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5rem;
}

.propos__contact {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5rem;
  margin: 0;
}

.propos__merci {
  text-align: right;
}

.propos__merci__title {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 21px;
  font-weight: normal;
  padding-top: 40px;
  padding-bottom: 0px;
  margin: 0;
}

.propos__merci--more {
  font-family: 'Baskerville', serif;
 color: var(--main-color);
  font-size: 29px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
}

.propos__merci__morecontent {
  display: none;
  padding-top: 20px;
  overflow: visible;
}

.propos__merci__morecontent p {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5rem;
  margin:0;
}
/*************/
/*** PAGE ****/
/* MAKING OF */
/*************/
.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6, .mySlides7, .mySlides8 {display: none}
img {vertical-align: middle;}

.slideshow-container {
  position: relative;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
 color: var(--main-color);
}

.makingoffav:hover {
  background-image: url(img/makingof/fav/FAV-MO-04.jpg);
}

/**************/
/* RESPONSIVE */
/*** IMAGES ***/
/**************/
@media screen and (max-width: 1200px) and (min-width: 960px) {
  #hut-menu {
    height: 319px;
    object-fit: cover;
  }

  #mad-menu {
    height: 319px;
    object-fit: cover;
  }

  #fav-menu {
    height: 324px;
    object-fit: cover;
  }

  #car-menu {
    height: 324px;
    object-fit: cover;
  }

  #mad06 {
    margin-top: 29px;
  }

  #mad08 {
    padding-right: 76px;
    margin-top: 29px;
  }

  #hut03 {
    margin-top: 30px;
  }

  #fav07 {
    margin-top: 222px;
  }

  #fav08 {
    margin-top: 186px;
  }

  #fav09 {
    padding-right: 110px;
  }

  #car05 {
    height: 350px;
    object-fit: cover;
  }

  #car06 {
    height: 350px;
    object-fit: cover;
  }

  #car07 {
    margin-top: 18px;
  }

  #car10 {
    height: 158px;
    object-fit: cover;
  }

  #car11 {
    height: 158px;
    object-fit: cover;
  }

  #rad03 {
    padding: 0 65px;
  }

  #jul02 {
    height: 628px;
    object-fit: cover;
  }

  #jul09 {
    padding: 77px 30px 0px 30px
  }

  #jul11 {
    margin-top: 30px;
  }

  #jul14 {
    height: 584px;
    object-fit: cover;
  }

  #jul17 {
    padding: 72px 25px 0px 25px
  }

  #jul20 {
    margin-top: 228px;
  }

  #rich07 {
    padding: 65px 30px 0px 0px;
  }

  #rich13 {
    margin-top: 118px;
  }

  #verp {
    margin-top: 30px;
  }

  #ver04 {
    margin-top: 307px;
  }

  #ver05 {
    padding-top: 30px;
    padding-right: 30px;
    margin-top: 317px;
  }

  #ver09 {
    margin-top: 174px;
  }

  #rdb06 {
    padding: 67px 30px 0px 0px;
  }

  #rdb08 {
    margin-top: 30px;
  }

  #font06 {
    padding: 60px 35px 0px 0px;
  }

  #font11 {
    margin-top: 53px;
  }

  #lev02 {
    padding-right: 100px;
  }

  #lev04 {
    margin-top: 53px;
  }

  #lev07 {
    margin-top: 120px;
  }

  #lev08 {
    margin-top: 125px;
  }

  #duc02 {
    margin-top: -37px;
  }

  #duc05 {
    margin-top: -57px;
  }
}

@media screen and (max-width: 1400px) and (min-width: 1200px) {
  #hut-menu {
    height: 369px;
    object-fit: cover;
  }

  #mad-menu {
    height: 369px;
    object-fit: cover;
  }

  #fav-menu {
    height: 370px;
    object-fit: cover;
  }

  #car-menu {
    height: 370px;
    object-fit: cover;
  }

  #mad06 {
    margin-top: 27px;
  }

  #mad08 {
    padding-right: 68px;
    margin-top: 43px;
  }

  #hut03 {
    margin-top: 30px;
  }

  #fav07 {
    margin-top: 238px;
  }

  #fav08 {
    margin-top: 196px;
  }

  #fav09 {
    padding-right: 135px;
  }

  #car05 {
    height: 400px;
    object-fit: cover;
  }

  #car06 {
    height: 400px;
    object-fit: cover;
  }

  #car07 {
    margin-top: 60px;
  }

  #car10 {
    height: 180px;
    object-fit: cover;
  }

  #car11 {
    height: 180px;
    object-fit: cover;
  }

  #rad03 {
    padding: 0 65px;
  }

  #jul02 {
    height: 717px;
    object-fit: cover;
  }

  #jul09 {
    padding: 77px 30px 0px 30px
  }

  #jul11 {
    margin-top: 17px;
    padding-right: 20px;
  }

  #jul14 {
    height: 672px;
    object-fit: cover;
  }

  #jul17 {
    padding: 72px 25px 0px 25px
  }

  #jul20 {
    margin-top: 251px;
  }

  #rich07 {
    padding: 60px 30px 0px 0px;
  }

  #rich13 {
    margin-top: 129px;
  }

  #verp {
    margin-top: 30px;
  }

  #ver04 {
    margin-top: 166px;
  }

  #ver05 {
    padding-top: 30px;
    padding-right: 30px;
    margin-top: 176px;
  }

  #ver09 {
    margin-top: 194px;
  }

  #rdb06 {
    padding: 75px 40px 0px 0px;
  }

  #rdb08 {
    margin-top: 30px;
    padding-right: 17px;
  }

  #font06 {
    padding: 65px 45px 0px 0px;
  }

  #font11 {
    margin-top: 53px;
  }

  #lev02 {
    padding-right: 100px;
  }

  #lev04 {
    margin-top: 53px;
  }

  #lev07 {
    margin-top: 130px;
  }

  #lev08 {
    margin-top: 131px;
  }

  #duc02 {
    margin-top: 46px;
  }

  #duc05 {
    margin-top: 47px;
  }
}

@media screen and (max-width: 1800px) and (min-width: 1400px) {
  #hut-menu {
    height: 469px;
    object-fit: cover;
  }

  #mad-menu {
    height: 469px;
    object-fit: cover;
  }

  #fav-menu {
    height: 463px;
    object-fit: cover;
  }

  #car-menu {
    height: 463px;
    object-fit: cover;
  }

  #mad06 {
    margin-top: 24px;
  }

  #mad08 {
    padding-right: 45px;
    margin-top: 44px;
  }

  #hut03 {
    margin-top: 30px;
  }

  #fav07 {
    margin-top: 277px;
  }

  #fav08 {
    margin-top: 237px;
  }

  #fav09 {
    padding-right: 165px;
  }

  #car05 {
    height: 500px;
    object-fit: cover;
  }

  #car06 {
    height: 500px;
    object-fit: cover;
  }

  #car07 {
    margin-top: 166px;
  }

  #car10 {
    height: 228px;
    object-fit: cover;
  }

  #car11 {
    height: 228px;
    object-fit: cover;
  }

  #rad03 {
    padding: 0 65px;
  }

  #jul02 {
    height: 894px;
    object-fit: cover;
  }

  #jul09 {
    padding: 77px 30px 0px 30px
  }

  #jul11 {
    margin-top: 199px;
  }

  #jul14 {
    height: 850px;
    object-fit: cover;
  }

  #jul17 {
    padding: 72px 25px 0px 25px
  }

  #jul20 {
    margin-top: 295px;
  }

  #rich07 {
    padding: 65px 30px 0px 0px;
  }

  #rich13 {
    margin-top: 152px;
  }

  #verp {
    margin-top: 30px;
  }

  #ver05 {
    padding-top: 39px;
    padding-right: 30px;
  }

  #ver09 {
    margin-top: 232px;
  }

  #rdb06 {
    padding: 90px 50px 0px 0px;
  }

  #rdb08 {
    margin-top: 184px;
  }

  #font06 {
    padding: 70px 45px 0px 0px;
  }

  #font11 {
    margin-top: 53px;
  }

  #lev02 {
    padding-right: 100px;
  }

  #lev04 {
    margin-top: 53px;
  }

  #lev07 {
    margin-top: 145px;
  }

  #lev08 {
    margin-top: 141px;
  }

  #env14 {
    margin-top: 38px;
  }

  #duc02 {
    margin-top: 174px;
  }

  #duc05 {
    margin-top: 175px;
  }
}

@media screen and (min-width: 1800px) {
  #hut-menu {
    height: 619px;
    object-fit: cover;
  }

  #mad-menu {
    height: 619px;
    object-fit: cover;
  }

  #fav-menu {
    height: 601px;
    object-fit: cover;
  }

  #car-menu {
    height: 601px;
    object-fit: cover;
  }

  #mad06 {
    margin-top: 19px;
  }

  #mad08 {
    padding-right: 42px;
  }

  #hut03 {
    margin-top: 69px;
  }

  #fav07 {
    margin-top: 320px;
  }

  #fav08 {
    margin-top: 240px;
  }

  #fav09 {
    padding-right: 210px;
  }

  #car05 {
    height: 650px;
    object-fit: cover;
  }

  #car06 {
    height: 650px;
    object-fit: cover;
  }

  #car07 {
    margin-top: 209px;
  }

  #car10 {
    height: 298px;
    object-fit: cover;
  }

  #car11 {
    height: 298px;
    object-fit: cover;
  }

  #rad03 {
    padding: 0 65px;
  }

  #jul02 {
    height: 1161px;
    object-fit: cover;
  }

  #jul09 {
    padding: 88px 30px 0px 30px
  }

  #jul11 {
    margin-top: 331px;
  }

  #jul14 {
    height: 1161px;
    object-fit: cover;
  }

  #jul17 {
    padding: 85px 25px 0px 25px
  }

  #jul20 {
    margin-top: 362px;
  }

  #rich07 {
    padding: 70px 30px 0px 0px;
  }

  #rich13 {
    margin-top: 190px;
  }

  #verp {
    margin-top: 30px;
  }

  #ver05 {
    padding-top: 40px;
    padding-right: 30px;
  }

  #ver09 {
    margin-top: 300px;
  }

  #rdb06 {
    padding: 65px 30px 0px 0px;
  }

  #rdb08 {
    margin-top: 331px;
  }

  #font06 {
    padding: 100px 70px 0px 0px;
  }

  #font11 {
    margin-top: 53px;
  }

  #lev02 {
    padding-right: 100px;
  }

  #lev04 {
    margin-top: 53px;
  }

  #lev07 {
    margin-top: 170px;
  }

  #lev08 {
    margin-top: 160px;
  }

  #env14 {
    margin-top: 198px;
  }

  #duc02 {
    margin-top: 304px;
  }

  #duc05 {
    margin-top: 305px;
  }
}

/**************/
/* RESPONSIVE */
/** COLONNES **/
/**************/
@media screen and (max-width: 960px) {
  .column {
    flex: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .column-2 {
    flex: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .column-unequal-left {
    flex: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .column-unequal-right {
    flex: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  #col-car-1, #col-car-2 {
    flex: 100%;
    max-width: 100%;
    padding: 0;
  }

  #col-car-1 {
    padding-right: 0px;
  }

  #col-car-2 {
    padding-left: 0px;
  }

  .row {
    padding: 0 10px;
  }

  .menu__topbar__left h1 {
    padding-left: 20px;
  }

  .overlaybtn {
    padding-right: 20px;
  }

  .imgcontainer {
    margin-top: 20px;
  }

  .slidercontainer {
    margin-top: 20px;
  }

  .main {
    padding-top: 50px;
    padding-bottom: 0px;
  }

  .propos-container {
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .makingof-container {
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #propos__titles--first {
    padding-top: 20px;
  }

  .menu__topbar__right-menu a {
    padding-right: 20px;
  }

  .menu__bottombar__left a {
    padding-left: 20px;
  }

  .menu__bottombar__right a {
    padding-right: 20px;
  }

  .text-prez-projet {
    margin-top: 0px;
    margin-bottom: 30px
  }

  .first-text {
    padding-top: 20px;
  }

  .largeimg img {
    margin-top: 20px;
    padding: 0px 10px;
  }
}

/**************/
/* RESPONSIVE */
/*** ECRANS ***/
/**************/
@media screen and (max-width: 960px) {
  html {
    font-size: 14px;
  }

  .propos-text-and-photos {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar {
    margin-bottom: 40px;
  }

  .prev-next {
    margin-top: 20px;
    line-height: 0;
  }

  .bottombar {
    position: relative;
    bottom: 0;
    height: 85px;
  }

  .menu__bottombar__left a {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 20px;
  }

  .menu__bottombar__right a {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 20px;
  }

  table {
    table-layout: fixed;
    width: 100%;
  }

  .menu__topbar__left h1 {
    position: absolute;
  }

  .overlaybtn {
    position: absolute;
  }

  .header-index h1 {
    padding-left: 20px;
  }

  .footer-index {
    padding-left: 20px;
  }
}

@media screen and (min-width: 960px) {
  .main {
    max-width: 750px;
  }
}

@media screen and (min-width: 1200px) {
  .main {
    max-width: 850px;
  }
}

@media screen and (min-width: 1400px) {
  .main {
    max-width: 1050px;
  }

  .makingof-container {
    max-width: 800px;
    }
}

@media screen and (min-width: 1800px) {
  html {
    font-size: 16px;
  }

  .main {
    max-width: 1400px;
  }

  table {
    table-layout: fixed;
    width: 500px;
  }

  .td-40 {
    width: 30%;
  }

  .td-60 {
    width: 70%;
  }

  .makingof-container {
  max-width: 1100px;
  }
}

/***********/
/* OVERLAY */
/** IMAGES */
/***********/
.overlay-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #FFF;
}

.slidercontainer {
  position: relative;
}

.slidercontainer:hover .overlay-slide {
  opacity: 1;
}

.textoverlay-slide {
  color: black;
  font-size: 18px;
  font-family: Roboto, sans-serif;
  position: absolute;
  text-transform: uppercase;
  font-weight: bold;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}