@charset "UTF-8";
/**
* Style utilisé pour la partie BACK du site et FRONT
*/
/**
 * -------------------
 * breakpoint
 * -------------------
 * @description
 * responsive - gère les points de rupture
 * @param point <string>
 */
.container {
  width: calc(100% - 100px);
  margin-left: 50px;
  margin-right: 50px;
}
@media screen and (min-width: 1480px) {
  .container {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.container-md {
  width: calc(100% - clamp(100px, 17.5vw, 260px));
  margin-left: clamp(50px, 8.7vw, 130px);
  margin-right: clamp(50px, 8.7vw, 130px);
}
@media screen and (min-width: 1480px) {
  .container-md {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .container-md {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.container-sm {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 808px) {
  .container-sm {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .container-sm {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

.alignwide {
  position: relative;
  width: clamp(728px, 67vw, 992px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .alignwide {
    width: calc(100% - 40px);
    padding-left: unset;
    padding-right: unset;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.alignfull {
  position: relative;
  left: 50%;
  translate: -50%;
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

.main-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull):not(.alignLarge)) {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 808px) {
  .main-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull):not(.alignLarge)) {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .main-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull):not(.alignLarge)) {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

.button {
  position: relative;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}
.button.bg-contrast .button-container {
  background: #22212C;
}
.button.bg-base .button-container {
  background: #FFFFFF;
}
.button.bg-primary .button-container {
  background: #3497DB;
}
.button.bg-secondary .button-container {
  background: #E67D21;
}
.button-container {
  display: block;
  position: relative;
  padding: 0px 20px;
  border-radius: 10px;
  line-height: 50px;
  overflow: hidden;
}
.button-container .button-text {
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.button-container .button-text.color-contrast {
  color: #22212C;
}
.button-container .button-text.color-base {
  color: #FFFFFF;
}
.button-container .button-text.color-primary {
  color: #3497DB;
}
.button-container .button-text.color-secondary {
  color: #E67D21;
}
.button-container:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px 0 0 10px;
  left: -20px;
  width: 0;
  height: 50px;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  transition: width 0.3s ease, animation 0.3s ease;
}
.bg-contrast .button-container:before {
  background: #393749;
}
.bg-base .button-container:before {
  background: #e6e6e6;
}
.bg-primary .button-container:before {
  background: #217cbb;
}
.bg-secondary .button-container:before {
  background: #bf6415;
}
.button-container:hover:before {
  width: calc(50% + 40px);
  transition: width 0.3s ease, animation 0.3s ease;
}
.button .button-under {
  margin-top: 10px;
  line-height: 20px;
}

.cp-category {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  min-height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.cp-category-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cp-category-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 33, 44, 0.5);
}
.cp-category-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cp-category a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}
.cp-category p {
  position: relative;
  color: #FFFFFF;
  margin: 0;
}
.cp-category:hover .cp-category-background {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.cp-accordeon {
  position: relative;
  border-bottom: 1px solid #3497DB;
}
.cp-accordeon header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.cp-accordeon header .cp-accordeon-title {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: baseline;
  font-size: clamp(20px, 1.6vw, 25px);
  color: #22212C;
  padding: 20px 0;
  margin: 0;
}
.cp-accordeon header .cp-accordeon-title .cp-accordeon-icon {
  font-size: 1.6rem;
  color: #3497DB;
}
.cp-accordeon header .cp-accordeon-more {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}
.cp-accordeon header .cp-accordeon-more:before, .cp-accordeon header .cp-accordeon-more:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  border-radius: 25px;
  width: 15px;
  height: 3px;
  background: #22212c;
  transition: transform 0.3s ease;
}
.cp-accordeon header .cp-accordeon-more:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.cp-accordeon header .cp-accordeon-more:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cp-accordeon main {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, padding 0.3s ease, max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cp-accordeon main > * {
  margin: 0;
}
.cp-accordeon main ul {
  padding-left: 20px;
}
.cp-accordeon main ul li {
  position: relative;
  list-style-type: none;
  margin-bottom: 10px;
}
.cp-accordeon main ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 11px;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.cp-accordeon main ol {
  padding-left: 20px;
}
.cp-accordeon main ol li {
  position: relative;
  margin-bottom: 10px;
}
.cp-accordeon main ol li::marker {
  color: #3497DB;
}
.cp-accordeon.active header .cp-accordeon-more:before, .cp-accordeon.active header .cp-accordeon-more:after {
  transition: transform 0.3s ease;
}
.cp-accordeon.active header .cp-accordeon-more:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.cp-accordeon.active header .cp-accordeon-more:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.cp-accordeon.active main {
  opacity: 1;
  max-height: 1000px;
  padding-bottom: 20px;
  overflow: scroll;
  transition: opacity 0.3s ease, padding 0.3s ease, max-height 0.6s ease;
}

.cp-requete-header {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(52, 151, 219, 0.2);
  margin-bottom: clamp(20px, 2vw, 30px);
}
.cp-requete-header h2 {
  font-size: clamp(25px, 2vw, 30px);
  margin: 0;
  line-height: 50px;
}
.cp-requete-header .cp-requete-more {
  color: #3497DB;
  text-decoration: underline;
  cursor: pointer;
  line-height: 50px;
}
.cp-requete-header .cp-requete-more:hover {
  text-decoration: none;
}
.cp-requete-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: clamp(20px, 2.7vw, 40px);
  list-style-type: none;
}
.cp-requete-more {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .cp-requete-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .cp-requete-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cp-requete-taxonomies {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-requete-taxonomies li {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cp-requete-taxonomies {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cp-requete-lexique {
  display: flex;
  gap: 20px;
}
.cp-requete-lexique-menu {
  top: 30px;
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30px;
  text-align: left;
  height: fit-content;
  align-self: flex-start;
  max-height: calc(100vh - 60px);
  transition: top 0.3s ease, max-height 0.3s ease;
}
.cp-requete-lexique-menu.headerOpen {
  top: 100px;
  max-height: calc(100vh - 130px);
  transition: top 0.3s ease, max-height 0.3s ease;
}
.cp-requete-lexique-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.7vw, 40px);
}
.cp-requete-lexique-list h2 {
  position: sticky;
  top: 30px;
  margin: 0;
  height: fit-content;
  align-self: flex-start;
  transition: top 0.3s ease;
}
.cp-requete-lexique-list h2.headerOpen {
  top: 100px;
  transition: top 0.3s ease;
}
.cp-requete-lexique-list .cp-requete-lexique-section {
  position: relative;
  display: flex;
  gap: clamp(20px, 2.7vw, 40px) 20px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item h3 {
  margin: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(34, 33, 44, 0.3);
  padding-bottom: 5px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content > * {
  margin: 0;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  padding-left: 0;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content ul li {
  position: relative;
  padding-left: 20px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}

.cp-blog-post {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  cursor: pointer;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.cp-blog-post-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 0px;
  transition: padding 0.3s ease;
}
.cp-blog-post-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.cp-blog-post-content {
  padding: 0 20px;
  transition: padding 0.3s ease;
}
.cp-blog-post-content h3 {
  margin: 0;
}
.cp-blog-post-content h3 a {
  color: #22212C;
  text-decoration: none;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1;
  font-weight: bold;
}
.cp-blog-post-content ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style-type: none;
}
.cp-blog-post:hover {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(34, 33, 44, 0.1);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.cp-blog-post:hover .cp-blog-post-image {
  padding: 0 20px;
  transition: padding 0.3s ease;
}
.cp-blog-post:hover .cp-blog-post-content {
  transition: padding 0.3s ease;
}

.cp-button-download {
  position: relative;
  border-radius: 20px;
  padding: 30px 10px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cp-button-download:before, .cp-button-download:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: opacity 0.7s ease;
}
.cp-button-download:before {
  z-index: 0;
  background: linear-gradient(45deg, #3497db 0%, #e67d21 100%);
}
.cp-button-download:after {
  z-index: 1;
  background: linear-gradient(45deg, #3497db 0%, #3497db 50%, #3497db 100%);
}
.cp-button-download-icon {
  z-index: 2;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-button-download-icon i {
  color: #22212C;
}
.cp-button-download-icon i:nth-child(1) {
  font-size: 1.8rem;
  transform-origin: center;
  transform: rotate(90deg);
}
.cp-button-download-icon i:nth-child(2) {
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 1rem;
}
.cp-button-download-title {
  z-index: 2;
  position: relative;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  font-family: var(--wp--preset--font-family--heading);
  text-align: center;
}
.cp-button-download:hover:after {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.cp-entete {
  position: relative;
}
.cp-entete-container {
  position: relative;
}
.cp-entete-container .cp-entete-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 5.4vw, 80px);
  padding-bottom: clamp(60px, 8.1vw, 120px);
  border-radius: 10px;
  overflow: hidden;
}
.cp-entete-container .cp-entete-content .cp-entete-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cp-entete-container .cp-entete-content .cp-entete-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 33, 44, 0.3);
}
.cp-entete-container .cp-entete-content .cp-entete-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cp-entete-container .cp-entete-content .cp-entete-breadcrumbs {
  margin: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FFFFFF;
  max-width: 70%;
}
@media screen and (max-width: 992px) {
  .cp-entete-container .cp-entete-content .cp-entete-text {
    max-width: 100%;
  }
}
.cp-entete-container .cp-entete-content .cp-entete-text h1 {
  color: #FFFFFF;
  margin: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-text p {
  margin: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-text ul {
  margin: 0;
  list-style-type: none;
  padding-left: 20px;
}
.cp-entete-container .cp-entete-content .cp-entete-text ul li {
  position: relative;
}
.cp-entete-container .cp-entete-content .cp-entete-text ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: -20px;
  width: 10px;
  height: 3px;
  background: #E67D21;
}
.cp-entete-container .cp-entete-content .cp-entete-button {
  margin: 0;
  font-size: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-button a {
  font-size: 1rem;
}

.cp-search-bar {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
  height: 50px;
}
.cp-search-bar-label {
  z-index: 3;
  position: absolute;
  top: 12px;
  left: 20px;
  max-width: calc(100% - 20px - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  pointer-events: none;
  transition: top 0.3s ease, font-size 0.3s ease;
}
.cp-search-bar-label i {
  color: #3497DB;
}
.cp-search-bar-label p {
  margin: 0;
  white-space: nowrap;
}
.cp-search-bar-label.active {
  top: 4px;
  font-size: 0.6rem;
  transition: top 0.3s ease, font-size 0.3s ease;
}
.cp-search-bar .search-form {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  background: #F5FAFD;
}
.cp-search-bar .search-form.hasResult {
  border-radius: 10px 10px 0 0;
}
.cp-search-bar .search-form label {
  width: 100%;
  height: 100%;
}
.cp-search-bar .search-form label .search-field {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: none;
  background: none;
  outline: 0;
}
.cp-search-bar .search-form #rlvlive_1 .relevanssi-live-search-results {
  z-index: 10;
  left: 0 !important;
  top: 50px !important;
  border: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 20px 0 rgba(34, 33, 44, 0.1);
}
.cp-search-bar .search-form #rlvlive_1 .relevanssi-live-search-results .ajax-results .relevanssi-live-search-result-status p {
  color: rgba(34, 33, 44, 0.3);
}
.cp-search-bar .search-form #rlvlive_1 .relevanssi-live-search-results .ajax-results .relevanssi-live-search-result p a {
  color: #22212C;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
}
.cp-search-bar .search-form #rlvlive_1 .relevanssi-live-search-results .ajax-results .relevanssi-live-search-result p a span {
  color: rgba(34, 33, 44, 0.3);
}
.cp-search-bar .search-form #rlvlive_1 .relevanssi-live-search-results .ajax-results .relevanssi-live-search-result p a:hover {
  color: 2;
  transition: color 0.3s ease;
}
.cp-search-bar .search-form #rlvlive_1 .relevanssi-live-search-results .ajax-results .relevanssi-live-search-result p a:hover span {
  color: rgba(34, 33, 44, 0.3);
}
.cp-search-bar .search-form .rlv-has-spinner {
  border-color: #3497DB;
  border-right-color: transparent;
}
.cp-search-bar .search-form .rlv-has-spinner::after {
  background-color: #3497DB;
}

.cp-services {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.cp-services-container {
  position: relative;
  left: 0%;
  width: 130%;
  display: grid;
  grid-template-columns: 1fr clamp(500px, 47.2vw, 700px) 1fr;
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-services-container .cp-services-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cp-services-container .cp-services-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.cp-services-container .cp-services-media:first-child {
  border-radius: 0 20px 20px 0;
}
.cp-services-container .cp-services-media:first-child img {
  right: 0;
}
.cp-services-container .cp-services-media:last-child {
  border-radius: 20px 0 0 20px;
}
.cp-services-container .cp-services-media:last-child img {
  left: 0;
}
.cp-services-container .cp-services-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-services-container .cp-services-content .cp-services-item {
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}
.cp-services-container .cp-services-content .cp-services-item .cp-services-title {
  margin: 0 0 clamp(20px, 2.7vw, 40px);
}
.cp-services-container .cp-services-content .cp-services-item .cp-services-title i {
  transition: color 0.3s ease;
}
.cp-services-container .cp-services-content .cp-services-item .cp-services-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-services-container .cp-services-content .cp-services-item .cp-services-text * {
  margin: 0;
}
.cp-services-container .cp-services-content .cp-services-item a {
  text-decoration: none;
}
.cp-services-container .cp-services-content .cp-services-item.hasImage {
  grid-column: span 2;
}
.cp-services-container .cp-services-content .cp-services-item.hasImage a {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.cp-services-container .cp-services-content .cp-services-item.hasImage a .cp-services-item-content {
  flex: 1;
}
.cp-services-container .cp-services-content .cp-services-item.hasImage a .cp-services-image {
  flex: 0.5;
}
.cp-services-container .cp-services-content .cp-services-item.hasImage a .cp-services-image img {
  width: 100%;
  transition: transform 0.3s ease;
}
.cp-services-container .cp-services-content .cp-services-item:nth-child(1) {
  background: #22212C;
  color: #FFFFFF;
}
.cp-services-container .cp-services-content .cp-services-item:nth-child(1) a, .cp-services-container .cp-services-content .cp-services-item:nth-child(1) .cp-services-title {
  color: #FFFFFF;
}
.cp-services-container .cp-services-content .cp-services-item:nth-child(2) {
  background: #3497DB;
  color: #FFFFFF;
}
.cp-services-container .cp-services-content .cp-services-item:nth-child(2) a, .cp-services-container .cp-services-content .cp-services-item:nth-child(2) .cp-services-title {
  color: #FFFFFF;
}
.cp-services-container .cp-services-content .cp-services-item:nth-child(3) {
  background: #F5FAFD;
  color: #22212C;
}
.cp-services-container .cp-services-content .cp-services-item:hover.hasImage a .cp-services-image img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.cp-services-container .cp-services-content .cp-services-item:hover:nth-child(1) i {
  color: #3497DB;
  transition: color 0.3s ease;
}
.cp-services-container .cp-services-content .cp-services-item:hover:nth-child(2) i {
  color: #22212C;
  transition: color 0.3s ease;
}
.cp-services-container .cp-services-content .cp-services-item:hover:nth-child(3) i {
  color: #3497DB;
  transition: color 0.3s ease;
}

@media screen and (max-width: 992px) {
  .cp-services-container {
    width: 100%;
    padding: 0 clamp(20px, 2.7vw, 40px);
    grid-template-columns: 1fr;
  }
  .cp-services-container .cp-services-media {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cp-services-container .cp-services-content {
    grid-template-columns: 1fr;
  }
  .cp-services-container .cp-services-content .cp-services-item {
    grid-column: span 1 !important;
  }
}
.cp-banniere-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #D6ECF8;
  padding: 20px;
  border-radius: 10px;
}
.cp-banniere-container .cp-banniere-text {
  flex: 1;
}
.cp-banniere-container .cp-banniere-text h1, .cp-banniere-container .cp-banniere-text h2, .cp-banniere-container .cp-banniere-text h3, .cp-banniere-container .cp-banniere-text h4, .cp-banniere-container .cp-banniere-text h5, .cp-banniere-container .cp-banniere-text h6, .cp-banniere-container .cp-banniere-text p, .cp-banniere-container .cp-banniere-text ul {
  margin: 0 !important;
}
.cp-banniere-container .cp-banniere-text h3 {
  font-size: clamp(20px, 1.6vw, 24px);
}
.cp-banniere-container .cp-banniere-text p {
  font-size: clamp(14px, 1vw, 16px);
}
.cp-banniere-container .cp-banniere-media {
  pointer-events: none;
  position: relative;
  height: 100%;
  width: clamp(100px, 10.1vw, 150px);
}
.cp-banniere-container .cp-banniere-media figure {
  position: relative;
  bottom: -20px;
  width: 100%;
  min-height: 80px;
}
.cp-banniere-container .cp-banniere-media figure img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 160px;
}
@media screen and (max-width: 992px) {
  .cp-banniere-container {
    flex-wrap: wrap;
  }
  .cp-banniere-container .cp-banniere-text {
    flex-basis: 100%;
  }
  .cp-banniere-container .cp-banniere-media figure img {
    right: unset;
    left: 0;
  }
}
.cp-card-service {
  position: relative;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
}
.cp-card-service-background {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cp-card-service-background .overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 33, 44, 0.5);
  transition: background-color 0.3s ease;
}
.cp-card-service-background .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(circle, rgba(34, 33, 44, 0.5) 0%, rgba(34, 33, 44, 0) 100%);
  transition: opacity 0.3s ease;
}
.cp-card-service-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.cp-card-service-container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.3vw, 20px);
  height: 100%;
  min-height: 400px;
  justify-content: space-between;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .cp-card-service-container {
    min-height: auto;
  }
}
.cp-card-service-container .cp-card-service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.cp-card-service-container .cp-card-service-content h1, .cp-card-service-container .cp-card-service-content h2, .cp-card-service-container .cp-card-service-content h3, .cp-card-service-container .cp-card-service-content h4, .cp-card-service-container .cp-card-service-content h5, .cp-card-service-container .cp-card-service-content h6, .cp-card-service-container .cp-card-service-content p, .cp-card-service-container .cp-card-service-content ul, .cp-card-service-container .cp-card-service-content ol {
  margin: 0;
  color: #FFFFFF;
}
.cp-card-service-container .cp-card-service-content p {
  font-size: clamp(14px, 1vw, 16px);
  transition: opacity 0.3s ease;
}
.cp-card-service-container .cp-card-service-content h1, .cp-card-service-container .cp-card-service-content h2, .cp-card-service-container .cp-card-service-content h3, .cp-card-service-container .cp-card-service-content h4, .cp-card-service-container .cp-card-service-content h5, .cp-card-service-container .cp-card-service-content h6 {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
}
.cp-card-service-container .cp-card-service-content hr {
  width: 100px;
  border-top: 1px solid #D6ECF8;
  transition: opacity 0.3s ease;
}
.cp-card-service-container .cp-card-service-button {
  font-size: 0;
}
.cp-card-service-container .cp-card-service-button .button {
  font-size: clamp(14px, 1vw, 16px);
}
.cp-card-service-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cp-card-service-hover-content {
  margin-bottom: 20px;
}
.cp-card-service-hover-content h1, .cp-card-service-hover-content h2, .cp-card-service-hover-content h3, .cp-card-service-hover-content h4, .cp-card-service-hover-content h5, .cp-card-service-hover-content h6 {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
  position: relative;
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cp-card-service-hover-content p, .cp-card-service-hover-content ul, .cp-card-service-hover-content ol, .cp-card-service-hover-content hr {
  display: none;
}
.cp-card-service-hover-button {
  position: relative;
  font-size: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.2s;
}
.cp-card-service-hover-button .button {
  font-size: clamp(14px, 1vw, 16px);
}
.cp-card-service:hover .cp-card-service-background .overlay {
  transition: background-color 0.3s ease;
  background: rgba(34, 33, 44, 0);
}
.cp-card-service:hover .cp-card-service-background .overlay:before {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cp-card-service:hover .cp-card-service-background img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.cp-card-service:hover .cp-card-service-container {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.cp-card-service:hover .cp-card-service-hover {
  opacity: 1;
  transition: opacity 0.3s ease;
  transition-delay: 0.2s;
  pointer-events: all;
}
.cp-card-service:hover .cp-card-service-hover-content h1, .cp-card-service:hover .cp-card-service-hover-content h2, .cp-card-service:hover .cp-card-service-hover-content h3, .cp-card-service:hover .cp-card-service-hover-content h4, .cp-card-service:hover .cp-card-service-hover-content h5, .cp-card-service:hover .cp-card-service-hover-content h6 {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cp-card-service:hover .cp-card-service-hover-button {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
}

.cp-card-offre {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(34, 33, 44, 0.1);
  padding: 20px;
}
.cp-card-offre-title {
  text-align: center;
  margin: 0;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
.cp-card-offre-subtitle {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  color: rgba(34, 33, 44, 0.7);
  margin-bottom: 30px;
}
.cp-card-offre hr {
  margin: 0;
  border-top: 1px solid rgba(34, 33, 44, 0.7);
  margin-bottom: 20px;
}
.cp-card-offre-pricing-text {
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.cp-card-offre-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.cp-card-offre-pricing-row-amount {
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  color: #E67D21;
}
.cp-card-offre-pricing-row-conditions {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(34, 33, 44, 0.7);
}
.cp-card-offre-checklist {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  margin-bottom: 20px;
}
.cp-card-offre-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cp-card-offre-checklist li.croix {
  color: rgba(34, 33, 44, 0.5);
}
.cp-card-offre-checklist li.croix i {
  color: rgba(34, 33, 44, 0.3);
}
.cp-card-offre-checklist li.check i {
  color: #E67D21;
}
.cp-card-offre-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.cp-card-offre-content > * {
  margin: 0;
}
.cp-card-offre-content ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-card-offre-content ul li {
  position: relative;
  padding-left: 20px;
}
.cp-card-offre-content ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.cp-card-offre-button {
  display: flex;
}
.cp-card-offre-button .button {
  flex: 1;
  font-size: clamp(14px, 1vw, 16px);
}

.cp-section-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #3497DB;
  text-align: center;
  background: #D6ECF8;
  color: #22212C;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.cp-section-select:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  border-top: 0px solid #22212C;
  transition: border 0.3s ease;
}
.cp-section-select.active {
  background: #22212C;
  color: #FFFFFF;
  border: 1px solid #22212C;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.cp-section-select.active:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #22212C;
  transition: border 0.3s ease;
}
.cp-section-select:hover {
  background: #22212C;
  color: #FFFFFF;
  border: 1px solid #22212C;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.cp-section-select:hover:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #22212C;
  transition: border 0.3s ease;
}

.block-accordeon {
  margin-block-start: 0 !important;
}

.block-requete ul {
  padding-left: 0;
}

.block-button {
  display: flex;
  gap: 20px;
}
.block-button.aligncenter {
  justify-content: center;
}

.block-recherche {
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 992px) {
  .block-banniere {
    margin-top: 40px !important;
  }
}
.block-taxonomies {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.block-section-select ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style-type: none;
}
.block-section-select ul li {
  flex: 1;
}

@media screen and (max-width: 992px) {
  .block-section-select ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .block-section-select ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-section-start {
  display: none;
}
.block-section-start .alignwide, .block-section-start .alignfull {
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .block-section-start .alignwide, .block-section-start .alignfull {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.block-section-start .alignLarge {
  max-width: 1480px !important;
  width: 1220px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.block-section-start.active {
  display: block;
}

ul.wp-block-list {
  padding-left: 20px;
}
ul.wp-block-list li {
  position: relative;
  list-style-type: none;
  margin-bottom: 10px;
}
ul.wp-block-list li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 11px;
  width: 10px;
  height: 3px;
  background: #E67D21;
}

ol.wp-block-list {
  padding-left: 20px;
}
ol.wp-block-list li {
  position: relative;
  margin-bottom: 10px;
}
ol.wp-block-list li::marker {
  color: #E67D21;
}

.wp-block-page-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style-type: none;
}
.wp-block-page-list li {
  position: relative;
  padding-left: 20px;
}
.wp-block-page-list li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.wp-block-page-list li a {
  color: #22212C;
  transition: color 0.3s ease;
}
.wp-block-page-list li a:hover {
  color: #3497DB;
  transition: color 0.3s ease;
}
.wp-block-page-list li .wp-block-navigation__submenu-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}

.wp-block-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}
.wp-block-latest-posts li {
  position: relative;
  padding-left: 20px;
}
.wp-block-latest-posts li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.wp-block-latest-posts li a {
  color: #22212C;
  transition: color 0.3s ease;
}
.wp-block-latest-posts li a:hover {
  color: #3497DB;
  transition: color 0.3s ease;
}

:where(.editor-styles-wrapper) .has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
:where(.editor-styles-wrapper) .has-global-padding > .alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
}/*# sourceMappingURL=blocks.css.map */