/*====================================================
  FONT
====================================================*/

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Light.ttf") format("truetype");
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Medium.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "RegionBretagne";
	src: url("../fonts/RegionBretagne-Bold.otf") format("opentype");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "RegionBretagne";
	src: url("../fonts/RegionBretagne-BoldItalic.otf") format("opentype");
	font-style: italic;
	font-weight: 700;
}

@font-face {
	font-family: "RegionBretagne";
	src: url("../fonts/RegionBretagne-Black.otf") format("opentype");
	font-style: normal;
	font-weight: 900;
}

@font-face {
	font-family: "RegionBretagne";
	src: url("../fonts/RegionBretagne-BlackItalic.otf") format("opentype");
	font-style: italic;
	font-weight: 900;
}

.font-primary {
	font-family: "Inter";
}
.font-secondary {
	font-family: "RegionBretagne";
}

/*====================================================
  FONT WEIGHT
====================================================*/

:root {
	--latelier--preset--font-weight--light: 300;
	--latelier--preset--font-weight--regular: 400;
	--latelier--preset--font-weight--medium: 500;
	--latelier--preset--font-weight--semi-bold: 600;
	--latelier--preset--font-weight--bold: 700;
	--latelier--preset--font-weight--black: 900;
	--wp--preset--font-size--title-mobile: 30px;
}

/*====================================================
  FONT WEIGHT
====================================================*/
.font-light { font-weight: var(--latelier--preset--font-weight--light); }
.font-regular { font-weight: var(--latelier--preset--font-weight--regular); }
.font-medium { font-weight: var(--latelier--preset--font-weight--medium); }
.font-semi-bold { font-weight: var(--latelier--preset--font-weight--semi-bold); }
.font-bold { font-weight: var(--latelier--preset--font-weight--bold); }
.font-black { font-weight: var(--latelier--preset--font-weight--black); }

/*====================================================
  FONT SIZE
====================================================*/
.text-xs { font-size: var(--wp--preset--font-size--text-extra-small); } /* 12px */
.text-sm { font-size: var(--wp--preset--font-size--text-small); } /* 13px */
.text-rg { font-size: var(--wp--preset--font-size--text-regular); } /* 14px */
.text-md { font-size: var(--wp--preset--font-size--text-large) } /* 16px */
.text-lg { font-size: var(--wp--preset--font-size--title-regular); } /* 30px */
.text-xl { font-size: var(--wp--preset--font-size--title-large); } /* 50px */
.text-xxl { font-size: var(--wp--preset--font-size--title-extra-large); } /* 60px */
.text-85 { font-size: .85rem; }
.text-94 { font-size: .94rem; }

/*====================================================
  COLORS
====================================================*/
.color-primary { color: var(--wp--preset--color--primary); }
.color-secondary { color: var(--wp--preset--color--secondary); }
.color-blue-light { color: var(--wp--preset--color--light-primary); }
.color-light-pink { color: var(--wp--preset--color--light-secondary); }
.color-pale-pink { color: var(--wp--preset--color--pale-secondary); }
.color-gray { color: var(--wp--preset--color--gray); }
.color-dark-gray { color: var(--wp--preset--color--dark-gray); }
.color-light-gray { color: var(--wp--preset--color--light-gray); }
.color-blue-gray { color: var(--wp--preset--color--blue-gray); }
.color-white { color: var(--wp--preset--color--white); }
.color-black { color: var(--wp--preset--color--black); }

.bg-primary { background-color: var(--wp--preset--color--primary) !important; }
.bg-secondary { background-color: var(--wp--preset--color--secondary) !important; }
.bg-blue-light { background-color: var(--wp--preset--color--light-primary) !important; }
.bg-light-pink { background-color: var(--wp--preset--color--light-secondary) !important; }
.bg-pale-pink { background-color: var(--wp--preset--color--pale-secondary) !important; }
.bg-gray { background-color: var(--wp--preset--color--gray) !important; }
.bg-dark-gray { background-color: var(--wp--preset--color--dark-gray) !important; }
.bg-light-gray { background-color: var(--wp--preset--color--light-gray) !important; }
.bg-blue-gray { background-color: var(--wp--preset--color--blue-gray) !important; }
.bg-white { background-color: var(--wp--preset--color--white) !important; }
.bg-black { background-color: var(--wp--preset--color--black) !important; }

.border-primary { border-color: var(--wp--preset--color--primary) !important; }
.border-secondary { border-color: var(--wp--preset--color--secondary) !important; }
.border-blue-light { border-color: var(--wp--preset--color--light-primary) !important; }
.border-light-pink { border-color: var(--wp--preset--color--light-secondary) !important; }
.border-pale-pink { border-color: var(--wp--preset--color--pale-secondary) !important; }
.border-gray { border-color: var(--wp--preset--color--gray) !important; }
.border-dark-gray { border-color: var(--wp--preset--color--dark-gray) !important; }
.border-light-gray { border-color: var(--wp--preset--color--light-gray) !important; }
.border-blue-gray { border-color: var(--wp--preset--color--blue-gray) !important; }
.border-white { border-color: var(--wp--preset--color--white) !important; }
.border-black { border-color: var(--wp--preset--color--black) !important; }

/*====================================================
  GLOBAL
====================================================*/

body {
	counter-reset: steps-scenario-form;
}

h1,
h2,
h3,
p,
a,
span,
ul,
li {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

figure {
	margin: 0;
}

ul {
	list-style: none;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

.repeat-text-container {
	max-width: 100% !important;
}

.repeat-text {
	-webkit-text-stroke: 1px var(--wp--preset--color--primary);
	color: transparent !important;
	text-transform: uppercase;
	white-space: nowrap;
    overflow: hidden;
}

a:hover {
	color: currentColor;
}

main p a {
	color: var(--wp--preset--color--secondary);
	transition: color .3s;
}

main p a:hover {
	color: var(--wp--preset--color--dark-secondary);
}

/*====================================================
  ADD OF UTILITY CLASS
====================================================*/

.width-fit-content {
	width: fit-content;
}

.flex-grow-unset {
	flex-grow: unset !important;
}

.flex-basis-unset {
	flex-basis: unset !important;
}

.flex-basis-33-10 {
	flex-basis: calc(33% - 10px);
}

@media screen and (max-width: 1300px) {
	.flex-basis-33-10 {
		flex-basis: calc(50% - 10px);
	}
}

@media screen and (max-width: 768px) {
	.flex-basis-33-10 {
		flex-basis: 100%;
	}
}

.no-border-radius {
	border-radius: 0 !important;
}

.border-radius-20 img {
	border-radius: 20px;
}

/* Remove gap in columns */

.no-gap {
	gap: 0 !important;
}

.z-index-0 {
	z-index: 0;
}

.z-index-1 {
	z-index: 1;
}

.z-index-2 {
	z-index: 2;
}

.z-index-3 {
	z-index: 3;
}

.z-index-999 {
	z-index: 99999999;
}

/* Container */

.max-container-1100 { max-width: 1100px; }
.max-container-1200 { max-width: 1200px; }
.max-container-1400 { max-width: 1400px; }

/* Max width */

.max-w-50 { max-width: 50rem; }

/* Images */

.object-fit-cover { object-fit: cover !important; }
.object-fit-contain { object-fit: contain !important; }

/* Border */

.border-b-table { border-bottom: 0.5px var(--wp--preset--color--blue) solid; }

/* Border radius */

.rounded-20 { border-radius: 20px; }

/* Cursor */

.cursor-pointer { cursor: pointer; }

/* Pointer events */

.pointer-events-none { pointer-events: none; }
.pointer-events-all { pointer-events: all; }

/*====================================================
  GUTENBERG
====================================================*/

/* Buttons */

.wp-block-button .wp-block-button__link {
	font-weight: inherit !important;
}

.btn-primary a {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--primary) !important;
	border: 1px solid var(--wp--preset--color--primary);
	transition: all 0.2s linear;
	transform: scale(1);
}

.btn-primary a:hover {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--dark-primary) !important;
	border: 1px solid var(--wp--preset--color--dark-primary);
	transition: all 0.2s linear;
}

.btn-primary a:active {
	background-color: var(--wp--preset--color--dark-primary) !important;
	outline: 2px dotted var(--wp--preset--color--dark-primary);
	border: 1px solid var(--wp--preset--color--dark-primary);
    outline-offset: 2px;
	animation: bounce .5s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
}

.btn-secondary a,
input.btn-secondary {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--secondary) !important;
	border: 1px solid var(--wp--preset--color--secondary);
	transform: scale(1);
	transition: all 0.2s linear;
}

.btn-secondary a:hover,
input.btn-secondary:hover {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--dark-secondary) !important;
    border: 1px solid var(--wp--preset--color--dark-secondary);
	transition: all 0.2s linear;
}

.btn-secondary a:active,
input.btn-secondary:active {
	background-color: var(--wp--preset--color--dark-secondary) !important;
	border: 1px solid var(--wp--preset--color--secondary);
	outline: 2px dotted var(--wp--preset--color--dark-secondary);
    outline-offset: 2px;
	animation: bounce .5s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
}

.btn-white-secondary a {
	color: var(--wp--preset--color--secondary) !important;
	background-color: var(--wp--preset--color--white) !important;
	border: 1px solid var(--wp--preset--color--white);
	transition: all 0.2s linear;
	transform: scale(1);
}

.btn-white-secondary a:hover {
	color: var(--wp--preset--color--secondary) !important;
	background-color: transparent !important;
	border: 1px solid transparent;
	transition: all 0.2s linear;
}

.btn-white-secondary a:active {
	background-color: transparent !important;
	border: 1px solid transparent;
	animation: bounce .5s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
}

 @keyframes bounce {
	from {
		transform: scale(1);
 	}
	50% {
		transform: scale(1.2);
	}
	75% {
		transform: scale(1.02);
	}
	to {
		transform: scale(1.08);
	}
}

/* Remove margin under image */

.wp-block-image {
	margin: 0 !important;
	height: fit-content;
	display: flex;
}

/* Remove border radius from image */

.no-border-radius img {
	border-radius: 0 !important;
}

/* Icon in button gutenberg */
.wp-block-button__link {
	display: flex !important;
	align-items: center;
	gap: 10px;
}

/* Pagination */

.wp-block-query-pagination-numbers a {
	font-family: var(--wp--preset--font-family--inter);
	color: var(--wp--preset--color--dark-gray);
}

/* Spaces */

.xxxs-space-bottom {
	padding-bottom: 60px;
}

.xxxs-space-top {
	padding-top: 60px;
}

.xxs-space-bottom {
	padding-bottom: 80px;
}

.xxs-space-top {
	padding-top: 80px;
}

.xs-space-bottom {
	padding-bottom: 90px;
}

.xs-space-top {
	padding-top: 90px;
}

.s-space-bottom {
	padding-bottom: 100px;
}

.s-space-top {
	padding-top: 100px;
}

.m-space-bottom {
	padding-bottom: 115px;
}

.m-space-top {
	padding-top: 115px;
}

.l-space-bottom {
	padding-bottom: 125px;
}

.l-space-top {
	padding-top: 125px;
}

.xl-space-bottom {
	padding-bottom: 160px;
}

.xl-space-top {
	padding-top: 160px;
}

.xxl-space-bottom {
	padding-bottom: 185px;
}

.xxl-space-top {
	padding-top: 185px;
}

.xxxl-space-bottom {
	padding-bottom: 200px;
}

.xxxl-space-top {
	padding-top: 200px;
}

.last-space-bottom {
	padding-bottom: 230px;
}

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

	.xxxs-space-bottom {
		padding-bottom: 30px;
	}

	.xxxs-space-top {
		padding-top: 30px;
	}

	.xxs-space-bottom {
		padding-bottom: 35px;
	}

	.xxs-space-top {
		padding-top: 35px;
	}

	.xs-space-bottom {
		padding-bottom: 40px;
	}

	.xs-space-top {
		padding-top: 40px;
	}

	.s-space-bottom {
		padding-bottom: 40px;
	}

	.s-space-top {
		padding-top: 40px;
	}

	.m-space-bottom {
		padding-bottom: 40px;
	}

	.m-space-top {
		padding-top: 40px;
	}

	.l-space-bottom {
		padding-bottom: 40px;
	}

	.l-space-top {
		padding-top: 40px;
	}

	.xl-space-bottom {
		padding-bottom: 40px;
	}

	.xl-space-top {
		padding-top: 40px;
	}

	.xxl-space-bottom {
		padding-bottom: 40px;
	}

	.xxl-space-top {
		padding-top: 40px;
	}

	.xxxl-space-bottom {
		padding-bottom: 50px;
	}

	.xxxl-space-top {
		padding-top: 50px;
	}

	.last-space-bottom {
		padding-bottom: 80px;
	}
}

/*====================================================
  NAV
====================================================*/

#wpadminbar {
	display: none;
}

/******************* Header *******************/

.site-header {
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
}

.site-header .container-header {
	position: relative;
	width: 100%;
	background-color: var(--wp--preset--color--white);
}

.site-header .container-header > svg {
    position: absolute;
    bottom: -34px;
    width: 100%;
    transform: scaleY(1);
    transform-origin: top;
    transition: all 0.2s linear;
}

.site-header.js-scroll .container-header > svg {
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s linear;
}

.site-header .container-nav {
	display: flex;
    flex-direction: row;
    align-items: flex-start;
	max-width: 1230px;
	margin: auto;
}

.site-header .container-nav .separator {
	top: 93px;
	height: 1px;
}

.site-header .container-nav a .underline-offset {
	width: calc(100% + 18px); height: 2px;
	margin-top: 22px;
	z-index: 2;
}

.site-header .container-nav a:not(.menu-item-has-children) .underline-offset { width: 100%; }

.site-header .navbar-brand img {
	max-width: 125px;
	object-fit: contain;
}

.site-header nav,
body.submenu-open .site-header nav {
	width: calc(100% - 370px);
    flex-grow: 1;
	position: relative;
	padding: 32px 0;
	transition: all 0.3s ease-in-out;
}

.site-header nav.submenu-active,
body.submenu-open .site-header nav.submenu-active {
	padding: 32px 0 70px 0;
	transition: all 0.3s ease-in-out;
}

.site-header .navbar-collapse {
	flex-grow: unset;
}

.site-header .navbar-nav {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.site-header li {
	font-size: var(--wp--preset--font-size--text-regular);
	font-weight: 400;
	color: var(--wp--preset--color--primary);
}

.site-header nav > div > ul > li { padding: 10px; }

@media screen and (max-width: 992px) {
	.site-header nav > div > ul > li {
		border-top: 1px solid #D9D9D9;
		padding: 20px 30px;
	}
}

.site-header li.btn-secondary {
	padding: 10px 0 10px 10px;
	z-index: 16;
}

@media screen and (max-width: 992px) {
	.site-header li.btn-secondary { padding-top: 40px; }
}

.site-header li a {
	transition: all 0.3s ease-in-out;
}

.site-header li a:hover {
	color: var(--wp--preset--color--secondary);
	transition: all 0.3s ease-in-out;
}

.site-header nav li.menu-item-has-children > a {
	margin-right: 6px;
}

.site-header nav li.menu-item-has-children.submenu-active > a {
	font-weight: bold;
	color: var(--wp--preset--color--dark-secondary);
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
	.site-header nav > div > ul > li.menu-item-has-children > ul.sub-menu li.menu-item-has-children.submenu-active > a {
		border-bottom: 1px solid;
		padding-bottom: 10px;
	}
}

.site-header nav li.menu-item-has-children > svg {
	cursor: pointer;
	transform: rotateZ(0deg);
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
	.site-header nav li.menu-item-has-children > svg {
		float: right;
		transform: rotateZ(-90deg) scale(1.4);
		margin-top: 8px;
	}
}

body.submenu-open .site-header nav li.menu-item-has-children.submenu-open > svg path {
	stroke: var(--wp--preset--color--primary);
	transition: all 0.3s ease-in-out;
}

.site-header nav li.menu-item-has-children.submenu-active > svg,
body.submenu-open .site-header nav li.menu-item-has-children.submenu-active > svg {
	transform: rotateZ(-180deg);
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
	.site-header nav li.menu-item-has-children.submenu-active > svg {
		transform: rotateZ(0deg) scale(1.4)!important;
	}
}

.site-header nav li.menu-item-has-children.submenu-active > svg path,
body.submenu-open .site-header nav li.menu-item-has-children.submenu-active > svg path {
	stroke: var(--wp--preset--color--secondary);
	transition: all 0.3s ease-in-out;
}

.site-header nav li.menu-item-has-children.submenu-active > svg.active path,
.site-header li a:hover + svg path {
	stroke: var(--wp--preset--color--dark-secondary);
}

.site-header .btn-primary a,
.site-header .btn-secondary a {
	padding: 10px 20px;
	border-radius: 30px;
}

/* Submenu */

body.submenu-open .site-header nav li.menu-item-has-children.submenu-open ul.sub-menu { display: flex; }

.site-header nav > div > ul > li.menu-item-has-children > ul.sub-menu {
	position: absolute;
	bottom: initial; left: 0;
	display: none;
	flex-direction: row;
	justify-content: center;
	gap: 70px;
	width: 100%;
	background-color: transparent;
	padding: 45px 0;
	z-index: 15;
}

@media screen and (max-width: 992px) {
	.site-header nav > div > ul > li.menu-item-has-children > ul.sub-menu {
		background-color: #F9F9F9;
		width: calc(100% + 60px);
		margin: 20px 0 -21px -30px;
		padding: 20px 35px;
	}

	.site-header nav > div > ul > li.menu-item-has-children > ul.sub-menu li:not(:last-child) { padding-bottom: 10px }
}

.site-header nav > div > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > ul.sub-menu {
	display: none;
	flex-direction: column;
	width: fit-content;
	min-width: 100%;
	background-color: white;
	border-radius: 10px;
	border-top: 2px solid var(--wp--preset--color--secondary);
	margin-top: 20px;
	padding: 30px;
}

@media screen and (max-width: 992px) {
	.site-header nav > div > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > ul.sub-menu {
		background-color: transparent;
		border: 0;
		border-radius: 0;
		margin-bottom: 20px;
		padding: 0;
	}
}

.site-header nav > div > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > ul.sub-menu li:not(:last-child) { padding-bottom: 20px; }

@media screen and (max-width: 992px) {
	.site-header nav > div > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > ul.sub-menu li:not(:last-child) { padding-bottom: 10px; }
}

.site-header nav > div > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > ul.sub-menu > .menu-item-has-children > ul.sub-menu {
	display: none;
	flex-direction: column;
	padding-top: 15px;
}

.site-header nav > div > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > ul.sub-menu > .menu-item-has-children > ul.sub-menu > li:not(:last-child) { padding: 0 0 5px; }

.site-header nav li.menu-item-has-children ul.sub-menu.small-submenu {
	justify-content: center;
	gap: 50px;
}

.site-header .sub-menu > li > a {
	color: var(--wp--preset--color--light-tertiary);
	transition: all 0.3s ease-in-out;
}

.site-header .sub-menu > li > a:hover {
	color: var(--wp--preset--color--secondary);
	transition: all 0.3s ease-in-out;
}

/* Toggle on mobile */

.logo-and-toggle svg {
	height: 50px;
	position: absolute;
	width: 50px;
}

.logo-and-toggle .plate {
	height: 50px;
	width: 50px;
	border: none;
	padding: 0;
}

.logo-and-toggle .x {
	transform: scale(0);
	transition: transform 400ms;
}

.logo-and-toggle .line {
	fill: none;
	stroke: var(--wp--preset--color--primary);
	stroke-width: 6px;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform-origin: 50%;
	transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
}

.logo-and-toggle .x .line {
	stroke-width: 5.5px;
}

.logo-and-toggle .active .x {
	transform: scale(1);
	transition: transform 400ms 350ms;
}

.logo-and-toggle .plate-icon .x {
	transition: transform 400ms;
}

.logo-and-toggle .plate-icon .line {
	transform-origin: 50%;
	transition: transform 400ms 100ms;
}

.logo-and-toggle .active.plate-icon .line {
	transition: transform 400ms;
}

.logo-and-toggle .active.plate-icon .line1 {
	transform: translateX(18px) translateY(-3px) rotate(-45deg) scale(.7);
}

.logo-and-toggle .active.plate-icon .line2 {
	transform: translateX(-18px) translateY(-3px) rotate(45deg) scale(.7);
}

.logo-and-toggle .active.plate-icon .line3 {
	transform: translateY(0px) rotate(45deg) scale(.7);
}

.logo-and-toggle .active.plate-icon .line4 {
	transform: translateY(0px) rotate(-45deg) scale(.7);
}

.logo-and-toggle .active.plate-icon .line5 {
	transform: translateX(18px) translateY(3px) rotate(45deg) scale(.7);
}

.logo-and-toggle .active.plate-icon .line6 {
	transform: translateX(-18px) translateY(3px) rotate(-45deg) scale(.7);
}

.logo-and-toggle .active.plate-icon .x {
	transition: transform 400ms 100ms;
	transform: scale(1);
}

/* Search form */
.site-header .search, .search-page {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 50px;
	background: rgba(217, 217, 217, 0.4);
	padding: 0 12px;
	margin-left: 35px;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	z-index: 15;
}

.site-header .search.active, .search-page {
	width: 300px;
	transition: all 0.3s ease-in-out;
}

.search-page { margin-left: 0; }

@media screen and (max-width: 480px) {
	.search-page { width: 100%; }
}

.site-header .search .icon-search, .search-page .icon-search-page {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 43px;
	width: 43px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.search-page .icon-search-page { cursor: initial; }

.search-form {
	display: none;
	width: 0;
	opacity: 0;
	height: fit-content;
	position: relative;
	padding-left: 8px;
	transition: all 0.3s ease-in-out;
}

.search-form-page {
	position: relative;
	display: flex;
	width: 100%;
	padding-left: 8px;
}

.site-header .search.active .search-form {
	display: flex;
	width: 100%;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.search-form .search-field, .search-form-page .search-field {
	width: 0;
	border-style: none;
	font-size: var(--wp--preset--font-size--text-regular);
	outline: none;
	border-radius: 25px;
	transition: all .5s ease-in-out;
	padding-right: 40px;
}

.search-form .search-field::placeholder, .search-form-page .search-field::placeholder {
	font-family: var(--wp--preset--font-family--inter);
	color: var(--wp--preset--color--black);
	font-size: var(--wp--preset--font-size--text-regular);
	letter-spacing: 0;
}

.site-header .search.active .search-field, .search-form-page .search-field {
	width: 258px;
	border-radius: 0px;
	background-color: transparent;
	transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.search-form  .search-submit, .search-form-page .search-submit {
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 3px;
	transform: translateY(-50%);
	padding: 8px 20px;
	font-size: var(--wp--preset--font-size--text-regular);
	font-weight: var(--latelier--preset--font-weight--bold);
	cursor: pointer;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.site-header .search.active .search-form .search-submit, .search-form-page .search-submit {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.search-form  .search-submit:active, .search-form-page .search-field:active {
    background-color: inherit;
    border: inherit;
    outline: none;
    outline-offset: 0;
    animation: none;
}

.site-header .btn-search, .search-form-page .btn-search {
	width: 40px; height: 40px;
	background-color: rgba(217, 217, 217, 0.4);
	border: 0;
	margin: -40px 0 0 130px;
	padding: 0;
	z-index: 17;
}

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

	.site-header .navbar-nav {
		gap: 25px;
	}

	.site-header nav li.menu-item-has-children ul.sub-menu {
		bottom: 22px;
	}

	.site-header .container-nav {
		padding: 0 35px;
	}

	.site-header .search.active {
		width: 200px;
	}

	.site-header .search.active .search-field {
		width: 200px;
	}
}

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

	.logo-and-toggle {
		width: 100%;
	}

	.site-header .container-nav {
		flex-direction: row;
		align-items: flex-start;
	}

	.site-header nav {
		margin: 0;
		flex-grow: 1;
	}

	.site-header .container-nav.active nav {
		width: fit-content;
		padding: 32px 0 10px 0;
	}

	.site-header .navbar-nav {
		flex-direction: column;
		gap: 0;
		width: calc(100% + 70px);
		margin-left: -35px;
	}

	.site-header .container-nav .search {
		margin-top: 32px;
	}

	.submenu-active > ul.sub-menu {
		position: relative!important;
		left:initial!important; bottom: initial!important;
		display: block!important;
		z-index: initial!important;
		margin-top: 10px;
	}

	body.submenu-open .site-header nav li.menu-item-has-children.submenu-open ul.sub-menu {
		display: none;
	}
}
@media screen and (max-width: 480px) {

	.site-header .container-nav {
		flex-direction: column;
		padding: 0 35px 15px 35px;
	}

	.site-header nav {
		width: 100%!important;
		padding: 32px 0 15px 0!important;
	}

	.site-header .container-nav .search {
		margin-top: 0;
		margin-left: auto;
		margin-right: 18px;
		width: 100%;
	}

	.site-header .search-form {
		display: flex;
		width: 100%;
		opacity: 1;
	}

	.site-header .search .search-field,
	.site-header .search.active .search-field {
		width: 80%;
		background-color: transparent;
	}

	.search-form .search-submit {
		opacity: 1;
		padding: 6px 20px;
		right: -5px;
	}
}

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

	.site-header .search .search-field,
	.site-header .search.active .search-field {
		width: 70%;
	}

}

/******************* Footer *******************/

footer {
	position: relative;
	background: url(../img/bg-footer.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	color: var(--wp--preset--color--white);
}

footer > svg {
	position: absolute;
	top: -1px;
	width: 100%;
}

footer .container-nav {
	padding-top: 115px;
}

.sendinblue-footer .sib_loader {
	position: absolute;
	margin: 4px 0 0 -30px;
}

.sendinblue-footer .d-flex input {
	font-size: .85rem;
}

@media screen and (max-width: 992px) {
	.sendinblue-footer .d-flex input[type="submit"] {
		width: 100%;
	}
}

@media screen and (min-width: 992px) {
	.sendinblue-footer .d-flex input[type="email"] {
		width: 350px;
	}
}

.menu-footer-container {
	margin-top: 100px;
}

.menu-footer-container a:hover {
	color: inherit;
}

.menu-footer-container > ul {
	display: grid;
	grid-template-columns: repeat(4, 270px);
	grid-template-rows: 1fr;
	grid-column-gap: 75px;
}

.menu-footer-container > ul > li > * {
	display: block;
	width: 100%;
	font-size: var(--wp--preset--font-size--text-large);
}

.menu-footer-container > ul > li > a,
.menu-footer-container > ul > li ul li.title > a {
	font-size: var(--wp--preset--font-size--text-large);
	font-weight: var(--latelier--preset--font-weight--bold);
	cursor: default;
}

.menu-footer-container a.cursor-pointer,
.menu-footer-container a.cursor-pointer p {
	cursor: pointer!important;
}

.menu-footer-container a:hover {
	opacity: .8;
}

.menu-footer-container .menu-title > a {
	font-size: var(--wp--preset--font-size--text-large)!important;
	font-weight: var(--latelier--preset--font-weight--bold)!important;
	cursor: default;
}

.menu-footer-container > ul > li > ul li.title {
	margin-top: 27px;
}

.menu-footer-container > ul > li .address p,
.menu-footer-container > ul > li .tel,
.menu-footer-container > ul > li .sub-menu a {
	font-size: var(--wp--preset--font-size--text-regular);
	font-weight: var(--latelier--preset--font-weight--light);
	line-height: 18px;
}

.menu-footer-container > ul > li .address,
.menu-footer-container > ul > li .social-medias-container,
.menu-footer-container > ul > li .sub-menu {
	margin-top: 8px;
}

.menu-footer-container > ul > li .address:hover {
	cursor: default;
}

.menu-footer-container > ul > li .tel {
	cursor: pointer;
}

.menu-footer-container > ul > li .social-medias-container {
	gap: 20px;
	margin-top: 15px;
}

.menu-footer-container > ul > li .social-medias-container > a:first-of-type {
	display: none;
}

.menu-footer-container > ul > li .img-container > img {
	max-width: 232px;
	object-fit: contain;
    display: flex;
}

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

	.menu-footer-container > ul > li .img-container > img {
		margin: 0 auto;
	}

}

/* Sub footer */

.sub-footer {
	margin: 55px auto 0 auto;
	padding-bottom: 28px;
}

.copyright {
	font-size: var(--wp--preset--font-size--text-regular);
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--light);
}

.copyright a:hover {
	color: inherit;
}

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

	.menu-footer-container > ul {
		grid-column-gap: 15px;
	}

}

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

	footer > svg {
		height: 150px !important;
	}

	.menu-footer-container {
		display: flex;
		justify-content: center;
	}

	.menu-footer-container > ul {
		grid-template-columns: repeat(2, 270px);
		grid-template-rows: 1fr;
		grid-row-gap: 50px;
		grid-column-gap: 75px;
	}

}

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

	footer > svg {
		height: 110px !important;
	}

	footer .container-nav {
		padding-top: 75px;
	}

	.menu-footer-container {
		margin-top: 40px;
	}

	.menu-footer-container > ul {
		grid-template-columns: repeat(1, 270px);
		grid-template-rows: 1fr;
		grid-row-gap: 30px;
		grid-column-gap: 0;
	}

	.menu-footer-container > ul > li > ul li.title {
		display: flex;
		flex-direction: column;
	}

	.menu-footer-container > ul > li > ul li.title a {
		text-align: center;
	}

	.menu-footer-container > ul > li > a {
		text-align: center;
	}

	.menu-footer-container > ul > li .sub-menu li,
	.menu-footer-container > ul > li .social-medias-container {
		display: flex;
		justify-content: center;
	}

	.menu-footer-container > ul > li .sub-menu li {
		align-items: center;
		flex-direction: column;
	}

}

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

	footer > svg {
		height: 50px !important;
	}

	footer .container-nav {
		padding: 75px 25px 0 25px;
	}

	.menu-footer-container > ul {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 1fr;
		grid-row-gap: 30px;
		grid-column-gap: 0;
	}

}

/* Newsletter */
.newsletter {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 13px;
}

.newsletter .btn-secondary {
	padding: 8px 20px;
	border-radius: 30px;
	font-size: var(--wp--preset--font-size--text-regular);
}

.newsletter input[type="email"] {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	border: none;
	font-size: var(--wp--preset--font-size--text-regular);
	margin-bottom: 15px;
}

.newsletter .sib-alert-message {
	margin-top: 10px;
	margin-bottom: 0 !important;
}

.newsletter .sib-alert-message.sib-alert-message-success {
	font-size: var(--wp--preset--font-size--text-regular);
	border-radius: 8px !important;
}

/*====================================================
	MAIN
====================================================*/
#site-main {
	overflow-x: hidden;
}

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

	#site-main {
		margin-top: 50px;
	}

}

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

	#site-main {
		margin-top: 100px;
	}

}

/*====================================================
	SEARCH RESULTS PAGE
====================================================*/

.search-results main {
    margin: 185px auto 0 auto;
	max-width: 1230px;
}

.search-results .page-title {
	font-size: 30px;
	font-family: var(--wp--preset--font-family--regionbretagne);
	color: var(--wp--preset--color--primary);
	font-weight: var(--latelier--preset--font-weight--black);
	padding-bottom: 20px;
}

.search-results .search-result-count {
	font-size: var(--wp--preset--font-size--text-regular);
	font-family: var(--wp--preset--font-family--inter);
	color: var(--wp--preset--color--black);
	font-weight: var(--latelier--preset--font-weight--medium);
	padding-bottom: 50px;
}

.search-results .container-articles {
	display: grid;
	grid-template-columns: repeat(3, 386px);
	grid-template-rows: auto;
	grid-column-gap: 40px;
	grid-row-gap: 68px;
}

.search-results article .entry-title {
	line-height: 14px;
	padding-bottom: 18px;
	min-height: 38px;
}

.search-results article .entry-title a {
	font-size: var(--wp--preset--font-size--text-large);
	font-family: var(--wp--preset--font-family--regionbretagne);
	color: var(--wp--preset--color--black);
	font-weight: var(--latelier--preset--font-weight--black);
}

.search-results article .post-thumbnail {
	display: block;
	width: 386px;
	height: 223px;
	padding-bottom: 20px;
}

.search-results article .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.search .pagination {
	display: flex;
	justify-content: center;
	padding: 2rem 0;
}

.search .pagination .nav-links {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.search .pagination .page-numbers {
	padding: 0 3px;
}

.search .pagination .page-numbers.next,
.search .pagination .page-numbers.prev {
	display: flex;
	align-items: center;
	padding: 0 5px;
}

.search .pagination .page-numbers svg {
	width: 20px;
}

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

	.search-results .container-articles {
		grid-template-columns: repeat(2, 386px);
		justify-content: center;
	}
}

@media screen and (max-width: 1000px) {
	.search-results .container-articles {
		grid-template-columns: repeat(1, 500px);
		justify-content: flex-start;
	}
}

@media screen and (max-width: 768px) {
	.search-results .container-articles {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 43px;
	}

	.search-results article .post-thumbnail {
		width: auto;
    	height: 223px;
	}
}

/*====================================================
	PATTERNS
====================================================*/

/*====================================================
	TRAINING LOCATIONS
====================================================*/

.home .training-locations-pattern {
	margin-bottom: 278px;
}

.training-locations-container {
    background: linear-gradient(151.71deg, #253080 41.72%, #CF006D 91.46%);
}


.training-locations-pattern .btn-white-secondary a:hover {
	background-color: transparent !important;
	border: 1px solid var(--wp--preset--color--white);
	color: var(--wp--preset--color--white) !important;
	transition: all 0.3s ease-in-out;
}

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

	.home .training-locations-pattern {
		margin-bottom: 75px;
	}

    .training-locations-container .title {
        font-size: var(--wp--preset--font-size--title-mobile) !important;
    }
}

/*====================================================
	OUR OFFER
====================================================*/

.our-offer-pattern {
	margin-bottom: 148px;
}

.our-offer-pattern .blocks-container {
	display: grid;
	grid-template-columns: repeat(3, 334px);
	grid-template-rows: auto;
	grid-column-gap: 66px;
	grid-row-gap: 60px;
	justify-content: center;
}

.our-offer-pattern .block {
	border-radius: 20px;
	height: 316px;
	padding: 0;
}

@property --latelier-color-transition-initial-color-0 {
	syntax: '<color>';
	initial-value: rgba(0, 0, 0, 0);
	inherits: false;
}

 @property --latelier-color-transition-initial-color-09 {
	syntax: '<color>';
	initial-value: rgba(0, 0, 0, 0.9);
	inherits: false;
}

.our-offer-pattern .block > span {
	opacity: 1 !important;
	background: linear-gradient(160.77deg, var(--latelier-color-transition-initial-color-0) 58.5%, var(--latelier-color-transition-initial-color-09) 86.46%);
	background-blend-mode: darken;
	background-color: transparent !important;
	transition: --latelier-color-transition-initial-color-0 0.5s linear, --latelier-color-transition-initial-color-09 0.5s linear, opacity  0.5s linear;
	-moz-transition: all 0s linear;
}

.our-offer-pattern .block:hover > span {
	opacity: 0.65 !important;
	--latelier-color-transition-initial-color-0: rgba(37, 48, 128, 0.9);
	--latelier-color-transition-initial-color-09: rgba(207, 0, 109, 0.9);
}

.our-offer-pattern .block img,
.our-offer-pattern .block span {
	border-radius: 20px;
}

.our-offer-pattern .block > div {
	height: 100%;
}

.our-offer-pattern .block .hidden-content {
	padding: 25px;
	opacity: 0;
	transition: opacity 0.5s linear;
	-moz-transition: opacity 0s linear;
	-webkit-transition: opacity 0s linear;
}

.our-offer-pattern .block:hover .hidden-content {
	opacity: 1;
	transition: opacity 0.5s linear;
	-moz-transition: opacity 0s linear;
}

.our-offer-pattern .container-step {
	border-top: 1px solid var(--wp--preset--color--white);
}

.our-offer-pattern .container-step .number {
	max-width: 83px;
	width: 100%;
	padding: 28px 0;
	border-right: 1px solid var(--wp--preset--color--white);
}

.our-offer-pattern .container-step .title {
	width: 80%;
	padding: 28px 0;
}

@media screen and (max-width: 1300px) {
	.our-offer-pattern .blocks-container {
		grid-column-gap: 40px;
	}
}

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

	.our-offer-pattern .blocks-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.our-offer-pattern .block {
		width: 334px;
	}
}

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

	.our-offer-pattern {
		margin-bottom: 75px;
	}

	.our-offer-pattern .our-offer-container > .title {
        font-size: var(--wp--preset--font-size--title-mobile) !important;
    }

	.our-offer-pattern .block .hidden-content {
		opacity: 1;
		transition: opacity 0.5s linear;
		-moz-transition: opacity 0s linear;
	}

	.our-offer-pattern .block > span {
		opacity: 0.65 !important;
		background: linear-gradient(160.77deg, var(--latelier-color-transition-initial-color-0) 58.5%, var(--latelier-color-transition-initial-color-09) 86.46%);
		background-blend-mode: darken;
		background-color: transparent !important;
		transition: --latelier-color-transition-initial-color-0 0.5s linear, --latelier-color-transition-initial-color-09 0.5s linear, opacity  0.5s linear;
		-moz-transition: all 0s linear;
		--latelier-color-transition-initial-color-0: rgba(37, 48, 128, 0.9);
		--latelier-color-transition-initial-color-09: rgba(207, 0, 109, 0.9);
	}
}

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

	.our-offer-pattern .block {
		height: auto;
		min-height: auto;
		width: 100%;
	}

	.our-offer-pattern .container-step .title {
		padding: 15px 10px;
		font-size: 16px !important;
		line-height: 22px;
	}

	.our-offer-pattern .container-step .number {
		padding: 15px 0;
	}
}


/*====================================================
	LAST NEWS
====================================================*/

.last-news-pattern {
	margin-bottom: 280px;
	background: url('../img/lines-behind.svg');
	background-position: bottom center;
	background-size: 100%;
	background-repeat: no-repeat;
}

.last-news-pattern,
.last-news-pattern .container-news {
	position: relative;
}

.last-news-pattern .container-news::before {
	content: url('../img/circle-text.svg');
	position: absolute;
	top: -175px;
	right: 0;
	animation: spin 8s;
	animation-iteration-count: infinite;
    animation-timing-function: linear;
	z-index: -1;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	} to {
		transform: rotate(360deg);
	}
}

.last-news-pattern .container-news li {
	border-radius: 20px;
	background-color: var(--wp--preset--color--white);
	box-shadow: 0px 2px 32px -5px rgba(0, 0, 0, 0.1);
}

.last-news-pattern .container-news li > figure img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.last-news-pattern .container-news li > figure span {
	opacity: 0;
	transition: all 0.3s linear;
}

@property --latelier-color-transition-initial-color {
	syntax: '<color>';
	initial-value: rgba(0, 0, 0, 0);
	inherits: false;
}

 @property --latelier-color-transition-second-initial-color {
	syntax: '<color>';
	initial-value: rgba(0, 0, 0, 0);
	inherits: false;
}

.last-news-pattern .container-news li > figure span {
	opacity: 0.45;
	background: linear-gradient(160.77deg, var(--latelier-color-transition-initial-color) 58.5%, var(--latelier-color-transition-second-initial-color) 86.46%);
	background-blend-mode: darken;
	background-color: transparent !important;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	transition: --latelier-color-transition-initial-color 0.5s linear, --latelier-color-transition-second-initial-color 0.5s linear, opacity  0.5s linear;
	-moz-transition: all 0s linear;
}

.last-news-pattern .container-news li:hover > figure span {
	opacity: 0.45 !important;
	--latelier-color-transition-initial-color: rgba(37, 48, 128, 0.9);
	--latelier-color-transition-second-initial-color: rgba(207, 0, 109, 0.9);
	transition: --latelier-color-transition-initial-color 0.5s linear, --latelier-color-transition-second-initial-color 0.5s linear, opacity  0.5s linear;
}

.last-news-pattern .container-news .container-content {
	padding: 21px 17px;
}

.last-news-pattern .container-news .container-content .title {
	min-height: 68px;
}

.last-news-pattern .container-news .container-content .date,
.last-news-pattern .container-news .container-content .cat {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.last-news-pattern .container-news .container-content .sep {
	position: relative;
	display: block;
	margin: 3px 7px 0 7px !important;
    color: inherit;
    border: 1px solid black;
    opacity: 1;
    height: 17px;
}

.last-news-pattern .container-news .container-content .read-more {
	margin-bottom: 10px;
}

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

	.last-news-pattern .container-news ul {
		justify-content: center;
	}

	.last-news-pattern .container-news li {
		width: 292px !important;
	}

}

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

	.last-news-pattern {
		margin-bottom: 50px;
	}

	.last-news-pattern .last-news-container > .title {
        font-size: var(--wp--preset--font-size--title-mobile) !important;
		text-align: center;
    }

	.last-news-pattern .container-news::before {
		display: none;
	}

}

/*====================================================
	COUNTERS
====================================================*/

.counters-pattern {
	margin-bottom: 150px;
}

.counters-pattern .img-container {
	width: 52%;
}

.counters-pattern .img-container figure {
	position: relative;
	mask-image: url('../img/mask-rect.png');
	-webkit-mask-image: url('../img/mask-rect.png');
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-type: alpha;
	-webkit-mask-type: alpha;
	mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.counters-pattern .img-container {
	position: relative;
}

@keyframes spin-counters {
	from {
		transform: translate(-50%) rotate(0deg);
	} to {
		transform: translate(-50%) rotate(360deg);
	}
}

.counters-pattern .img-container::before {
	content: url('../img/circle-lines.png');
	position: absolute;
	top: -75px;
	left: 50%;
	transform: translate(-50%);
	animation: spin-counters 8s;
	animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.counters-pattern .img-container img {
    max-height: 350px;
    object-fit: cover;
	width: 100%;
}

.counters-pattern .cover-gradient {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	display: block;
    z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(207.31deg, rgba(34, 48, 133, 0.65) 29.06%, rgba(207, 0, 109, 0.65) 98.06%);
	background-blend-mode: darken;
	opacity: 0.75;
}

.counters-pattern .content-container {
	width: 48%;
	padding-left: 66px;
}

.counters-pattern .counters {
	display: grid;
	grid-template-columns: repeat(3, 135px);
	grid-template-rows: 1fr;
	grid-column-gap: 12px;
}

.counters-pattern .counters .counter {
	box-shadow: 0px 2px 32px 4px rgba(0, 0, 0, 0.05);
	transition: all 0.2s linear;
}

.counters-pattern .counters .counter:hover {
	background-color: var(--wp--preset--color--primary) !important;
	transition: all 0.2s linear;
}

.counters-pattern .counters .counter:hover p {
	color: var(--wp--preset--color--white) !important;
	transition: all 0.2s linear;
}

.counters-pattern .counters .counter .label {
	margin-top: -16px;
}

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

	.counters-pattern .counters {
		grid-template-columns: repeat(2, 135px);
		grid-row-gap: 20px;
	}

}

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

	.counters-pattern .img-container {
		width: 70%;
	}

	.counters-pattern .content-container {
		width: 100%;
		padding-left: 0;
		margin-top: 40px;
	}

	.counters-pattern .counters {
		grid-template-columns: repeat(3, 135px);
	}

}

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

	.counters-pattern {
		margin-bottom: 0;
	}

	.counters-pattern .img-container {
		width: 100%;
	}

	.counters-pattern .content-container .title {
		font-size: var(--wp--preset--font-size--title-mobile) !important;
	}

}

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

	.counters-pattern .counters {
		grid-template-columns: repeat(2, 135px);
	}

}

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

	.counters-pattern .counters {
		grid-template-columns: repeat(1, 135px);
		justify-content: center;
	}

	.counters-pattern .content-container .buttons {
		justify-content: center;
	}

}

/*====================================================
	SOCIAL MEDIA
====================================================*/

.social-media-pattern {
	margin-bottom: 428px;
}

.social-media-pattern .container-posts {
	/* 1210px = container width + col-xl-11 */
	padding-left: calc((100% - 1230px) / 2);
	position: relative;
}

.social-media-pattern .container-posts::before {
	content: url('../img/cut-circle-side.png');
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.social-media-pattern .tns-inner {
	padding-left: 8px;
}

.esf-insta-row {
	display: block !important;
}

.esf-insta-grid-skin .esf-insta-grid-wrapper {
	border: none !important;
	padding: 0 !important;
}

.esf_insta_feed_wraper {
    max-width: 100% !important;
}

html body .esf_insta_feed_wraper .esf-insta-grid-skin .esf-insta-row>div {
	position: relative;
	padding-left: 0 !important;
	height: 258px !important;
}

html body .esf_insta_feed_wraper .esf-insta-grid-skin .esf-insta-row>div .esf-insta-grid-wrapper {
	margin-bottom: 0 !important;
}

.esf-insta-grid-skin .esf-insta-grid-wrapper .esf_insta_feed_fancy_popup {
	border-radius: 20px !important;
	padding: 0 !important;
	height: 258px !important;
}

.esf-insta-col-lg-4::after {
	content: url(../img/insta.png);
    position: absolute;
	right: 32px;
    top: 13px;
}

.esf_insta_load_more_btns_wrap {
	display: none !important;
}

.esf-insta-overlay {
	display: none;
}

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

	.social-media-pattern .container-posts {
		/* 1140px = container width + col-xl-11 */
		padding-left: calc((100% - 1140px) / 2);
	}
}

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

	.social-media-pattern .container-posts {
		/* 960px = container width + col-xl-11 */
		padding-left: calc((100% - 960px) / 2);
	}
}

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

	.social-media-pattern .container-posts {
		/* 1140px = container width + col-xl-11 */
		padding-left: calc((100% - 720px) / 2);
	}
}

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

	.social-media-pattern {
		margin-bottom: 75px;
	}

	.social-media-pattern .title {
		font-size: var(--wp--preset--font-size--title-mobile) !important;
		text-align: center;
	}

	.social-media-pattern .container-posts {
		padding-left: 25px;
		padding-right: 25px;
	}

	.social-media-pattern .container-posts::before {
		display: none;
	}

}

/*====================================================
	HERO HOME
====================================================*/

/**********************
	Reveal animation
***********************/

.hero-home-pattern .title .anim-js,
.hero-home-pattern .text .anim-js {
	display: block;
	overflow: hidden;
}

.hero-home-pattern .title .anim-js > span,
.hero-home-pattern .text .anim-js > span {
	transform: translateY(100%);
	display: block;
}

.hero-home-pattern.reveal .title .anim-js:nth-of-type(1) > span {
	animation-name: fadeFromBottom;
	animation-delay: 0s;
	animation-duration:  0.6s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .title .anim-js:nth-of-type(2) > span {
	animation-name: fadeFromBottom;
	animation-delay: 0.1s;
	animation-duration:  0.6s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .text .anim-js:nth-of-type(1) > span {
	animation-name: fadeFromBottom;
	animation-delay: 0.2s;
	animation-duration:  0.6s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .text .anim-js:nth-of-type(2) > span {
	animation-name: fadeFromBottom;
	animation-delay: 0.3s;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .buttons {
	animation-name: fadeOpacity;
	animation-delay: 0.5s;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .buttons .btn {
	animation-name: fadeMinWidth;
	animation-delay: 0.5s;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .bg-fluid {
	animation-name: fadeWidth;
	animation-delay: 0.5s;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .hero-home-container .img-container {
	animation-name: fadeOpacity;
	animation-delay: 0.5s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .news-container .cover-news {
	animation-name: fadeFromBottomNews;
	animation-delay: 0.7s;
	animation-duration:  1s;
	animation-fill-mode: forwards;
}

.hero-home-pattern.reveal .container-illu {
	animation-name: fadeOpacity;
	animation-delay: 0.8s;
	animation-duration:  1.2s;
	animation-fill-mode: forwards;
}

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

	.hero-home-pattern.reveal .buttons .btn {
		animation-name: fadeMinWidthLg;
		animation-delay: 0.8s;
		animation-duration:  1s;
		animation-fill-mode: forwards;
	}

	.hero-home-pattern.reveal .bg-fluid {
		animation-name: fadeWidthLg;
		animation-delay: 0.8s;
		animation-duration:  1s;
		animation-fill-mode: forwards;
	}

}

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

	.hero-home-pattern.reveal .bg-fluid {
		animation-name: fadeWidthSm;
		animation-delay: 0.8s;
		animation-duration:  1s;
		animation-fill-mode: forwards;
	}

	.hero-home-pattern.reveal .news-container .cover-news {
		animation-name: fadeOpacity;
		animation-delay: 1s;
		animation-duration:  1s;
		animation-fill-mode: forwards;
	}

}

@keyframes fadeFromBottom {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes fadeFromBottomNews {
	0% {
		transform: translateY(130%);
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	}
	100% {
		transform: translateY(0);
		box-shadow: 0px 1.90781px 30.525px 3.81562px rgba(0, 0, 0, 0.1);
	}
}

@keyframes fadeOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeMinWidth {
	0% {
		min-width: 165px;
		opacity: 0;
	}
	100% {
		min-width: 150px;
		opacity: 1;
	}
}

@keyframes fadeMinWidthLg {
	0% {
		min-width: 125px;
		opacity: 0;
	}
	100% {
		min-width: 115px;
		opacity: 1;
	}
}

@keyframes fadeWidth {
	0% {
		width: 165px;
		opacity: 0;
	}
	100% {
		width: 150px;
		opacity: 1;
	}
}

@keyframes fadeWidthLg {
	0% {
		width: 125px;
		opacity: 0;
	}
	100% {
		width: 115px;
		opacity: 1;
	}
}

@keyframes fadeWidthSm {
	0% {
		width: 100%;
		opacity: 0;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}

/**********************
	Style
***********************/

.hero-home-pattern {
	padding-top: 90px !important;
}

/* Hero home container */

.hero-home-pattern .hero-home-container .content-container {
	width: 45%;
	padding-top: 30px;
}

.hero-home-pattern .hero-home-container .content-container .title {
	padding-right: 4rem;
}

.hero-home-pattern .hero-home-container .content-container .text {
	padding-right: 8rem;
}

.hero-home-pattern .container-buttons {
	margin-top: 44px;
}

.hero-home-pattern .hero-home-container .img-container {
	width: 55%;
	gap: 13px;
	opacity: 0;
}

.hero-home-pattern .hero-home-container .cover-container {
	height: 315px;
	min-height: unset !important;
	transition: all 0.5s ease-in-out;
}

.hero-home-pattern .hero-home-container .cover-container.hover {
	width: 50%;
	transition: all 0.5s ease-in-out;
}

.hero-home-pattern .hero-home-container .img-container:hover .cover-container:not(.hover),
.hero-home-pattern .hero-home-container .content-container.hover + .img-container .cover-container:not(.hover) {
	width: 25%;
	transition: all 0.5s ease-in-out;
}

.hero-home-pattern .hero-home-container .cover-container img {
	border-radius: 16px;
}

.hero-home-pattern .hero-home-container .cover-container span {
	background: linear-gradient(160.77deg, rgba(37, 48, 128, 0.9) 58.5%, rgba(207, 0, 109, 0.9) 86.46%);
	background-blend-mode: darken;
	opacity: 0.65 !important;
	background-color: unset !important;
	border-radius: 16px;
}

.hero-home-pattern .hero-home-container .cover-container {
	width: 25%;
}

.hero-home-pattern .cover-start.hover {
	width: 50%;
}

.hero-home-pattern .buttons {
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 20px;
	width: fit-content;
	margin-left: unset !important;
	position: relative;
	gap: 0;
	opacity: 0;
}

.hero-home-pattern .buttons .btn {
	position: relative;
	border: 0 !important;
	padding: 0 !important;
	min-width: 150px;
	border-radius: 20px;
	z-index: 5;
	opacity: 0;
}

.hero-home-pattern .buttons .btn:hover {
   border: 0 !important;
}

.hero-home-pattern .buttons .btn a {
	color: var(--wp--preset--color--primary) !important;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn.hover a {
	color: var(--wp--preset--color--white)  !important;
	background-color: transparent !important;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn a {
	background-color: transparent !important;
	justify-content: center;
}

.hero-home-pattern .buttons .btn.btn-start a {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn.btn-middle {
	position: relative;
}

.hero-home-pattern .buttons .btn.btn-middle::before {
	content: '';
	position: absolute;
	height: 100%;
	background-color: var(--wp--preset--color--primary);
	width: 1px;
	top: 0;
	bottom: 0;
	left: 0;
}

.hero-home-pattern .buttons .btn.btn-middle::after {
	content: '';
	position: absolute;
	height: 100%;
	background-color: var(--wp--preset--color--primary);
	width: 1px;
	top: 0;
	bottom: 0;
	right: 0;
}

.hero-home-pattern .buttons .btn.btn-middle a {
	border-radius: 0px;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn.btn-end a {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 19px;
	border-bottom-right-radius: 19px;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn.btn-start.hover ~ .bg-fluid {
	transform: translateX(0%);
	border-top-left-radius: 19px;
	border-bottom-left-radius: 19px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn.btn-middle.hover ~ .bg-fluid {
	transform: translateX(100%);
	border-radius: 0px;
	transition: 0.25s ease-out;
}

.hero-home-pattern .buttons .btn.btn-end.hover ~ .bg-fluid {
	transform: translateX(200%);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 19px;
	border-bottom-right-radius: 19px;
	transition: 0.25s ease-out;
}

.hero-home-pattern .bg-fluid {
	position: absolute;
	display: flex;
	height: 100%;
	width: 150px;
	background-color: var(--wp--preset--color--primary);
	z-index: -1;
	transition: 0.25s ease-out;
	opacity: 0;
}

/* Repeat text container */

.hero-home-pattern .repeat-text-container {
	max-width: 100%;
	margin: 1em auto;
	overflow: hidden;
	position: relative;
	min-height: 4em;
}

/* News container */

.hero-home-pattern .news-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 21px;
	padding: 30px;
    overflow: hidden;
    max-width: 1290px !important;
}

.hero-home-pattern .news-container .cover-news {
	height: 115px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	transform: translateY(130%);
}

.hero-home-pattern .news-container .cover-news,
.hero-home-pattern .news-container .cover-news > img,
.hero-home-pattern .news-container .cover-news > span {
	border-radius: 20px;
}

.hero-home-pattern .news-container .cover-container {
	gap: 20px;
}

.hero-home-pattern .news-container .cover-container .img-container {
	min-width: fit-content;
}

.hero-home-pattern .news-container .cover-container .content-container > p {
	width: fit-content;
}

.hero-home-pattern .news-container .tag {
	border-radius: 25px;
}

.hero-home-pattern .news-container .cover-news-secondary {
	padding: 0;
}

.hero-home-pattern .news-container .cover-news-secondary .date-container {
	padding: 34px 30px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.hero-home-pattern .news-container .cover-news-secondary .date-container .month {
	margin-top: -5px;
}

/* Illustration container */

.hero-home-pattern .container-illu {
	position: relative;
    height: 220px;
    width: 100%;
    background-image: url(../img/basket-line.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom center;
    min-width: 100%;
	opacity: 0;
}


@media screen and (min-width: 2000px) {
	.hero-home-pattern .container-illu {
		min-height: 400px;
		height: auto;
	}
}

@media screen and (min-width: 1600px) and (max-width: 2000px) {
	.hero-home-pattern .container-illu {
		min-height: 300px;
		height: auto;
	}
}

@media screen and (min-width: 1450px) and (max-width: 1600px) {
	.hero-home-pattern .container-illu {
		min-height: 250px;
		height: auto;
	}
}

@media screen and (max-width: 1300px) {
	.hero-home-container {
		padding: 54px !important;
	}

	.hero-home-pattern .news-container {
		padding: 54px 54px 0 54px !important;
	}
}

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

	.hero-home-container {
		padding: 54px 0 !important;
	}

	.hero-home-pattern .hero-home-container .img-container {
		align-items: center;
	}

	.hero-home-pattern .news-container {
		padding: 54px 0 0 0 !important;
	}

	.hero-home-pattern .news-container .cover-news {
		min-height: 145px !important;
	}

	.hero-home-pattern .news-container .cover-news-secondary .date-container {
		padding: 48px 30px;
	}

	.hero-home-pattern .buttons .btn {
		min-width: 125px;
	}

	.hero-home-pattern .bg-fluid {
		width: 125px;
	}

	.hero-home-pattern .hero-home-container .img-container {
		padding-left: 45px;
	}
}

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

	.hero-home-pattern .hero-home-container .img-container {
		width: 50%;
	}

	.hero-home-pattern .buttons .btn {
		min-width: 115px;
	}

	.hero-home-pattern .bg-fluid {
		width: 115px;
	}

	.hero-home-pattern .hero-home-container .content-container .title {
		padding-right: 1rem;
	}

	.hero-home-pattern .hero-home-container .content-container .text {
		padding-right: 3rem;
	}
}

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

	.hero-home-pattern {
		padding-top: 45px !important;
	}

	.hero-home-pattern .hero-home-container .content-container,
	.hero-home-pattern .hero-home-container .img-container {
		width: 100%;
	}

	.hero-home-pattern .hero-home-container .img-container {
		padding-left: 0;
	}

	.hero-home-pattern .hero-home-container .content-container .title {
		padding-right: 0;
		font-size: var(--wp--preset--font-size--title-mobile) !important;
		text-align: center;
	}

	.hero-home-pattern .hero-home-container .content-container .text {
		padding-right: 0;
		text-align: center;
	}

	.hero-home-pattern .container-buttons {
		margin: 25px 0;
	}

	.hero-home-pattern .buttons {
		margin-left: auto !important;
	}

	.hero-home-pattern .news-container {
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 1rem;
	}

	.hero-home-pattern .news-container .cover-news {
		min-height: 125px !important;
	}

	.hero-home-pattern .news-container .cover-news-secondary .date-container {
		padding: 39px 30px;
	}

}

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

	.hero-home-pattern {
		margin-bottom: 75px;
	}

	.hero-home-pattern .hero-home-container {
		padding: 0 0 30px 0 !important;
	}

	.hero-home-pattern .news-container {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 1rem;
		grid-column-gap: 21px;
		padding: 30px 0 0 0 !important;
		overflow: visible;
	}

	.hero-home-pattern .news-container .cover-news {
		min-height: 125px !important;
	}

	.hero-home-pattern .news-container .cover-news-secondary .date-container {
		padding: 39px 30px;
	}

	.hero-home-pattern .container-illu {
		height: 120px;
	}
}

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

	.hero-home-pattern .hero-home-container .cover-container {
		height: 200px;
	}

	.hero-home-pattern .news-container .cover-news {
		min-height: 150px !important;
	}

	.hero-home-pattern .news-container .cover-news-primary {
		padding: 0 10px !important;
	}

	.hero-home-pattern .news-container .cover-news-secondary {
		padding: 0 10px 0 0 !important;
	}

	.hero-home-pattern .news-container .cover-news-secondary .date-container {
		padding: 52px 30px;
	}

	.hero-home-pattern .container-illu {
		height: 90px;
	}
}

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

	.hero-home-pattern {
		padding-top: 20px !important;
	}

	.hero-home-pattern .buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-home-pattern .buttons .btn {
		height: 38px;
		width: 100%;
		min-width: unset;
		max-width: 100%;
	}

	.hero-home-pattern .buttons .btn a {
		padding: 10px 18px !important;
	}

	.hero-home-pattern .buttons .btn.btn-middle::before {
		height: 1px;
		width: 100%;
		top: 0;
		bottom: unset;
		left: 0;
		right: 0;;
	}

	.hero-home-pattern .buttons .btn.btn-middle::after {
		height: 1px;
		width: 100%;
		top: unset;
		bottom: 0;
		left: 0;
		right: 0;;
	}

	.hero-home-pattern .buttons .bg-fluid {
		display: flex;
		height: 38px;
		width: 100%;
	}

	.hero-home-pattern .buttons .btn.btn-start.hover ~ .bg-fluid {
		transform: translateY(0%) !important;
		border-top-left-radius: 19px !important;
		border-bottom-left-radius: 0 !important;
		border-top-right-radius: 19px !important;
		border-bottom-right-radius: 0 !important;
	}

	.hero-home-pattern .buttons .btn.btn-middle.hover ~ .bg-fluid {
		transform: translateY(100%);
	}

	.hero-home-pattern .buttons .btn.btn-end.hover ~ .bg-fluid {
		transform: translateY(200%) !important;
		border-top-left-radius: 0 !important;
		border-bottom-left-radius: 19px !important;
		border-top-right-radius: 0 !important;
		border-bottom-right-radius: 19px !important;
	}

	.hero-home-pattern .repeat-text-container {
		margin: 0;
	}

	.hero-home-pattern .news-container .cover-news {
		transform: translateY(0);
		opacity: 0;
	}

	.hero-home-pattern .container-illu {
		height: 70px;
	}
}

/*====================================================
	MEDIA TEXT
====================================================*/

.media-text-pattern ul {
	list-style: initial;
	padding-left: 2rem;
}

.media-text-pattern figure > img {
	max-height: 345px;
	object-fit: cover;
}

.media-text-pattern .wp-block-media-text > figure {
	position: relative;
}

.media-text-pattern .cover-gradient {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	display: block;
    z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(160.77deg, rgba(37, 48, 128, 0.9) 58.5%, rgba(207, 0, 109, 0.9) 86.46%);
	background-blend-mode: darken;
	opacity: 0.65;
}

.nofilter .cover-gradient {
	display: none;
}

.media-text-pattern .container-media-text .wp-block-media-text__content  {
	padding-left: 60px;
	padding-right: 0;
}

.media-text-pattern .container-media-text.has-media-on-the-right .wp-block-media-text__content {
	padding-right: 60px;
	padding-left: 0;
}

.media-text-pattern .text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

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

	.media-text-pattern .container-media-text {
		display: flex !important;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		gap: 4rem;
	}

	.media-text-pattern .container-media-text figure {
		max-width: 300px;
		margin: auto;
	}

	.media-text-pattern .container-media-text.has-media-on-the-right {
		flex-direction: column;
	}

	.media-text-pattern .container-media-text > figure {
		width: 100%;
	}

	.media-text-pattern .container-media-text > figure,
	.media-text-pattern .container-media-text > div,
	.media-text-pattern .container-media-text.has-media-on-the-right > div {
		padding: 0 !important;
	}

	.media-text-pattern .container-media-text .container-content {
		padding-left: 0;
	}

	.media-text-pattern .container-media-text.has-media-on-the-right .text p {
		padding-right: 0;
	}
}

/*====================================================
	TEXT
====================================================*/

.text-pattern .text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.text-pattern ul {
	list-style: initial;
	padding-left: 2rem;
}

/*====================================================
	BANNER WITH GRADIENT BACKGROUND
====================================================*/

.banner-gradient-bg-pattern .banner-container {
    background: linear-gradient(92.28deg, rgba(37, 48, 128, 0.9) 0.12%, rgba(207, 0, 109, 0.9) 99.88%);
	background-blend-mode: darken;
}

.banner-gradient-bg-pattern .btn-white-secondary a:hover {
	background-color: transparent !important;
	border: 1px solid var(--wp--preset--color--white);
	color: var(--wp--preset--color--white) !important;
	transition: all 0.3s ease-in-out;
}

/*====================================================
	VIDEO UPLOADED
====================================================*/

.video-uploaded .cs-block-video { margin: 0 auto; }

.video-uploaded video {
	width: 100%;
	height: 690px;
}

.video-uploaded .cs-video-cover { min-height: inherit !important; cursor: pointer; }

.video-uploaded .cs-video-cover::after {
	content: "";
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 98px;
	height: 98px;
	min-height: 0;
	background-image: url("../img/icon-play.svg");
	background-repeat: no-repeat;
	background-color: var(--wp--preset--color--white);
	background-size: auto;
	background-position: center;
	border-radius: 50%;
	transition: all .3s ease-out;
}

.video-uploaded .cs-video-cover:hover::after { background-color: rgba(255, 255, 255, 0.1); }

.video-uploaded .cs-video-cover img { transition: all .3s ease-out; }

.video-uploaded .cs-video-cover:hover img { transform: scale(1.05); }

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

	.video-uploaded .cs-video-cover::after {
		width: 5rem;
		height: 5rem;
	}

	.video-uploaded video {
		height: 250px;
	}
}

/*====================================================
	VIDEO YOUTUBE
====================================================*/

/* 16:9 Format */

.video-youtube .cs-block-embed.cs-is-type-video {
	max-width: 1000px;
	margin: 0 auto;
}
.video-youtube .cs-block-embed.cs-is-type-video > div {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.video-youtube iframe {
	width: 100%;
	min-height: 690px;
}

/* Cover */

.video-youtube .cs-video-cover { min-height: inherit !important; cursor: pointer; }

.video-youtube .cs-video-cover::after {
	content: "";
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 98px;
	height: 98px;
	min-height: 0;
	background-image: url("../img/icon-play.svg");
	background-repeat: no-repeat;
	background-color: var(--wp--preset--color--white);
	background-size: auto;
	background-position: center;
	border-radius: 50%;
	transition: all .3s ease-out;
}

.video-youtube .cs-video-cover:hover::after { background-color: rgba(255, 255, 255, 0.1); }

.video-youtube .cs-video-cover img { transition: all .3s ease-out; }
.video-youtube .cs-video-cover:hover img { transform: scale(1.05); }

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

	.video-youtube .cs-video-cover::after {
		width: 5rem;
		height: 5rem;
	}

	.video-youtube iframe {
		height: 250px;
		min-height: unset;
	}
}

/*====================================================
	IMAGE
====================================================*/

.image-pattern img {
	max-height: 900px;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.image-pattern img {
		max-height: 500px;
	}
}

/*====================================================
	FAQ
====================================================*/

.faq-pattern {
	position: relative;
}

.faq-pattern > div {
	position: relative;
	z-index: 5;
}

#faq-accordion {
	gap: 15px !important;
}

.imgs-unstructured .img-behind {
	z-index: -1;
}

.imgs-unstructured .img-middle {
	z-index: 2;
	margin: -37px 54px 0 0 !important;
}

.imgs-unstructured .img-bottom {
	margin: -25px  0 0 0 !important;
}

.faq-item-title {
	cursor: pointer;
}

.icon-faq {
	width: fit-content;
	height: fit-content;
}

.icon-faq img {
	transform: rotate(0deg);
	transition: all 0.3s ease-in-out;
}

.faq-item-title.collapsed .icon-faq img {
	transform: rotate(180deg);
	transition: all 0.3s ease-in-out;
}

.faq-item-content  > div > p {
	padding: 0 27px 18px 27px;
}

.faq-item-content  > div > ul {
	padding: 0 27px 18px 40px;
}

.faq-item-content > div > ul li {
	padding-left: 0 !important;
}

.faq-item-content a {
	color: var(--wp--preset--color--secondary);
	text-decoration: underline;
}

.faq-item-content .cta {
	padding: 30px 27px;
}

.faq-item-content .cta a {
	color: var(--wp--preset--color--white);
	text-decoration: unset;
}

/*====================================================
	ICON TITLE AND TEXT
====================================================*/

.icon-title-text-pattern .grid-cards {
	display: grid;
	grid-template-columns: repeat(4, 290px);
	grid-column-gap: 22px;
	grid-row-gap: 30px;
}

.icon-title-text-pattern .grid-cards .card {
	transition: all 0.3s linear;
}

.icon-title-text-pattern .grid-cards .card:hover {
	background-color: var(--wp--preset--color--primary);
	transition: all 0.3s linear;
	cursor: pointer;
}

.icon-title-text-pattern .grid-cards .card:hover .title,
.icon-title-text-pattern .grid-cards .card:hover .text {
	color: var(--wp--preset--color--white) !important;
	transition: all 0.3s linear;
}

.icon-title-text-pattern .grid-cards .card .wp-block-cover {
	padding: 0;
	min-height: 0 !important;
}

.icon-title-text-pattern .grid-cards .card .wp-block-cover .wp-block-cover__image-background {
	opacity: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	transition: all 0.3s linear;
}

.icon-title-text-pattern .grid-cards .card .wp-block-cover__inner-container {
	opacity: 0;
	transition: all 0.3s linear;
}

.icon-title-text-pattern .grid-cards .card:hover .wp-block-cover .wp-block-cover__image-background {
	opacity: 0;
	transition: all 0.3s linear;
}

.icon-title-text-pattern .grid-cards .card:hover .wp-block-cover__inner-container {
	opacity: 1;
	transition: all 0.3s linear;
}

.icon-title-text-pattern .grid-cards .card img {
	border-radius: 0;
	width: fit-content;
	height: auto;
}

@media screen and (max-width: 1300px) {
	.icon-title-text-pattern .grid-cards {
		grid-template-columns: repeat(2, 290px);
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	.icon-title-text-pattern .grid-cards {
		grid-template-columns: repeat(1, 290px);
	}

	.icon-title-text-pattern .icon-title-text-container > .title {
		font-size: var(--wp--preset--font-size--title-mobile) !important;
		text-align: center;
	}
}

@media screen and (max-width: 400px) {
	.icon-title-text-pattern .grid-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

/*====================================================
	TEAM
====================================================*/

.team-pattern .members-grid {
	display: grid;
	grid-template-columns: repeat(4, 292px);
	grid-column-gap: 20px;
	grid-row-gap: 30px;
}

.team-pattern .members-grid .member {
	min-height: 366px;
}

.team-pattern .members-grid .member .container-img img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	max-height: 236px;
    object-fit: cover;
	width: 100%;
}

@media screen and (max-width: 1300px) {
	.team-pattern .members-grid {
		grid-template-columns: repeat(2, 292px);
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	.team-pattern .members-grid {
		grid-template-columns: repeat(1, 292px);
	}
}

@media screen and (max-width: 400px) {
	.team-pattern .members-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

/*====================================================
				SCENARIO FORM
====================================================*/

.form-scenario .gform_wrapper .gform-body > .gform_page:not(#gform_page_1_1){
	max-width: 600px;
	margin: auto;
}

.form-scenario .gform_wrapper .gform-body > #gform_page_1_1 {
	max-width: 970px;
	margin: auto;
}

.form-scenario .gform_wrapper .gform_title {
	text-align: center;
}

.form-scenario .gform_wrapper .gf_page_steps {
	width: fit-content;
	justify-content: center !important;
	margin: auto;
}

.form-scenario .gform_wrapper .gf_step_active .gf_step_number {
	background: transparent !important;
	border: none !important;
}

.form-scenario .gform_wrapper .gf_step_completed .gf_step_number::before {
	background: transparent !important;
    border: none !important;
}

.form-scenario .gform_wrapper .gf_page_steps .gf_step:not(.gf_step_last):not(.gf_step_active),
.form-scenario .gform_wrapper .gf_page_steps .gf_step:not(.gf_step_last):not(.gf_step_active) .gf_step_number {
	color: transparent !important;
	width: 0 !important;
	background: transparent !important;
}

.form-scenario .gform_wrapper .gf_page_steps::after {
	display: none;
}

.form-scenario .gform_wrapper .gf_page_steps .gf_step {
	counter-increment: steps-scenario-form;
}

.form-scenario .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
	position: relative;
	display: flex;
	flex-direction: row;
	color: var(--wp--preset--color--black) !important;
	border: none;
	font-size: 20px;
	font-family: var(--wp--preset--font-family--inter);
	margin: 0;
    padding: 0;
    width: fit-content !important;
	font-weight: var(--latelier--preset--font-weight--regular);
}

.form-scenario .gform_wrapper .gf_page_steps .gf_step_active .gf_step_number::after {
	content: '/ ';
	padding: 0 5px;
	color: var(--wp--preset--color--black) !important;
	font-size: 20px;
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--regular);
}

.form-scenario .gform_wrapper .gf_page_steps .gf_step_active.gf_step_last .gf_step_number::after {
	content: '/ ' counter(steps-scenario-form);
	padding: 0 5px;
	color: var(--wp--preset--color--black) !important;
	font-size: 20px;
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--regular);
}

.form-scenario .gform_wrapper #gform_page_1_1 .gfield_html {
	text-align: center;
}

.form-scenario .gform_wrapper #gform_page_1_1 .gform_page_footer {
	display: flex;
	justify-content: center;
	padding-top: 30px;
}

.form-scenario .gform_wrapper .gfield_label {
	font-size: 20px !important;
}

.form-scenario .gform_wrapper .ginput_container_radio {
	padding-bottom: 15px;
	border-bottom: 1px solid var(--wp--preset--color--border-gray);
}

.form-scenario .gform_wrapper .gform_fields {
	grid-row-gap: 50px !important
}

.form-scenario .gform_wrapper .gform_page_footer {
	margin: 19px 0 0 0 !important;
	display: flex;
    justify-content: space-between !important;
	position: relative;
}

.form-scenario .gform_wrapper #gform_page_1_1 .gform_page_footer {
	width: fit-content;
	margin: 19px auto 0 auto !important;
}

.form-scenario .gform_wrapper .gform_ajax_spinner {
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 20px;
	height: 20px;
}

@media screen and (max-width: 450px) {
	.form-scenario .gform_wrapper .gf_step .gf_step_number {
		font-size: 20px !important;
	}
}

/*====================================================
  	MAP
====================================================*/

.map {
    height: 736px;
	border-radius: 20px;
}

.marker-popup .leaflet-popup-tip-container {
	display: none;
}

.leaflet-popup-content {
	padding: 30px 26px !important;
	margin: 0 !important;
	width: 360px !important;
}

.leaflet-popup-content > p:first-of-type {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--semi-bold);
	color: var(--wp--preset--color--primary);
	margin-top: 0;
}

.leaflet-popup-content ul {
    list-style: initial;
	margin-left: 15px;
}

.leaflet-popup-content > p,
.leaflet-popup-content li,
.leaflet-popup-content a {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--regular);
	color: var(--wp--preset--color--black);
}

@media screen and (max-width: 768px) {
	.map {
		height: 500px;
	}

	.leaflet-popup-content {
		padding: 30px 26px !important;
		margin: 0 !important;
		width: 280px !important;
	}
}

@media screen and (max-width: 450px) {
	.map {
		height: 400px;
	}
}

/*====================================================
  	SLIDER IMG
====================================================*/

.slider-img-pattern .container-slider {
	cursor: grab;
}

.slider-img-pattern .container-img {
	height: 340px !important;
}

.slider-img-pattern .img-filter {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-img-pattern .img-filter .filter {
	/*width: 100%;*/
	height: 100%;
	position: absolute;
	background: linear-gradient(160.77deg, rgba(37, 48, 128, 0.9) 58.5%, rgba(207, 0, 109, 0.9) 86.46%);
	background-blend-mode: darken;
	opacity: 0.65;
}

.slider-img-pattern .tns-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
}

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

	.slider-img-pattern .tns-nav {
		display: none;
	}

}

.slider-img-pattern .tns-nav button {
	display: flex;
	justify-content: center;
	position: relative;
	height: 14px;
	width: 14px;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 50%;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.slider-img-pattern .tns-nav button.tns-nav-active {
	transition: all 0.3s ease-in-out;
}

.slider-img-pattern .tns-nav button.tns-nav-active::after {
	content:'';
	position: absolute;
    top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--primary);
	transition: all 0.3s ease-in-out;
}

.slider-img-pattern .tns-ovh {
	padding: 15px 0;
}

.slider-img-pattern .tns-item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all 1s ease-in-out;
}

@media screen and (min-width: 2050px) {

	.slider-img-pattern .tns-item.tns-slide-active .img-filter,
	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active .img-filter {
		transform: none;
		transition: all 1s ease-in-out;
		height: 100%;
		margin-top: 0;
	}

}

@media screen and (min-width: 1248px) and (max-width: 2050px) {

	.slider-img-pattern .tns-item.tns-slide-active .img-filter,
	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(25deg);
		transition: all 1s ease-in-out;
		height: 100%;
		margin-top: 0;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active + .tns-slide-active .img-filter {
		transform: none;
		transition: all 1s ease-in-out;
		height: 95%;
		margin-top: 1.8%;
	}

	.slider-img-pattern .tns-item.tns-slide-active ~ .tns-slide-active ~ .tns-slide-active ~ .tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(-25deg);
		transition: all 1s ease-in-out;
		height: 100%;
		margin-top: 0;
	}
}

@media screen and (min-width: 1225px) and (max-width: 1248px) {
	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(25deg);
		transition: all 1s ease-in-out;
		height: 340px;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active + .tns-slide-active .img-filter {
		transform: none;
		transition: all 1s ease-in-out;
		height: 95%;
		margin-top: 1.8%;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active + .tns-slide-active  + .tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(-25deg);
		transition: all 1s ease-in-out;
		height: 100%;
		margin-top: 0;
	}
}

@media screen and (max-width: 1225px) {
	.slider-img-pattern .tns-item.tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(25deg);
		transition: all 1s ease-in-out;
		height: 340px;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active .img-filter {
		transform: none;
		transition: all 1s ease-in-out;
		height: 95%;
		margin-top: 1.8%;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active + .tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(-25deg);
		transition: all 1s ease-in-out;
		height: 100%;
		margin-top: 0;
	}
}

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

	.slider-img-pattern .tns-item.tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(25deg);
		transition: all 1s ease-in-out;
		height: 340px;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active .img-filter {
		transform: none;
		transition: all 1s ease-in-out;
		height: 97%;
		margin-top: 1.8%;
	}

	.slider-img-pattern .tns-item.tns-slide-active + .tns-slide-active + .tns-slide-active .img-filter {
		transform: perspective(2000px) rotateY(-25deg);
		transition: all 1s ease-in-out;
		height: 100%;
		margin-top: 0;
	}
}

/*====================================================
	TESTIMONIES
====================================================*/

.testimonies-pattern .testimonies-grid {
	display: grid;
	grid-template-columns: repeat(3, 396px);
	grid-column-gap: 20px;
	grid-row-gap: 30px;
}

.testimonies-pattern .testimonies-grid .testimonie blockquote {
	min-height: 120px;
	background: #FFFFFF;
	box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

.testimonies-pattern .testimonies-grid .testimonie blockquote p {
	position: relative;
	padding-left: 48px;
}

.testimonies-pattern .testimonies-grid .testimonie blockquote p::before {
	content: url('../img/quote.png');
	position: absolute;
	left: 0;
	top: 0;
}

.testimonies-pattern .testimonies-grid .author {
	border: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.testimonies-pattern .testimonies-grid .container-img {
	height: 56px;
	width: 56px;
}

.testimonies-pattern .testimonies-grid .container-img figure {
	height: 56px;
	width: 56px;
}

.testimonies-pattern .testimonies-grid .container-img figure img {
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: none;
}

@media screen and (max-width: 1300px) {
	.testimonies-pattern .testimonies-grid {
		grid-template-columns: repeat(2, 396px);
		justify-content: center;
	}
}

@media screen and (max-width: 900px) {
	.testimonies-pattern .testimonies-grid {
		grid-template-columns: repeat(1, 396px);
		justify-content: center;
	}
}

@media screen and (max-width: 400px) {
	.testimonies-pattern .testimonies-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}


/*====================================================
  PATTERN: BIG HERO HEADER
====================================================*/
.big-hero-header-pattern .cs-img-wrapper { max-width: 37rem; height: 37rem; }
.big-hero-header-pattern .cs-img-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: darken;
	background: rgb(207,0,109);
	background: linear-gradient(0deg, rgba(207,0,109,1) 0%, rgba(37,48,128,1) 65%);
	opacity: 50%;
}
.big-hero-header-pattern .cs-img-wrapper img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: none !important;
	transform: scale(1.5);
	transition: all 1.2s ease;
}
.big-hero-header-pattern .cs-img-wrapper.reveal img { transform: scale(1); }
.big-hero-header-pattern .js-scrolling-text { bottom: 3.5rem; }

@media screen and (max-width: 1200px) {
	.big-hero-header-pattern .js-scrolling-text { bottom: 1.5rem; }
}
@media screen and (max-width: 992px) {
	.big-hero-header-pattern .cs-columns { flex-wrap: wrap !important; }
	.big-hero-header-pattern .cs-title { font-size: 2.8rem !important; }
	.big-hero-header-pattern .cs-img-wrapper { max-width: 100%; height: 18rem !important; }
	.big-hero-header-pattern .js-scrolling-text { position: relative !important; bottom: inherit; }
}
@media screen and (max-width: 576px) {
	.big-hero-header-pattern .cs-title { font-size: 2.4rem !important; }
}
@media screen and (max-width: 450px) {
	.big-hero-header-pattern .cs-title { font-size: 2rem !important; }
}

/*====================================================
  PATTERN: SMALL HERO HEADER
====================================================*/
.small-hero-header .cs-img-wrapper::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: darken;
	background: rgb(207,0,109);
	background: linear-gradient(0deg, rgba(207,0,109,1) 0%, rgba(37,48,128,1) 65%);
	opacity: 60%;
}
.small-hero-header .cs-img-wrapper img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 0;
	transform: scale(1.5);
	transition: all 2s ease;
	border-radius: 0 !important;
}
.small-hero-header .cs-img-wrapper.reveal img { opacity: 1; transform: scale(1); }
.small-hero-header .cs-intersect-down img {
	border-radius: 0 !important;
	width: 100%;
}

/*====================================================
  ANIMATIONS
====================================================*/
.block-editor-block-preview__content-iframe .scroll-reveal { opacity: 1 !important; }
.scroll-reveal, .load-scroll-reveal { opacity: 0; position: relative; }
.reveal { opacity: 1 !important; }

/* Transitions */

.t-020 { transition: all 0.2s ease; }
.t-025 { transition: all 0.25s ease; }
.t-030 { transition: all 0.3s ease; }
.t-040 { transition: all 0.4s ease; }
.t-050 { transition: all 0.5s ease; }
.t-060 { transition: all 0.6s ease; }
.t-070 { transition: all 0.7s ease; }
.t-075 { transition: all 0.75s ease; }
.t-080 { transition: all 0.8s ease; }
.t-090 { transition: all 0.9s ease; }
.t-100 { transition: all 1s ease; }
.t-110 { transition: all 1.1s ease; }
.t-120 { transition: all 1.2s ease; }
.t-130 { transition: all 1.3s ease; }
.t-140 { transition: all 1.4s ease; }
.t-150 { transition: all 1.5s ease; }
.t-160 { transition: all 1.6s ease; }
.t-200 { transition: all 2s ease; }
.t-300 { transition: all 3s ease; }


/* Animations */

.r-top { transform: translate(0, 50px); }
.reveal.r-top{ transform: none !important; }

.r-bottom { transform: translate(0, -50px); }
.reveal.r-bottom { transform: none !important; }

.r-left { transform: translate(50px, 0); }
.reveal.r-left { transform: none !important; }

.r-right { transform: translate(-50px, 0); }
.reveal.r-right { transform: none !important; }

.r-clip-down { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
.reveal.r-clip-down { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.r-clip-up { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
.reveal.r-clip-up { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.r-clip-left { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
.reveal.r-clip-left { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.r-clip-right { clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%); }
.reveal.r-clip-right { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.r-zoom-up { transform: scale(0); }
.reveal.r-zoom-up { transform: scale(1); }

.r-zoom-out { transform: scale(1.5); }
.reveal.r-zoom-out { transform: scale(1); }

.r-unfold-top { transform: translateY(100%) rotateX(-80deg); }
.reveal.r-unfold-top { transform: none; }

/*====================================================
  ACF SINGLES
====================================================*/

/* Buttons */

.cs-btn-link {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--secondary) !important;
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all 0.2s linear;
}
.cs-btn-link:hover {
	color: var(--wp--preset--color--secondary) !important;
	background-color: var(--wp--preset--color--white) !important;
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all 0.2s linear;
}
.cs-btn-link-white {
	color: var(--wp--preset--color--secondary) !important;
	background-color: var(--wp--preset--color--white) !important;
	border: 1px solid var(--wp--preset--color--white);
	transition: all 0.2s linear;
}
.cs-btn-link-white:hover {
	color: var(--wp--preset--color--white) !important;
	background-color: transparent !important;
	border: 1px solid var(--wp--preset--color--white);
	transition: all 0.2s linear;
}

/* Straight line */

.acf-single .straight-line {
	height: 5px;
	background: rgb(207,0,109);
	background: linear-gradient(90deg, rgba(207,0,109,1) 15%, rgba(37,48,128,1) 100%);
}
.acf-single .straight-line-vertical {
	width: 5px;
	background-color: var(--wp--preset--color--secondary);
}

/* Text repeat */

.acf-single .repeat-text {
	line-height: 1 !important;
	color: transparent !important;
	-webkit-text-stroke: 1px var(--wp--preset--color--primary);
	white-space: nowrap;
}

/* Gradient */

.acf-single .cs-gradient {
	mix-blend-mode: darken;
	background: rgb(207,0,109);
	background: linear-gradient(0deg, rgba(207,0,109,1) 0%, rgba(37,48,128,1) 65%);
}

/* Module: Text with background */

.acf-single .module-text-background .cs-container {
	background: rgb(207,0,109);
	background: linear-gradient(-90deg, rgba(207,0,109,1) 0%, rgba(37,48,128,1) 100%);
}

/*====================================================
  SINGLE TRAINING
====================================================*/

/* Module: Header */

.single-formation .module-header .cs-background { height: 85%; }
.single-formation .module-header .cs-col-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .8rem;
	max-width: 60rem;
}
.single-formation .module-header .cs-col {
	padding: 2rem;
	box-shadow: 0px 2px 32px 4px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
	.single-formation .module-header .cs-content { max-width: 100% !important; }
	.single-formation .module-header .cs-col { padding: 1.5rem; }
}
@media screen and (max-width: 576px) {
	.single-formation .module-header .cs-col-container { display: flex; flex-wrap: wrap; justify-content: center; }
	.single-formation .module-header .cs-col { width: calc(50% - 1.6rem); }
}
@media screen and (max-width: 400px) {
	.single-formation .module-header .cs-col { width: 100%; max-width: 13rem; }
}

/* Module: Site */

.single-formation .module-sites .cs-tab { border-radius: 20px 20px 0 0;}
.single-formation .module-sites .cs-tabs-content { border-radius: 0 20px 20px 20px; }
.single-formation .module-sites .cs-tabs-content .cs-tab-content .row:last-child { border: none !important; }

.single-formation .module-sites .cs-tabs-content ul { list-style: disc !important; padding-left: 1.5rem; }
.single-formation .module-sites .cs-tabs-content .cs-wysiwyg a { text-decoration: underline !important; color: var(--wp--preset--color--primary) !important; }

.single-formation .module-sites .cs-tab-content:not(.cs-tab-content-1) { display: none; }

@media screen and (max-width: 992px) {
	.single-formation .module-sites .cs-tab-content { padding-left: 2rem !important; padding-right: 2rem !important; }
}
@media screen and (max-width: 500px) {
	.single-formation .module-sites .cs-tabs { flex-wrap: wrap; }
	.single-formation .module-sites .cs-tabs .cs-tab { width: 50%; }
	.single-formation .module-sites .cs-tabs .cs-tab:nth-child(n+3) { border-radius: 0; border-top: 0.5px solid var(--wp--preset--color--primary); }
	.single-formation .module-sites .cs-tabs .cs-tab:nth-child(2n+3) { border-right: 0.5px solid var(--wp--preset--color--primary); }
	.single-formation .module-sites .cs-tabs .cs-tab.last-odd { width: 100% !important; border-right: 0 !important; }
	.single-formation .module-sites .cs-tabs-content { border-radius: 0 0 20px 20px; }
}

/* Module: Médias */

.single-formation .module-medias .cs-format-1 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}
.single-formation .module-medias .cs-format-1 .cs-img-wrapper { height: 14rem; }
.single-formation .module-medias .cs-format-1 .cs-video-external iframe { width: 100%; height: 100%; }
.single-formation .module-medias .cs-icon {
	width: 2rem;
	height: 2rem;
	transform: translate(-50%, -50%);
}
.single-formation .module-medias .cs-format-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}
.single-formation .module-medias .cs-format-2 .cs-img-wrapper { height: 21rem; }

@media screen and (max-width: 992px) {
	.single-formation .module-medias .cs-format-1 { display: flex; flex-wrap: wrap; gap: inherit; }
	.single-formation .module-medias .cs-format-1 .cs-img-wrapper:first-child { order: 1; width: calc(50% - .5rem); margin-right: .5rem; }
	.single-formation .module-medias .cs-format-1 .cs-img-wrapper:last-child { order: 2; width: calc(50% - .5rem); margin-left: .5rem; }
	.single-formation .module-medias .cs-format-1 .cs-video-container { order: 3; width: 100%; height: 24rem; margin-top: 1rem; }

	.single-formation .module-medias .cs-format-2 { gap: 1rem; }
	.single-formation .module-medias .cs-format-2 .cs-img-wrapper { height: 15rem; }
}
@media screen and (max-width: 768px) {
	.single-formation .module-medias .cs-format-1 .cs-img-wrapper:first-child { width: 100%; height: 17rem; margin: 0 0 1rem; }
	.single-formation .module-medias .cs-format-1 .cs-img-wrapper:last-child { order: 3; width: 100%; height: 17rem; margin: 0; }
	.single-formation .module-medias .cs-format-1 .cs-video-container { order: 2; height: 21rem; margin: 0 0 1rem; }

	.single-formation .module-medias .cs-format-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
	.single-formation .module-medias .cs-format-2 .cs-img-wrapper { height: 21rem; }
}
@media screen and (max-width: 576px) {
	.single-formation .module-medias .cs-format-1 .cs-img-wrapper { height: 15rem !important; }
	.single-formation .module-medias .cs-format-1 .cs-video-container { height: 18rem; }

	.single-formation .module-medias .cs-format-2 .cs-img-wrapper { height: 15rem; }
}
@media screen and (max-width: 400px) {
	.single-formation .module-medias .cs-format-1 .cs-img-wrapper { height: 12rem !important; }
	.single-formation .module-medias .cs-format-1 .cs-video-container { height: 14rem; }

	.single-formation .module-medias .cs-format-2 .cs-img-wrapper { height: 12rem; }
}

/* Module: Questions & Answers */

.single-formation .module-questions-answers .cs-typo-circle {
	top: -5rem;
	right: -4vw;
	width: 16.4rem;
}
.single-formation .module-questions-answers .cs-qa-container { max-width: 965px; }
.single-formation .module-questions-answers .accordion .accordion-item { background: transparent !important; }
.single-formation .module-questions-answers .accordion .accordion-button {
	padding-top: 1.25rem !important;
	padding-bottom: 1.25rem !important;
	border-radius: 20px !important;
}
.single-formation .module-questions-answers .accordion .accordion-button:not(.collapsed) { color:  var(--wp--preset--color--white) !important; }
.single-formation .module-questions-answers .accordion .accordion-button::after { display: none; }
.single-formation .module-questions-answers .accordion .accordion-button .js-icon { width: .8rem; height: .8rem; transition: all .3s ease; }
.single-formation .module-questions-answers .accordion .accordion-button:not(.collapsed) .js-icon { transform: rotate(-180deg); }
.single-formation .module-questions-answers .accordion .accordion-body ul { list-style: disc !important; padding-left: 1rem !important; }
.single-formation .module-questions-answers .accordion .accordion-body a { color: var(--wp--preset--color--secondary) !important; }

/* Module: Icons & texts */

.single-formation .module-icons-texts .cs-container {
	display: grid;
	grid-template-columns: auto auto auto auto;
	gap: 1rem;
}
.single-formation .module-icons-texts .cs-icon {
	width: 3.5rem;
	height: 3.5rem;
	padding: .8rem;
}

@media screen and (max-width: 992px) {
	.single-formation .module-icons-texts .cs-container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
}
@media screen and (max-width: 576px) {
	.single-formation .module-icons-texts .cs-container { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.5rem; }
}

/* Module: Documents */

.single-formation .module-documents .cs-container { max-width: 965px; }

/* Fixed button */

.single-formation .cs-fixed-btn { bottom: 2rem; right: 2rem; }
.single-formation .cs-fixed-btn a { box-shadow: 0px 2px 32px 4px rgb(0 0 0 / 20%); }
.single-formation .cs-fixed-btn .cs-icon { width: 1.5rem; height: 1.5rem; }

@media screen and (max-width: 576px) {
	.single-formation .cs-fixed-btn { bottom: 1rem; right: 1rem; }
	.single-formation .cs-fixed-btn .cs-btn-link:hover { background-color: var(--wp--preset--color--secondary) !important; }
}

/*====================================================
  SINGLE EXPERTS
====================================================*/

/* Module: Header */

.single-experts .module-header .cs-title { font-size: 3.12rem; font-weight: 900; }
.single-experts .module-header .cs-img-wrapper { max-width: 37rem; height: 37rem; }
.single-experts .module-header .cs-scrolling-text { bottom: 3.5rem; }

@media screen and (max-width: 1200px) {
	.single-experts .module-header .cs-scrolling-text { bottom: 1.5rem; }
}
@media screen and (max-width: 992px) {
	.single-experts .module-header .cs-title { font-size: 2.8rem; }
	.single-experts .module-header .cs-img-wrapper { max-width: 100%; height: 18rem; }
	.single-experts .module-header .cs-scrolling-text { position: relative !important; bottom: inherit; }
}
@media screen and (max-width: 576px) {
	.single-experts .module-header .cs-title { font-size: 2.4rem; }
}
@media screen and (max-width: 450px) {
	.single-experts .module-header .cs-title { font-size: 2rem; }
}

/* Module: Category */

.single-experts .module-category .cs-experts-container { gap: 1rem; }
.single-experts .module-category .cs-card-col { width: calc(25% - 1rem); }

@media screen and (max-width: 992px) {
	.single-experts .module-category .cs-card-col { width: calc(33.33% - 1rem); }
}
@media screen and (max-width: 768px) {
	.single-experts .module-category .cs-card-col { width: calc(50% - 1rem); }
}
@media screen and (max-width: 500px) {
	.single-experts .module-category .cs-card-col { width: 100%; max-width: 20rem; }
}

/* Card: Expert */

.cs-card-expert { border: 1px solid var(--wp--preset--color--border-gray); }
.cs-card-expert:hover { transform: scale(1.05); }
.cs-card-expert .cs-top { height: 14.75rem; }
.cs-card-expert .cs-top .cs-icon { width: .7rem; height: .7rem; }

/* Popup: Expert */

.cs-popup-expert .cs-close-btn { width: 1.2rem; height: 1.2rem; }
.cs-popup-expert .cs-photo { width: 9.12rem; height: 9.12rem; }
.cs-popup-expert .cs-card-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.cs-popup-expert .cs-skills-card {
	-webkit-box-shadow: 0px 2px 32px -5px rgba(0,0,0,0.1);
	box-shadow: 0px 2px 32px -5px rgba(0,0,0,0.1);
}
.cs-popup-expert .cs-skills-card .cs-icon { width: 2.12rem; height: 2.12rem; }
.cs-popup-expert .cs-skills-card ul li { list-style-type: disc; list-style-position: inside; }

.cs-popup-expert .cs-form .gform_title,
.cs-popup-expert .cs-form .gform_required_legend { display: none; }

@media screen and (max-width: 768px) {
	.cs-popup-expert .cs-popup { padding-right: 2rem !important; padding-left: 2rem !important; }
}
@media screen and (max-width: 576px) {
	.cs-popup-expert .cs-card-container { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}
@media screen and (max-width: 450px) {
	.cs-popup-expert .cs-name { font-size: 1.6rem; }
	.cs-popup-expert .cs-pill-group { flex-direction: column; align-items: flex-start !important; }
}

/* Half circle */

.single-experts .half-circle { top: 50%; width: 15.75rem; }


/*====================================================
  TEMPLATE: CATEGORY
====================================================*/

/* Module: Header */

.template-category .module-header .cs-title { font-size: 3.12rem; font-weight: 900; }
.template-category .module-header .cs-img-wrapper { max-width: 37rem; height: 37rem; }

.template-category .module-header .cs-scrolling-text { bottom: 3.5rem; }

.template-category .module-header .cs-line-1 { bottom: 6rem; }
.template-category .module-header .cs-line-1 .straight-line { transform: rotate(1.5deg); }

.template-category .module-header .cs-first-line { height: 3.5rem; transform: rotate(-2deg); }
.template-category .module-header .cs-line-2 .straight-line-vertical {
	left: .7rem;
	height: 120%;
	transform: rotate(-5deg);
}

@media screen and (max-width: 1200px) {
	.template-category .module-header .cs-scrolling-text { bottom: 1.5rem; }
}
@media screen and (max-width: 992px) {
	.template-category .module-header .cs-title { font-size: 2.8rem; }
	.template-category .module-header .cs-img-wrapper { max-width: 100%; height: 18rem; }
	.template-category .module-header .cs-scrolling-text { position: relative !important; bottom: inherit; }
}
@media screen and (max-width: 576px) {
	.template-category .module-header .cs-title { font-size: 2.4rem; }
}
@media screen and (max-width: 450px) {
	.template-category .module-header .cs-title { font-size: 2rem; }
}

/* Module: Text */

.template-category .module-text .straight-line { top: 50%; }
.template-category .module-text .circular-arc { height: 13.5rem; }

/*====================================================
  TEMPLATE: FINANCING SIMULATOR RESULTS
====================================================*/

.template-financing-simulator-results {
	padding-top: 85px;
}

.template-financing-simulator-results .container-results {
	min-height: 50vh;
}

@media screen and (max-width: 768px) {
	.template-financing-simulator-results {
		padding-top: 0;
	}
}

/*====================================================
  GRIDBUILDER: All contents
====================================================*/

/* layout */

.template-category .cs-content .wpgb-viewport { height: auto !important; }
.template-category .cs-content .wpgb-masonry {
	display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -0.7rem !important;
}

@media screen and (max-width: 660px) {
	.template-category .cs-content .wpgb-masonry { justify-content: center !important; }
}

/* Cards */

.template-category .cs-content .wpgb-card .wpgb-card-wrapper {
	border-radius: 20px;
	overflow: hidden;
    box-shadow: rgb(0 0 0 / 10%) 0 2px 32px 4px;
}
.template-category .cs-content .wpgb-card .wpgb-card-media {
	height: 11rem !important;
	background-color: var(--wp--preset--color--primary);
}
.template-category .cs-content .wpgb-card .wpgb-card-media-thumbnail { transition: all .4s ease !important; }
.template-category .cs-content .wpgb-card .wpgb-card-media-overlay {
	opacity: 0;
	mix-blend-mode: darken;
	background: rgb(207,0,109) !important;
	background: linear-gradient(0deg, rgba(207,0,109,1) 0%, rgba(37,48,128,1) 65%) !important;
	transition: all .3s ease !important;
}

/* Pagination */

.template-category .cs-content .wpgb-main > .wpgb-area-bottom-1 .wpgb-facet { width: 100%; }
.template-category .cs-content .wpgb-pagination-facet { display: flex; justify-content: center; margin-top: 3rem !important; }
.template-category .cs-content .wpgb-pagination-facet .wpgb-pagination { text-align: center !important; }
.template-category .cs-content .wpgb-pagination-facet .wpgb-page a,
.template-category .cs-content .wpgb-pagination-facet .wpgb-page span {
	width: 2.4rem !important;
	padding: 0 !important;
	font-size: .87rem;
	font-weight: 700 !important;
	color: var(--wp--preset--color--dark-gray) !important;
	border: 1px solid var(--wp--preset--color--border-gray) !important;
	border-radius: 5px !important;
	outline: none !important;
}
.template-category .cs-content .wpgb-pagination-facet .wpgb-page a[aria-current="true"] {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--secondary) !important;
	border: 1px solid var(--wp--preset--color--secondary) !important;
}
.template-category .cs-content .wpgb-pagination-facet .cs-wpgb-btn a { font-size: 0 !important; }
.template-category .cs-content .wpgb-pagination-facet .cs-wpgb-btn a::after{
	content: " ";
	position: absolute;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	width: .85rem;
    height: .85rem;
	background-image: url('../img/icon-chevron-2.svg');
    background-size: .85rem .85rem;
    background-repeat: no-repeat;
}
.template-category .cs-content .wpgb-pagination-facet .cs-wpgb-prev a::after { transform: translate(-50%, -50%) rotate(180deg); }

/*====================================================
  GRIDBUILDER: Training content
====================================================*/
.template-category .content-trainings .cs-typo-circle {
	top: -2rem;
	right: 2rem;
	animation: spin 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/* Filters */

.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1 {
	align-items: center !important;
	margin: 0 -.3rem .5rem !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>div {
	flex: inherit !important;
	width: auto !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet { padding: 0 .3rem !important; }
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:first-child {
	max-width: 6.5rem !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(2) {
	max-width: 11rem !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(3) {
	max-width: 6.5rem !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(4) {
	max-width: 15rem !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1 fieldset,
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1 button {
	margin-bottom: .8rem !important;
}
.template-category .content-trainings .wpgb-area-top-1 .wpgb-select {
	padding: .37rem 2rem .37rem 1.2rem;
	font-size: 0.87rem !important;
	color: var(--wp--preset--color--primary) !important;
	border: 1px solid var(--wp--preset--color--border-gray) !important;
	border-radius: 20px !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1 .wpgb-reset {
	display: block !important;
	padding: 0 !important;
	margin-left: .5rem;
	font-size: .85rem !important;
	font-weight: 400 !important;
	color: var(--wp--preset--color--primary) !important;
	background-color: transparent !important;
}
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1 .wpgb-reset[disabled] { display: none !important; }
.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1 .wpgb-reset::before {
	content: "";
    display: inline-block;
	width: .6rem;
    height: .6rem;
    margin: .2rem .5rem 0 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url( '../img/icon-close.svg' );
}
.template-category .content-trainings .wpgb-area-top-1 .wpgb-select-controls .wpgb-select-separator,
.template-category .content-trainings .wpgb-area-top-1 .wpgb-select-controls svg {
	display: none !important;
}
.template-category .content-trainings .wpgb-area-top-1 .wpgb-select-controls::before {
    content: "";
    display: inline-block;
	width: .6rem;
    height: .6rem;
    margin: .1rem 1rem 0 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url( '../img/icon-arrow.svg' );
}

@media screen and (max-width: 390px) {
	.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:first-child {
		order: 1;
	}
	.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(2) {
		order: 3;
	}
	.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(3) {
		order: 2;
	}
	.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(4) {
		order: 4;
	}
	.template-category .content-trainings .wp-grid-builder .wpgb-area-top-1>.wpgb-facet:nth-child(5) {
		order: 5;
	}
}

/* Cards */

.template-category .content-trainings .wpgb-card {
	position: relative !important;
    top: inherit !important;
    left: inherit !important;
    width: calc(100% / 3) !important;
    padding: 0.7rem !important;
}
.template-category .content-trainings .wpgb-card .wpgb-card-media-thumbnail { transition: all .4s ease !important; }
.template-category .content-trainings .wpgb-card .wpgb-card-media-overlay {
	opacity: 0;
	mix-blend-mode: darken;
	background: rgb(207,0,109) !important;
	background: linear-gradient(0deg, rgba(207,0,109,1) 0%, rgba(37,48,128,1) 65%) !important;
	transition: all .3s ease !important;
}
.template-category .content-trainings .wpgb-card .wpgb-card-media-content-bottom {
	display: flex !important;
	justify-content: flex-end !important;
}
.template-category .content-trainings .wpgb-card .cs-card-field,
.template-category .content-trainings .wpgb-card .cs-field-duration {
	display: flex !important;
	align-items: center !important;
}
.template-category .content-trainings .wpgb-card .cs-card-field::before,
.template-category .content-trainings .wpgb-card .cs-field-duration::before {
	content: "";
	position:relative;
	display: inline-block;
	width: .8rem;
	height: .8rem;
	background-size: contain;
	background-repeat: no-repeat;
}
.template-category .content-trainings .wpgb-card .cs-field-location::before  {
	padding-right: 1.5rem;
	background-image: url( '../img/icon-location-cat.svg' );
}
.template-category .content-trainings .wpgb-card .cs-field-title::before  {
	padding-right: 1.5rem;
	background-image: url( '../img/icon-hat-cat.svg' );
}
.template-category .content-trainings .wpgb-card .cs-field-job::before  {
	padding-right: 1.5rem;
	background-image: url( '../img/icon-suitcase-cat.svg' );
}
.template-category .content-trainings .wpgb-card .cs-field-duration::before  {
	padding-right: 1.3rem;
	background-image: url( '../img/icon-alarm-cat.svg' );
}

@media screen and (max-width: 992px) {
	.template-category .content-trainings .wpgb-card { width: 50% !important; }
}
@media screen and (max-width: 660px) {
	.template-category .content-trainings .wpgb-card { width: 100% !important; max-width: 25rem !important; }
}

/*====================================================
  GRIDBUILDER: Categories content
====================================================*/

/* Filters */

.template-category .content-categories .wpgb-area-top-1 .wpgb-button {
	color: var(--wp--preset--color--primary) !important;
	background-color: transparent !important;
	border: 1px solid var(--wp--preset--color--border-gray) !important;
	border-radius: 20px !important;
	outline: none !important;
	transition: all .3s ease;
}
.template-category .content-categories .wpgb-area-top-1 .wpgb-button[aria-pressed="true"] {
	color: var(--wp--preset--color--white) !important;
	background-color: var(--wp--preset--color--primary) !important;
	border: 1px solid var(--wp--preset--color--primary) !important;
}
.template-category .content-categories .wpgb-area-top-1 .wpgb-button:not([aria-pressed="true"]):hover {
	background-color: var(--wp--preset--color--gray) !important;
	border: 1px solid var(--wp--preset--color--primary) !important;
}
.template-category .content-categories .wpgb-area-top-1 .wpgb-button-label {
	font-size: .87rem !important;
	font-weight: 400 !important;
}

/* Cards */

.template-category .content-categories .wpgb-card {
	position: relative !important;
    top: inherit !important;
    left: inherit !important;
    width: calc(100% / 4) !important;
    padding: 0.7rem !important;
}

.template-category .content-categories .wpgb-card .cs-card-category::before {
	content: "";
	position:relative;
	display: inline-block;
	width: 1.5px;
	height: 1rem;
	margin-bottom: -3px;
    margin-right: 0.5rem;
	background-color: #000;
}

@media screen and (max-width: 1250px) {
	.template-category .content-categories .wpgb-card { width: calc(100% / 3) !important; }
}
@media screen and (max-width: 992px) {
	.template-category .content-categories .wpgb-card { width: 50% !important; }
}
@media screen and (max-width: 768px) {
	.template-category .content-categories .wpgb-card .wpgb-card-media { height: 9rem !important; }
}
@media screen and (max-width: 500px) {
	.template-category .content-categories .wpgb-card { width: 100% !important; max-width: 25rem !important; }
}

/*====================================================
  GRIDBUILDER: Jobs content
====================================================*/
.template-category .content-jobs .cs-title { margin-bottom: -2.5rem; }

/* Filters */

.template-category .content-jobs .wpgb-area-top-1 {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	margin: 0 -.5rem !important;
}
.template-category .content-jobs .wpgb-area-top-1 .wpgb-facet { max-width: 18.75rem !important; padding: 0 .5rem !important; }
.template-category .content-jobs .wp-grid-builder .wpgb-area-top-1 fieldset { margin-bottom: .8rem !important; }
.template-category .content-jobs .wpgb-area-top-1 .wpgb-select {
	font-size: 0.87rem !important;
	color: var(--wp--preset--color--primary) !important;
	border: 1px solid var(--wp--preset--color--border-gray) !important;
	border-radius: 8px !important;
}
.template-category .content-jobs .wpgb-area-top-1 .wpgb-select-controls .wpgb-select-separator,
.template-category .content-jobs .wpgb-area-top-1 .wpgb-select-controls svg {
	display: none !important;
}
.template-category .content-jobs .wpgb-area-top-1 .wpgb-select-controls::before {
    content: "";
    display: inline-block;
	width: .5rem;
    height: .5rem;
    margin: .2rem .9rem 0 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url( '../img/icon-arrow.svg' );
}

/* Cards */

.template-category .content-jobs .wpgb-card {
	position: relative !important;
    top: inherit !important;
    left: inherit !important;
    width: calc(100% / 3) !important;
    padding: 0.7rem !important;
}
.template-category .content-jobs .wpgb-card .wpgb-card-header {
	transition: all .2s ease !important;
}
.template-category .content-jobs .wpgb-card-wrapper:hover .wpgb-card-header {
	background: var(--wp--preset--color--secondary);
}
.template-category .content-jobs .wpgb-card .cs-card-field::before {
	content: "";
	position:relative;
	display: inline-block;
	width: .8rem;
	height: .8rem;
	padding-right: 1.1rem;
	background-size: contain;
	background-repeat: no-repeat;
}
.template-category .content-jobs .wpgb-card .cs-field-type::before {
	background-image: url( '../img/icon-file.svg' );
}
.template-category .content-jobs .wpgb-card .cs-field-location::before {
	background-image: url( '../img/icon-location-job.svg' );
}
.template-category .content-jobs .wpgb-card .cs-field-date::before {
	background-image: url( '../img/icon-calendar.svg' );
}

@media screen and (max-width: 992px) {
	.template-category .content-jobs .cs-title { margin-bottom: 1.3rem; }
	.template-category .content-jobs .wpgb-area-top-1 { justify-content: flex-start !important; }
	.template-category .content-jobs .wp-grid-builder .wpgb-area-top-1 fieldset { margin-bottom: 1rem !important; }
	.template-category .content-jobs .wpgb-card { width: 50% !important; }
}
@media screen and (max-width: 600px) {
	.template-category .content-jobs .wpgb-card { width: 100% !important; }
}

/*====================================================
  GRAVITY FORMS
====================================================*/

/* Form title */

.gform_wrapper .gform_title {
	margin-bottom: 1rem !important;
	font-family: "RegionBretagne" !important;
	font-size: 1.87rem !important;
	color: var(--wp--preset--color--primary) !important;
}

/* Steps */

.gform_wrapper .gf_page_steps {
	position: relative;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 2rem !important;
	border: none !important;
}
.gform_wrapper .gf_page_steps::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--wp--preset--color--primary);
}
.gform_wrapper .gf_step { margin: 0 !important; }
.gform_wrapper .gf_step .gf_step_label { display: none !important; }
.gform_wrapper .gf_step .gf_step_number {
	position: relative;
	z-index: 2;
	width: 2.18rem !important;
	height: 2.18rem !important;
}
.gform_wrapper .gf_step_completed .gf_step_number::before {
	width: 2.18rem !important;
	height: 2.18rem !important;
    background: var(--wp--preset--color--primary) !important;
    border: 2px solid var(--wp--preset--color--primary) !important;
}
.gform_wrapper .gf_step_active .gf_step_number {
	color: var(--wp--preset--color--primary) !important;
	background: var(--wp--preset--color--white) !important;
	border-color: var(--wp--preset--color--primary) !important;
}
.gform_wrapper .gf_step_pending .gf_step_number {
	color: #cfd3d9 !important;
	background: var(--wp--preset--color--white) !important;
}

@media screen and (max-width: 450px) {
	.gform_wrapper .gf_step .gf_step_number {
		width: 1.5rem !important;
		height: 1.5rem !important;
		font-size: .75rem !important;
	}
	.gform_wrapper .gf_step_completed .gf_step_number::before {
		width: 1.5rem !important;
		height: 1.5rem !important;
	}
}

/* Labels and legends */

.gform_wrapper label,
.gform_wrapper legend,
.gform_wrapper select { font-size: 0.87rem !important; }
.gform_wrapper label .gfield_required,
.gform_wrapper legend .gfield_required { color: var(--wp--preset--color--secondary) !important; }

/* Classic fields */

.gform_wrapper input:not([type=submit]):not([type=file]),
.gform_wrapper textarea,
.gform_wrapper select {
	font-size: 0.87rem !important;
	border: 1px solid rgba(211, 211, 211, 1) !important;
	border-radius: 8px !important;
}
.gform_wrapper input:not([type=submit]):not([type=button]):not([type=file]):not([type=checkbox]):not([type=radio]):focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
	border-color: transparent !important;
	outline: 2px solid var(--wp--preset--color--primary) !important;
}
.gform_wrapper select { cursor: pointer !important; }

@media screen and (max-width: 640px) {
	.gform_wrapper input:not([type=submit]):not([type=button]):not([type=file]):not([type=checkbox]):not([type=radio]):not(.datepicker),
	.gform_wrapper textarea,
	.gform_wrapper select {
		width: 100% !important;
	}
}

/* Radio and checkbox (+consent) */

.gform_wrapper input[type=checkbox],
.gform_wrapper input[type=radio] {
	margin-right: .5rem !important;
	accent-color: var(--wp--preset--color--primary) !important;
}
.gform_wrapper .gfield_consent_description {
	padding: 1rem 1.5rem !important;
	font-size: 14px !important;
	background-color: var(--wp--preset--color--gray) !important;
	border: 1px solid rgba(211, 211, 211, 1) !important;
}
.gform_wrapper .gfield_consent_description a {
	color: var(--wp--preset--color--primary) !important;
	text-decoration: underline !important;
}

/* File upload */

.gform_wrapper .ginput_container_fileupload {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
}
.gform_wrapper input[type=file] {
	width: auto !important;
	padding: .5rem 0 !important;
	margin-right: 1rem !important;
	font-size: 0.87rem !important;
	outline: none !important;
}
.gform_wrapper .gform_fileupload_rules {
	margin: 0 !important;
	padding: .5rem 0 !important;
	font-size: 0.87rem !important;
}
.gform_wrapper .gfield_description { font-size: .87rem !important; font-weight: 300 !important; }

/* Submit */

.gform_wrapper input[type=submit],
.gform_wrapper input.gform_previous_button.button,
.gform_wrapper input.gform_next_button.button {
	padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
	padding-right: 1rem!important;
    padding-left: 1rem!important;
	font-size: .85rem !important;
	font-weight: bold !important;
	color: var(--wp--preset--color--white) !important;
	border-radius: var(--bs-border-radius-pill)!important;
	outline: none !important;
    transition: all 0.2s linear;
}
.gform_wrapper input[type=submit],
.gform_wrapper input.gform_next_button.button {
	background-color: var(--wp--preset--color--secondary) !important;
    border: 1px solid var(--wp--preset--color--secondary);
}
.gform_wrapper input.gform_previous_button.button {
	background-color: var(--wp--preset--color--primary) !important;
    border: 1px solid var(--wp--preset--color--primary);
}
.gform_wrapper input[type=submit]:hover,
.gform_wrapper input.gform_next_button.button:hover {
    color: var(--wp--preset--color--secondary) !important;
    background-color: var(--wp--preset--color--white) !important;
    border: 1px solid var(--wp--preset--color--secondary);
    transition: all 0.2s linear;
}
.gform_wrapper input.gform_previous_button.button:hover {
    color: var(--wp--preset--color--primary) !important;
    background-color: var(--wp--preset--color--white) !important;
    border: 1px solid var(--wp--preset--color--primary);
    transition: all 0.2s linear;
}

.form-pattern .gform_wrapper input[type=checkbox],
.form-pattern .gform_wrapper input[type=radio] {
	border: 1px solid var(--wp--preset--color--primary) !important;
	border-radius: 0px !important;
}

/* Others */

.gform_wrapper .gsection { padding: 0 !important; margin: 0.7rem 0 0.9rem !important; }
.gform_wrapper .gsection .gsection_title {
	font-size: .87rem !important;
	font-weight: 700 !important;
}
.gform_wrapper .gsection .gsection_description {
	margin-bottom: 1.2rem !important;
	font-size: .87rem !important;
}

/* Register pop up */

.popup-register {
	position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 593px;
    padding: 50px;
    background: var(--wp--preset--color--white);
    box-shadow: 0px 2px 4px 3px rgb(37 48 128 / 5%);
    z-index: 2;
    top: 38vh;
	transition: all 0.4s linear;
}

.popup-register.hidden {
	opacity: 0;
	transition: all 0.4s linear;
}

.popup-register .close {
	position: absolute;
	right: 25px;
	top: 25px;
	z-index: 10;
	cursor: pointer;
}

.popup-register h2,
.popup-register h3,
.popup-register h4 {
	color: var(--wp--preset--color--primary);
	font-family: var(--wp--preset--font-family--regionbretagne);
	font-weight: var(--latelier--preset--font-weight--black);
	font-size: var(--wp--preset--font-size--title-regular);
	line-height: 32px;
}

.popup-register p {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--regular);
	font-size: var(--wp--preset--font-size--text-regular);
	padding: 0 50px;
	line-height: 17px;
	text-align: center;
}

.popup-register p:last-of-type {
	display: flex;
    justify-content: center;
	margin-top: 10px;
	padding: 0;
}

.popup-register p a {
	padding: 10px 20px;
	border-radius: 30px;
	font-family: var(--wp--preset--font-family--inter);
	font-weight: var(--latelier--preset--font-weight--bold);
	font-size: var(--wp--preset--font-size--text-regular);
	line-height: 17px;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--primary) !important;
	border: 1px solid var(--wp--preset--color--primary);
	margin-right: 5px;
	transform: scale(1);
	transition: all 0.2s linear;
}

.popup-register p a:hover {
    background-color: var(--wp--preset--color--dark-primary) !important;
    border: 1px solid var(--wp--preset--color--dark-primary);
    transition: all 0.2s linear;
}
