@charset "utf-8";

/***********************************************/
/***************** UNIVERSEL *******************/
/***********************************************/

.bloc_text {
	background-color: white;
    padding: 80px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
	justify-content: center;
}

.bloc_textcontainer {
	display:inline-block;
	background-color: #fafafa;
    border: 2px #7f9f7f dotted;
    border-radius: 10px;
    color: #444;
    padding: 50px;
    width: 40%;
    text-align: left;
}

.bloc_customtext {
	width:30%;
	display:inline-block;
	vertical-align:top;
	text-align:left;
	margin-left:80px;
	padding:50px;
	border-top: 10px solid #7f9f7f;
	border-bottom: 10px solid #7f9f7f;
}

#aboutheader {
	display: block;
    width: 90%;
    margin: 0px 0px 60px 0px;
	text-align:center;
	border-top: none;
}

#aboutcontent {
	display:block;
	width:90%
}


#aboutdetails {
	margin:20px;
	border:none;
	display:inline-block;
	width:auto;
}

#abouttext {
	flex-direction: column;
}

/***********************************************/
/**************** ORDINATEUR *******************/
/***********************************************/

@media screen and (min-width: 1024px) {



}


/***********************************************/
/****************** TABLETTE *******************/
/***********************************************/

@media screen and (min-width: 100px) and (max-width: 1023px) and (orientation: landscape) {

.bloc_text {
	padding:20px;
}

.bloc_textcontainer {
    padding: 30px;
    width: 40%;
}

.bloc_customtext {
    width: 25%;
    margin-left: 40px;
    padding: 20px;
}


}

/***********************************************/
/**************** SMARTPHONE *******************/
/***********************************************/

@media screen and (min-width: 100px) and (max-width: 1023px) and (orientation: portrait) {

.bloc_text {
	padding:80px;
	flex-direction: column;
}

.bloc_textcontainer {
	display:block;
    border: 2px #7f9f7f dotted;
    border-radius: 10px;
    color: #444;
    padding: 50px;
    width: 90%;
    text-align: left;
}

.bloc_customtext {
	width:90%;
	display:block;
	text-align:left;
	margin-top:80px;
	margin-left:0px;
	padding:50px;
	border-top: 10px solid #7f9f7f;
	border-bottom: 10px solid #7f9f7f;
}


}