/*****************************************************************************************

GENERAL

******************************************************************************************/

#index #fil_ariane {
	display: none;
}

#index #wrapper .container {
	max-width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

#home_fullwidth_background {
    width: 100%;
    background: #F1F1F1;
	padding-bottom: 30px;
}

/*****************************************************************************************

BANDEAU BANNIERE 

******************************************************************************************/

#home_banner {
    position: relative;
    width: 100%;
	height: auto;
    background: #F1F1F1;
}

.swiper {
	position: relative;
	width: 100%;
	height: 100%;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
	top: calc(50% - 20px) !important;
	padding: 36px 28px;
	color: #FFF !important;
	background: rgba(33,33,33,0.5);
	opacity: 0.8;
}
.swiper-button-prev {
	left: 0 !important;
	border-radius: 0 20px 20px 0;
}
.swiper-button-next {
	right: 0 !important;
	border-radius: 20px 0 0 20px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
	opacity: 1;
	background: rgba(33,33,33,0.65);
}


/*****************************************************************************************

PICTOS REASURANCE

******************************************************************************************/

#home_reassurance {
    position: relative;
    display: flex;
    z-index: 2;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 740px;
    height: 160px;
    margin: -45px auto 0 auto;
}
.reassurance {
    text-align: center;
}
.reassurance .icon i {
    width: 90px;
    height: 90px;
    border: 2px solid #EF9D51;
    font-size: 42px;
    color: #EF9D51;
    border-radius: 50%;
    line-height: 86px;
    margin-bottom: 10px;
    background: #FFF;
}
.reassurance .title_1 {
    font-size: 11px;
}
.reassurance .title_2 {
    font-size: 12px;
    font-weight: bold;
}


/*****************************************************************************************

4 BOUTONS COULEURS

******************************************************************************************/

#home_cards_buttons {
	position: relative;
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 1110px;
    height: 130px;
	margin: 15px auto;
	overflow: hidden;
}

.color_button {
	position: relative;
	z-index: 1;
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	grid-template-rows: 1fr 1fr; 
	gap: 0px 0px; 
	grid-template-areas: 
		"title arrow"
		"subtitle arrow";
	width: 266px;
	height: 130px;
	padding: 0;
	border-radius: 6px;
	background-size: 200%;
	background-position-x: 206px; 
	overflow: hidden;
	transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.color_button_1 { background-image: linear-gradient(to left, #FFF 50%, #44AEF9 50%); z-index: 3; cursor: pointer; }
.color_button_2 { background-image: linear-gradient(to left, #FFF 50%, #98D951 50%); }
.color_button_3 { background-image: linear-gradient(to left, #FFF 50%, #FFC800 50%); }
.color_button_4 { background-image: linear-gradient(to left, #FFF 50%, #FF6846 50%); }
.color_button:hover { 
	background-position-x: 0;
	transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.color_button:hover .arrow { 
	padding-right: 35px;
	transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.color_button:hover .title, .color_button:hover .subtitle {
	color: #000;
}

.color_button .title {
	display: block;
	grid-area: title;
	width: 206px;
	font-size: 18px;
	font-weight: 600;
	color: #404040;
	padding: 20px 20px 10px 16px;
}

.color_button .subtitle {
	display: block;
	grid-area: subtitle;
	width: 206px;
	font-size: 16px;
	font-weight: 500;
	color: #626568;
	line-height: 18px;
	padding: 0 0 0 16px;
}

.color_button .arrow {
	display: block;
	grid-area: arrow;
	width: 60px;
	font-size: 40px;
	color: #FFF;
	text-align: center;
	line-height: 130px;
	transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}


#btn_find_model.opened {
	border-radius: 12px 0 0 12px;
	background-image: linear-gradient(to left, #FFF 0, #44AEF9 0);
}
#btn_find_model.opened > .arrow {
	transform: scaleX(-1);
}
#btn_find_model.opened:hover .arrow { 
	padding-right: 0;
}
#find_model {
	position: absolute;
    z-index: 2;
    width: 266px;
    height: 130px;
    background: #FFF;
    border-radius: 12px;
	transition: .8s ease;
	overflow: hidden;
}
#find_model.visible {
	width: 1110px;
	transition: .8s ease;
}

#find_model .fm_phone {
	position: relative;
	float: right;
    width: 400px;
    height: 130px;
    margin-right: 15px;
	border-right: 3px solid #F1F1F1;
	background-image: url(../../../tutos/img/modeles/242.png);
    background-repeat: no-repeat;
    background-size: 228px;
    background-position: 180px 38px;
	text-align: left;
}
#find_model .fm_phone_form_results {
	display: none;
}
#find_model .fm_phone .fm_phone_title {
	display: block;
    font-size: 24px;
    color: #44AEF9;
    margin: 20px 0 10px 0;
}
#find_model .fm_phone .fm_phone_subtitle {
	display: block;
    width: 180px;
	min-height: 32.5px;
    color: #404040;
    font-size: 14px;
}
#find_model .fm_phone .imei_input {
	display: inline-block;
    float: left;
	width: 248px;
    height: 32px;
    border: none;
    background: rgb(152,217,81,0.75);
    margin: 10px 0 0 0;
    padding: 0 10px;
    color: #404040;
}
#find_model .fm_phone .imei_input::placeholder {
	color: #404040;
}
#find_model .fm_phone .imei_input:focus {
	outline: none;
}
#find_model .fm_phone .imei_submit {
	display: inline-block;
    float: left;
    width: 60px;
    height: 32px;
    background: rgb(152,217,81,0.75);
    margin: 10px 0 0 4px;
    font-size: 20px;
    text-align: center;
    color: #000;
    padding-top: 7px;
    cursor: pointer;
}
#find_model .fm_phone_parts_url {
	display: inline-block;
    float: left;
	width: 170px;
    height: 32px;
    border: none;
    background: rgb(152,217,81,0.75);
    margin: 10px 0 0 0;
    text-align: center;
    color: #404040;
	line-height: 32px;
}
#find_model .fm_phone_no_parts {
	display: none;
    float: left;
    width: 50%;
    background: rgb(152,217,81,0.75);
    color: #404040;
    padding: 6px;
}

#find_model .fm_macbook {
	position: relative;
	float: right;
    width: 400px;
    height: 130px;
	background-image: url(../../../tutos/img/modeles/277.png);
    background-repeat: no-repeat;
    background-size: 320px;
    background-position: 218px 20px;
}
#find_model .fm_macbook_form_results {
	display: none;
}
#find_model .fm_macbook .fm_macbook_title {
	display: block;
    font-size: 24px;
    color: #44AEF9;
    margin: 20px 0 10px 0;
}
#find_model .fm_macbook .fm_macbook_subtitle {
	display: block;
    width: 240px;
    color: #404040;
    font-size: 14px;
}
#find_model .fm_macbook .fm_macbook_subtitle .fa-apple {
	font-size: 20px;
	line-height: 0;
}
#find_model .fm_macbook .macbook_input {
	display: inline-block;
    float: left;
	width: 248px;
    height: 32px;
    border: none;
    background: rgb(255,104,70,0.75);
    margin: 10px 0 0 0;
    padding: 0 10px;
    color: #404040;
}
#find_model .fm_macbook .macbook_input::placeholder {
	color: #404040;
}
#find_model .fm_macbook .macbook_input:focus {
	outline: none;
}
#find_model .fm_macbook .macbook_submit {
	display: inline-block;
    float: left;
    width: 60px;
    height: 32px;
    background: rgb(255,104,70,0.75);
    margin: 10px 0 0 4px;
    font-size: 20px;
    text-align: center;
    color: #000;
    padding-top: 7px;
    cursor: pointer;
}
#find_model .fm_macbook_parts_url {
	display: inline-block;
    float: left;
	width: 170px;
    height: 32px;
    border: none;
    background: rgb(255,104,70,0.75);
    margin: 10px 0 0 0;
    text-align: center;
    color: #404040;
	line-height: 32px;
}
#find_model .fm_macbook_no_parts {
	display: none;
    float: left;
    width: 50%;
    background: rgb(255,104,70,0.75);
    color: #404040;
    padding: 6px;
}
#find_model .fm_link_all {
	display: block;
	position: absolute;
	top: 4px;
	right: 8px;
	font-size: 12px;
	color: #EF9D51;
	text-decoration: underline;
}


/*****************************************************************************************

BOUTONS MARQUES

******************************************************************************************/

#home_brands {
	width: 100%;
	height: 200px;
	background: #FFF;
	margin-bottom: 80px;
}

#grey_strip {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 46px;
	background: #606060;
}
#grey_strip::after {
	display: block;
	position: absolute;
	content: "";
	z-index: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: #F1F1F1;
	border-bottom: 1px solid #EF9D51;
}
#brands_categories {
	position: relative;
	display: flex;
	justify-content: space-evenly;
	width: 1000px;
	height: 46px;
	margin: 0 auto;
}
.brand_category_title {
	position: relative;
	z-index: 2;
	flex: auto;
	height: 40px;
	text-align: center;
	line-height: 40px;
	padding: 0 38px;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	cursor: pointer;
}
.brand_category_title:first-of-type {
	color: #EF9D51;
}
#brand_selected {
	position: absolute;
	top: -7px;
	left: 0px;
	z-index: 1;
	height: 54px;
	background: #FFF;
	border-style: solid;
	border-width: 1px 1px 0 1px;
	border-color: #EF9D51;
}

#brands_by_category {
	position: relative;
	width: 100%;
	height: 100px;
	margin-top: 10px;
}
.brand_category {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    flex-direction: row;
    justify-content: center;
}
.brand_category.phone {
	z-index: 1;
}
.brand_category.games, .brand_category.computers, .brand_category.pads {
	z-index: -1;
	opacity: 0;
}
.brand_category a {
	min-height: 100px;
	margin: 0 22px;
	background-repeat: no-repeat;
    background-position: center;
}


/*****************************************************************************************

TEXTES

******************************************************************************************/

#home_texts {
	padding: 0 30px;
}
.home_text_bottom
{
	width: calc(100% + 30px);
	margin: 16px -15px 0 -15px;
	text-align: justify;
}
.home_text_bottom .title {
	display: flex;
    height: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
	margin-bottom: 12px;
}
.home_text_bottom i {
    font-size: 28px;
    margin-right: 10px;
}
.home_text_bottom h2
{
	width: 100%;
    font-size: 14px;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
    border-bottom: 2px solid #4C958B;
    padding-bottom: 8px;
}



/*****************************************************************************************

RESPONSIVE

******************************************************************************************/


@media (min-width: 1025px) {
	.brand_category a.apple { width: 48px; background-size: 48px; margin-top: -10px; background-image: url(../../../themes/bricophone/assets/img/accueil/apple_logo_grey.svg); }
	.brand_category a.apple:hover { width: 48px; background-size: 48px; margin-top: -10px; background-image: url(../../../themes/bricophone/assets/img/accueil/apple_logo.svg); }
	.brand_category a.samsung {	width: 114px; background-size: 114px; background-image: url(../../../themes/bricophone/assets/img/accueil/samsung_logo_grey.svg); }
	.brand_category a.samsung:hover { width: 114px; background-size: 114px; background-image: url(../../../themes/bricophone/assets/img/accueil/samsung_logo.svg); }
	.brand_category a.xiaomi {	width: 52px; background-size: 52px; background-image: url(../../../themes/bricophone/assets/img/accueil/xiaomi_logo_grey.svg); }
	.brand_category a.xiaomi:hover { width: 52px; background-size: 52px; background-image: url(../../../themes/bricophone/assets/img/accueil/xiaomi_logo.svg); }
	.brand_category a.huawei {	width: 60px; background-size: 60px; background-image: url(../../../themes/bricophone/assets/img/accueil/huawei_logo_grey.svg); }
	.brand_category a.huawei:hover { width: 60px; background-size: 60px; background-image: url(../../../themes/bricophone/assets/img/accueil/huawei_logo.svg); }
	.brand_category a.oneplus {	width: 150px; background-size: 150px; background-image: url(../../../themes/bricophone/assets/img/accueil/oneplus_logo_grey.svg); }
	.brand_category a.oneplus:hover { width: 150px; background-size: 150px; background-image: url(../../../themes/bricophone/assets/img/accueil/oneplus_logo.svg); }
	.brand_category a.oppo { width: 88px; margin: 0 10px; background-size: 88px; background-image: url(../../../themes/bricophone/assets/img/accueil/oppo_logo_grey.svg); }
	.brand_category a.oppo:hover { width: 88px; margin: 0 10px; background-size: 88px; background-image: url(../../../themes/bricophone/assets/img/accueil/oppo_logo.svg); }
	.brand_category a.sony { width: 100px; background-size: 100px; background-image: url(../../../themes/bricophone/assets/img/accueil/sony_logo_grey.svg); }
	.brand_category a.sony:hover { width: 100px; background-size: 100px; background-image: url(../../../themes/bricophone/assets/img/accueil/sony_logo.svg); }
	.brand_category a.switch { width: 70px; background-size: 70px; background-image: url(../../../themes/bricophone/assets/img/accueil/switch_logo_grey.svg); }
	.brand_category a.switch:hover { width: 70px; background-size: 70px; background-image: url(../../../themes/bricophone/assets/img/accueil/switch_logo.svg); }
	.brand_category a.playstation {	width: 154px; background-size: 154px; background-image: url(../../../themes/bricophone/assets/img/accueil/playstation_logo_grey.svg); }
	.brand_category a.playstation:hover { width: 154px; background-size: 154px; background-image: url(../../../themes/bricophone/assets/img/accueil/playstation_logo.svg); }
}
@media (max-width: 1024px) {
	.brand_category a.apple {
		width: 48px;
		margin-top: -10px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/apple_logo.svg); 	
		background-size: 48px;
	}
	.brand_category a.samsung {
		width: 114px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/samsung_logo.svg); 	
		background-size: 114px;
	}
	.brand_category a.xiaomi {
		width: 52px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/xiaomi_logo.svg); 	
		background-size: 52px;
	}
	.brand_category a.huawei {
		width: 60px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/huawei_logo.svg); 	
		background-size: 60px;
	}
	.brand_category a.oneplus {
		width: 150px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/oneplus_logo.svg); 	
		background-size: 150px;
	}
	.brand_category a.oppo {
		width: 88px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/oppo_logo.svg); 	
		background-size: 88px;
	}
	.brand_category a.sony {
		width: 100px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/sony_logo.svg); 	
		background-size: 100px;
	}
	.brand_category a.switch {
		width: 70px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/switch_logo.svg); 	
		background-size: 70px;
	}
	.brand_category a.playstation {
		width: 154px;
		background-image: url(../../../themes/bricophone/assets/img/accueil/playstation_logo.svg); 	
		background-size: 154px;
	}
}

@media (max-width: 1024px) {

	#home_fullwidth_background {
		margin: auto;
	}
	#home_cards_buttons {
		width: 960px;
	}
	.color_button {
		width: 224px;
		background-position-x: 180px;
	}
	.color_button .title {
		width: 180px;
		font-size: 16px;
	}
	.color_button .subtitle {
		width: 180px;
		font-size: 14px;
	}
	.color_button .arrow {
		width: 44px;
	}
	#find_model {
		top: 0;
		width: 224px;
	}
	#find_model.visible {
		width: 960px;
	}
	#find_model .fm_phone, #find_model .fm_macbook {
		width: 36%;
	}
	#home_brands #grey_strip {
		margin: 0 auto;
	}
	#home_brands #brands_categories {
		width: 94%;
	}
	#home_brands .brand_category {
		flex-wrap: wrap;
	}

}

@media (max-width: 768px) {

	#home_banner {
		height: 192px;
	}
	.swiper-button-next, .swiper-button-prev {
		padding: 32px 20px;
	}
	#home_reassurance {
		width: 680px;
		margin: -38px auto 0 auto;
	}
	.reassurance .icon i {
		width: 76px;
		height: 76px;
		font-size: 32px;
		line-height: 72px;
	}
	#home_cards_buttons {
		width: 674px;
		height: auto;
		padding-bottom: 40px;
		flex-wrap: wrap;
	}
	.color_button {
		width: 324px;
		background-position-x: 264px;
		margin-bottom: 20px;
	}
	.color_button .title {
		width: 264px;
		font-size: 18px;
	}
	.color_button .subtitle {
		width: 264px;
		font-size: 16px;
	}
	.color_button .arrow {
		width: 60px;
	}

	#find_model.visible {
		z-index: 3;
		top: 0;
		width: 100%;
	}
	#find_model .fm_phone, #find_model .fm_macbook {
		width: 48%;
	}

	#home_brands #brands_categories {
		width: 96%;
	}
	.brand_category_title {
		padding: 0 8px;
	}
	#home_brands .brand_category a {
		width: 18% !important;
	}
	.home_text_bottom h1
	{
		font-size: 12px;
	}

}

@media (max-width: 480px) {

	#home_banner {
		height: 140px;
	}
	#home_fullwidth_background {
		padding-bottom: 4px;
	}
	#home_reassurance {
		width: 320px;
		height: 110px;
		margin: -28px auto 0 auto;
	}
	.reassurance .icon i {
		width: 56px;
		height: 56px;
		font-size: 24px;
		line-height: 52px;
	}
	#home_cards_buttons {
		width: 94%;
		padding-bottom: 0;
		gap: 10px;
	}
	#btn_find_model .subtitle, #btn_ecrans .subtitle, #btn_tutos .subtitle, #btn_outils .subtitle, .color_button .arrow {
		display: none;
	}
	.color_button {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas:
			"title"
			"icon";
		width: calc(50% - 5px);
		height: 74px;
		margin-bottom: 5px;
		border-radius: 3px;
	}
	/*
	#btn_find_model {
		background-image: none;
		background-color: #FFF;
		grid-template-columns: 1fr 1fr;
	}
	#find_model .fm_phone, #find_model .fm_macbook {
		width: 100%;
	}
	#btn_find_model .btn_phone {
		display: inline-block;
		height: 74px;
		text-align: center;
		border: none;
		border-right: 8px solid #F1F1F1;
		background: linear-gradient(0deg, #44AEF9 30px, #FFF 0);
	}
	#btn_find_model .btn_macbook {
		display: inline-block;
		height: 74px;
		text-align: center;
		border: none;
		border-left: 8px solid #F1F1F1;
		background: linear-gradient(0deg, #44AEF9 30px, #FFF 0);
	}
	#btn_find_model button:focus {
		outline: none;
	}
	*/
	#btn_find_model {
		background: linear-gradient(0deg, #44AEF9 30px, #FFF 0);
	}
	#btn_ecrans {
		background: linear-gradient(0deg, #98D951 30px, #FFF 0);
	}
	#btn_tutos {
		background: linear-gradient(0deg, #FFC800 30px, #FFF 0);
	}
	#btn_outils {
		background: linear-gradient(0deg, #FF6846 30px, #FFF 0);
	}
	.color_button .title {
		width: 100%;
		font-size: 11px;
		text-align: center;
		padding: 17px 8px;
		text-transform: uppercase;
	}
	/*
	#btn_find_model .title {
		padding: 8px;

	#btn_ecrans .title {
		padding: 8px;
	}
	#btn_tutos .title {
		padding: 17px 8px;
	}
	#btn_outils .title {
		padding: 17px 8px;
	}
	*/
	.color_button .icon {
		margin: 0 auto;
		font-size: 20px;
		color: #404040;
	}
	/*
	#find_model {
		position: relative;
		width: 100%;
		height: 74px;
		margin-bottom: 20px;
	}
	#find_model .fm_phone, #find_model .fm_macbook {
		float: inherit;
		height: 100%;
		background-size: 0;
		margin: 0;
		padding: 8px;
	}
	#find_model .fm_phone .fm_phone_title, #find_model .fm_macbook .fm_macbook_title {
		font-size: 20px;
		margin: 0;
	}
	#find_model .fm_phone .fm_phone_subtitle, #find_model .fm_macbook .fm_macbook_subtitle {
		width: 100%;
		min-height: auto;
		font-size: 14px;
	}
	#find_model .fm_phone .imei_input, #find_model .fm_phone_parts_url, #find_model .fm_macbook .macbook_input, #find_model .fm_macbook_parts_url {
		width: calc(100% - 64px);
		height: 26px;
		margin: 2px 0 0 0;
		background: linear-gradient(0deg, #44AEF9 30px, #FFF 0);
	}
	#find_model .fm_phone .imei_submit, #find_model .fm_macbook .macbook_submit {
		height: 26px;
		margin: 2px 0 0 4px;
		padding-top: 3px;
		background: linear-gradient(0deg, #44AEF9 30px, #FFF 0);
	}
	#find_model .fm_macbook .fm_macbook_subtitle .fa-apple {
		font-size: 18px;
		vertical-align: -1px;
	}
	#find_model .fm_link_all {
		top: initial;
		bottom: 4px;
	}
	*/

	#home_brands {
		height: 440px;
	}
	#home_brands .brand_category {
		flex-direction: column;
	}
	#home_brands .brand_category a {
		width: 100% !important;
		min-height: 62px;
		text-align: center;
		padding-bottom: 16px;
		margin: 0;
		border-bottom: 1px solid #F1F1F1;
	}
	#home_brands .brand_category a.apple { background-size: 34px; }
	#home_brands .brand_category a.samsung { background-size: 82px; }
	#home_brands .brand_category a.xiaomi { background-size: 38px; }
	#home_brands .brand_category a.huawei { background-size: 40px; }
	#home_brands .brand_category a.oneplus { background-size: 100px; }
	#home_brands .brand_category a.sony { background-size: 68px; }
	#home_brands .brand_category a.switch { background-size: 46px; }
	#home_brands .brand_category a.playstation { background-size: 96px; }

}

@media (max-width: 375px) {
	.color_button .title {
		font-size: 10px;
	}
}















/*
		#home22_reassurance {
			display: flex;
			flex-direction: row;
			align-items: flex-start;
			justify-content: space-evenly;
			width: 54%;
			height: 160px;
			margin: auto 23% -112px 23%;
		}
		.reassurance {
			text-align: center;
		}
		.reassurance .icon i {
			width: 100px;
			height: 100px;
			border: 2px solid #EF9D51;
			font-size: 42px;
			color: #EF9D51;
			border-radius: 50%;
			line-height: 96px;
			margin-bottom: 10px;
			background: #FFF;
		}
		.reassurance .title_1 {
			font-size: 11px;
		}
		.reassurance .title_2 {
			font-size: 12px;
			font-weight: bold;
		}

#home22_buttons {
	display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 100vw;
    height: 340px;
    background: #F1F1F1;
    margin-left: calc(((100vw - 1110px) / 2) * -1);
    margin-right: calc(((100vw - 1110px) / 2) * -1);
    padding-left: calc((100vw - 1110px) / 2);
    padding-right: calc((100vw - 1110px) / 2);
    padding-bottom: 50px;
}

		.color_button {
			display: grid; 
			grid-template-columns: 1fr 1fr 1fr; 
			grid-template-rows: 1fr 1fr; 
			gap: 0px 0px; 
			grid-template-areas: 
				"title title arrow"
				"subtitle subtitle arrow";
			width: 296px;
			height: 146px;
			border-radius: 12px;
			background-size: 200%;
			background-position-x: 236px; 
			overflow: hidden;
			transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
		}
		.color_button_1 { background-image: linear-gradient(to left, #FFF 50%, #B6C386 50%); }
		.color_button_2 { background-image: linear-gradient(to left, #FFF 50%, #A088A9 50%); }
		.color_button_3 { background-image: linear-gradient(to left, #FFF 50%, #7EB8D3 50%); }
		.color_button_4 { background-image: linear-gradient(to left, #FFF 50%, #ECDD9E 50%); }
		.color_button:hover { 
			color: #404040;
			background-position-x: 0;
			transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
		}
		.color_button:hover .arrow { 
			padding-right: 35px;
			transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
		}

		.color_button .title {
			display: block;
			grid-area: title;
			width: 236px;
			font-size: 18px;
			font-weight: 600;
			color: #404040;
			padding: 20px 20px 10px 20px;
		}

		.color_button .subtitle {
			display: block;
			grid-area: subtitle;
			width: 236px;
			font-size: 16px;
			font-weight: 500;
			color: #626568;
			line-height: 18px;
			padding: 0px 20px 0 20px;
		}

		.color_button .arrow {
			display: block;
			grid-area: arrow;
			width: 60px;
			font-size: 40px;
			color: #FFF;
			text-align: center;
			line-height: 140px;
			transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
		}


		


















body
{
	overflow-x: hidden;
}

/* BLOC 1 -------------------------------------------------------------------- */

.home_2020_bloc1
{
	height: 576px;
	background: #F1F1F1;
	margin: 8px 0 0 0;
	padding: 0;
}
.home_2020_bloc1 ul li
{
	position: relative;
	height: calc( 576px / 14 );
    padding: 12px 0 6px 36px;
    font-size: 16px;
	border-bottom: 2px solid #FFF;
	transition: .3s ease;
}
.home_2020_bloc1 ul li:nth-child(-n+5), .home_2020_bloc1 ul li:nth-last-child(2) {
	font-weight: 600;
}
.home_2020_bloc1 ul li:last-child
{
	border-bottom: none;
	font-weight: 600;
}
.home_2020_bloc1 ul li:hover
{
	cursor: pointer;
	background: #F7F7F7;
	padding-left: 42px;
	transition: .3s ease;
}
.home_2020_bloc1 ul li img
{
	position: absolute;
	top: 8px;
	left: 6px;
	width: 20px;
	filter: contrast(0.6) grayscale(0.7) brightness(0.8);
}

.home_2020_bloc1 .submenu_frame
{
	position: absolute;
    display: none;
    z-index: 20;
    width: calc(500% + 10px);
    height: 576px;
    top: 0;
    left: 176px;
}
.home_2020_bloc1 .submenu
{
	position: relative;
    display: none;
    width: calc(100% - 16px);
    margin-left: 16px;
    height: 100%;
    background: #FFF;
    border: 1px solid #F1F1F1;
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-position-x: right;
    padding: 4px;
}
.home_2020_bloc1 .submenu .submenu_bloc
{
	flex: 1;
	float: left;
	padding: 10px;
	line-height: 1.5;
}
.home_2020_bloc1 .submenu .submenu_title
{
	display: block;
    font-size: 14px;
	font-weight: 700;
	color: #61D0C4;
	line-height: 1;
    background: #F1F1F1;
	margin-bottom: 10px;
}
.home_2020_bloc1 .submenu .submenu_links a:hover
{
	margin-left: 10px;
}

/* BLOC 2 -------------------------------------------------------------------- */

.home_2020_bloc2
{
	/*height: 388px;*/
	/*background: #F1F1F1;*/
	height: auto;
	margin: 8px 0 0 0;
	padding: 0;
	border-left: 8px solid #FFF;
	overflow: hidden;
}
.swiper-container 
{
    /*height: 388px !important;*/
	height: auto;
}

.swiper-container img
{
    width: 100%;
	max-height: 388px;
}

@media (min-width: 480px) {
	.home_2020_bloc2 .bkg_desktop { display: block; }
	.home_2020_bloc2 .bkg_mobile { display: none; }
}
@media (max-width: 479px) {
	.home_2020_bloc2 .bkg_desktop { display: none; }
	.home_2020_bloc2 .bkg_mobile { display: block; }
}
	

.home_2020_bloc2 #slide1
{
	background: radial-gradient(circle, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 50%, rgba(241,241,241,1) 100%);;
}
.home_2020_bloc2 #slide2
{
	background: radial-gradient(circle, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 50%, rgba(241,241,241,1) 100%);;
}
.home_2020_bloc2 #slide3
{
	background: radial-gradient(circle, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 50%, rgba(241,241,241,1) 100%);;
}
.home_2020_bloc2 #slide4
{
	background: radial-gradient(circle, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 50%, rgba(241,241,241,1) 100%);;
}
.home_2020_bloc2 #slide5
{
	background: radial-gradient(circle, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 50%, rgba(241,241,241,1) 100%);;
}

.home_2020_bloc2 #slide4 #av_img
{
	display: block !important;
	position: absolute; 
	bottom: 30px; 
	right: 30px; 
	width: 200px;
}
@media (max-width: 768px) {
.home_2020_bloc2 #slide4 #av_img
{
	display: block !important;
	position: absolute; 
	bottom: 20px;
    right: 8px;
    width: 112px;
}}

#bloc2_thumbnails
{
	width: 917px;
	height: 388px;
}
#bloc2_thumb1
{
	display: inline-block;
	float: left;
	width: 600px;
	height: 388px;
	background-color: #F1F1F1;
	background-image: url(../img/bloc2_thumb1.png);
	background-repeat: no-repeat;
    background-size: 600px;
    background-position: center;
	border-right: 8px solid #FFF;
	transition: 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#bloc2_thumb2
{
	display: inline-block;
	float: left;
	width: calc((917px - 600px) / 2);
	height: 388px;
	background-color: #005D7F;
	background-image: url(../img/bloc2_thumb2.png);
	background-repeat: no-repeat;
    background-size: 660px;
    background-position: center;
	opacity: 0.4;
	border-right: 8px solid #FFF;
	transition: 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#bloc2_thumb3
{
	display: inline-block;
	float: left;
	width: calc((917px - 600px) / 2);
	height: 388px;
	background-color: #ECDEDD;
	background-image: url(../img/bloc2_thumb3.png);
	background-repeat: no-repeat;
    background-size: 660px;
    background-position: center;
	opacity: 0.4;
	transition: 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 480px)
{
	#bloc2_thumbnails
	{
		width: 100%;
		height: 242px;
	}
	.bloc2_thumb
	{
		width: 100% !important;
		background-size: 100% !important;
		border-right: none !important;
	}
	#bloc2_thumb1
	{
		height: 242px;
		border-bottom: 4px solid #FFF;
	}
	#bloc2_thumb2
	{
		height: 40px;
		border-bottom: 4px solid #FFF;
	}
	#bloc2_thumb3
	{
		height: 40px;
	}
}

/* BLOC 3 -------------------------------------------------------------------- */

.home_2020_bloc3
{
	height: 180px;
	margin: 8px 0 0 0;
	padding: 0;
	border-left: 8px solid #FFF;
	overflow: hidden;
}
.home_2020_bloc3 .text
{
	display: block;
	height: 40px;
	text-align: left;
	background: #F1F1F1;
}
.home_2020_bloc3 .text1
{
	font-size: 22px;
    color: #F8B114;
    font-weight: 600;
    line-height: 40px;
    margin-left: 10px;
}
.home_2020_bloc3 .inside
{
	position: relative;
	display: block;
	height: 140px;
	padding: 4px;
	background: #FFE09C;
	text-align: center;
}
.home_2020_bloc3 p
{
	width: 100%;
    font-size: 1.1em;
    color: #626568;
    text-align: left;
    font-weight: 600;
    margin: 0;
    padding: 6px;
}
.home_2020_bloc3 .icon_phone
{
	display: inline-block;
    width: 62px;
    height: 62px;
    background-color: #FFF;
    background-image: url(../img/bloc3_phone.svg);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: center;
    margin: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: .5s ease;
}
.home_2020_bloc3 .icon_tchat
{
	display: inline-block;
    width: 62px;
    height: 62px;
    background-color: #FFF;
    background-image: url(../img/bloc3_tchat.svg);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: center;
    margin: 8px 8px 8px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: .5s ease;
	cursor: pointer;
}
.home_2020_bloc3 .icon_mail
{
	display: inline-block;
    width: 62px;
    height: 62px;
    background-color: #FFF;
    background-image: url(../img/bloc3_mail.svg);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: center;
    margin: 8px 8px 8px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: .5s ease;
}
.icon_phone:hover, .icon_tchat:hover, .icon_mail:hover
{
	background-size: 46px;
	transition: .5s ease;
}
.home_2020_bloc3 #home_hours_link
{
	display: block;
    width: 120px;
    font-size: 14px;
    color: #626568;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.home_2020_bloc3 #home_hours
{
	display: none;
	position: absolute;
    top: 4px;
    left: 4px;
    width: 200px;
    height: 132px;
    background: #FFF;
    color: #626568;
    border: 1px solid #718994;
    font-size: 12px;
    padding: 8px;
}

/* BLOC 4 -------------------------------------------------------------------- */

.home_2020_bloc4
{
	height: 180px;
	margin: 8px 0 0 0;
	padding: 0;
	border-left: 8px solid #FFF;
	overflow: hidden;
}
.home_2020_bloc4 .text
{
	display: block;
	height: 40px;
	text-align: left;
	background: #F1F1F1;
}
.home_2020_bloc4 .text1
{
	font-size: 22px;
    color: #6E856C;
    font-weight: 600;
    line-height: 40px;
    margin-left: 10px;
}
.home_2020_bloc4 .inside
{
	position: relative;
	display: block;
	height: 140px;
	padding: 4px;
	background: #A4CAA1;
}
.home_2020_bloc4 a
{
	display: block;
    width: 92px;
    float: right;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #626568;
    text-align: right;
    text-decoration: underline;
    padding: 3px 6px 3px 0;
}
.home_2020_bloc4 a:hover
{
	color: #626568;
	text-decoration: underline;
}
.home_2020_bloc4 #imei_form
{
	display: block;
    width: calc(100% - 20px);
    height: 90px;
    margin: 10px;
    padding: 8px;
}
.home_2020_bloc4 .inside_text1
{
	margin: 0 0 6px 0;
	font-size: 1.7vh;
	color: #626568;
	font-weight: 600;
}
.home_2020_bloc4 .inside_text2
{
	margin: 16px 0 0 0;
	font-size: 14px;
	color: #FFF;
}
.home_2020_bloc4 #imei_form input[type=text]
{
	width: calc(70% - 8px);
    height: 36px;
    margin: 4px 8px 0 0;
    border: none;
    font-size: 18px;
    color: #626568;
    padding-left: 8px;
	line-height: 36px;
}
.home_2020_bloc4 #imei_form input[type=text]:focus
{
	outline: none;
}
.home_2020_bloc4 #imei_form button
{
	width: 28%;
    height: 36px;
    margin: 0px;
    border: none;
    border-top: 1px solid #FFF;
    background: #FFF;
    font-size: 15px;
    color: #626568;
    line-height: 36px;
    font-weight: 600;
}
.home_2020_bloc4 #imei_form button:hover
{
    background: #F1F1F1;
}
.home_2020_bloc4 #imei_form button i
{
	vertical-align: -7px;
}

.home_2020_bloc4 #imei_form_results
{
	display: none;
    width: calc(100% - 20px);
    height: 90px;
    margin: 10px;
	padding: 8px;
}
.home_2020_bloc4 #imei_form_results p
{
	margin: 0 4px;
	color: #626568;
}
.home_2020_bloc4 .res_url 
{
	display: block;
    float: left;
    width: 100%;
    height: 54px;
    font-size: 15px;
    margin-top: 4px;
    line-height: 20px;
    padding: 7px;
    background: #FFF;
}
.home_2020_bloc4 .res_url .img1
{
	width: 42px;
    margin-left: -10px;
}
.home_2020_bloc4 .res_url .img2
{
	width: 40px;
    margin: 0 -7px 0 -7px;
    transform: rotate(20deg);
}
.home_2020_bloc4 .res_url .img3
{
	width: 36px;
    transform: rotate(-20deg);
    margin-right: 10px;
}

.home_2020_bloc4 #imei_form_noresults
{
	display: none;
    width: calc(100% - 20px);
    height: 90px;
    background: rgba(33,33,33,0.6);
    margin: 10px;
	padding: 8px;
}
.home_2020_bloc4 #imei_form_noresults p
{
	margin: 4px;
	color: #FFF;
	padding-right: 80px;
}
.home_2020_bloc4 #imei_form_noresults i
{
	float: right;
    font-size: 36px;
    color: #FFF;
    margin: -34px 0 0 0;
    cursor: pointer;
}

/* BLOC 5 -------------------------------------------------------------------- */

.home_2020_bloc5
{
	height: 180px;
	margin: 20px 0 0 0;
	padding: 0;
}
.home_2020_bloc5 .text
{
	display: block;
    width: 1110px;
    height: 40px;
    margin: 0 auto;
    text-align: left;
}
.home_2020_bloc5 .text1
{
	font-size: 22px;
    color: #4C958B;
    font-weight: 600;
    line-height: 40px;
    margin-left: 10px;
}
.home_2020_bloc5 .text a
{
	display: block;
    width: 292px;
    float: right;
    height: 40px;
    line-height: 48px;
    padding-right: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #626568;
    text-align: right;
    text-decoration: underline;
}
.home_2020_bloc5 a:hover
{
	color: #626568;
	text-decoration: underline;
}
@media (min-width: 1200px) {
	.home_2020_bloc5 .background_full_width_grey5
	{
		display: block;
		height: 40px;
		margin-left: calc((100vw - 1122px)/2*-1);
		margin-right: calc((100vw - 1122px)/2*-1);
		background: #F1F1F1;
	}
	.home_2020_bloc5 .background_full_width_green5
	{
		display: block;
		height: 132px;
		margin-left: calc((100vw - 1122px)/2*-1);
		margin-right: calc((100vw - 1122px)/2*-1);
		background: #4C958B;
	}
}
.home_2020_bloc5 .inside
{
	position: relative;
	display: block;
	width: 1122px;
	height: 132px;
	margin: 0 auto;
	padding-left: 7px;
}

.home_2020_bloc5 .tutos_slider
{
	display: flex;
	height: 132px !important;
	padding: 0;
	overflow: hidden;
}
.home_2020_bloc5 .tuto
{
	float: left;
    box-sizing: border-box;
    cursor: pointer;
    background: none;
}
.home_2020_bloc5 .tuto_content
{
	display: block;
    width: calc(100% - 6px);
    height: calc(100% - 12px);
    margin: 6px 6px 6px 0;
	border-radius: 8px;
    background: #FFF;
}
.home_2020_bloc5 .tuto .modele
{
	display: block;
    height: 44px;
    line-height: 16px;
    font-size: 14px;
    color: #626568;
    padding: 6px 8px;
    border-bottom: 1px solid #4C958B;
    font-weight: 600;
}
.home_2020_bloc5 .tuto .reparation
{
	display: block;
	height: 28px;
    font-size: 11px;
    padding: 2px 2px;
    border-bottom: 1px solid #61D0C4;
}
.home_2020_bloc5 .picto
{
	display: block;
	float: left;
	width: 40%;
	height: 82px;
	text-align: center;
}
.home_2020_bloc5 .picto .white_bkg
{
float: right;
    width: 52px;
    margin-top: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 6px;
}
.home_2020_bloc5 .picto_rep
{
	display: block;
	float: left;
	width: 60%;
	height: 82px;
	text-align: center;
}
.home_2020_bloc5 .picto_rep img
{
	float: left;
	width: 64px;
    height: 64px;
    border: 1px solid #626568;
    border-radius: 50%;
    margin: 6px 0 0 16px;
}
.home_2020_bloc5 .difficulte 
{
	border: none;
}
.home_2020_bloc5 .picto span, .home_2020_bloc5 .duree span, .home_2020_bloc5 .difficulte span
{
	display: block;
}
.home_2020_bloc5 .picto img
{
	width: 32px;
}
.home_2020_bloc5 .duree img
{
	width: 27px;
    margin-top: 5px;
}
.home_2020_bloc5 .difficulte img
{
	width: 38px;
    margin-bottom: -3px;
}
.home_2020_bloc5 .tutos_slider .swiper-button-prev
{
	left: -28px;
    height: 40px;
    color: #FFF;
    top: 64px;
}
.home_2020_bloc5 .tutos_slider .swiper-button-next
{
	height: 40px;
    right: -26px;
    color: #FFF;
    top: 64px;
}

/* BLOC 6 -------------------------------------------------------------------- */

.home_2020_bloc6
{
	height: 280px;
	margin: 8px 0 0 0;
	padding: 0;
}
.home_2020_bloc6 .text
{
	display: block;
	height: 40px;
	text-align: left;
}
.home_2020_bloc6 .text1
{
	font-size: 22px;
    color: #626568;
    font-weight: 600;
    line-height: 40px;
    margin-left: 10px;
}
.home_2020_bloc6 .inside
{
	display: block;
	height: 240px;	
	padding: 0;
	box-sizing: border-box !important;
	overflow: hidden;
}
.home_2020_bloc6 .product 
{
	position: relative;
    float: left;
    z-index: 1;
    width: calc(25% - 6px);
    height: 238px;
    margin: 0 0 3px 6px;
    padding: 0;
    background: #FFF;
    box-sizing: border-box;
    border: 1px solid #F1F1F1;
}
.home_2020_bloc6 .product_img
{
	width: 50%;
    margin: 5% 25% 2% 25%;
}
.home_2020_bloc6 .product_text
{
	display: block;
	min-height: 36px;
    text-align: center;
    color: #626568;
	padding: 0 30px;
}
.home_2020_bloc6 .product_price_cart
{
	display: block;
    width: 128px;
    margin: 0 auto;
}
.home_2020_bloc6 .product_price
{
	display: inline-block;
	float: left;
    width: 92px;
    height: 32px;
    text-align: center;
    color: #FFF;
    font-size: 20px;
	line-height: 32px;
    border-radius: 6px 0 0 6px;
    background: #61D0C4;
}
.home_2020_bloc6 .product_cart
{
	display: inline-block;
	float: left;
    width: 36px;
    height: 32px;
    border-radius: 0 6px 6px 0;
    background: #F1F1F1;
}
.home_2020_bloc6 .home_cart_btn
{
	width: 32px;
    height: 36px;
    padding: 0;
	background: none;
}
.home_2020_bloc6 .home_cart_btn:hover
{
    cursor: pointer;
}
.home_2020_bloc6 .product_cart img
{
	width: 28px;
    height: 28px;
    margin: 0 0 2px 4px;
}

/* BLOC 7 -------------------------------------------------------------------- */

.home_2020_bloc7
{
	height: 200px;
	margin: 20px 0 20px 0;
	padding: 0;
}
.home_2020_bloc7 .background_full_width_green7
{
	display: block;
	height: 200px;
	margin-left: calc((100vw - 1110px)/2*-1);
    margin-right: calc((100vw - 1110px)/2*-1);
	background: #387770;
}
.home_2020_bloc7 .inside
{
	position: relative;
	display: block;
	width: 1150px;
	height: 200px;
	margin: 0 auto;
	padding: 10px;
}
.home_2020_bloc7 .bloc7x
{
	padding: 0;
}
.home_2020_bloc7 .bloc7x a
{
	display: block;
	height: 70px;
	margin: 10px;
	background-color: #FFF;
	background-repeat: no-repeat;
    background-size: 52%;
    background-position: 0;
	border-radius: 8px;
}
.home_2020_bloc7 .bloc7a
{
	background-image: url(../img/home_2020_bloc7_bkg_a.jpg);
}
.home_2020_bloc7 .bloc7b
{
	background-image: url(../img/home_2020_bloc7_bkg_b.jpg);
}
.home_2020_bloc7 .bloc7c
{
	background-image: url(../img/home_2020_bloc7_bkg_c.jpg);
}
.home_2020_bloc7 .bloc7d
{
	background-image: url(../img/home_2020_bloc7_bkg_d.jpg);
}
.home_2020_bloc7 .bloc7e
{
	background-image: url(../img/home_2020_bloc7_bkg_e.jpg);
}
.home_2020_bloc7 .bloc7f
{
	background-image: url(../img/home_2020_bloc7_bkg_f.jpg);
}
.home_2020_bloc7 .text_frame
{
	display: block;
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 17px;
}
.home_2020_bloc7 .text1
{
	display: block;
    font-size: 12px;
    font-weight: 600;
    color: #626568;
}
.home_2020_bloc7 .text2
{
	display: block;
    font-size: 18px;
    font-weight: 600;
    color: #626568;
}
.home_2020_bloc7 .bloc7x a:hover, .home_2020_bloc7 .bloc7x a:hover
{
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}





@media (min-width: 1200px) {
	.block_newsletter,  .footer_background
	{
		width: 100vw;
		margin-left: calc((100vw - 1120px)/2*-1);
		margin-right: calc((100vw - 1120px)/2*-1);
		background: #F1F1F1;
	}
	.footer_center
	{
		max-width: 1140px;
		margin: 0 auto 30px auto;
	}
	.home_2020_bloc6 .inside
	{
		width: 1116px;
		margin-left: -6px;
	}
}


.remise_sante
{
	background: #45ABB8;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: -12px;
}
.remise_sante a, .remise_sante a:hover
{
	color: #FFF;
}

/* MOBILE */

@media (max-width: 514px) {
	.home_2020_bloc2, .home_2020_bloc3, .home_2020_bloc4, .home_2020_bloc5, .home_2020_bloc6, .home_2020_bloc7 { border: none; }
	.home_2020_bloc2
	{
		width: 100vw;
		margin: 40px -15px 0 -15px;
	}
	.home_2020_bloc3, .home_2020_bloc4, .home_2020_bloc5, .home_2020_bloc6, .home_2020_bloc7
	{
		width: 100vw;
		margin: 8px -15px 0 -15px;
	}
	.home_2020_bloc4 #imei_form
	{
		padding: 0;
	}
	.home_2020_bloc4 #imei_form button 
	{
		font-size: 1.8vh;
	}
	.home_2020_bloc4 .inside_text2
	{
		margin: 8px 0 0 0;
	}
	.home_2020_bloc4 .res_url {
		font-size: 10px;
	}
	.home_2020_bloc5 .background_full_width_grey5
	{
		display: block;
		height: 40px;
		background: #F1F1F1;
	}
	.home_2020_bloc5 .background_full_width_green5
	{
		display: block;
		height: 132px;
		background: #4C958B;
		overflow: hidden;
	}
	.home_2020_bloc5 .text {
		width: 100%;
	}
	.home_2020_bloc5 .text1 {
		float: left;
	}
	.home_2020_bloc5 .text a {
		display: block;
		width: 100px;
		float: right;
		line-height: 46px;
		padding-right: 6px;
		font-size: 9px;
	}
	.home_2020_bloc5 .inside {
		width: calc(100% - 3px);
	}
	.home_2020_bloc6 .product 
	{
		width: calc(50% - 9px);
	}
	.home_2020_bloc6 .product_price_cart {
		margin: 10px auto 0 auto;
	}
	.home_2020_bloc7
	{
		height: 560px;
	}
	.home_2020_bloc7 .background_full_width_green7
	{
		width: 100vw;
		height: 100%;
		margin: 0;
	}
	.home_2020_bloc7 .inside
	{
		width: 100vw;
		height: 100%;
	}
	.home_2020_bloc7 .text1
	{
		font-size: 9px;
	}
	.home_2020_bloc7 .text2
	{
		font-size: 13px;
	}
	.home_2020_text_bottom
	{
		width: 100vw;
		margin: 20px -15px 10px -15px;
		text-align: justify;
	}
	#social-footer 
	{
		border-right: none;
	}
	.remise_sante
	{
		width: 100vw;
		margin: 16px -15px 0 -15px;
		background: #45ABB8;
		padding: 10px;
	}
	.remise_sante a 
	{
		color: #FFF;
	}
}

/* IPAD VERTICAL */
@media (min-width: 515px) and (max-width: 768px) {
	.home_2020_bloc2, .home_2020_bloc3, .home_2020_bloc5, .home_2020_bloc6, .home_2020_bloc7 { border: none; }
	.home_2020_bloc2
	{
		margin: 15px 0 0 0;
	}
	.home_2020_bloc4 #imei_form button 
	{
		font-size: 12px;
	}
	.home_2020_bloc4 .inside_text2 {
		margin: 6px 0 0 0;
	}
	.home_2020_bloc5 .background_full_width_grey5
	{
		display: block;
		height: 40px;
		background: #F1F1F1;
	}
	.home_2020_bloc5 .background_full_width_grey5 .text
	{
		width: calc(100vw - 30px);
	}
	.home_2020_bloc5 .background_full_width_green5
	{
		display: block;
		height: 132px;
		background: #4C958B;
		overflow: hidden;
	}
	.home_2020_bloc6 .product_text 
	{
		min-height: 86px;
	}
	.home_2020_bloc7
	{
		height: 290px;
	}
	.home_2020_bloc7 .background_full_width_green7
	{
		width: calc(100vw - 30px);
		height: 100%;
		margin: 0;
	}
	.home_2020_bloc7 .inside
	{
		width: calc(100vw - 30px);
		height: 100%;
	}
	.home_2020_bloc7 .text1
	{
		font-size: 9px;
	}
	.home_2020_bloc7 .text2
	{
		font-size: 12px;
	}
}
/* IPAD HORIZONTAL */
@media (min-width: 769px) and (max-width: 1024px) {
	.home_2020_bloc1 .submenu_frame 
	{
		width: calc(500% + 11px);
		left: 144px;
	}
	.home_2020_bloc1 ul li 
	{
		font-size: 13px;
	}
	.home_2020_bloc4 #imei_form button 
	{
		font-size: 12px;
	}
	.home_2020_bloc5 .background_full_width_grey5
	{
		display: block;
		height: 40px;
		background: #F1F1F1;
	}
	.home_2020_bloc5 .background_full_width_grey5 .text
	{
		width: 100%;
	}
	.home_2020_bloc5 .background_full_width_green5
	{
		display: block;
		height: 132px;
		background: #4C958B;
		overflow: hidden;
	}
	.home_2020_bloc7
	{
		height: 200px;
	}
	.home_2020_bloc7 .background_full_width_green7
	{
		width: 100%;
		height: 100%;
		margin: 0;
	}
	.home_2020_bloc7 .inside
	{
		width: 100%;
	}
	.home_2020_bloc7 .text1
	{
		font-size: 9px;
	}
	.home_2020_bloc7 .text2
	{
		font-size: 12px;
	}
}

.home_2020_text_bottom
{
	width: calc(100% + 30px);
	margin: 0 -15px 0 -15px;
	text-align: justify;
}
.home_2020_text_bottom h1
{
	display: block;
	height: 30px;
	border-bottom: 2px solid #4C958B;
	margin-bottom: 16px;
	font-size: 18px;
}
@media (max-width: 600px) {
.home_2020_text_bottom h1
{
	font-size: 12px;
}
}