* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 
font-family: 'Bitter', serif;
font-family: 'Montserrat', sans-serif;
 */

body {
    width: 100%;
    height: 100vh;

    background: linear-gradient(315deg, rgba(92,108,97,1) 3%, rgba(232,232,227,1) 38%, rgba(129,146,132,1) 68%, rgba(59,59,59,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }

}

.txt_coord {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #3b3b3b;
    text-align: right;
    margin-right: 30px;

}

.container {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.container img {
    width: 30%;
    margin: 40px 35% 90px 35%;
}

.contain_txt {
    width: 100%;
    text-align: center;
}

.contain_txt h1 {
    font-family: 'Bitter', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #000;
}

.contain_txt h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 75px;

}

.contain_txt p, .contain_txt a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
}

.contain_txt .adresse {
    margin-top: 15px;
    font-size: 1rem;
}

.icn_txt img {
    width: 20px;
    margin: 0 0 0 10px;
    position: relative;
    top: 4px;
}

.tiret {
    display: none;
}

.br_desktop {
    display: block;
    line-height: 0;
}

.br_resp { 
    display: none;
}

.contain_txt button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 15px 30px;
    background-color: #006616;
    border: #006616 2px solid;
    color: #fff;
    margin: 25px auto 50px auto;
    cursor: pointer;
    transition: 0.2s;
}

.contain_txt button:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #006616;
    font-weight: bold;
}

/* --------------------------------------- RESPONSIVE TABLETTE --------------------------------------- */

@media screen and (max-width: 1150px){

    body {
        height: auto;
    }
    
    .container {
        width: 90%;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translatex(-50%);
    }

    .container img {
        width: 60%;
        margin: 40px 20% 90px 20%;
    }
}

/* --------------------------------------- RESPONSIVE MOBILE --------------------------------------- */

@media screen and (max-width: 650px){

body {
    height: auto;
}

.container {
    width: 90%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translatex(-50%);
}

.container img {
    width: 60%;
    margin: 40px 20% 90px 20%;
}

.contain_txt {
    width: 90%;
    margin: auto;
}

.contain_txt h1 {
    font-size: 2.2rem;
}

.contain_txt h3 {
    margin-top: 20px;
    font-size: 1.2rem;
}

.contain_txt p {
    font-size: 1rem;
}

.icn_txt img {
    width: 20px;
    margin: 0 0 0 10px;
    position: relative;
    top: 4px;
}

.tiret {
    display: none;
}

.br_desktop {
    display: none;
}

.br_resp {
    display: block;
    line-height: 0;
}

}
