*{
  box-sizing: border-box;
}

body{
  font-family: 'Rubik-Light';
  background-color: #f1f1f1;
}

.menu{
  padding: 30px 40px 40px 40px;
  text-align: justify;
  z-index: 1000000;
  font-size: 20px;
}

.menu div{
  display: inline-block;
  width: 50%;
}

.menu div:last-child{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: olive;
  margin-left: calc( 50% - 40px);
  transition: all .25s ease-in-out;
}

.menu div:last-child:hover{
  color:white;
  cursor: pointer;
  transform: scale(1.2);
  background-color: blue;
}

.menu div:last-child p{
  width:100%;
  padding-top:50%;
  padding-bottom:50%;
  line-height:1em;
  margin-top:-0.5em;
  text-align:center;
  text-decoration:none;
  color: white;
}

.display-container{
  width: 70%;
  margin-left: 15%;
  position: relative;
  z-index: 1;
  font-size: 16px;
  transition: all .5s ease-in-out;
}

.display-container:hover{
  transform: scale(1.065);
}

/*
img{
  border-radius: 0px 0px 25px 0px;
}
*/

.slide p{
  padding-top: 10px;
}

button {
  border: none;
  display: inline-block;
  overflow: hidden;
}

.left, .right {
  width: 50%;
  height: 93%;
  opacity: 0;
}

.left {
  position: absolute;
  top: 46%;
  left: 0%;
  transform: translate(0%,-50%);
  -ms-transform: translate(-0%,-50%);
  cursor: w-resize;
}

.right {
  position: absolute;
  top: 46%;
  right: 0%;
  transform: translate(0%,-50%);
  -ms-transform: translate(0%,-50%);
  cursor: e-resize;
}

.mobile{
  display: none;
}

.infos p{
  margin-bottom: 15px;
}

a, a:hover, a:visited{
  text-decoration: none;
  color: black;
  transition: all .1s ease-in-out;
}

a:hover{
  color: blue;
}

.infos{
  padding-left: 40px;
}

.contact{
  margin-top: 40px;
}


/*MOBILE*/

@media all and (max-device-width: 480px) {
  body{
    line-height: 20px;
  }
  .menu {
    padding: 20px;
  }

  .display-container {
    width: calc( 100% - 40px );
    margin: 20px 0px 0px 20px;
  }

  .infos {
    margin-top: 20px;
    padding-left: 20px;
  }

  .mobile{
    display: block;
    position: fixed;
    bottom: 20px;
    font-size: 14px;
  }
}
