/* ------------------------------------------- RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------------------------------- VARIABLES */

:root {
    --base-color: rgba(0, 0, 0, .87);
    --bio-pink : #f192bc;
    --bio-dark-pink: #bd4a95;
    --bio-green: #009d3d;
    --bio-dark-green: #027d32;
}

/* ------------------------------------------- FONTS */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}
/*
@font-face {
    font-family: 'Montserrat Italic';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Kavivanar';
    src: url('../fonts/Kavivanar-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Grape Nuts';
    src: url('../fonts/GrapeNuts-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Dancing Script';
    src: url('../fonts/DancingScript-VariableFont_wght.ttf') format('truetype');
}*/
@font-face {
    font-family: 'Architects Daughter';
    src: url('../fonts/ArchitectsDaughter-Regular.ttf') format('truetype');
}

/* ------------------------------------------- SITE */

.wrapper {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    color: var(--base-color);

    height: 100vh;
    width: 100vw;
    position: fixed;
    overflow: scroll;
    overflow-x: hidden;
    /*background-image: url('../images/background_blured2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
    

    /*background-color: #ffccd4; */ /* pink */
    background-color: #A9DFBF;  /* green */
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;

    padding-bottom: 30px;

    background-image: linear-gradient(white 0%, rgba(255, 255, 255, .7) 70%,rgba(255, 255, 255, .5) 85%,rgba(255, 255, 255, 0) 100%);
}
.nav-link {
    width: 17%;
    margin: 20px;
    padding-bottom: 10px;

    font-family: 'Architects Daughter';
    font-size: 1.8rem;
    color: var(--base-color);
    text-align: center;

    text-decoration: none;
}
.nav-link:visited {
    color: var(--base-color);
}
.nav-link:hover{
    opacity: 0.6;
}
.active {
    border-bottom: 3px solid var(--base-color);
}
.active.pink {
    border-bottom: 3px solid var(--bio-dark-pink);
}
.active.green {
    border-bottom: 3px solid var(--bio-dark-green);
}

.mobile-nav {
    display: none;
}
.mobile-nav-links {
    display: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 0 20px 0;
}

.pink {
    color: var(--bio-dark-pink);
}
.pink:visited {
    color: var(--bio-dark-pink);
}
.green {
    color: var(--bio-dark-green);
}
.green:visited {
    color: var(--bio-dark-green);
}

.logo {
    width: 150px;
    height: auto;
}

h1 {
    padding-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

h2 {
    padding-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: 810px;

    margin: 20px;

    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.mini-slider {
    position: relative;
    overflow: hidden;

    max-width: 350px;
}
.mini-slider ul {
    position: relative;
    display: flex;
}
.mini-slider ul li {
    position: relative;
    display: block;
    float: left;

    width: 350px;
}
.mini-slider ul li img {
    width: 350px;
    height: auto;

    border-radius: 10px;
}
a.mini-slider-prev, a.mini-slider-next {
    position: absolute;
    top: 40%;
    z-index: 999;
    display: block;
    padding: 4% 3%;
    width: auto;
    height: auto;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
}
a.mini-slider-prev:hover, a.mini-slider-next:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
}
a.mini-slider-prev {
    border-radius: 0 2px 2px 0;
}
a.mini-slider-next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

.invisible-container {
    display: flex;
    justify-content: space-between;
    width: 850px;
    margin: 20px;
}
.inner-container {
    flex-grow: 1;
    padding: 20px;

    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.exemple-container {
    display: flex;
    justify-content: space-between;
    width: 850px;
    margin: 20px;
    gap: 20px;
}
.exemple {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
}
.exemple img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}
.exemple p {
    padding: 20px;
}
.exemple-title {
    width: 810px;
    padding: 20px 20px 0 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    text-align: center;
}
.exemple-title h1 {
    padding-bottom: 20px;
}

.right {
    margin-left: 20px;
}
.left {
    margin-right: 20px;
}
.center {
    text-align: center;
}

.coordonnees li {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.coordonnees li:first-child{
    margin-top: 0px;
}
.coordonnees li img {
    width: 48px;
    height: auto;
}
.coordonnees li span {
    margin-left: 20px;
}
.coordonnees li span a {
    text-decoration: none;
    color: var(--base-color);
}
.coordonnees li span a:visited {
    color: var(--base-color);
}

footer {
    color:rgba(255, 255, 255, .7);
    text-align: center;
    padding: 20px 0 20px 0;
}
footer a {
    color:rgba(255, 255, 255, .7);
}
footer a:visited {
    color:rgba(255, 255, 255, .7);
}

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

    .container {
        width: 100%;
        padding: 0;
    }

    .invisible-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 90%;
    }
    .left, .right {
        margin: 0;
    }

    iframe {
        width: 95%;
        
    }

    .elfsight-app-773bd987-c3ed-47bc-a084-a44400ca7210 {
        max-width: 85% !important;
    }

    .elfsight-app-8112d678-ad6a-474b-9c12-a829ec17a5a5 {
        margin-left: 60px !important;
        margin-right: 60px !important;
    }

    .inner-container {
        min-width: 90%;
    }

    nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        padding: 0px 30px 20px 30px;
    }
    .mobile-nav-button {
        width: 64px;
        height: 64px;
    }
    .nav-link {
        width: auto;
        margin: 10px;
        padding-bottom: 0px;
    }

    #planity-appointment {
        max-width: 100%;
    }


}

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

    .container {
        width: 100%;
        padding: 0;
    }

    .invisible-container {
        width: 100%;
    }

    iframe {
        width: 100%;
        border-radius: 0 !important;
    }

    .inner-container {
        min-width: auto;
        border-radius: 0;
    }

    nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        padding: 0px 30px 20px 30px;
    }
    .mobile-nav-button {
        width: 48px;
        height: 48px;
    }
    .nav-link {
        width: auto;
        margin: 10px;
        padding-bottom: 0px;
    }

    #planity-appointment {
        max-width: 100%;
    }

    .exemple-title {
        width: 100%;
    }

    .exemple-container {
        flex-direction: column;
        width: 100%;
    }

    .exemple {
        border-radius: 0;
    }

}