main{
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}

#left,
#right{
   grid-column: span 1;
}

#left{
    padding-left: var(--gutter-width);
}

#right{
    padding: 0px;
    position: fixed;
    width: calc(50% - 55px);
    right: var(--gutter-width);
}

.main-infos > div {
    margin-bottom: calc(var(--gutter-width)*2);
}

#left > .containers{
    margin-top: var(--gutter-width);
    padding-bottom: calc(var(--gutter-width)*2);
    border-bottom: 1px solid black;
}

#left > .containers > h1{
    margin-bottom: calc(var(--gutter-width)*2);
}

#left > #download{
    padding-bottom: var(--gutter-width);
    border: 0;
}

#left > #infos{
  grid-template-columns: 1fr 1fr;
  grid-column-gap: var(--gutter-width);
  display: grid;
}

#left > #infos > h1{
  grid-column: span 2;
}

#left > #infos > p{
  grid-column: span 1;
}

#left div:last-child{
  border: none;
}

img{
    width: 100%;
}

/* SLIDER */

.slideshow-container {
	position: relative;
	display: block;
	text-align: center;
}

/* Hide the images by default */

.mySlides {
  display: none;
  width: 100%;
}

.container-image{
	margin-bottom: 1rem;
  height: 70vh;
}

.mySlides > .container-image > picture > img{
	  object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.prev, .next{
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
  height: 94%;
  width: 50%;
	color: white;
	user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 

}

.prev{
  left: 0;
}

#bullets{
	text-align: right;
	right: 0;
}

.dot{
  cursor: pointer;
  display: inline-block;
}

.fade{
  animation-name: fade;
  animation-duration: 0.2s;
}

@keyframes fade{
  from {opacity: .4}
  to {opacity: 1}
}

.credits{
  display: inline-block;
  text-align: center;
}

.credits p:last-child{
  text-align: center;
  position: initial;
}

#slider-mobile{
  display: none;
}

@media screen and (max-width: 780px){
  main{
    padding-top: var(--gutter-width);
  }
  #slider-mobile{
    display: block;
  }
  #left{
    grid-column: 1/span 2;
    padding-right: var(--gutter-width);
  }

  .main-infos > div {
    margin-bottom: var(--gutter-width);
  }

  #slideshow{
    margin: calc(var(--gutter-width)*2) 0;
  }

  .container-image{
    height: 350px;
  }

  #right{
    display: none;
  }

  #left > #infos > p{
    grid-column: span 2;
  }

  #left > #infos >p:first-of-type{
    margin-bottom: 1rem;
  }
}