.container
{
    width: 100%;
    height: 100%;
}

.container .img-container
{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container h1
{
    color: white;
    position: absolute;
    font-size: 7rem;
}

.description
{
    padding-left: 10rem;
    padding-right: 10rem;
    /* text-align: justify; */
}

.barre-droite
{
    padding: 1rem 5rem 1rem 10rem;
    background: rgb(116,84,137);
    background: linear-gradient(28deg, rgba(116,84,137,1) 26%, rgba(46,157,176,1) 78%);
    color: white;
    position: relative;
}

.barre-droite::before
{
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(28deg, rgba(116,84,137,1) 26%, rgba(46,157,176,1) 78%);
    /* transform: translate3d(0px, 20px, 0) scale(0.95); */
    filter: blur(5px);
    opacity: var(0.7);
    transition: opacity 0.3s;
}

.barre-droite::after
{
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit
}

img
{
    width: 100%;
}

.barre-droite img
{
    height: 20rem;
    width: 15rem;
    object-fit: cover;
    float: right;
    margin-top: -3vh;
    margin-left: 5rem;
    border-radius: 15px;
}

.description h2
{
    color: var(--violet);
}

.container-tarifs
{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.tarifs
{
    /* width: 40vw; */
    background: linear-gradient(-45deg, rgba(116,84,137,1) 26%, rgba(46,157,176,1) 78%);
    margin: 0 auto 50px auto;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    flex-basis: 100%;
    opacity: 0.8;
    width: calc(100% - 4rem);
}

.description .tarifs h2
{
    color: white;
}

.medoucine
{
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.medoucine a
{
    background: var(--violet);
    border: 3px solid #63437a;
    border-radius: 25px;
    padding: 10px;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.medoucine a span
{
    text-decoration: underline;
}

.medoucine a:hover
{
    background: #63437a;
}

/* .medoucine a
{
    height: 40px;
    width: 150px;
    background: var(--vert-bleu);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin-top: 10px;
    color: white;
    text-decoration: none;
    border: 3px solid #1d5e69;
}

.medoucine .button a
{
    color: white;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
} */

@media only screen and (max-width: 600px){
    .container .img-container
    {
        background: #6f95b9;
        height: 100%;
        padding-top: 4rem;
    }

    .img-container img
    {
        all: unset;
        position: relative;
        width: 100%;
        object-fit: contain;
    }

    .img-container h1
    {
        font-size: 2rem;
    }

    .description
    {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .barre-droite
    {
        padding: 1rem 2rem 1rem 2rem;
    }

    .barre-droite img
    {
        display: block;
        float: none;
        margin: auto;
    }
    .container-tarifs
    {
        flex-direction: column;
    }
}