body {
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	margin:0px;
	line-height: 30px;
}

button, .button, input[type="submit"] {
	border:none;
	background-color: #45b5ff;
	color:white;
	border-radius:3px;
	font-family: 'Raleway', sans-serif;
	cursor:pointer;
	padding:10px;
	font-size:16px;
	vertical-align: top;
	display:inline-block;
	transition:all 0.3s;
}
button:hover, .button:hover, input[type="submit"]:hover {
	background-color: #3cb0fd;
	transform: scale(1.02);
}
button:focus, .button:focus, input[type="submit"]:focus {
	box-shadow:0px 0px 0px 10px #E5E7E9;
}

.softButton {
	border:1px solid lightgray;
	padding:5px;
	border-radius:3px;
	cursor:pointer;
	display:inline-block;
	transition:all 0.3s;
}
.softButton:hover {
	background-color:lightgray;
}

.linkBtn {
	border:none;
	background-color: #E5E7E9;
	color:black;
	border-radius:3px;
	font-family: 'Raleway', sans-serif;
	cursor:pointer;
	padding:5px;
	vertical-align: top;
	transition:all 0.3s;
}
.linkBtn:hover {
	background-color: #3cb0fd;
}

hr {
	width:50%;
	margin-top:50px;
	margin-bottom:50px;
	padding:0px;
	border: 1px solid #C1C1C1;
}

a {
	color:black;
	text-decoration:none;
	cursor:pointer;
}


h1,h2,h3,h4,h5 {
	font-weight: normal;
}

nav {
	border-bottom:3px solid #E6E6E6;
	width:100%;
}

img {
	vertical-align:top;
}

.info {
	padding:15px;
	background-color: #7CB342;
	color:white;
	position:fixed;
	width:50%;
	left:25%;
	top:0px;
	border-bottom: 3px solid lightgray;
	cursor:pointer;
	display:none;
}
.info>div {
	word-wrap: break-word;
}

input[type="text"], textarea {
	border:1px solid #E6E6E6;
	padding:10px;
	font-size:16px;
	font-family: 'Raleway', sans-serif;
	border-radius:3px;
	cursor:pointer;
	transition:all 0.3s;
}
input[type="text"]:focus, textarea:focus {
	cursor:auto;
	border:1px solid dodgerblue;
}

iframe {
	border:none;
	min-height: 500px;
}

/* Right Click Menu */

.RClickMenu {
	position:absolute;
	box-shadow:0px 0px 20px lightgray;
	width:300px;
	height:auto;
}

/* mise en page */

.w-30 {
	width:30%;
}

.w-40 {
	width:40%;
}

.w-50 {
	width:50%;
}
.w-75 {
	width:75%;
}
.w-80 {
	width:80%;
}
.w-100 {
	width:100%;
}

.padding {
	padding:50px;
	box-sizing: border-box;
}

.center {
	margin-left: auto;
	margin-right:auto;
}
.centerTxt {
	text-align:center;
}

.block {
	display:block;
	padding:50px 0px 50px 0px;
}

.col-2 {
	display:inline-block;
	width:49%;
	vertical-align: top;
	margin:0px;
}

.col-3 {
	display:inline-block;
	width:32%;
	vertical-align: top;
	margin:0px;
}

.col-4 {
	display:inline-block;
	width:24%;
	vertical-align: top;
	margin:0px;
}

.elemBlock {
	display:block;
}
.elemInline {
	display:inline-block;
}

.full {
	width:100%;
	height:100%;
	position: fixed;
	top:0px;
	left:0px;
	margin:0px;
}

.fixe {
	position: fixed;
}

.absolute {
	position: absolute;
}

.hide {
	display:none;
}
.show {
	display:block;
}


/* Effets */

.ef-scale {
	transition: all 0.3s;
	transform: scale(1);
}
.ef-scale:hover {
	transform: scale(1.05);
}

.white {
	background-color:white;
	color:grey;
}
.black {
	background-color:black;
	color:lightgrey;
}
.red {
	background-color:red;
	color:white;
}
.green {
	background-color:lightgreen;
	color:white;
}
.blue {
	background-color:lightblue;
	color:white;
}
.gray {
	background-color:lightgray;
	color:white;
}

.circle {
	border-radius:180px;
}

.curved {
	border-radius:5px;
}


/* font size */

.fs-30 {
	font-size: 30px;
}

.fs-25 {
	font-size: 20px;
}

.fs-20 {
	font-size: 20px;
}

.fs-18 {
	font-size: 18px;
}

.fs-16 {
	font-size: 16px;
}

.fs-14 {
	font-size: 14px;
}

.fs-12 {
	font-size: 12px;
}

.fs-10 {
	font-size: 10px;
}


/* media screen */


@media screen and (max-width: 1300px) {
	.w-50,.w-75 {
		width:70%;
	}
	.block {
		padding:20px 0px 20px 0px;
	}
	.padding {
		padding:20px;
	}
}

@media screen and (max-width: 1200px) {
	.w-50,.w-75 {
		width:80%;
	}
	.block {
		padding:20px 0px 20px 0px;
	}
	.padding {
		padding:20px;
	}
}

@media screen and (max-width: 600px) {
	.col-2,.col-3,.col-4 {
		display: block;
		width:100%;
		margin-right: auto;
		margin-left: auto;
	}
	.w-50,.w-75 {
		width:80%;
	}
	.padding {
		padding:20px;
	}
	.img-click {
		margin-bottom:10px;
	}
}