/*
blue : B5D7FF;
orange : C55A36;
*/
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Montserrat&display=swap');
*{
	margin: 0;
	padding: 0;
	font-family: var(--font-family-all);
	letter-spacing: var(--font-spacing-body);
}
body{
	background-color: #F8F8F9;
	padding: 0 300px;
}
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	text-align: center;
	margin: auto;
	font-family: var(--font-family-all);
	background-color: #F8F8F9;
}
.center_header{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.center_header:hover{
	transform: translateX(-5px);
}
.blc_header_btn{
	display: flex;
	justify-content: space-between;
	gap: 3em;
}
.gotospaceheader{
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000000;
	font-size: var(--font-size-larg);
	background: transparent;
	border: none;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gotospaceheader:hover{
	opacity: 0.9;
}
#btnSignIn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	background-color: var(--background-orange);
	color: #FFFFFF;
	border-radius: 5px;
	border: none;
	font-size: var(--font-size-larg);
	padding: 12px 32px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}
#btnSignIn:hover{
	opacity: 0.9;
	gap: 15px;
}
.btn_menu_little{
	display: none;
}
.blc_menu_little{
	display: none;
}
header h1{
	display: block;
	position: relative;
	margin: auto;
	text-align: center;
	font-weight: 800;
	font-family: Briofont;
	color: #000000;
	letter-spacing: -2px;
	text-transform: uppercase;
}
header img{
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
}
.gotocohost{
	display: block;
	position: relative;
	color: #FFFFFF;
	background: #000000;
	border: 1px #000000 solid;
	border-radius: 5px;
	font-size: 0.9em;
	padding: 0.7em 2em;
	cursor: pointer;
	transition: all 0.3 ease;
}
.gotocohost:hover{
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#middle1{
	display: flex;
	justify-content: center;
	gap: 5em;
	align-items: flex-start;
	padding: 5em 2em;
}
.left_side{
	display: block;
	position: relative;
	width: 35em;
}
.left_side .subtitle_line{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 0;
}
.left_side .subtitle_line img{
	position: relative;
	width: 28px;
}
.left_side .subtitle_line .subtitle3{
	color: var(--font-color-title);
	font-weight: 500;
}
.left_side h2{
	font-size: 40px;
	color: var(--font-color-title);
	font-family: var(--font-family-title);
	font-weight: 600;
	line-height: 48px;
	margin-bottom: 24px;
}
.left_side p:not(.title_explanation){
	font-size: 16px;
	padding: 6px 0;
}
.title_explanation{
	font-size: 15px;
	color: var(--font-color-body);
	font-weight: 600;
	line-height: 22px;
}
.body-texte{
	font-size: 15px;
	color: var(--font-color-body);
	font-weight: 400;
	line-height: var(--font-line-body);
}
.margertext{
	margin: 12px 0;
	margin-bottom: 24px;
}
.offering_blc{
	display: none;
	position: relative;
	/*background: linear-gradient(
          rgba(0, 0, 0, 0.1), 
          rgba(0, 0, 0, 0.1)
        ),url('../../img/Small_studio.png') no-repeat center;*/
    background: transparent;
	min-height: 40em;
	width: 40em;
	background-size: cover;
}
.inptblc{
	display: block;
	position: relative;
	padding: 1em 0em;
	margin-top: 0em;
	width: 100%;
}
.inptblc label{
	display: block;
	position: relative;
	color: #212121;
	font-size: 13px;
	font-weight: 500;
}
.inptblc input{
	display: block;
	position: relative;
	background-color: #F2F2F2;
	border: 1px #F2F2F2 solid;
	border-radius: 5px;
	width: calc(100% - 28px);
	font-size: 14px;
	padding: 8px 14px;
	color: var(--font-color-body);
	margin-top: 0.2em;
	outline: none;
}
.inptblc textarea{
	display: block;
	position: relative;
	background-color: #F2F2F2;
	border: 1px #F2F2F2 solid;
	border-radius: 5px;
	width: calc(100% - 28px);
	resize: none;
	font-size: 14px;
	padding: 8px 14px;
	color: var(--font-color-body);
	margin-top: 0.2em;
	outline: none;
}
.error_msg{
	display: block;
	position: relative;
	font-size: 12px;
	color: #E35F68;
	padding-top: 4px;
}
.primary_btn{
	display: block;
	position: relative;
	background-color: var(--font-color-orange);
	color: #FFFFFF;
	border: none;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500px;
	padding: 8px 18px;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s ease;
}
.primary_btn:hover{
	opacity: 0.9;
}
.right_side{
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
	position: relative;
	width: 30em;
	padding: 16px;
	border-radius: 5px;
	background-color: #FFFFFF;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.right_side2{
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	position: relative;
	width: 30em;
	font-size: 20px;
	min-height: 250px;
}
.subtitle{
	font-size: 15px;
	color: var(--font-color-subtitle);
	font-weight: 600;
}
.right_side2 img{
	width: 40px;
	height: 40px;
	margin-bottom: 24px;
}
.explaining_container{
	display: flex;
	flex-direction: column;
	gap: 8px;
}


@media screen and (max-width: 850px){
	body{
		padding: 0 10px;
	}
	header{
		display: flex;
		position: relative;
		justify-content: space-between;
		padding: 0.5em 1.5em;
		text-align: center;
		align-items: center;
		margin: auto;
		font-family: "Karla", sans-serif;
	}
	header h1{
		display: block;
		position: relative;
		text-align: center;
		font-weight: 800;
		font-size: 2em;
		color: #000000;
		letter-spacing: -2px;
	}
	.blc_header_btn{
		display: none;
	}
	.btn_menu_little{
		display: block;
	}
	.btn_menu_little span{
		display: block;
		font-size: 1em;
		padding: 16px 1em;
		border-radius: 5px;
		cursor: pointer;
	}
	.btn_menu_little span:hover{
		background: rgba(0,0,0,0.2);
	}
	.gotocohost{
		background-color: #FFFFFF;
		color: #000000;
		border: none;
	}
	.gotocohost:hover{
		box-shadow: none;
	}
	.blc_menu_little{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 2em;
		background-color: #FFFFFF;
		color: #FFFFFF;
		z-index: 300;
		height: 100%;
		overflow: hidden;
	}
	.blc_menu_little .list_menu{
		display: block;
		position: relative;
		margin-top: 5em;
	}
	.blc_menu_little .list_menu li{
		display: flex;
		position: relative;
		padding: 2em 1em;
		justify-content: space-between;
		align-items: center;
		color: #000000;
		cursor: pointer;
		font-size: 18px;
		font-weight: 500;
		transition: all 0.3s ease;
	}
	.next{
		transition: all 0.3s ease;
		width: 25px;
	}
	.liaccount{
		display: flex;
		align-items: center;
		gap: 1em;
	}
	.blc_menu_little .list_menu li:hover .next{
		left: 1em;
	}
	.back_btn{
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 1.5em;
		right: 1.5em;
		width: 35px;
		height: 35px;
		border-radius: 5px;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	.back_btn img{
		display: block;
		position: relative;
		width: 15px;
		height: 15px;
	}
	.back_btn:hover{
		background-color: #EAEAEA;
	}
	header img:hover{
		width: 1.7em;
	}
	.back_btn img:hover{
		width: 15px;
	}
	header .menu_blc{
		display: none;
	}
	header .blc_menu_myaccount{
		display: none;
	}
	#middle1{
		display: flex;
		justify-content: center;
		flex-direction: column;
		gap: 24px;
		padding: 32px 24px;
	}
	.left_side{
		display: block;
		position: relative;
		width: 96%;
	}
	.body-texte{
		line-height: 24px;
	}
	.right_side{
		display: flex;
		flex-direction: column;
		gap: 12px;
		position: relative;
		width: 95%;
		margin: auto;
	}
	.inptblc{
		padding: 6px 0;
	}
	.primary_btn{
		font-size: 16px;
		padding: 16px 32px;
	}
}
@media screen and (min-width: 850px) and (max-width: 1300px) {
	body{
		padding: 0 100px;
	}
	header img{
		width: 20px;
		height: 20px;
	}
	.middle_header span{
		font-size: 14px;
	}
	#btnSignIn{
		font-size: 14px;
		padding: 8px 24px;
	}
}
