/*Bloc de gauche*/
.side-container{
    position: absolute;
    width: 300px;
    height: 130px;
}

/*Flèche retour*/
.back-a{
    display: block;
    width: 150px;
    height: 30px;
    margin: auto;
    padding-right: 10px;
    font-size: 28px;
    font-family: 'Montserrat';
}

/*Diaporama*/
.container-diapo{
    height: 400px;
    width: calc(30% - 40px);
    margin: 20px auto;
}

.diapo{
    /*width: 1200px;*/
    margin: auto;
    display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   align-content: center;
   height: 100%;
   width: 100%;
    max-height: 800px;
}

.container-img{
  position: relative;
  display: inline-block;
}

.container-diapo{
    position: relative;
}

.img-diapo{
    max-width: 100%;
    object-fit: contain;
    width: 100%;
    max-height: 675px;
    height: auto;
    z-index: 1;
}

.img-title{
    position: absolute;
    z-index: 2;
    top: 10px;
    font-size: 30px;
    font-weight: 500;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    padding-right: 20px;
    background-color:white;
    opacity: 50%;
}

.container-btn-diapo{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.btn-diapo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-style: none;
    padding: 10px;
    margin-left: 3px;
    margin-right: 3px;
    border-color: black;
}

.btn-diapo:hover{
    background-color: #E4E4E4;
}

.btn-diapo-selected{
    border-style: solid;
    border-width: 3px;
}

.diapo-text-nav{
    width: 200px;
    height: 80px;
    border-radius: 25px;
    border-style: none;
    padding: 10px;
    padding-top: 15px;
    margin-left: 3px;
    margin-right: 3px;
    background-color: #F0F0F0;
    text-align: center;
    vertical-align: auto;
    display: none;
    font-size: 30px;
}

@media screen and (max-width: 1200px)
{
    .link-return{
        font-size: 40px;
    }

    .container-diapo{
        height: auto;
    }

    .diapo{
        width: 100%;
        height: auto;
    }

    .container-btn-diapo{
        margin-top: 0;
    }

    .btn-diapo{
       height: 100px;
       width: 100px;
    }

    .diapo-text-nav{
        display: block;
    }

    .btn-diapo-none{
        display: none;
    }
}

/*Page principale*/
.container{
    display: flex;
    flex-direction: column;
}

.img-container{
    width: calc(30% - 40px);
    margin: 20px auto;
}

img{
    object-fit: contain;
    width: 100%;
    max-height: 800px;
}

p{
    font-family: 'Merriweather';
    text-align: justify;
}

.descri-container{
    width: 45%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

h1{
    font-size: 40px;
    font-family: 'Montserrat';
    text-align: center;
}


p{
    font-size: 20px;
    margin : 10px 0;
    text-align: center;
}

.oeuvre-descri-text{
    text-align: justify;
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
}

.contact-container{
    width: calc(100% - 200px);
    margin: 20px 100px;
    display: inline-block;
}

h4{
    font-size: 25px;
    font-family: 'Montserrat';
    color: dodgerblue;
    text-align: center;
    padding-bottom: 8px;
    border-bottom-style: solid;
    border-color: black;
    border-width: 2px;
    margin : 0 0 20px 0;
}

.text-contact{
    font-size: 20px;
    font-family: 'Montserrat';
    margin: 10px 0;
}

@media screen and (max-width: 1024px) 
{
    .side-container{
        position: relative;
        width: 100%;
        margin-top: 50px;
    }

    .container{
        display: block;
    }

    .img-container{
        width: 100%;
    }

    .img-container{
        width: calc(100% - 20px);
        margin: 20px 10px;
    }    
}

@media screen and (max-width: 425px) 
{
    .descri-container{
        width: calc(100% - 20px);
        padding: 0 10px;
        margin: 0;
    }

    h1{
        font-size: 30px;
    }

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

    .text-contact{
        font-size: 15px;
    } 
}

@media screen and (max-width: 375px)
{
    h1{
        font-size: 25px;
    }

    .text-contact{
        font-size: 12px;
    } 
}