/*------------------------------
	Colors
-------------------------------*/

.txt_dark_grey {
	color: var(--color_dark_grey) !important;
}

.txt_red {
	color: var(--color_red) !important;
}

.txt_light_red {
	color: var(--color_light_red) !important;
}

.txt_grey {
	color: var(--color_grey) !important;
}

.txt_medium_grey {
	color: var(--color_medium_grey) !important;
}

.txt_light_grey {
	color: var(--color_light_grey) !important;
}

.txt_white {
	color: white !important;
}

.bg_dark_grey {
	background-color: var(--color_dark_grey) !important;
}

.bg_red {
	background-color: var(--color_red) !important;
}

.bg_light_red {
	background-color: var(--color_light_red) !important;
}

.bg_grey {
	background-color: var(--color_grey) !important;
}

.bg_medium_grey {
	background-color: var(--color_medium_grey) !important;
}

.bg_light_grey {
	background-color: var(--color_light_grey) !important;
}

.bg_white {
	background-color: white !important;
}


/*------------------------------
	Titles
-------------------------------*/

.page_title {
	font-size: 2.8rem;
	font-weight: 700;
	font-family: 'Kanit';
	line-height: 1.1;
	color: var(--color_dark_grey);
	
}

.title_lighter {
	opacity: .4;
}

.section_title {
	font-size: 2.3rem;
	font-weight: 800;
	font-family: 'Kanit';
	line-height: 1.1;
	color: var(--color_dark_grey);
}

.supertitle {
	font-family: 'Montserrat';
	text-transform: uppercase;
	color: var(--color_light_red);
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.2;
	margin-bottom: 10px;
}

.supertitle::before {
	content: "/// ";
}

.section_mentions_legales .liste_puce  {
	list-style-type: none;
	padding: 0px;
}

.medium_title {
	font-size: 1.6rem;
	font-weight: 600;
	font-family: 'Kanit';
	line-height: 1.1;
	color: var(--color_dark_grey);
}

.small_title {
	font-size: 1.4rem;
	font-weight: 500;
	font-family: 'Kanit';
	line-height: 1.1;
	color: var(--color_dark_grey);
}

.txt_chapo {
	font-size: 1.1rem;
}

@media screen and (max-width: 1300px) {

	.medium_title {
		font-size: 1.4rem;
	}

}

@media screen and (max-width: 991px) {

	.section_title {
		font-size: 2rem;
	}

}

@media screen and (max-width: 767px) {

	.page_title {
		font-size: 2.4rem;

	}

	.page_title br {
		display: none;
	}

	.section_title:not(.br_visible) br {
		display: none;
	}

}

@media screen and (max-width: 480px) {



}


/*------------------------------
	Buttons
-------------------------------*/

.main_btn {
	background-color: var(--color_red);
	text-transform: uppercase;
	color: white;
	padding: 15px 35px;
	font-weight: 600;
	position: relative;
	font-size: 0.9rem;
	text-align: center;
}

.main_btn::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 17px 17px 0 0;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 0;
	transition: .3s;
}

.main_btn:hover::before {
	border-width: 0px 0px 0 0;
}


/*------------------------------
	Global
-------------------------------*/

body {
	-webkit-font-smoothing: antialiased;
}

.ct-text-block a,
.oxy-rich-text a  {
	color: var(--color_red);
	transition: 0.3s;
}

.ct-text-block a:hover {
	opacity: 0.7;
}

.liste_puce ul {
	padding: 0;
	list-style: none;
}

.liste_puce li {
	position: relative;
	padding-left: 15px;
}

.liste_puce li::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: var(--color_light_red);
	-webkit-mask: url('/wp-content/uploads/2023/05/dropdown.svg') no-repeat;
	mask: url('/wp-content/uploads/2023/05/dropdown.svg') no-repeat;
	transform: rotate(-90deg);
	position: absolute;
	left: 0;
	top: 5px;
}

/*------------------------------
	Forms
-------------------------------*/

/* Style des input */

.inc_form input[type="text"],
.inc_form input[type="email"],
.inc_form .bf_phone_wrapper,
.inc_form textarea,
.inc_form button[type="button"]:not(.bf-msg-close) {
	border: none !important;
	border-bottom: 2px solid var(--color_light_red) !important;
	border-radius: 0 !important;
}

.inc_form input[type="text"],
.inc_form input[type="email"],
.inc_form button[type="button"] {
	padding: 10px 0 !important;
}

.inc_form textarea {
	background-color: var(--color_light_grey);
	padding: 15px 20px !important;
}

.inc_form button[type="button"]:not(.bf-msg-close) {
	width: 100% !important;
	background-color: transparent !important;
	color: var(--color_dark_grey) !important;
	padding: 13px 0px!important;
}

.inc_form button[type="button"]:not(.bf-msg-close) * {
	pointer-events: none;
}

.inc_form button[type="button"] img {
	filter: invert(0) !important;
}

.inc_form input[type="file"] {
	pointer-events: none;
}

.inc_form [type="search"] {
	border-radius: 0 !important;
}

.inc_form [type="search"] + svg {
	color: var(--color_red) !important;
}

.inc_form li.option.selected-opt {
	background-color: var(--color_light_grey) !important;
}

.inc_form li.option.selected-opt .opt-suffix {
	background: transparent !important;
}

.inc_form [type="submit"] {
	background-color: var(--color_red);
    text-transform: uppercase;
    color: white;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    position: relative;
    font-size: 0.9rem !important;
	text-align: center;
	border-radius: 0 !important;
	box-shadow: none !important;
	line-height: 1.5;
	min-width: 200px;
	margin: auto;
}

.inc_form [type="submit"]::before {
	content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 17px 0 0;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
}


/* Checkbox */

body .ct-section .inc_form input[type="checkbox"] + label  {
	align-items: flex-start !important;
	flex-wrap: wrap;
	margin-top: 10px;
    margin-bottom: 10px;
}

body .ct-section .inc_form input[type="checkbox"] + label span:last-child {
	flex: 1;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--color_grey);
}

.inc_form input[type="checkbox"] + label span:first-child {
	border: 2px solid var(--color_light_red) !important;
	border-radius: 0 !important;
	margin-right: 13px;
}

.inc_form input[type="checkbox"]:checked + label span:first-child {
	background-color: var(--color_light_red) !important;
}

/* Label */

.inc_form label {
	font-size: 0.9rem;
}

.inc_form .label_floatable:not(.label_float) {
	pointer-events: none;
}

/* Hover */

.inc_form [type="submit"]:hover {
	background-color: var(--color_red) !important;
}

.inc_form [type="submit"]:hover::before {
	border-width: 0px 0px 0 0;
}

.inc_form textarea:hover,
body .ct-section .inc_form .bf_phone_wrapper:hover {
	border-bottom: 2px solid var(--color_light_red) !important;
}

/* Focus */

.inc_form input[type="text"]:focus,
.inc_form input[type="email"]:focus,
.inc_form textarea:focus,
.inc_form textarea:focus,
body .ct-section .inc_form .bf_phone_wrapper:focus-within,
body .ct-section .inc_form .bf_phone_wrapper:focus {
	box-shadow: none !important;
	border-bottom: 2px solid #d10d2185 !important;
}

body .ct-section .inc_form input[type="checkbox"]:focus + label span:first-child {
	box-shadow: none !important;
	border: 2px solid #d10d2185 !important;
}

.inc_form div[role="combobox"]:focus {
	border-bottom: none !important;
}

body .ct-section .inc_form .bf_phone_wrapper:focus-within {
	box-shadow: none !important;
}

/* Floating label */

body .ct-section .inc_form .btcd-fld-itm {
	position: relative;
	min-height: unset;
	margin-bottom: 7px;
}

body .ct-section .inc_form label.label_floatable {
	transform: translate(0px, 36px);
    position: relative;
	z-index: 9;
	transition: 0.3s;
}

body .ct-section .inc_form label.label_floatable.bf_textarea:not(.label_float) {
	transform: translate(20px, 41px);
}

body .ct-section .inc_form label.label_float {
	transform: translate(0, 0);
}

/*
body .ct-section .inc_form label.b2-5-lbl {
	transform: translate(0px, 10px);
	position: relative;
	z-index: 9;
	transition: 0.3s;
}
*/

/*------------------------------
	Header
-------------------------------*/

.oxy-header-row .oxy-header-container {
	padding-right: 0px;
}


/*------------------------------
	Footer
-------------------------------*/

.txt_footer_bottom a {
	color: var(--color_medium_grey);
	transition: 0.3s;
}

.txt_footer_bottom a:hover {
	color: var(--color_light_red);
}

#_nav_menu-23-35 .menu-item a,#_nav_menu-23-35 .menu-item a:hover{
	background-color: transparent !important;
}