@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url("all.css");
@import url("grid.css");

body,
html {
	height: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	/*overflow-x: hidden;*/
}

html {
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

p {
	font-family: 'Roboto', sans-serif;
}

.container {
	margin: 1vh 8vw 1vh 8vw;
}

section {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

header {
	width: 100%;
}

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


/*predifine code*/
/*subrata 30.05.2022==========================*/
.mb-0{
	margin-bottom: 0 !important;
}
.mb-1{
	margin-bottom: 0.5rem !important;
}
.mb-2{
	margin-bottom: 1rem !important;
}
.mb-3{
	margin-bottom: 1.2rem !important;
}
.mb-4{
	margin-bottom: 1.5rem !important;
}
.mb-5{
	margin-bottom: 1.8rem !important;
}
.mt-0{
	margin-top: 0 !important;
}
.mt-1{
	margin-top: 0.5rem !important;
}
.mt-2{
	margin-top: 1rem !important;
}
.mt-3{
	margin-top: 1.2rem !important;
}
.mt-4{
	margin-top: 1.5rem !important;
}
.mt-5{
	margin-top: 1.8rem !important;
}
.pt-0{
	padding-top: 0 !important;
}
.pt-1{
	padding-top: 0.5rem;
}
.pt-2{
	padding-top: 1rem !important;
}
.pt-3{
	padding-top: 1.2rem !important;
}
.pt-4{
	padding-top: 1.5rem !important;
}
.pt-5{
	padding-top: 1.8rem !important;
}
.pb-0{
	padding-bottom: 0 !important;
}
.pb-1{
	padding-bottom: 0.5rem !important;
}
.pb-2{
	padding-bottom: 1rem !important;
}
.pb-3{
	padding-bottom: 1.2rem !important;
}
.pb-4{
	padding-bottom: 1.5rem !important;
}
.pb-5{
	padding-bottom: 1.8rem !important;
}
.shadow{
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
}
.shadow-md{
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}
.shadow-md{
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}
.d-flex{
	display: flex !important;
	-webkit-display: flex !important;
	-moz-display: flex !important;
	-ms-display: flex !important;
}
.justify-content-center{
	justify-content: center !important;
}
.justify-content-start{
	justify-content: flex-start !important;
}
.justify-content-end{
	justify-content: flex-end !important;
}
.justify-content-between{
	justify-content: space-between !important;
}
.align-items-center{
	align-items: center !important;
}
.align-items-start{
	align-items: flex-start !important;
}
.align-items-end{
	align-items: flex-end !important;
}
.border{
	border: 1px solid #ede8ee;
}
.text-left{
	text-align: left !important;
}
.text-right{
	text-align: right !important;
}
.text-center{
	text-align: center !important;
}

.top-menu {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.first-links {
	display: flex;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
	color: #fff;
	padding-right: 0.4rem;
}

.first-links a {
	color: white;
	text-decoration: none;
	padding: 0.4rem;
	font-size: 0.56rem;
	transition: 200ms;
	display: inline-block;
	font-weight: 400;
	white-space: nowrap;
}

.first-links a:hover {
	transform: translateY(2px);
	transition: 200ms;
}

.second-links {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.second-links a {
	color: white;
	text-decoration: none;
	padding: 0.2rem;
	font-size: 0.56rem;
	transition: 200ms;
	display: inline-block;
	font-weight: 400;
}

.second-links a:hover {
	transform: translateY(2px);
	transition: 200ms;
}

.second-links a svg,
.second-links a img {
	width: 0.7rem;
	height: 0.7rem;
}

.second-menu {
	display: flex;
	justify-content: space-between;
}

.second-menu .logo-justori {
	width: 20%;
	height: 20%;
}

.second-menu .logo-justori img {
	max-width: 100%;
}

.second-menu .wrapper-menu {
	display: flex;
	align-items: flex-end;
}

.second-menu ul a {
	transition: 200ms;
	font-size: 0.8rem;
}

.second-menu ul a:hover {
	transform: translateY(2px);
	transition: 200ms;
}

.second-menu .sub-second-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
}

.sub-second-menu a {
	color: white;
	text-decoration: none;
	position: relative;
	margin: 0.4rem;
	font-weight: 700;
}

.sub-second-menu a:after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: white;
	top: 0;
	left: 0;
	top: 50px;
	opacity: 0;
}

.sub-second-menu a:hover:after,
.sub-second-menu a.active:after {
	top: 30px;
	transition: 300ms;
	opacity: 1;
}

.lang {
	display: flex;
	align-items: center;
}

.lang svg,
.lang img {
	padding-right: 4px;
}

.lang img {
	margin-left: 4px;
}

.second-menu ul .download {
	display: flex;
	align-items: center;
	color: purple;
	background-color: white;
	border: solid 1px white;
	border-radius: 80px;
	transition: 200ms;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.4rem 0.6rem 0.4rem 0.5rem;
}

.second-menu ul .download:hover {
	text-decoration: none;
	color: white;
	background-color: transparent;
	transition: 200ms;
}

.second-menu ul .download:hover:after {
	opacity: 0;
}

.second-menu ul .download svg {
	width: 0.7rem;
	height: 0.7rem;
	margin-right: 0.2rem;
}

.second-menu ul .download svg path {
	transition: 200ms;
}

.second-menu ul .download:hover svg path {
	fill: white;
	transition: 200ms;
}

.shadow-box {
	filter: drop-shadow(2px 10px 20px rgba(10, 10, 10, .2));
}

.hero-image .container .flex-column,
.hero-image .container {
	height: 100%;
	width: 100%;
}


/* The hero background image */

.hero-image {
	display: flex;
	position: relative;
	justify-content: center;
	background-image: linear-gradient(rgba(102, 51, 153, 0.7), rgba(102, 51, 153, 0.7)), url(../images/front-page.jfif);
	background-position: bottom, center;
	background-repeat: no-repeat;
	background-size: contain, cover, cover;
	width: 100%;
	z-index: 5;
	padding-top: 0;
}

.hero-image:after {
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	content: '';
	background-image: url(../images/wave.svg);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 7rem;
	z-index: -1;
}


/* Text on the center on the first page */

.hero-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	color: white;
	font-size: 1.8rem;
}

.hero-text h1 {
	font-size: 2.4rem;
}

.hero-text .subtitle {
	margin-top: 10vh;
	margin-left: auto;
	margin-right: auto;
	max-width: 30rem;
}

.hero-text .logos,
.page .bloc-download .ligne-download .sous-ligne-download .logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	/*transform: translateY(2rem);*/
	margin-bottom: 35px;
}

.hero-text .bloc-images-app,
.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-images-app {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-width: 12rem;
	max-width: 12rem;
}

.hero-text .bloc-images-app .premiere-image-app,
.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-images-app .premiere-image-app {
	width: 40%;
	margin-right: -1.5rem;
	z-index: 1;
}

.hero-text .bloc-images-app .deuxieme-image-app,
.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-images-app .deuxieme-image-app {
	width: 54%;
}

.hero-text .bloc-stores-app,
.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-stores-app {
	display: flex;
	flex-direction: column;
	min-width: 12rem;
	max-width: 12rem;
	justify-content: space-around;
	height: 7rem;
}

.hero-text .bloc-stores-app svg,
.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-stores-app svg {
	width: 8rem;
}

.arrow-down {
	margin-top: 1rem;
}

.arrow-down svg {
	width: 1rem;
	height: 1rem;
}


/* Animation of the arrow on the first page */

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-duration: 1700ms;
	animation-duration: 1700ms;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.36, 0.04, 0, 0.79);
	animation-timing-function: cubic-bezier(0.36, 0.04, 0, 0.79);
}

@-webkit-keyframes bounce {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes bounce {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(0);
	}
}


/* SECTION REASSURANCE */

.reassurance {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	/*margin: 0 4vw 0 4vw;*/
}

.reassurance .bloc-presse {
	max-width: 24rem;
	margin: 0.5rem;
	background-color: white;
	/*flex: 1;*/
	position: relative;
	padding: 1rem;
	box-shadow: 0 2px 5px rgb(102 51 153 / 20%);
	border-radius: 0.5rem;
}

.iframe-story {
	min-height: 400px;
	border: 0;
}

.reassurance .bloc-presse .titre-presse {
	margin-bottom: 1rem;
	font-size: 1rem;
	text-align: center;
}

.reassurance .bloc-presse .ligne-logo-presse {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.reassurance .bloc-presse .ligne-logo-presse div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24%;
	margin-bottom: 0.5rem;
}

.reassurance .bloc-presse .ligne-logo-presse div a {
	display: flex;
	align-items: center;
	justify-content: center;
}


/*.reassurance .bloc-presse .ligne-logo-presse div img.portrait {
	max-width: 40%;
	height: auto;
}*/

.reassurance .bloc-presse .ligne-logo-presse div img.paysage {
	max-width: 80%;
	height: auto;
}

.reassurance .bloc-presse .justell {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

@media(max-width: 1440px) {
	.reassurance .bloc-presse .justell {
		bottom: 0;
		right: 0;
	}
}

@media(max-width: 800px) {
	.reassurance .bloc-presse .justell {
		bottom: 5px;
		right: 5px;
	}
}

.reassurance .bloc-citation {
	max-width: 100%;
	/*margin-left: 1rem;
	margin-right: 1rem;
	margin-top: 1rem;*/
}

.reassurance .bloc-citation .bloc-auteur {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.reassurance .bloc-citation img {
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
}

.reassurance .bloc-citation .single-item {
	margin-left: 5px;
	margin-right: 7px;
	outline: 0;
}

.reassurance .bloc-citation .single-item div {
	margin-left: 5px;
	margin-right: 7px;
	outline: 0;
}

.reassurance .bloc-citation .single-item div .phrase-citation {
	margin-top: 1rem;
	font-size: 0.9rem;
	font-weight: 400;
	text-align: justify;
	min-height: 120px;
}

.reassurance .bloc-citation .single-item div .phrase-citation:before {
	content: open-quote;
	width: 5rem;
}

.reassurance .bloc-citation .single-item div .phrase-citation:after {
	content: close-quote;
	width: 5rem;
}

.reassurance .bloc-citation .single-item div .nom-citation {
	text-align: right;
	font-size: 0.7rem;
	margin-bottom: 0;
}

.reassurance .bloc-citation .single-item div .ville-citation {
	display: flex;
	justify-content: flex-end;
	text-align: right;
	margin-bottom: 0;
	font-size: 0.7rem;
}

.ville-citation svg {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.translated {
	font-size: 0.5rem;
}

.reassurance .bloc-citation .titre-citation {
	text-align: center;
	font-size: 1.5rem;
}

.slick-prev:before,
.slick-next:before {
	color: black;
}

.slick-dots li button:before {
	color: black;
	font-size: 0.7rem;
}


/* SECTION PODCASTS */

.bloc-podcasts {
	text-align: center;
}

.bloc-podcasts h2 {
	font-size: 2rem;
}

.bloc-podcasts .liste-podcasts {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.card {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-radius: 10px;
	max-width: 20rem;
}

.card .subcard {
	width: 50%;
}

.category-podcast {
	display: flex;
	align-items: center;
}

.category-podcast>div:last-child {
	margin-left: .5rem;
	text-align: left;
}

.category-podcast img {
	width: 0.8rem;
	height: auto;
	margin-right: 0.5rem;
}

.card .story-details-image {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('https://www.justori.com/justori//upload/story_img/Image_2018-08-27-1140130_1535406051.jpg');
	background-position: center center;
	background-size: cover;
	width: 5rem;
	height: 5rem;
	margin-right: 1rem;
	border-radius: 50%;
}

.card .story-details-image button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	width: 5rem;
	height: auto;
	border-radius: 50%;
	border: none;
}

.card .story-details-image button .img-play {
	width: 20%;
	height: auto;
}

.card .subcard h3 {
	font-size: 0.7rem;
	text-align: left;
	font-weight: bold;
}

.card .subcard p {
	font-size: 0.6rem;
	text-align: left;
	text-align: justify;
	font-weight: 300;
}

.card .subcard p:last-child {
	margin-bottom: 0;
}

.card .subcard .sous-titre {
	text-align: left;
	font-size: 0.6rem;
	margin-bottom: 13px;
	color: rebeccapurple;
	text-transform: uppercase;
}

.bloc-podcasts .bouton-histoires,
.questions-reponses .bouton-contact {
	display: flex;
	align-items: center;
	margin: 1rem auto 0;
	color: rgb(102, 51, 153);
	background-color: white;
	border: solid 1px rgb(102, 51, 153);
	border-radius: 80px;
	font-size: 0.6rem;
	font-weight: 700;
	transition 200ms;
	padding-top: 10px;
	padding: 10px 15px 10px 15px;
	transition: 200ms;
}

.bloc-podcasts .bouton-histoires svg {
	margin-right: 6px;
}

.bloc-podcasts .bouton-histoires svg path {
	transition: 200ms;
}

.bloc-podcasts .bouton-histoires:hover,
.questions-reponses .bouton-contact:hover {
	background-color: rgb(102, 51, 153);
	color: white;
	transition: 200ms;
}

.bloc-podcasts .bouton-histoires:hover svg path {
	fill: white;
	transition: 200ms;
}


/* FOOTER */

footer {
	position: relative;
	color: white;
	margin-top: 1rem;
	padding-top: 1rem;
	padding-bottom: 1px;
	background-color: rgb(102, 51, 153);
}

footer:before {
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	content: '';
	background-image: url(../images/wave.svg);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 112px;
	height: 7rem;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

footer .ligne-newsletter {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

footer .ligne-newsletter .sous-ligne {
	margin-left: 1rem;
	margin-right: 1rem;
	margin-top: 2rem;
}

footer .ligne-newsletter .sous-ligne h2 {
	font-size: 0.9rem;
	font-weight: 700;
}

footer .ligne-newsletter .sous-ligne p {
	font-size: 0.6rem;
}

footer .ligne-newsletter .sous-ligne .captcha-code {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

footer .ligne-newsletter .sous-ligne .captcha-code input {
	font-size: 0.6rem;
	border-top-right-radius: 90px;
	border-bottom-right-radius: 90px;
	background: rgb(50, 25, 75);
	color: #ffffff;
	font-weight: 300;
	padding: 0.4rem;
	border: none;
	line-height: 0.8rem;
}

footer .ligne-newsletter .sous-ligne .captcha-code img {
	height: 1.6rem;
	border-top-left-radius: 90px;
	border-bottom-left-radius: 90px;
	border: solid 0.2rem rgb(50, 25, 75);
}

footer .ligne-newsletter .sous-ligne .inputAddOn {
	display: flex;
}

footer .ligne-newsletter .sous-ligne .inputAddOn input {
	font-size: 0.6rem;
	border-top-left-radius: 90px;
	border-bottom-left-radius: 90px;
	background: rgb(50, 25, 75);
	color: #ffffff;
	font-weight: 300;
	padding: 0.4rem;
	flex: 1;
	border: none;
	padding-left: 20px;
}

footer .ligne-newsletter .sous-ligne .inputAddOn button {
	display: flex;
	align-items: center;
	border-top-right-radius: 90px;
	border-bottom-right-radius: 90px;
	font-size: 0.6rem;
	font-weight: 700;
	background-color: white;
	color: rgb(102, 51, 153);
	padding-right: 20px;
	padding-left: 15px;
	border: none;
	transition: 200ms;
}

footer .ligne-newsletter .sous-ligne .inputAddOn button:hover svg path {
	animation-name: spin;
	animation-duration: 1s;
	transform-origin: center;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}

footer .ligne-newsletter .sous-ligne .inputAddOn button svg {
	margin-right: 10px;
}

footer .ligne-menu-rapide {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 4rem;
}

footer .ligne-menu-rapide .sous-ligne {
	width: 28%;
}

/*footer .ligne-menu-rapide .sous-ligne:last-child{
	width: 15%;
}*/
footer .ligne-menu-rapide .sous-ligne address {
	/*font-weight: 100;*/
	margin-top: 1rem;
	line-height: 0.6rem;
}

footer .ligne-menu-rapide .sous-ligne address p {
	font-size: 15px;
}

footer .ligne-menu-rapide .sous-ligne a {
	list-style: none;
	text-decoration: none;
	color: white;
	font-size: 14px;
	line-height: 30px;
	transition: 200ms;
	height: 100%;
	display: block;
}

footer .ligne-menu-rapide .sous-ligne a:hover {
	transform: translateY(2px);
	transition: 200ms;
}

footer .ligne-menu-rapide .sous-ligne h2 {
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0;
}

footer .ligne-menu-rapide .sous-ligne ul {
	list-style: none;
	padding-left: 0;
	margin-top: 0.3rem;
}

footer .ligne-menu-rapide .sous-ligne img {
	min-width: 30%;
	max-width: 50%;
	/*transform: translateX(-25%);*/
}

footer .ligne-menu-rapide .sous-ligne li {
	line-height: 1.2;
	display: block;
}

footer .ligne-menu-rapide .sous-ligne-media {
	width: 10%;
}

footer .ligne-menu-rapide .sous-ligne-media .logo-media {
	margin-top: 15px;
	list-style: none;
}

footer .ligne-menu-rapide .sous-ligne-media .logo-media a {
	display: block;
}

footer .ligne-menu-rapide .sous-ligne-media .logo-media svg {
	width: 1.5rem;
	height: 1.5rem;
	transition: 200ms;
}

footer .ligne-menu-rapide .sous-ligne-media .logo-media svg:hover {
	transform: translateY(2px);
	transition: 200ms;
}

footer .ligne-mentions-legales {
	margin-top: 1rem;
	margin-bottom: 1rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .ligne-mentions-legales .copyright {
	font-size: 13px;
	margin-right: 2rem;
	margin-left: 2rem;
	margin-bottom: 0;
}

footer .ligne-mentions-legales ul {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	align-items: center;
}

footer .ligne-mentions-legales ul li {
	list-style: none;
	margin-right: 0.5rem;
	border-right: solid 1px white;
	padding-right: 0.5rem;
	vertical-align: top;
	font-size: 0;
}

footer .ligne-mentions-legales ul li:last-child {
	border-right: none;
	padding-right: 0;
}

footer .ligne-mentions-legales ul li a {
	text-decoration: none;
	color: white;
	font-size: 13px;
	line-height: 1rem;
	display: inline-block;
	/*font-weight: 100;*/
}

footer .ligne-mentions-legales ul li a:hover {
	transform: translateY(2px);
	transition: 200ms;
}


/* PAGE PODCASTS */

.page .hero-image {
	padding-bottom: 5rem;
}


/*----------------------------------------*/


/*subrata*/


/*----------------------------------------------------*/

.blog-wrap {
	position: relative;
	padding-bottom: 20px;
}

.blog-main {
	position: relative;
	margin: 0 auto;
	/*width:90%;*/
	padding-bottom: 60px;
}

#story_list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: calc(100% - 8px);
	max-width: 100%;
	margin-top: 0;
}

#story_list1 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: calc(100% - 2px);
}

.blog-list {
	/*display: flex; */
	/* flex-direction: row; */
	/* justify-content: space-between; */
	margin-bottom: 10px;
	flex-wrap: wrap;
	width: 31%;
	/*border: 1px solid #e2e4e7;*/
	padding: 10px;
	position: relative;
	min-height: 64px;
}


/*.blog-list:before {
	position: absolute;
	content: '';
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	border: 1px solid #e2e4e7;
	left: 0px;
	top: 0px;
}*/


/*.blog-list div:nth-child(2){
	width:310px;
}*/


/*.blog-list .play{
	position: absolute;
    right: -40px;
    top: 0;
}*/

.blog-list .play a {
	/*background: #b163e5;*/
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
}

.blog-list .play a img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.blog-list div:first-child {
	margin: 0;
	position: relative;
	width: calc(100% - 70px);
	min-height: 80px;
}

.blog-list .playitem {
	position: absolute;
	top: 10px;
	right: 10px;
}

.blog-list .user-pic {
	width: 40px;
	/*border-radius:50px;
	border:2px solid #b163e5;*/
}

.blog-list h4 {
	margin: 0 0 3px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	height: 14px;
}

.blog-list h3 {
	font-size: 15px;
	font-weight: 600;
	margin: 0;
	color: #fff;
	line-height: 22px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-list ul.user-details {
	display: flex;
	justify-content: flex-start;
	font-size: 13px;
	color: #fff;
	margin-top: 10px;
}

.blog-list ul.user-details li {
	margin-right: 8px;
	padding-right: 10px;
	position: relative;
}

.blog-list ul.user-details li:before {
	position: absolute;
	content: '|';
	top: -1px;
	right: 0;
	font-size: 14px;
	color: #c3c3c3;
}

.blog-list ul.user-details li:last-child:before {
	display: none;
}

.blog-list h3 small {
	font-size: 13px;
	margin: 5px 0 0;
	color: #000;
	font-weight: 400;
	display: block;
}

.blog-list p {
	font-size: 13px;
	margin: 0;
	color: #fff;
	font-weight: 400;
	z-index: 2;
	position: relative;
	background: rgba(0, 0, 0, 0.6);
	padding: 5px 8px;
	/*width: 100%;*/
}

.blog-list ul {
	display: flex;
	flex-direction: row;
	padding: 0;
	margin: 0 0 5px;
	justify-content: center;
	align-items: center;
}

.blog-list ul li {
	display: inline-block;
}

.blog-list ul li.tx {
	width: 30px;
	height: 20px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border-radius: 50px;
	margin-right: 3px;
}

.page .bloc-podcasts {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
}

.page .bloc-podcasts h1 {
	font-size: 2rem;
	text-align: center;
}

.blog-post-form {
	width: calc(100% - 70px);
	position: relative;
}

.blog-post-form form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.blog-post-form form div {
	flex-grow: 1;
	margin-right: 5px;
}

.blog-post-form .text-right {
	text-align: right;
}

.power {
	position: absolute;
	right: 0;
	bottom: 0px;
	text-align: right;
	font-size: 11px;
	color: #352c3c;
	margin: 0;
	font-weight: 600;
	background: #fff;
	line-height: 18px;
	width: 100%;
	z-index: 9;
}


/*.power p a {
	text-decoration: none;
	color: #b163e5;
	margin: 0 1px;
	font-size: 13px;
}
*/

.blog-post-form form .form-group {
	margin-bottom: 10px;
}

.blog-post-form form .form-group .search-input {
	width: 100%;
}

.blog-post-form form .form-group label {
	width: 20px;
	height: 20px;
	font-size: 0.5rem;
	line-height: 20px;
}

.blog-post-form form .form-group input,
.blog-post-form form .form-group select {
	outline: none;
	font-size: 12px;
	padding: 2% 3%;
	border-radius: 50px;
	width: 94%;
	height: 23px;
}

.btn-success {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.btn-search {
	color: rgb(102, 51, 153);
	background-color: white;
	border: solid 1px rgb(102, 51, 153);
	border-radius: 80px;
	font-size: 14px;
	font-weight: 400;
	padding-top: 10px;
	padding: 8px 12px;
	transition: 200ms;
	outline: 0;
}

.btn-search:hover {
	background-color: rgb(102, 51, 153);
	color: white;
	transition: 200ms;
}

.btn-reset {
	color: #5cb85c;
	background-color: white;
	border: solid 1px #5cb85c;
	border-radius: 80px;
	font-size: 14px;
	font-weight: 400;
	padding-top: 10px;
	padding: 8px 12px;
	transition: 200ms;
	outline: 0;
}

.btn-reset:hover {
	background-color: #5cb85c;
	color: white;
	transition: 200ms;
}


/*.search-box{
    margin-right: 90px;
    position: relative;
}*/

.search-box input {
	width: calc(100% - 22px);
	border: 1px solid #ccc;
	height: 30px;
	outline: 0;
	margin: 0 0 10px;
	padding: 5px 10px;
	background: transparent;
	color: #888;
	font-size: 14px;
}

.search-btn {
	border-radius: 100px;
	background-color: #02a91e;
	width: 30px;
	height: 30px;
	color: #ffffff;
	font-size: 15px;
	line-height: 30px;
	text-align: center;
	border: 0;
	outline: 0;
	cursor: pointer;
	position: absolute;
	right: -35px;
	top: 5px;
}

.search-box a {
	position: absolute;
	font-size: 18px;
	width: 30px;
	height: 30px;
	line-height: 32px;
	text-align: center;
	color: #ffffff;
	right: -70px;
	top: 5px;
	background: #f00;
	border-radius: 100%;
}

.search-close {
	position: absolute;
	font-size: 16px;
	width: 30px;
	height: 30px;
	line-height: 32px;
	text-align: center;
	color: #ffffff;
	right: -70px;
	top: 5px;
	background: #565656;
	border-radius: 100%;
}

.oth-story {
	display: flex;
	flex-direction: row;
	position: relative;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 10px;
	font-weight: 400;
	padding: 10px;
	width: 48%;
}

.oth-story .thumb {
	margin-right: 15px;
	width: 140px;
	position: relative;
}

.oth-story .thumb img {
	width: 140px;
	/*height: 115px;*/
	border-radius: 3px;
}

.oth-story .thumb .play {
	position: absolute;
	right: 7px;
	bottom: 10px;
}

.oth-story .thumb .play a {
	background: #b163e5;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
}

.oth-story .thumb .playgif {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 3px;
	bottom: 5px;
}

.oth-story .thumb .play a img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.oth-story .content-txt {
	display: flex;
	flex-direction: column;
	width: calc(100% - 145px);
}

/*.oth-story .content-txt .user-heading{
  display: flex;
  justify-content: space-between;
}*/
.oth-story .content-txt .user-heading h4 {
	white-space: nowrap;
	font-size: 18px;
	color: #060606;
	margin: 0 10px 10px 0;
	font-weight: 400;
	width: calc(100% - 100px);
	text-overflow: ellipsis;
	overflow: hidden;
}

.oth-story .content-txt .user-heading .lan-cntry {
	position: absolute;
	top: 10px;
	right: 10px;
}

.oth-story .content-txt p {
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 7px;
}
.user-top-part{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
    padding: 0.7rem 1rem;
    border-radius: 0.3rem;
}
.user-details {
    display: flex;
    justify-content: flex-start;
    font-size: 13px;
    color: #4a4a4a;
    margin-right: 1rem;
    padding: 0;
    list-style: none;
}
.user-details .avatar{
	margin-right: 10px;
}
.user-details .avatar img{
	border-radius: 3px;
	width: 60px;
}
.user-details h4{
	font-size: 20px;
	font-weight: 500;
}
.user-details span{
	font-size: 13px;
}
.user-details .email-badge{
	background: #e0e0e0;
	padding: 5px 10px;
	border-radius: 3px;
	display: inline-block;
	margin-right: 5px;
}
.user-details .userpart{
	border:1px solid #663399;
	padding: 5px 10px;
	border-radius: 3px;
	display: inline-block;
	color: #101010;
}

.user-details li {
	margin-right: 8px;
	padding-right: 10px;
	position: relative;
}

.user-details li:before {
	position: absolute;
	content: '|';
	top: -1px;
	right: 0;
	font-size: 14px;
	color: #4a4a4a;
}

.user-details li:last-child:before {
	display: none;
}

.lan-cntry ul {
	display: flex;
	flex-direction: row;
	padding: 0;
	margin: 0 0 5px;
	justify-content: center;
	align-items: center;
}

.lan-cntry ul li {
	display: inline-block;
}

.lan-cntry ul li.tx {
	width: 30px;
	height: 20px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border-radius: 50px;
	margin-right: 3px;
}

.user-follow-info {
    margin:  0;
    position: relative;
}

.user-follow-info ul {
    padding: 0;
    margin: 0;
    display: flex;
}
.user-follow-info li {
	text-align: center;
	color: #333;
	padding: 7px 12px;
	border-radius: 3px;
	font-size: 14px;
	background: #dfe6f3;	
}
.user-follow-info li:nth-child(2){
	margin-left: 5px;
	margin-right: 5px;
}
.user-follow-info li span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 0;
}

@media(max-width: 800px){
	.user-top-part{
		flex-direction: column;
		align-items: center;
	}
	.user-follow-info{
		margin-top: 5px;
	}
}


@media(max-width:991px) {
	.oth-story {
		width: 100%;
	}
}

@media(max-width: 640px) {
	.oth-story {
		width: calc(100% - 14px);
		flex-direction: column;
	}

	.oth-story .thumb {
		margin-right: 0;
		margin-bottom: 15px;
		width: 100%;
	}

	.oth-story .thumb img {
		width: 100%;
		height: auto;
		border-radius: 3px;
	}

	.oth-story .content-txt {
		width: 100%;
	}

	.oth-story .content-txt .user-heading h4 {
		font-size: 16px;
		color: #4a4a4a;
		margin-right: 10px;
		width: calc(100% - 60px);
		text-overflow: ellipsis;
		overflow: hidden;
	}
}

/*end my code*/


/*---------------------------------*/

.page .bloc-podcasts {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 0;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}

.page .bloc-podcasts h1 {
	font-size: 1rem;
	text-align: center;
	margin-bottom: 0.5rem;
	font-weight: 400;
}

.page .bloc-podcasts .search {
	display: flex;
	justify-content: center;
	padding-top: 2rem;
	width: 80%;
}

.page .bloc-podcasts .search form {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 80%;
}

.page .bloc-podcasts .search form .form-group {
	display: flex;
	align-items: center;
	flex-grow: 1;
	margin-left: 0.4rem;
	margin-right: 0.4rem;
}

.page .bloc-podcasts .search form .form-group .search-input {
	width: 100%;
}

.page .bloc-podcasts .search form .form-group label {
	min-width: 30%;
	font-size: 0.6rem;
}

.page .bloc-podcasts .search form .form-group input {
	outline: none;
	font-size: 14px;
	padding: 9px;
	border-radius: 50px;
	flex-grow: 1;
}

.form-group select {
	outline: none;
	font-size: 0.5rem;
	padding: 0.5rem 3rem 0.5rem 0.5rem;
	margin-top: 0.2rem;
	border-radius: 50px;
	flex-grow: 1;
}

.page .bloc-podcasts .result-search {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	padding-top: 3rem;
	width: 80%;
}

.page .bloc-podcasts .result-search svg {
	width: 0.7rem;
	height: 0.7rem;
	margin-left: 0.5rem;
}

.page .bloc-podcasts .liste-podcasts {
	display: flex;
	max-width: 80%;
}

.page .bloc-podcasts .liste-podcasts .card {
	margin: 0 auto;
	/*max-width: 20%;
	min-width: 9rem;*/
	width: calc(25% - 20px);
	border-radius: 0;
}

.page .bloc-podcasts .formulaire {
	display: flex;
	margin-top: 1rem;
	max-width: 80%;
}

.page .formulaire .search form div {
	flex-wrap: wrap;
	width: 100% !important;
}

.formulaire .logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.formulaire .logos .bloc-images-app {
	min-width: 9rem;
	max-width: 9rem;
}

.formulaire .logos h2 {
	width: 100%;
	font-size: 1rem;
	margin-bottom: 2rem;
}

.formulaire .bloc-images-app .premiere-image-app {
	width: 40%;
	margin-right: -1.5rem;
	z-index: 1;
}

.formulaire .bloc-images-app .deuxieme-image-app {
	width: 54%;
}

.formulaire .bloc-images-app {
	min-width: 12rem;
	max-width: 12rem;
}

.formulaire .bloc-stores-app {
	width: 6rem;
}

.formulaire .bloc-stores-app div {
	width: 100%;
	margin-bottom: 0.5rem;
}

.formulaire .bloc-stores-app svg {
	width: 100%;
}

.page .bloc-download {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-top: 0;
	margin: 0 4vw 0 4vw;
}

.page .bloc-download h1 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}

.page .bloc-download .ligne-download {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.page .bloc-download .ligne-download .sous-ligne-download {
	width: 40%;
}

.page .bloc-download .ligne-download .sous-ligne-download:nth-child(2) {
	margin-left: 2rem;
	margin-right: 2rem;
}

.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-stores-app {
	min-width: 0;
}

.page .bloc-download .ligne-download .sous-ligne-download .logos .bloc-stores-app svg {
	margin-top: 0.5rem;
	width: 6rem;
}


/* The actual timeline (the vertical ruler) */

.timeline {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	margin: 0 20px 20px;
}

.timeline p {
	font-size: 0.5rem;
}

.sous-ligne-download h2 {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 1rem;
}


/* The actual timeline (the vertical ruler) */


/*.timeline:after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	width: 1px;
	background-color: grey;
	top: 0;
	bottom: 0;
	left: 12px;
}
*/

.timeline .step {
	position: relative;
	background-color: rgba(102, 51, 153, 0.1);
	border-radius: 5px;
	padding: 0 20px;
}

.timeline .step:last-child {
	margin-bottom: 0;
}

.timeline .step:after {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 40px;
	left: -1.75rem;
	background-color: rgb(102, 51, 153);
	top: 40%;
	border-radius: 50%;
	font-size: 0.5rem;
	font-weight: 700;
	z-index: 1;
	color: white;
}

.timeline .step:first-child:after {
	content: '1';
}

.timeline .step:nth-child(2):after {
	content: '2';
}

.timeline .step:last-child:after {
	content: '3';
}

.timeline .step .step-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1rem;
	text-align: justify;
}

.timeline .step .step-content h3 {
	font-weight: 700;
	font-size: 0.5rem;
}

.timeline .step .step-content p {
	margin-bottom: 0;
}

.enjoy {
	text-align: center;
	margin-top: 1rem;
}

.questions-reponses {
	margin: 0 4vw 0 4vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 1rem;
}

.questions-reponses h2 {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

.questions-reponses a {
	text-align: center;
	font-size: 0.8rem;
}

.questions-reponses .bouton-contact svg {
	width: 0.7rem;
	height: 0.7rem;
	margin-right: 0.2rem;
}

.bloc-questions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.bloc-questions .question {
	width: 40%;
	margin-left: 1rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
	text-align: justify;
}

.bloc-questions .question h3 {
	font-size: 0.6rem;
	font-weight: 700;
}

.bloc-questions .question p {
	font-size: 0.6rem;
}

.page .hero-text .bloc-stores-app svg,
body.page .bloc-download .page-download .logos .bloc-stores-app svg {
	width: 6rem;
}


/* PAGE ESPACE PRESSE */

.section-presse {
	margin: 0 auto;
	padding-top: 0;
	width: 1200px;
	max-width: 100%;
}

.subtitle-press {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	text-align: center;
}

.section-presse h1 {
	text-align: center;
	font-size: 2rem;
}

.liste-documents-presse {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.liste-documents-presse .card {
	width: 48%;
	padding: 1rem;
	margin: 0 0 20px;
	align-items: flex-start;
	border: 1px solid #e6e1ea;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.liste-documents-presse .story-details-image {
	background-image: none;
	align-self: start;
	justify-content: flex-end;
	align-items: flex-start;
	width: 2rem !important;
}

.liste-documents-presse .story-details-image img {
	opacity: 1;
	width: 2rem;
	height: auto;
}

.liste-documents-presse .subcard {
	width: 100%;
}

.link-download {
	color: #663399;
	text-decoration: underline;
	font-weight: 700 !important;
}


/*------------ 11-04-2019 --------------*/

.defult-text-01,
ul.defult-text-01 li {
	font: 400 16px/22px 'Roboto' !important;
}

.mar-bott-25 {
	margin-bottom: 25px !important;
}

.mar-top-25 {
	margin-top: 25px !important;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.clearfix {
	display: inline-block;
}


/* start commented backslash hack \*/

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}


/* close commented backslash hack */

.custom-body-content {}

.custom-body-content p,
.custom-body-content ul,
.custom-body-content ul li,
.custom-body-content ol,
.custom-body-content ol li {
	font: 400 16px/22px 'Roboto' !important;
	color: #000000;
	margin: 0 0 20px 0;
	padding: 0;
}

.custom-body-content ul.defult-style-none,
.custom-body-content ol.defult-style-none {
	list-style-type: none;
}

.custom-body-content ul.defult-style-01,
.custom-body-content ol.defult-style-01 {
	list-style-type: upper-roman;
}

.custom-body-content ul.defult-style-02,
.custom-body-content ol.defult-style-02 {
	list-style-type: upper-latin;
}

.custom-body-content ul li,
.custom-body-content ol li {
	margin: 0 0 5px 0;
}

.custom-body-content h2,
.custom-body-content h3 {
	color: #663399;
	font-weight: 600;
}

.audio-palyer-cont h2.so-name {
	font-size: 15px;
	margin-bottom: 0;
}


/*- about us -*/

.about-main {
	margin: 0;
	padding: 0 8%;
	display: block;
	position: relative;
}

.about-main .left-img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0.6;
}

.about-main .right-img {
	position: absolute;
	right: 0;
	top: 15%;
	z-index: -1;
}

.about-main h1 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 10px;
}

.about-main h1:after {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	width: 120px;
	height: 1px;
	background: #6d3991;
}

.about-main audio {
	outline: 0;
	width: 460px;
	margin: 0 auto;
}

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

.about-box {}


/*----------------
team
----------------*/

.team-pt {
	margin: 70px 0 50px;
}

.team-three {
	overflow: hidden;
}

.team-three .team-bg {
	position: relative;
	overflow: hidden;
}

.team-three .team-bg img {
	width: 100%;
	border-radius: 10px;
}

.team-three .social-box {
	padding: 15px 0;
	-webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.08);
	position: absolute;
	width: 100%;
	bottom: 0;
	left: -100%;
	text-align: center;
	background: #663399;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.team-three:hover .social-box {
	left: 0;
}

.team-three .social-box a i {
	font-size: 20px;
	color: #e8d2ff;
	margin: 0 10px;
}

.team-three .social-box a:hover i {
	color: #fff;
}

.team-three .team-content {
	padding: 15px;
}

.team-three .team-content h2 {
	font-weight: 800;
	color: #663399;
	margin-bottom: 10px;
}

.team-three .team-content small {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	font-style: italic;
}

.team-three .team-content p {
	font-size: 15px;
	margin-bottom: 0;
	font-weight: 300;
}

.circle {
	top: 40%;
	left: 5%;
}

.team-three:hover {
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	background: #fff;
}


/*- contact-us -*/

#contact_form .form-group {
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
}

#contact_form .input_val {
	font-size: 15px;
	border-radius: 20px;
	padding: 8px 0 8px 20px;
	color: #381e67;
	border: 1px solid#cccccc;
	background: none !important;
	outline: 0;
}

#contact_form textarea {
	resize: none;
	margin: 0 !important;
}

#contact_form label {
	display: inline-block;
	line-height: 100%;
	margin: 5px 10px;
}

#contact_form label img {
	display: inline-block;
	line-height: 100%;
	margin: 0;
	width: 75%;
}

#contact_form #submit {
	color: rgb(102, 51, 153);
	border: solid 1px rgb(102, 51, 153);
	border-radius: 20px;
	padding: 10px 15px;
	background: #fff;
	width: 419px;
	font-weight: bold;
	transition: 200ms;
}

#contact_form #submit:hover {
	background: rgb(102, 51, 153);
	transition: 200ms;
	color: #FFF;
}


/*=========================================*/


/*terms & conditions*/


/*========================================================*/

.terms .container {
	float: none;
	padding: initial;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.terms-wrap {
	padding: 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.terms-wrap p,
.terms-wrap li {
	font-size: 15px;
	font-weight: 400;
}

.terms-wrap h4 {
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 24px;
	color: #663399;
	padding-bottom: 7px;
	border-bottom: 1px solid #cdbcde;
}

.terms-wrap h5 {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #663399;
}

.terms-wrap h6 {
	font-size: 15px;
	text-decoration: underline;
	margin-bottom: 5px;
	font-weight: 600;
	color: #663399;
}

.terms-wrap ul {
	padding-left: 30px;
	margin-bottom: 20px;
}

.terms-wrap ul ul {
	padding-left: 10px;
}

.terms-wrap ul ul {
	padding-left: 10px;
}

.terms-wrap li {
	margin-bottom: 5px;
	list-style: circle;
}


/*content wrap -----*/

.content-wrap {
	padding: 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.content-wrap h4 {
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 10px;
	color: #663399;
}

.content-wrap ul {
	padding-left: 0;
	margin-bottom: 10px;
}

.content-wrap ul li {
	list-style: circle;
	font-size: 15px;
	margin-bottom: 5px;
	margin-left: 16px;
}

.content-wrap p {
	font-size: 15px;
}

.content-wrap h5 {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 10px;
	color: #663399;
}

.content-wrap h6 {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 10px;
	color: #663399;
}


/*- help -*/

.dwonload-btn {
	text-align: center;
	margin-bottom: 25px;
}

.dwonload-btn a {
	color: rgb(102, 51, 153);
	border: solid 1px rgb(102, 51, 153);
	border-radius: 20px;
	padding: 10px 15px;
	background: #fff;
	width: 300px;
	font-weight: bold;
	transition: 200ms;
	margin: 0 auto;
	display: block;
	text-decoration: none !important;
}

.dwonload-btn a:hover {
	background: rgb(102, 51, 153);
	transition: 200ms;
	color: #FFF;
}

#pdf-canvas {
	border: 1px solid #ccc;
}

.volume-slider {
	height: 3px;
	margin: 0 3px;
}



.story-details .container {
	margin: auto;
	padding: 0;
}

.story-details-main {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 20px 10px;
	border: 1px dashed #d4ccdc;
	border-radius: 0.3rem;
	background: #fff;
	box-shadow: 0 2px 5px rgb(236 203 242 / 40%);
}

.story-details-main .story_item {
	flex: 1;
	min-width: 420px;
	width: 100%;
	padding: 0 10px;
}

@media (max-width:800px) {
	.page {
		background: #fdfdfd;
	}

	.blog-main {
		padding: 0;
	}

	.blog-list {
		width: calc(49.5% - 24px);
		padding: 10px;
		flex-wrap: wrap;
	}

	.team-three {
		margin-bottom: 30px;
	}

	.liste-documents-presse {
		flex-direction: column;
	}

	.liste-documents-presse .card {
		width: 100%;
	}

	/*.blog-post-form {
		width: 98%;
		margin: 0 auto 0;
	}*/
	/*.blog-post-form form .form-group {
		width: 48%;
	}*/
	/*.blog-post-form form .form-group:nth-child(2){
		margin-left: 4%;
	}*/
	.blog-post-form form .form-group select {
		height: 40px;
		font-size: 14px;
		margin-bottom: 0;
		margin-top: 0;
		width: 100%;
	}

	/*.search-box {
	    width: calc(100% - 90px);
	    flex: none !important;
	}*/
}

@media (max-width:767px) {
	.flex-column header {
		padding-top: 5px;
	}

	.second-links a svg,
	.second-links a img {
		width: auto;
		height: auto;
	}

	.hero-text .subtitle {
		margin-top: 2vh;
	}

	.page .hero-image {
		padding-bottom: 2rem;
	}

	.reassurance .bloc-presse .ligne-logo-presse div {
		width: calc(25% - 1rem);
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}

	.story-details-main {
		flex-direction: column;
	}

	.story-details-main .story_item {
		min-width: auto;
	}

	.story-details-main .story_item:last-child {
		margin-top: 2rem;
	}
}

@media (max-width:720px) {
	.reassurance .bloc-presse {
		flex: auto;
		margin: 0 0 25px;
		max-width: 100%;
	}

	.iframe-story {
		min-height: 400px;
	}

	.bloc-podcasts h2 {
		margin: 0 2rem;
	}

	.page .bloc-podcasts .liste-podcasts {
		max-width: 100%;
	}

	/*.blog-post-form {
		width: 80%;
		margin: 10px auto 0;
	}
	.blog-post-form form .form-group {
		width: 98%;
		margin-bottom:0.5rem;
	}
	.blog-post-form form .form-group input, .blog-post-form form .form-group select {
		height: 23px;
		font-size:0.8rem;
		margin-bottom: 0.5rem;
	}*/
}

@media (max-width:710px) {
	.top-menu {
		justify-content: center;
		flex-wrap: wrap;
	}

	.first-links {
		justify-content: center;
		margin-bottom: 5px;
	}

	.first-links a {
		font-size: 13px;
	}

	.second-links {
		display: flex;
		justify-content: space-around;
	}

	.second-links a {
		font-size: 16px;
	}

	.second-links a svg {
		width: 16px;
		height: 16px;
	}

	.page-download audio {
		width: 310px !important;
	}

	#contact_form .input_val,
	#contact_form #submit {
		width: 70% !important;
	}

	/*- help -*/
	.dwonload-btn a {
		width: 200px;
	}
}

@media(max-width:480px) {
	.footer_bar .col-4 {
		width: 100%;
		text-align: center;
		margin-top: 5px;
	}
}

@media(max-width: 640px) {
	.about-main audio {
		width: 420px;
	}
}

@media(max-width:480px) {
	.blog-main {
		padding: 0 0 50px;
	}

	#story_list {
		justify-content: flex-start;
		flex-direction: column;
	}

	.blog-list {
		width: 96%;
		padding: 3%;
		flex-wrap: nowrap;
		display: block;
	}

	.footer_bar .col-4 {
		width: 100%;
		text-align: center;
		margin-top: 5px;
	}

	.blog-post-form form .form-group {
		margin-bottom: 5px;
	}
}

@media(max-width: 640px) {
	.about-main audio {
		width: 420px;
	}
}

@media(max-width: 480px) {
	.about-main audio {
		width: 300px;
	}
}

@media(max-width: 320px) {
	.about-main audio {
		width: 250px;
	}
}