/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Crimson+Text:400i|Montserrat:400,700&display=swap');

/* VARIABLES */
:root {
    --dark-blue: #005677;
    --blue: #008999;
    --black: #001122;
    --orange: #FF9E18;
    --light-orange: #FFDEB0;
    --dx-blue: #1F67A4;
    --light-blue: #F0F7FC;
    --blue-header: #C8E9EC;
    --white: #FFFFEE;
    --purple: rgba(139, 133, 202, 1);
    --light-purple: #D7D5ED;
    --light-blue-purple: #DEE6F1;
    --gradient-blue: rgba(0,154,168,1);
    --gradient-orange: rgba(228,146,0,1);
    --montserrat: 'Montserrat', sans-serif;
    --crimson: 'Crimson Text', serif;
    --regular: 400;
    --bold: 700;
}
/* To use the variables put this in the value field : var(--myVariable) */
* {
    transition: all 0.3s;
}

body {
    margin: 0px auto;
    width: 100vw;
    overflow-x: hidden;
    font-family: var(--montserrat);
    font-weight: var(--regular);
    color: var(--black);
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

/* H1 */
h1, h2 {
    font-weight: var(--bold);
    text-transform: uppercase;
    color: var(--dark-blue);
    font-size: 38px;
    line-height: 40px;
    max-width: 800px;
}
.h2 {
    font-weight: var(--bold);
    text-transform: uppercase;
    color: var(--dark-blue);
    font-size: 38px;
    line-height: 40px;
}

h1 #h1-logo {
    width: 250px;
    display: inline-block;
    margin-bottom: 10px;
}

h3 {
    font-family: var(--crimson);
    color: var(--blue);
    font-weight: 400;
    font-size: 58px;
    line-height: 58px;
    margin: 0px;
    font-style: italic;
}

h4 {font-weight: 400;text-transform: uppercase;font-size: 28px;color: var(--dark-blue);margin: 0px;}
.h4 {
    text-transform: uppercase;
    color: var(--blue);
    text-align: center;
    margin: 0;
    font-size: 20px;
    line-height: 23px;
    font-weight: 300;
}
h5 {
    font-weight: 400;
    font-size: 23px;
    margin: 0px;
    color: var(--dark-blue);
}

section {
    width: 100%;
    justify-content: center;
}

section, div {
    display: flex;
}

button {
    cursor: pointer;
}

li {
    font-size: 14px;
    line-height: 22px;
}

figure {
    display: flex;
    margin: 20px 0px;
    flex-direction: column;
}
figure img {
    height: auto;
    width: 100%;
}
figcaption {
    opacity: 0.6;
}
.separator {
    width: 40px;
    height: 3px;
    background: var(--blue);
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.header {
    padding-top: 85px;
}
.header h3 {
    text-align: center;
}
.header h2 {
    text-align: center;
}
.center {
    text-align: center;
}
.section {}
.bloc {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.container {
    flex-direction: column;
    width: 100%;
    max-width: 1250px;
    margin: 0 25px;
}
.container .bloc h2, .container h2 {
    text-align: center;
}
.row {
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
}
.row h2 {}
.odd {
    background-color: #E4F2FB;
}
.txt {
    margin: 0;
    max-width: 800px;
}
.img {
    object-fit: contain;
    max-width: 500px;
    width: 100%;
}
.bloc-margin {
    margin: 50px 25px;
}
.container-box {
    align-items: center;
    justify-content: center;
    margin: 20px 15px 0px;
    flex-wrap: wrap;
}

.bg__light-blue {
    background: var(--light-blue);
}
.bg__light-blue-purple {
    background: var(--light-blue-purple);
}

.bold {
    font-weight: var(--bold);
}
.blue {
    color: var(--blue);
}
.orange {
    color: var(--orange);
}
.purple {
    color: var(--purple)!important;
}
.crimson {
    font-weight: 400;
    font-family: var(--crimson);
    text-transform: initial;
    font-size: 58px;
    font-style: italic;
}
.CTA {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: rgba(255,255,255,0.8);
    text-transform: uppercase;
    border-radius: 10px;
    font-weight: var(--bold);
    padding: 10px 17px;
    font-size: 15px;
    font-family: var(--montserrat);
}
.CTA:hover {
    border: 2px solid var(--blue);
    color: white;
    background: var(--blue);
    text-transform: uppercase;
    border-radius: 10px;
    font-weight: var(--bold);
    padding: 10px 17px;
    font-size: 15px;
    font-family: var(--montserrat);
}
.details-emphasis {
    color: var(--blue);
    font-weight: var(--bold);
}

.body-wrapper {
    width: 100vw;
    flex-direction: column;
    overflow: hidden;
}
.picto-txt_emphasis {
    font-weight: var(--bold);
    color: var(--dark-blue);
    width: 100px;
    background: linear-gradient(180deg, rgba(0,137,153,0.6) 0%, rgba(0,137,153,0.3) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    height: auto;
    display: inline-table;
}
.picto-txt_emphasis-orange {
    font-weight: var(--bold);
    color: var(--dark-blue);
    width: 100px;
    background: transparent linear-gradient(180deg, rgba(255, 158, 24, 0.4) 0%, rgba(255, 158, 24, 0.2) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    height: auto;
    display: inline-table;
}
.picto-txt_emphasis-purple {
    font-weight: var(--bold);
    color: var(--dark-blue);
    width: 100px;
    background: transparent linear-gradient(180deg, #8B84CC 0%, #DADAEE 100%);
    padding: 10px 15px;
    border-radius: 10px;
    height: auto;
    display: inline-table;
}
/* ##### MENU ##### */
nav {}
.nav__container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.menu__logo {
    background: white;
    padding: 0 15px 15px;
    height: 70px;
}
.menu-logo__img {
    width: 150px;
}

.menu__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.menu-links__dx {}
.menu-links-dx__img {
    width: 150px;
}
.menu-links__nav {}
.menu-links-nav__list {}
.menu-links-nav-list__item {
    font-size: 14px;
    font-weight: var(--bold);
    text-transform: uppercase;
    color: var(--dark-blue);
}
.menu-links-nav-list__item:hover {
    color: var(--blue);
}

.template__i18n-choice-container {
    background: white;
    position: absolute;
    padding: 20px 15px;
    margin-left: -30px;
    border-radius: 10px;
    display: none;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    flex-direction: column;
    margin-top: -3px;
}
.template__i18n-choice-link {
    margin: 7px auto;
    text-align: center;
}
.template__i18n-element:hover .template__i18n-choice-container {
    display: flex;
    width: 75px;
}

/* ##### HOME ##### */
.home__header {
    height: 60vh;
    min-height: 600px;
    background: url('../images/jumbotron-1400.png');
    background-size: cover;
    padding-top: 75px;
    padding-bottom: 50px;
}
.home__header-container {
    align-items: center;
    margin-top: 75px;
    margin-bottom: 50px;
}
.home-header__product {}
.home-header-product__img {
    object-fit: contain;
    width: 350px;
    margin-right: 50px;
}
.home-header-product__monodoses {}
.home-header-product__lingettes {
}

.home-header__hook {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
}
.home-header-hook__title {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.home-header-hook__txt {
    color: var(--blue);
    font-size: 23px;
    line-height: 26px;
}
.home-header-hook__link {
    margin: 30px 0px;
}

.home__symptomes {
    background: transparent linear-gradient(90deg, rgba(0, 154, 168, 0.44) 0%, rgba(0, 153, 168, 0.1) 100%) 0% 0%;
}
.home-symptomes__illus {
}
.home-symptomes__illus img {
    object-fit: cover;
    margin-right: 50px;
    height: 100%;
    min-height: 400px;
}
.home-symptomes__content {
    flex-direction: column;
    max-width: 600px;
    margin-bottom: 50px;
    width: 98%;
    margin-right: 50px;
}
.home-symptomes-content__sub-title {
    margin: 75px 0 0;
}
.home-symptomes-content__title {
    margin: 25px 0;
}
.home-symptomes-content__txt {
    margin: 0;
}
.home-symptomes-content__list {}
.home-symptomes-content-list__item {
    font-size: 16px;
    line-height: 25px;
}
.home-symptomes-content-list__item-details {
    display: flex;
    transform: skew(-8deg);
    color: rgba(0,0,0,0.7);
}

.home__benefits {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(228,146,0,0.6) 0%, rgba(228,146,0,0.3) 15%, rgba(228,146,0,0.2) 50%, rgba(228,146,0,0.3) 85%, rgba(228,146,0,0.6) 100%);
}
.home-benefits__content {
    flex-direction: column;
    width: 95%;
    max-width: 500px;
}
.home-benefits-content__title {
    text-align: center;
}
.home-benefits-content__pictos{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.home-benefits-content-pictos__container {
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
}
.home-benefits-content-pictos__illus {
    height: 150px;
}
.home-benefits-content-pictos__img {
    object-fit: contain;
    width: 125px;
    height: auto;
}
.home-benefits-content-pictos__txt {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
}
.home-benefits__illus {}
.home-benefits-illus__img {
    object-fit: contain;
    height: 100%;
    margin-right: -250px;
}

.home__recipe {
    background: url('../images/ombreFeuilles-bleu-1400.png');
    background-size: cover;
    background-position: center;
    padding-bottom: 50px;
}
.orange-leaf {
    background: url('../images/ombreFeuilles-beige-1400.png');
    background-size: cover;
    background-position: center;
}
.home-recipe__content {
    flex-direction: column;
    align-items: center;
}
.home-recipe-content__title {
    text-align: center;
    margin-top: 50px;
}
.home-recipe-content__pictos {
    flex-wrap: wrap;
    justify-content: center;
}
.home-recipe-content-pictos__container {
    align-items: center;
    margin: 10px;
}
.home-recipe-content-pictos__illus {}
.home-recipe-content-pictos__img {
    height: 100px;
    object-fit: contain;
}
.home-recipe-content-pictos__txt {
    font-weight: var(--bold);
    color: var(--dark-blue);
    width: 120px;
    display: inline-table;
    box-sizing: border-box;
}
.home-recipe-content__txt {
    flex-direction: column;
    max-width: 500px;
    width: 95%;
}
.home-recipe-content-txt__p {}
.home-recipe-content-txt__p-emphasis {
    text-transform: uppercase;
    color: var(--blue);
    font-weight: var(--bold);
    font-size: 17px;
}

.home__concern {
    background: transparent linear-gradient(90deg, rgba(228,146,0, 0.8) 0%, rgba(228,146,0, 0.3) 100%) 0% 0%;
}
.home-concern__illus {
}
.home-concern__illus img {
    object-fit: contain;
    margin-right: -150px;
    margin-left: -200px;
    height: 100%;
    min-height: 400px;
}
.home-concern__content {
    flex-direction: column;
    width: 95%;
    max-width: 600px;
    justify-content: center;
    margin-right: 40px;
}
.home-concern-content__title {
    margin-bottom: 25px;
    margin-top: 0px;
}
.home-concern-content__pictos {}
.home-concern-content-pictos__adults {
    width: 150px;
    object-fit: contain;
    margin: 20px 50px 20px 0px;
}
.home-concern-content-pictos__women {
    width: 120px;
    object-fit: contain;
}
.home-concern-content__txt {
    margin: 0;
}
.home-concern-content__txt-tabou {
    margin: 0;
    margin-bottom: 25px;
}
.home-concern-content__txt-src {
    font-size: 15px;
    margin: 0;
    color: rgba(0,0,0,0.7);
}

.home__range {
    padding: 50px 0px;
}
.home-range__content {
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.home-range-content__title {
    text-align: center;
    margin-top: 50px;
}
.home-range-content__products {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.product__container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    margin: 30px;
    width: 100%;
    max-width: 750px;
}
.product__img {
    width: 300px;
}
.product__illus {
    background: linear-gradient(180deg, rgba(228,146,0,0.8) 0%, rgba(228,146,0,0) 100%);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.product__illus::after {
    content: ' ';
    height: 7px;
    width: 100%;
    background: var(--orange);
    align-self: flex-end;
}
.mhl__illus {
    background: linear-gradient(180deg, rgba(139,133,202,0.8) 0%, rgba(139,133,203,0) 100%);
    flex-direction: column;
    justify-content: flex-end;
}
.mhl__illus::after {
    content: ' ';
    height: 7px;
    width: 100%;
    background: var(--purple);
}
.product__content {
    flex-direction: column;
    max-width: 550px;
    font-size: 16px;
    padding: 20px;
    box-sizing: content-box;
}
.product__title {
    font-size: 42px;
    text-transform: uppercase;
    font-weight: var(--bold);
    margin: 0;
    color: var(--dark-blue);
}
.product__category {
    margin: 0;
}
.product-category__bg {
    padding: 5px 7px;
    background: var(--orange);
    border-radius: 0 10px 0 0;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
}
.product-category__bg-mhl {
    padding: 5px 7px;
    background: var(--purple);
    border-radius: 0 10px 0 0;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
}
.product__claim {
    color: var(--orange);
    font-weight: var(--bold);
    font-size: 23px;
    margin-bottom: 0px;
}
.product__txt {
    margin-bottom: 50px;
}
.product__link {}

.home__findus {
    background: url('../images/map-1400.png');
    padding: 50px 0px;
}
.home-findus__container {
    flex-direction: column;
    align-items: center;
}
.findus__title {
    margin-top: 0px;
    width: 95%;
    text-align: center;
}

.home__blog {
    padding: 50px 0px;
}
.home-blog__content {
    flex-direction: column;
    align-items: center;
}
.home-blog-content__title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;
}
.home-blog-content__sub-title {
    text-align: center;
    margin-top: 0px;
}
.home-blog-content__articles {
    flex-wrap: wrap;
    justify-content: center;
}
.blog-article__container {
    flex-direction: column;
    width: 95%;
    width: 310px;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    margin: 15px;
}
.blog-article__illus {
    background: url('../images/bike-745x526.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    align-items: flex-end;
}
.blog-article2__illus {
    background: url('../images/cover-article2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    align-items: flex-end;
}
.blog-article3__illus {
    background: url('../images/cover-article3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    align-items: flex-end;
}
.blog-article4__illus {
    background: url('../images/cover-article4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    align-items: flex-end;
}
.blog-article5__illus {
    background: url('../images/cover-article5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    align-items: flex-end;
}
.blog-article6__illus {
    background: url('../images/cover-article6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    align-items: flex-end;
}
.blog-article__title {
    margin-left: 30px;
    color: white;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    text-transform: uppercase;
    font-weight: var(--bold);
    width: 90%;
}
.blog-article__content {
    flex-direction: column;
    padding: 20px;
    height: 150px;
    justify-content: space-between;
}
.blog-article__content a {
    align-self: center;
}
.blog-article__txt {
    margin: 0 0 20px 0;
}

.article-link {
    color: rgb(18, 141, 205);
    border-bottom: solid 1px rgb(18,141,205);
}

.monodoses__header {
    background: url('../images/cactus-orange-1000x809.png'), linear-gradient(0deg, rgba(228,146,0,0.65) 0%, rgba(228,146,0,0.3) 100%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.swipes__header {
    background: url('../images/dove-swipes.png'), linear-gradient(0deg, #8B84CC 0%, #DADAEE 100%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.product__header-container {
    width: 100%;
    max-width: 1600px;
    justify-content: flex-start;
}
.product-header__img {
    width: 90%;
    max-width: 550px;
}
.home-header__cactus {}
.home-header-cactus__img {}
.product-details__bloc {
    justify-content: center;
}
.product-details__title {
    margin: 50px 0 25px 0;
}
.product-details__container {
    background: #F0F7FC;
    flex-direction: column;
    align-items: center;
}
.product-details__illus img {
    object-fit: contain;
    margin-right: 50px;
    width: 95%;
    max-width: 400px;
}
.product__table {
    margin: 50px 0px;
}
.product-table__row {}
.product-table__title {
    text-transform: uppercase;
    font-weight: var(--bold);
    color: var(--blue);
}
.product-table__txt {
    padding-left: 30px;
}
.product-details__source {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
}
.product-details__content {
    flex-direction: column;
    align-items: center;
}
.product-details-content__title {
    text-align: center;
    margin-top: 50px;
}
.product-details-content__pictos {
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    width: 95%;
}
.product-details-content-pictos__container {
    align-items: center;
    margin: 10px;
}
.product-details-content-pictos__illus {}
.product-details-content-pictos__img {
    height: 100px;
    object-fit: contain;
}
.product-details-content-pictos__txt {
    font-weight: var(--bold);
    color: var(--dark-blue);
    width: 150px;
    display: inline-table;
}
.product-details-content__txt {
    flex-direction: column;
    max-width: 500px;
    width: 95%;
}
.product-details-content-txt__p {}
.product-details-content-txt__p-emphasis {
    text-transform: uppercase;
    color: var(--blue);
    font-weight: var(--bold);
    font-size: 17px;
}

.product-pregnant {
    flex-direction: column;
    background: rgba(255, 158, 24, 0.3);
    align-items: center;
}
.product-pregnant__container {
    flex-direction: column;
    padding: 50px 0;
    width: 98%;
    max-width: 1200px;
}
.product-pregnant-container__stats {
}
.product-pregnant-container-stats__img {
    height: 120px;
}
.product-pregnant-container-stats__pregnant {
    flex-direction: column;
    margin: 20px;
}
.product-pregnant-container-stats__baby {
    flex-direction: column;
    margin: 20px;
}
.product-pregnant-container__pharma {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 7px;
    overflow: hidden;
}
.product-pregnant-container-pharma__faq {
    padding: 50px;
    background: url('../images/bg-canule.png'), white;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    justify-content: center;
}
#bg-swipes {
    background: url('../images/bg-lingettes.png'), white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}
.product-pregnant-container-pharma__faq p {
    text-align: center;
    color: var(--dark-blue);
}
.product-pregnant-container-pharma__microh {
    text-transform: uppercase;
    font-weight: var(--bold);
}
.product-pregnant-container-pharma__code {
    flex-direction: column;
}
.product-pregnant-container-pharma-faq__product-title {
    font-weight: var(--bold);
    text-transform: uppercase;
}
.product__code {
    flex-direction: column;
    background: white;
    color: black;
    padding: 15px;
    border-radius: 10px;
}
.product-code__txt {
    margin: 0;
}
.product-pregnant-container-pharma-faq__microh {
    width: 100%;
    padding: 50px;
    color: white;
    background: url(../images/pharmacienne-300x228.png), rgba(0, 86, 119, 1);
    flex-direction: column;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.product-pregnant-container-pharma__txt {
    width: 100%;
    max-width: 300px;
    flex-direction: column;
}
.product-pregnant-container-pharma__txt-title {
    font-size: 23px;
    margin: 0;
}

/* */
.product__push {
    background: url('../images/mhl-pocket.png'), var(--light-purple);
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}
.mhl-product__push {
    background: url('../images/mhm-pocket.png'), var(--light-orange);
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}
.product-push__container {
    flex-direction: column;
    width: 95%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}
.product-push__header {
    flex-direction: column;
    text-align: center;
}
.product-push__content {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.product-push-content__img-container {
    width: 98%;
    max-width: 540px;
    margin: 50px 0;
}
.product-push-content__img-container img {
    object-fit: contain;
    width: 90%;
}
.product-push-content__txt {
    flex-direction: column;
    width: 100%;
    max-width: 540px;
    justify-content: center;
}
.product-push-content__txt p {color: var(--dark-blue);}

#about-us__header {
    height: 60vh;
    min-height: 540px;
    background: url('../images/about-us__header.png');
    background-size: cover;
    background-position: center;
}

#blog-header {
    background: url('../images/bg-blog.png'), var(--blue-header);
    background-repeat-y: no-repeat;
    background-repeat: repeat no-repeat;
    background-position: left bottom;
}

#faq-header {
    background: url('../images/bg-faq.png'), var(--blue-header);
    background-repeat-y: no-repeat;
    background-position: left bottom;
}
#contact-header {
    background: url('../images/bg-contact.png'), var(--blue-header);
    background-repeat-y: no-repeat;
    background-position: left bottom;
}
#faq-box {box-sizing: border-box;width: 98%;display: flex;flex-direction: row;align-items: inherit;box-shadow: 0 0 30px rgba(0,0,0,0.3);margin-top: -100px;}
#faq-menu {
    background: var(--blue-header);
    justify-content: flex-start;
    align-items: flex-start;
    /* padding-left: 40px; */
    padding-right: 40px;
    width: 30%;
    min-width: 280px;
}
#faq-menu-title {
    font-weight: var(--bold);
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-top: 50px;
    font-size: 23px;
    margin-left: 40px;
}
.faq-menu-link {
    text-transform: uppercase;
    margin: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.faq-menu-link::before {
    content: '';
    position: relative;
    display: block;
    width: 4px;
    height: 80px;
    margin-right: 37px;
}
.active-faq-menu-link::before {
    background: var(--blue);
}
#faq-title {
    text-transform: uppercase;
    font-size: 38px;
    color: var(--dark-blue);
    text-align: left;
    max-width: 550px;
    display: flex;
    margin-bottom: 15;
}
.faq-question-box {
    align-items: flex-start;
    justify-content: flex-start;
}
.faq-question {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-blue);
}
.faq-answer {
    margin: 0;
}
.faq-tags {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}
#faq-content {
    padding: 0 40px;
    width: 60%;
    height: 100%;
    background: white;
    align-items: flex-start;
}

/* FIND US */
.map__container-content {/* width: 98%; *//* max-width: 1280px; *//* margin: 50px auto; */flex-direction: column;justify-content: center;align-items: center;}
.map__content-title{
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
}

#container-searchbox {
    /* justify-content: center; */
}
#pac-input {
    width: 275px;
    height: 35px;
    padding-left: 15px;
    font-size: 18px;
    color: rgba(0,0,0,0.6);
    border-radius: 5px;
    border: solid 2px var(--blue);
}
.controls {}
.map__container-map {
    display: flex;
    flex-direction: row;
    width: 98%;
    align-items: center;
    max-width: 1240px;
    justify-content: center;
}
.map__container-places {
    margin-right: 15px;
}
#container-places {
    flex-direction: column;
    max-height: 500px;
    margin-bottom: 50px;
    overflow-y: scroll;
}

#map {
    height: 600px;
    width: 90%;
    max-width: 750px;
    min-width: 250px;
}

.content-marker {
    cursor: pointer;
    border-bottom: solid 1px rgba(0,0,0,0.2);
}

.title-marker {
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 0px;
    color: var(--audispray-primary-blue);
}

.txt-marker {
    margin-top: 0px;
}

.markerBW {
    height: 20px;
    margin-right: 10px;
}
.locate-bg {
    background: url(../images/locate-195x250.png);
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}
.logo-title {
    object-fit: contain;
    max-width: 250px;
}
.girl-cta {
    max-height: 300px;
}
/* CONTACT */
.form-section {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.form__container {
    display: flex;
    flex-direction: row;
    width: 95%;
    max-width: 1200px;
    margin: 50px auto;
}

.form__container form {display: flex;flex-direction: row;flex-wrap: wrap;}

.form__container-input-field {
    display: flex;
    flex-direction: column-reverse;
    margin: 15px auto;
    margin-right: 25px;
}

.form__input-field {height: 35px;border: none;border-bottom: 2px solid rgba(0,0,0,0.1);font-size: 18px;}

.form__text-area {min-height: 100px;}
.form__input-label {
    font-weight: var(--light);
    font-size: 18px;
    position: relative;
    top: 32px;
    width: auto;
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.3s;
}

.form__input-checkbox {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: relative;
    z-index: 5;
}

.form__input-label-checkbox {
    width: calc(90% - 40px);
    max-width: 540px;
    text-align: justify;
    padding-left: 20px;
    font-family: var(--montserrat);
    font-weight: var(--light);
    font-size: 15px;
}

.form__input-checkbox-custom {
    content: '';
    width: 20px;
    height: 20px;
    display: flex;
    position: absolute;
    margin-left: -44px;
    border: 1px solid rgba(0,0,0,0.3);
    justify-content: center;
    align-items: center;
}

.form__input-checkbox:checked + label > .form__input-checkbox-custom {
    background: var(--audispray-secondary-blue);
}

.form__input-checkbox-custom:before {
    content: '';
    width: 5px;
    height: 10px;
    display: block;
    background: rgba(0,0,0,0);
    position: absolute;
    transform: rotate(45deg);
    margin-top: -2px;
    border-right: 3px solid rgba(255,255,255,1);
    border-bottom: 3px solid rgba(255,255,255,1);
    opacity: 0;
}

.form__input-checkbox:checked + label > .form__input-checkbox-custom:before {
    opacity: 1;
}

.form__input-field:focus + .form__input-label {
    top: 0px;
    font-size: 16px;
    opacity: 0.6;
}

.form__input-field:focus {
    outline: none;
    border-bottom-color: rgba(0,0,0,0.3);
}

.form__container-input-checkbox {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form__full-width {width: 100%;}

.form__half-width {width: calc(50% - 25px);}

.form__submit-button {
    margin-top: 30px;
}

.contact__header-title {margin-bottom: 0px;display: flex;align-items: center;justify-content: center;}

.contact__header-img {margin-bottom: 0px!important;}

.contact__header-txt {
    text-align: center;
    line-height: 21px;
    margin-top: 5px;
}

.contact__container-text {
    max-width: 500px;
    width: 100%;
    flex-direction: column;
}
.contact-title {
    margin: 0;
    font-size: 20px;
    line-height: 23px;
    font-weight: 300;
    color: var(--blue);
}
.purple-bg {
    background-color: #D8D6ED;
}

@media screen and (max-width: 959px){
    .form__container {flex-direction: column-reverse;}
    .contact__container-text {text-align: center;margin: 0 auto;}
    .contact__containr-text p {}
    .form__submit-button {
        margin: 0 auto;
        margin-top: 30px;
    }
}

/* #### ARTICLE #### */

.header-article {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.article-container {
    flex-direction: column;
    max-width: 870px;
    width: 95%;
    background: white;
    margin-top: -125px;
    box-sizing: border-box;
    padding: 75px;
    justify-content: center;
}

.article-h1 {
    font-weight: 300;
    margin-top: 0;
}
.article-h3 {
    font-size: 32px;
}
.box-title {
    font-weight: var(--bold);
    text-transform: uppercase;
    margin: 0px;
}
.blue-box {
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px;
    background: var(--light-blue);
    border-radius: 15px;
}
.article__txt-source {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
}
.article__CTA {

}
.cta-article {
    text-align: center;
}