@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
 @font-face {
    font-family: 'centurygothic';
    src: url('../fonts/CenturyGothic.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'centurygothic-bold';
    src: url('../fonts/CenturyGothic-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
/* ========== VARIABLES CSS ========== */
:root {
  --accent: #002fa7;
  --accent-secondary: #f9a043;
  --accent-blue: #f2f9ff;
  --light: #ecf0f1;
  --bg: #FAF9F6;
  --bg-light: #ffffff;
  --text: #343434;
  --text-light: #ffffff;
  --border: rgba(0,0,0,0.05);
  --footer: #2c3e50;
  --footer-text: #C3C3BA;
  --transition: 0.3s ease;
  --primary: #000000
}

body.dark-mode {
  --accent: #002fa7;
  --accent-secondary: #f9a043;
  --accent-blue: #f2f9ff;
  --light: #2c3e50;
  --bg: #1E2420;
  --bg-light: #5E5E57;
  --text: #EDEBE6;
  --text-light: #C3C3BA;
  --border: rgba(255,255,255,0.05);
  --footer: #1a1a1a;
  --footer-text: #C3C3BA;
  --primary: #ffffff
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-light);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  line-height: 1.6;
}
.elementor-panel-header-wrapper h1,.elementor-panel-header-wrapper h1,.elementor-panel-header-wrapper h2,.elementor-panel-header-wrapper h3, .elementor-panel-header-wrapper h4,.elementor-panel-header-wrapper h5,.elementor-panel-header-wrapper h6{
  color: #ffffff;
  font-family: inherit;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
  font-family: 'Montserrat', serif !important;
}
footer h3 {
  color: var(--footer-text);
}
p{
  color: var(--text);
}
.quote-edenn {
  font-family: 'Cormorant Italic', serif !important;
}
.mobile-menu-content h2{
  color: var(--accent);
}
.menu-widget-title{
  color: var(--accent);
}
.contact-info{
  list-style: none;
}
.contact-info ul li a{
  color: var(--accent);
}
img {
  max-width: 100%;
  height: auto;
}
/* ========== HEADER ========== */
.header-banner{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px;
}
.header-banner div{
  display: flex;
  gap: 15px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  background: var(--accent-blue);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
  display: flex;
  justify-content: space-between;
}
.scroll-down{
  height: 90px;
  background-color: var(--bg-light);
}
.scroll-down .cta-button{
  background-color: var(--accent-blue);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 10px;
}

.main-navigation {
  display: flex;
  width: auto;
}

.custom-logo-link {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text);
  display: flex;
  justify-content: center;
}

.custom-logo-link a {
  font-weight: 600;
  font-size: 1.2rem;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-logo-link img {
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .nav-links {
    align-items: start;
    flex-direction: column;
  }
}
.rdv-button{
  display: flex;
  align-items: center;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-menu a {
  color: var(--footer-text);
}
footer svg {
  fill: var(--footer-text);
}

.nav-links a::after,
.active a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

@media (min-width: 769px) {
  .nav-links a:hover::after,
  .active a::after {
    width: 100%;
  }
}

.nav-links a:hover {
  color: var(--secondary);
}
 footer a:hover::after{
    width: 100%;
  }


footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
  transition: all var(--transition);
}
/* ========== THEME TOGGLE ========== */
.theme-toggle {
  background: none;
  border: 1px solid var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-light);
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  margin-left: 1rem;
}

.theme-toggle:hover {
  transform: rotate(180deg);
}

.moon-icon {
  display: none;
  fill: var(--bg);
}
.moon-icon svg {
  fill: var(--bg);
}
.sun-icon svg {
  fill: var(--bg);
} 

body.dark-mode .sun-icon {
  display: none;
}

body.dark-mode .moon-icon {
  display: inline;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.menu-icon {
  display: inline-block;
  width: 28px;
  height: 20px;
  position: relative;
  transition: all 0.4s ease;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.4s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: var(--bg-light);
  padding: 2rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu-panel.active {
  left: 0;
}

.menu-overlay.active {
  display: block;
}

.mobile-menu-list li {
  list-style: none;
  margin: 10px 0;
}

.mobile-menu-links .menu-item,
.menu-widget-area a {
  list-style: none;
  margin: 10px 0;
  color: var(--accent);
}
.sub-menu{
  background-color: var(--bg);
  list-style: none;
  position: absolute;
  opacity: 0;
  padding: 10px;
  border-radius: 0 0 3px 3px;
  transition: all 0.3s ease;
}
.sub-menu li{
  margin: 5px 0;
}
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .nav-container {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .nav-container {
    margin: 0 auto;
  }
  
  .mobile-menu-btn {
    display: none !important;
  }
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
}

.hero-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-title {
  font-family: 'Montserrat';
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.5em 0;
  line-height: 1.2;
  color: #fff;
}

.hero-subtitle {
  font-family: 'Cormorant Italic', serif !important;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 1.5em 0;
  line-height: 1.4;
  color: #fff;
}


/* ========== SERVICES SECTION ========== */
.services {
  padding: 6rem 5%;
  margin: 0 auto;
  background: var(--bg);
  transition: background var(--transition);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light);
}
.service-icon svg{
  fill: var(--accent);
  width: 40px;
}

body.dark-mode .service-card {
  background: #2c3e50;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border-color: #34495e;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  /* animation: bounce 2s infinite; */
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.service-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
  padding: 6rem 5%;
  background: var(--light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  height: 400px;
  max-width: 90vw;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.portfolio-item:hover::before {
  opacity: 0.9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1025px) {
  .portfolio-item .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}
}

.portfolio-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 6rem 5%;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

body.dark-mode .testimonial-card {
  background: #2c3e50;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  text-align: right;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 6rem 5%;
  background: var(--light);
  text-align: center;
}

body.dark-mode .cta-section {
  background: #34495e;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.cta-button , .btn-submit{
  padding: 5px 10px;
  background-color: var(--accent);
  color: #ffffff;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.cta-button:hover , .btn-submit:hover{
  background: var(--bg-light);
  color: var(--accent)!important;
  border: 2px solid var(--accent);
  transform: translateY(-3px);
}

.cta-button-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.cta-button-secondary:hover {
  background: var(--text);
  color: var(--text);
  transform: translateY(-3px);
}

/* ========== BLOG SECTION ========== */
.blog-section {
  padding: 6rem 5%;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid var(--light);
}

body.dark-mode .blog-card {
  background: #2c3e50;
  border-color: #34495e;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-thumbnail {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
  flex-wrap: wrap;
}

.blog-meta a {
  color: var(--text-light);
  text-decoration: none;
}

.blog-meta a:hover {
  text-decoration: underline;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--secondary);
}

.blog-excerpt {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--text);
}

/* ========== FOOTER ========== */
footer {
  background: var(--footer);
  color: var(--footer-text);
  transition: background var(--transition);
}
footer p, footer a, footer li {
  color: var(--footer-text);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 5%;
  background: var(--dark);
  color: var(--light);
  transition: background var(--transition);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--footer);
  color: var(--light);
  transition: background var(--transition);
}

.footer-social {
  padding-top: 20px;
}

.copyright {
  margin-right: 15px;
}

.footer-column {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 10px;
  max-width: 300px;
}

footer li {
  list-style: none;
}

footer a {
  text-decoration: none;
  transition: all var(--transition);
}

.footer-menu {
  display: flex !important;
  flex-direction: column !important;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--secondary);
  transform: translateY(-5px) rotate(360deg);
}

svg {
  fill: var(--accent);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--bg-light);
  transform: translateY(-3px);
}

@media (prefers-color-scheme: dark) {
  .back-to-top {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  }
}

/* ========== SINGLE POST ========== */
.single-post-wrapper {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Montserrat';
  line-height: 1.7;
  color: #1e1e1e;
  background-color: var(--light);
}

@media (prefers-color-scheme: dark) {
  .single-post-wrapper {
    background-color: #121212;
    color: #e0e0e0;
  }
  .single-post-wrapper a {
    color: #4aa3ff;
  }
}

.breadcrumb-wrapper {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #4a90e2;
  text-decoration: none;
}

.breadcrumb .separator {
  margin: 0 5px;
  color: #999;
}

.single-header .single-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

@media (prefers-color-scheme: dark) {
  .single-header .single-title {
    color: var(--light);
  }
}

.post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-meta a {
  color: #4a90e2;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .post-meta {
    color: #aaa;
  }
  .post-meta a {
    color: #50e3c2;
  }
}

.single-content {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content a {
  color: #4a90e2;
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  .single-content a {
    color: #50e3c2;
  }
}

.single-footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 40px;
}

.share-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.share-button:hover {
  background-color: #d0d0d0;
}

@media (prefers-color-scheme: dark) {
  .share-button {
    background-color: #1f1f1f;
    color: #e0e0e0;
  }
  .share-button:hover {
    background-color: #333;
  }
}

/* ========== COMMENTS ========== */
.commentlist {
  list-style: none;
  padding: 0;
}

.comment-body {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-body:first-child {
  border-top: none;
}

.comment-author img {
  border-radius: 50%;
  margin-right: 10px;
}

.comment-author b {
  font-weight: 600;
}

.comment-content {
  margin-top: 10px;
}

.reply a {
  font-size: 0.85rem;
  color: #4a90e2;
  text-decoration: none;
}

.reply a:hover {
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  .comment-body {
    border-color: #333;
  }
  .reply a {
    color: #50e3c2;
  }
}

.comment-respond {
  margin-top: 40px;
}

.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.comment-form input[type="submit"] {
  background-color: #4a90e2;
  color: var(--light);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.comment-form input[type="submit"]:hover {
  background-color: #357ab8;
}

@media (prefers-color-scheme: dark) {
  .comment-form textarea {
    background-color: #1e1e1e;
    border: 1px solid #444;
    color: #e0e0e0;
  }
  .comment-form input[type="submit"] {
    background-color: #50e3c2;
    color: #1e1e1e;
  }
  .comment-form input[type="submit"]:hover {
    background-color: #38bfa0;
  }
}

/* ========== 404 & ERROR PAGES ========== */
.no-results {
  padding: 6rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-results-content {
  max-width: 600px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.no-results-title {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.no-results-text {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-search {
  margin: 3rem 0;
}

.search-title,
.links-title,
.recent-title {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.error-links {
  margin: 3rem 0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--bg-light);
  color: var(--text);
  text-decoration: none;
  border: 2px solid var(--light);
  border-radius: 50px;
  transition: all 0.3s ease;
}

body.dark-mode .quick-link {
  background: #2c3e50;
  border-color: #34495e;
}

.quick-link:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.error-recent-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.recent-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.recent-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.recent-thumbnail {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.recent-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-item:hover .recent-thumbnail img {
  transform: scale(1.1);
}

.recent-content {
  padding: 1rem;
}

.recent-item-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.recent-item-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-item-title a:hover {
  color: var(--accent);
}

.recent-date {
  font-size: 0.85rem;
  color: white;
  opacity: 0.7;
}

/* ========== SEARCH FORM ========== */
.search-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
}

.search-form label {
  flex: 1;
  margin: 0;
}

.search-form input[type="search"] {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--light);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--bg-light);
  color: var(--text-light);
  transition: all 0.3s ease;
}

body.dark-mode .search-form input[type="search"] {
  background: #2c3e50;
  border-color: #34495e;
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.search-form button,
.search-form input[type="submit"] {
  padding: 1rem 2rem;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-form button:hover,
.search-form input[type="submit"]:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 4rem 0 2rem;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0.5rem 1rem;
  background: var(--light);
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.dark-mode .page-numbers {
  background: #2c3e50;
  color: var(--dark);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-numbers.dots {
  background: transparent;
  cursor: default;
}

.page-numbers.dots:hover {
  transform: none;
  box-shadow: none;
}

.page-numbers.prev,
.page-numbers.next {
  padding: 0.5rem 1.5rem;
}

/* ========== WIDGETS ========== */
.widget {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
}

body.dark-mode .widget {
  background: #2c3e50;
}

.widget-title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

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

.widget ul li {
  margin-bottom: 0.8rem;
}

.widget ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget ul li a:before {
  content: '→';
  color: var(--secondary);
  font-weight: bold;
}

.widget ul li a:hover {
  color: var(--secondary);
  padding-left: 0.5rem;
}


/* ========== ELEMENTOR OVERRIDES ========== */
.e-con {
  --padding-inline-start: 0 !important;
  --padding-inline-end: 0 !important;
  --padding-block-start: 0 !important;
  --padding-block-end: 0 !important;
}

.elementor-widget-container {
  border-radius: 20px;
  color: var(--text-color);
}

.elementor-widget-text-editor,
.elementor-widget-heading {
  color: var(--text-color);
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
  color: var(--heading-color);
}

.elementor-button {
  background-color: var(--text);
  color: var(--text-color);
  border-color: var(--text);
  transition: all 0.3s ease;
}

.elementor-button:hover {
  background-color: var(--secondary);
  color: var(--text-color);
}


.elementor-widget a {
  transition: color 0.3s ease;
}



/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .quick-links {
    flex-direction: column;
  }

  .quick-link {
    width: 100%;
    justify-content: center;
  }

  .error-actions {
    flex-direction: column;
  }

  .cta-button-secondary{
    width: 100%;
  }

  .search-form {
    flex-direction: column;
  }

  .recent-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }

  .social-links {
    gap: 1rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* ========== HERO SECTION PARALLAX (FIXED BG) ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-content {
  position: absolute !important;
  z-index: 3 !important;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
  width: 100%;
  opacity: 1 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/* Désactiver le fixed sur mobile pour meilleure performance */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .site-header,
  .site-footer,
  .post-navigation,
  .post-share,
  .related-posts,
  .breadcrumb-wrapper,
  .edit-link,
  .back-to-top,
  .mobile-menu-btn,
  .menu-overlay,
  .mobile-menu-panel {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
.footer-main{
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10% 0 10%;
  justify-content: center;
}
.footer-social h3{
  text-align: center;
}
.faq-section {
  margin: 0 auto;
  background-color: var(--bg);
  padding: 50px 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1em 0;
  color: var(--text);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent); /* couleur accent */
}
.faq-container{
  max-width: 800px;
  margin: 0 auto;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
  margin-top: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.faq-icon,
.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-item.active .faq-icon,
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
/*
========== ARCHIVE PROJETS ==========
*/
.projets-archive {
  padding: 4rem 2rem;
}

.projets-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projets-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.projets-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* Filtrage */
.projets-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--text);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--text);
  color: white;
}

/* Grille */
.projets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.projet-card {
  background: var(--bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.projet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.projet-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.projet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projet-card:hover .projet-img {
  transform: scale(1.1);
}

.projet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projet-card:hover .projet-overlay {
  opacity: 1;
}

.projet-link {
  background: var(--secondary);
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.projet-link:hover {
  background: var(--text);
}

.projet-content {
  padding: 1.5rem;
}

.projet-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.projet-cat {
  font-size: 0.75rem;
  background: var(--light);
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.projet-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.projet-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.projet-title a:hover {
  color: var(--secondary);
}

.projet-excerpt {
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* Pagination */
.projets-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.page-numbers {
  padding: 0.6rem 1rem;
  background: var(--light);
  border: 2px solid var(--light);
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

/*
========== SINGLE PROJET ==========
*/
.single-projet {
  padding: 3rem 2rem;
}

.single-projet-content {
  max-width: 900px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--text);
}

.projet-hero {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
}

.projet-hero img {
  width: 100%;
  height: auto;
}

.projet-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.projet-meta {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 10px;
}

.projet-categories {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.projet-category {
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.projet-date {
  margin: 0;
  color: var(--text-light);
}

.projet-body {
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Navigation */
.projet-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}

.projet-nav-prev:empty,
.projet-nav-next:empty {
  display: none;
}

.nav-link {
  display: block;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--secondary);
  color: white;
}

.nav-label {
  font-size: 0.9rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.nav-title {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

/* Projets similaires */
.related-projets {
  margin-top: 3rem;
}

.related-projets h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-item {
  border-radius: 10px;
  overflow: hidden;
}

.related-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-link:hover img {
  transform: scale(1.1);
}

.related-link h4 {
  margin-top: 1rem;
  color: var(--text);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .projets-header h1 {
    font-size: 1.8rem;
  }

  .projets-grid {
    grid-template-columns: 1fr;
  }

  .projet-navigation {
    grid-template-columns: 1fr;
  }

  .projet-header h1 {
    font-size: 1.8rem;
  }
}


/* Carte */
.contact-map-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--light);
}

.contact-map-section h2 {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 1.5rem;
  }

  .contact-map {
    height: 300px;
  }

  .contact-map iframe {
    height: 300px !important;
  }
}
/* ===============================
   Edenn Widget - Services Columns
   =============================== */
.edenn-services-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.edenn-services-columns .service-item {
  text-align: center;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden; /* pour l'effet bulle */
}

.service-image {
  width: 150px;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
  margin: auto;
  border-radius: 150px !important;
  height: 150px !important;
  object-fit: cover;
}
.service-item:hover .service-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden; /* pour l'effet bulle */
  cursor: pointer;
  background: transparent;
}

.service-icon-wrapper svg {
  width: 36px;
  height: 36px;
  fill: var(--secondary);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

/* Effet bulle d’eau sur la bordure */
.service-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  z-index: 1;
}

.service-icon-wrapper:hover::after {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 0;
}

.service-icon-wrapper:hover svg {
  transform: scale(1.2);
  fill: var(--light);
}

.service-item:hover .service-icon-wrapper {
  background: var(--secondary);
}

.service-item:hover .service-icon-wrapper svg {
  fill: var(--light);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.services .section-title {
  color: #fff !important;
  font-size: 2.8rem;
}
/* --- DARK MODE --- */
body.dark-mode .service-item {
  border-color: rgba(255,255,255,0.1);
}

body.dark-mode .service-title {
  color: var(--dark);
}

body.dark-mode .service-icon-wrapper {
  border-color: var(--accent);
}

body.dark-mode .service-item:hover .service-icon-wrapper {
  background: var(--accent);
}

body.dark-mode .service-icon-wrapper:hover svg {
  fill: var(--light);
}
body.dark-mode .section-title{
  color: #ffffff;
}

/* ===============================
   Edenn Widget - gallery
   =============================== */
/* Gallery Grid */
/* ===================== Gallery Grid ===================== */
.edenn-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.edenn-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.edenn-gallery a img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.edenn-gallery a:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

/* ===================== PhotoSwipe Fullscreen ===================== */
/* PhotoSwipe v5 fournit son propre CSS, mais tu peux ajuster : */
.pswp {
    z-index: 9999 !important;
}

.pswp__img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.pswp__button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.2s;
}

.pswp__button:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Ajustement compteur et caption centrés */
.pswp__counter, 
.pswp__caption__center {
    font-size: 1rem;
    color: white;
    text-align: center;
}

.transparent-bg{
  background: transparent !important;
}
.transparent-bg div{
  background: transparent !important;
}
.site-content{
  margin-top: 106px;
}
@media (max-width: 768px) {
  .site-content{
    margin-top: 120px;
  }
}
.elementor-widget a {
  color: var(--accent);
}
.elementor-widget a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-light);
  transition: width 0,3s ease;
}

.elementor-widget a:hover {
  color: var(--secondary);
}
.linkedin, .facebook{
  border: 1.8px solid var(--accent);
  border-radius: 6px;
}
.linkedin{
  padding: 2px;
}
  footer{
    background-color: rgb(0, 47, 167);
    max-width: 100vw;
  }
  footer a{
    text-decoration: underline;
    transition: all 0.6s;
  }
  footer a:hover{
    text-decoration: none;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.6s;
  }
  @media screen and (max-width: 1023px) {
    .section{
      margin-inline: 0%;
    }
  }
 
  .error404{
    width: 500px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .error-h1{
    font-size: 40px;
    color: rgb(0, 47, 167);
    font-weight: bold;
    margin: 20px auto;
  }
  .error404 p{
    font-size: 20px;
    color: rgb(0, 47, 167);
    font-weight: bold;
    margin: 20px auto;
  }
  .column{
    display: flex;
    flex-direction: column;
  }
  .marge_auto{
    margin: auto;
    max-width: 100%;
  }
  .burger_menu{
    background-color: white;
    width: 270px;
    z-index: 9999;
    position: fixed;
    padding: 50px 10px 0 20px;
  }
  .burger-logo{
    transition: transform 0.25s ease-in-out;
  }
  .burger-logo::after{
    border-bottom: none; 
  }
  .burger-logo:hover{
    transform: scale(1.1);
    transition: transform 0.25s ease-in-out;
  }
  .burger-svg{
    transition:  0.25s ease-in-out;
    border: 2px solid #ffffff;
    border-radius: 12px;
  }
  .burger-svg:hover{
    transform: scale(1.2);
    transition: transform 0.25s ease-in-out;

    border-radius: 12px;
    color: rgb(0, 47, 167);
  }
  .burger-svg:active{
    transform: scale(1);
    transform: border scale(1.1);
    transition: transform 0.25s ease-in-out;
    border: 2px solid rgb(0, 47, 167);
    border-radius: 12px;
  }
  .row{
    display: flex;
    flex-direction: row;
  }
  .center{
    display: flex;
    justify-content: center;
   }
   .between{
    display: flex;
    justify-content: space-between;
    margin: auto;
   }
  header{
    font-family: centurygothic-bold;
  }
  a{
    text-decoration: none;
    font-family: centurygothic;
  }
  p{
    color: #000000;
    font-family: Montserrat;
  }
  .flex .active{
    font-weight: bold;
    text-decoration: none;
    pointer-events: none;
  }
  .fixed{
    position: absolute;
  }
  .fixed img{
    position: fixed;
    height: 65vh;
    min-height: 600px;
    z-index: -1;
    top: 0px;
    right: 0;
    min-width: 100vw;
    object-fit:cover;
  }
  img{
    border-radius: 5px;
  }


@layer utilities {

  /* Hide scrollbar for Chrome, Safari and Opera */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
}

.fade-in {
  -webkit-animation: fade-in 500ms cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: fade-in 500ms cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes fade-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
p{
  text-justify: auto;
}
.max-width-med{
  max-width: 1200px;
  margin: auto;
}
.max-width-1400 details{
  max-width: 1405px;
}

.upLink{
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.noUpLink{
  display: none!important;
}
.flex-around{
  display: flex;
  justify-content: space-around;
}
ul{
  list-style: inside;
}
ul a{
  text-decoration: underline;
}
.shadow_blue{
  box-shadow: 0 0 10px rgb(0, 47, 167);
  }
.margin_top_30{
 margin: 30px auto 30px auto !important;
}
.border-top-color{
  border-top: 3px solid rgb(0, 47, 167);
}
.burger{
  padding-top: 1.5rem;
  border: 2px solid rgb(0, 47, 167);
  border-radius: 12px;
}

.menu-item {
  text-decoration: none;
  padding: 5px;
  transition:  0.35s ease-in-out;
}
.menu-item :hover{
  transition:  0.35s ease-in-out;
}
.menu-item ::after {
  display: block;
  content: "";
  border-bottom: 2px solid rgb(0, 47, 167);
  transform: scalex(0);
  transition: transform 0.55s ease-in-out;
  transform-origin: 100% 50%;
}
.menu-item :hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
.active a::after {
  transition: 2s;
  transform: scaleX(1);
}
.h1_home{
  margin: 42% 0 0 10vw;
  position: absolute;
  color: #ffffff;
  font-size: 40px;
}
header{
  transition: all .6s;
  z-index: 999;
  width: 100vw;
  position: fixed;
  top: 0;
  background-color: #f2f9ff;
  color: #002fa7;
  height: 120px;
  padding: 1rem 2rem;
  max-width: 100%;
}
.scroll .burger{
  color: rgb(0, 47, 167);
  border: none;
  border-radius: 12px;
}
.menu{
  margin-inline: 10px;
  transition: all 0.6s;
  background-color: rgb(255, 255, 255);
  padding: 5px 10px 5px 10px;
  color: rgb(0, 47, 167);
  font-weight: bold;
}
.menu:hover{
  transition: all 0.6s;
  padding: 5px 10px 5px 10px;
  color: rgb(0, 47, 167);
  font-weight: bold;
}
.liberlo{
  transition: all 0.6s;
  background-color: rgb(242, 249, 255);
  border-radius: 20px;
  border: 2px solid #ffffff; 
  padding: 5px 10px 5px 10px;
  color: rgb(0, 47, 167);
  font-weight: bold;
  height: 40px;
  text-decoration: none;
}
.liberlo:hover{
  transition: all 0.6s;
  background-color: rgb(0, 47, 167);
  border-radius: 20px;
  border: 2px solid #ffffff;
  padding: 5px 10px 5px 10px;
  color: #ffffff;
  font-weight: bold;
}
.wp-block-media-text__content{
  width: 50vw;
}
@media screen and (min-width: 767px) {
.item-naturo{
  width: 20vw;
}
.entete{
  max-width: 50vw;
}
.entete-1{
  max-width: 50vw;
}
.entete-2{
  max-width: 50vw;
}
}

@media screen and (min-width: 1024px) {
.entete-1{
  width:60%; 
  background: linear-gradient(90deg, rgba(242, 249, 255, 1) 10%, rgba(242, 249, 255, 0.9) 00%); 
}
.entete{
  width: 40%;
}
.entete figure{
  position: inherit; 
  z-index: -1;
}
.entete-2{
  width: 40%;
  background-color: rgba(242, 249, 255, 0.8); 
}
.entete-2 {
  background: linear-gradient(90deg, rgba(242, 249, 255, 0) 80%, rgba(242, 249, 255,1) 99%); 
}
.entete-2 figure{
  position: inherit; 
  z-index: -1;
}
.methode_right{
  width: 100%;
  background: linear-gradient(90deg, rgba(242, 249, 255, 1) 1%, rgba(242, 249, 255,0.0) 20%); 
}
.methode_right figure{
  position: inherit; 
  z-index: -1;
}
.methode_left{
  width:60%; 
  background: linear-gradient(90deg, rgba(242, 249, 255, 1) 90%, rgba(242, 249, 255, 0.9) 100%); 
}
.max-width-large{
  width: 90%;
  max-width: 1600px;
  margin: auto;
}
}
@media screen and (max-width: 1023px) {
  p{
    max-width: 95%;
    margin: auto;
  }
  .entete-1{
    margin-top: 50px!important;
    width: 100%;
    background-color: rgb(242, 249, 255, 1) ; 
  }
  .max-width-large{
    width: 98%;
    margin: auto;
  }
}
.width80vw{
  width: 80vw;
}
.wp-block-columns-is-layout-flex{
  display: flex;
}

.wp-block-column figure {
  max-width: 100%;
}

.background_opacity_80{
  background-color: rgb(0, 47, 167);
}

.text-decoration-none{
  text-decoration: none;
}
.home-title{
  color: rgb(0, 47, 167);
  font-size: 50px;
}
.wp-block-cover {
  width:100vw;
  margin-inline: auto;
  z-index: -1;
  margin-top: -167px;
  object-fit: cover;
}
.h1{
  position: relative;
  z-index: 9999;
  font-size: 40px;
  justify-content: center;
  display: flex;
  
}

@media screen and (max-width: 1023px) {
  .wp-block-media-text{
    flex-direction: column;
    margin: auto;
  } 
  .wp-block-media-text__content {
    width: 100%;
  }
}
.wp-block-list{
  color: #000000;
}
.wp-block-heading{
  color: #000000;
}
.aligncenter{
  text-align: center;
}
.aligncenter{
  display: flex;
  justify-content: center;
}
.alignfull img{
  width: 100vw;
}

.has-background-background-color{
  background-color: #ffffff;
}
.has-foreground-background-color{
  background-color: #000000;
}
.has-primary-background-color{
  background-color: rgb(0, 47, 167);
}
.has-secondary-background-color{
  background-color: #f2f9ff;
}
.has-tertiary-background-color{
  background-color: #80c2ff;
}
.has-quaternary-background-color{
  background-color: #fdfcfa;
}
.has-quinary-background-color{
  background-color: #ff6565;
}
.has-senary-background-color{
  background-color: #f9a043;
}
.has-border-color{
  border-color: rgb(0, 47, 167);
}
.is-layout-flex{
  display: flex;
}
.has-background-color{
  color: #ffffff;
}
.has-secondary-color{
  color: rgb(0, 0, 0);
}
.has-primary-color{
  color: rgb(0, 47, 167);
}
.has-tertiary-color{
  color:#80c2ff
}
.has-quaternary-color{
  color:#faf8ef
}
.has-quinary-color{
  color: #ff6565;
}
.has-senary-color{
  color: #f9a043;
}

.has-primary-color strong{
  color: rgb(0, 47, 167);
}
.has-background-color strong{
  color: #ffffff;
}
.wp-block-gallery{
  display: flex;
}
.has-small-font-size{
  font-size: 14px;
}
.has-medium-font-size{
  font-size: 16px;
}
.has-large-font-size{
  font-size: 20px;
}
.has-x-large-font-size{
  font-size: 24px;
}
.wp-block-media-text {
  display: flex;

}
.wp-block-media-text__content{
  max-width: 900px;
}
.wp-block-media-text__media img{
  border-radius: 5px;
  width: 100%;
}
.wp-block-gallery-is-layout-flex{
  display: flex;
}

.is-vertically-aligned-center{
  display: flex;
  justify-content: center;
}
.width-90pc{
  width: 90%;
}
.width-80pc{
  width: 80%;
}
.margin-auto{
  margin: auto;
}
.is-content-justification-right{
  display: flex;
  justify-content: right;
}
.is-content-justification-left{
  display: flex;
  justify-content: left;
}
.wp-block-column{
  display: flex;
  flex-direction: column;

}
.is-vertically-aligned-center{
  display: flex;
  justify-content: center;
}
.has-text-align-center{
  text-align: center;
}
.has-text-align-left{
  text-align: left;
}
.has-text-align-right{
  text-align: right;
}

.container_picto .wp-block-column{ 
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto
}

.padding_10{
  padding-inline: 10vw;
}
/*
 * WordPress styles!
 */
 .prose-a\:underline :is(:where(a):not(:where([class~="not-prose"], [class~="not-prose"] *))){
  text-decoration: none!important;
 }


.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
	text-decoration: underline;
	text-decoration-style: solid;
}

/*
 * Search and File Block button styles.
 * Necessary until the following issues are resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/36444
 * https://github.com/WordPress/gutenberg/issues/27760
 */

.wp-block-search__button,
.wp-block-file .wp-block-file__button {
	background-color: var(--wp--preset--color--primary);
	border-radius: 0;
	border: none;
	color: var(--wp--preset--color--background);
	font-size: var(--wp--preset--font-size--medium);
	padding: calc(.667em + 2px) calc(1.333em + 2px);
}

/*
 * Button hover styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

.wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
	opacity: 0.90;
}

/*
 * Alignment styles.
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Twenty Twenty-Two. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */

.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.is-root-container .wp-block[data-align="full"] > .wp-block-cover {
	padding-left: var(--wp--custom--spacing--outer);
	padding-right: var(--wp--custom--spacing--outer);
}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align="full"] {
	margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	width: unset;
}
@media screen and (max-width: 1023px) {
/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: inherit;
}
}
@media screen and (min-width: 1024px) {
/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
	margin-left: 5% !important;
	margin-right: 5% !important;
	width: inherit;
}
}
/*
 * Responsive menu container padding.
 * This ensures the responsive container inherits the same
 * spacing defined above. This behavior may be built into
 * the Block Editor in the future.
 */

.wp-block-navigation__responsive-container.is-menu-open {
	padding-top: var(--wp--custom--spacing--outer);
	padding-bottom: var(--wp--custom--spacing--large);
	padding-right: var(--wp--custom--spacing--outer);
	padding-left: var(--wp--custom--spacing--outer);
}

/*
 * Improves spacing for the legacy Post Comments block.
 * https://core.trac.wordpress.org/ticket/57560
 */

.wp-block-post-comments ol.commentlist ul.children {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.wp-block-post-comments ol.commentlist li.comment:not(:last-child) {
	margin-bottom: 1rem;
}
.credit{
  display: flex;
  justify-content: space-between;
  width: 90vw;
  max-width: 800px;
  margin: auto;
}
.offres{
  width: 90vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  max-width: 1300px;
}
.offres_title{
  height: 120px;
  justify-content: center;
  display: flex;
}
.texte_offre{
  min-height: 250px;
}
.shadow_ext{
  box-shadow: 0 0px 7px 0px rgb(0, 47, 167);
}
.cta_button{
  transition: all 0.6s;
  width: 250px;
  margin: 20px auto;
  border-radius: 20px;
  background-color: #f2f9ff;
  padding: 8px 10px 5px 10px;
  color: rgb(0, 47, 167);
  font-weight: bold;
  height: 40px;
  text-align: center;
}
.cta_button:hover{
  transition: all 0.6s;
  background-color: rgb(0, 47, 167);
  border-radius: 20px;
  padding: 8px 10px 5px 10px;
  color: #ffffff;
}
.cta_button a{
  text-decoration: none;
}
.cta_button a:hover{
  color: #ffffff;
}

details[open]:first-of-type summary::marker {
  content: "- ";
}

details:last-of-type summary {
  list-style: none;
  &::after {
    content: "+";
    color: white;
    background-color: rgb(0, 47, 167);
    border-radius: 1em;
    font-weight: bold;
    padding: 0 5px;
    margin-inline-start: 5px;
  }
  [open] &::after {
    content: "-";
  }
}
details:last-of-type summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 600px) {
  .image-entete img{
    margin-top: 80px;
  }
}
@media screen and (max-width: 900px) {
  .custom-logo-link{
    width: 160px !important;
    height: auto !important;
    margin-right: 20vw;
  }
  .credit{
    display: inline;
    text-align: center;
    font-size: 14px;
  }
  .credit p{
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 901px) {
  .custom-logo-link{
    width: 290px !important;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-columns{
    display: flex;
    flex-direction: column;
    justify-content: center;

  }
  .circle-img .wp-block-columns{
    margin: 1px!important;
  }

}
@media screen and (max-width: 1023px) {
  .wp-block-column{
    display: flex;
    flex-direction: column;

  }
  .main_footer {
    display: flex;
    justify-content: center;
  }
  .main_footer img{
    width: 100vw !important;
    max-width: 100vw !important;
  }

}
@media screen and (min-width: 1023px) {
  .main_footer img{
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .wp-block-media-text{
    display: flex;
    flex-direction: row;
  }
}
.credit{
  padding-bottom: 5px;
}
.credit a{
  transition: all 0.6s;
  border-radius: 20px;
  border: 2px solid rgb(0, 47, 167);
  padding: 5px 10px 5px 10px;
  color: #ffffff;
}
.credit a:hover{
  transition: all 0.6s;
  background-color: rgb(0, 47, 167);
  border-radius: 20px;
  border: 2px solid #ffffff;
  padding: 5px 10px 5px 10px;
  color: #ffffff;
}
input:focus{
  box-shadow: 0 0px 4px 0px rgb(0, 47, 167);
  caret-color: rgb(0, 47, 167);
  outline: none;
}
textarea:focus{
  box-shadow: 0 0px 4px 0px rgb(0, 47, 167);
  caret-color: rgb(0, 47, 167) ;
  outline: none;
}
a:hover{
  color: rgb(0, 47, 167);
}
.Tool {
display: flex;
margin: 20px auto;
border: 3px solid rgb(0, 47, 167);
width:120px;
height: 120px;
border-radius: 100%;
transform: border 3px solid rgb(0, 47, 167);
transition: tranform 1s ease-in-out;
&:before,
&:after {
    position: absolute;
    content: "";
    display: block;
    border: 3px solid rgb(0, 47, 167);
    border-radius: 100%;
    width: 120px;
    height: 120px;
    opacity: 0;
}
&:after {
    animation-delay: 0.5s;
}
}
.Tool img{
  margin-top:17px;
}

.Tool:hover {
  border: 3px solid rgba(0, 47, 167, 0.5); 
  &:before,
  &:after {
      position: absolute;
      content: "";
      display: block;
      border: 4px solid rgba(0, 47, 167, 0.5);
      border-radius: 100%;
      width: 120px;
      height: 120px;
      animation: ripple ease-out 1.2s;
      opacity: 0;
  }

}
.items a{
  text-decoration: underline 
}

@keyframes ripple {
  from {
      opacity: 1;
      transform: scalex(1);
  }
  to {
      opacity: 0;
      transform: scale(1.5);
  }
}
@keyframes ripple-2 {
  from {
      opacity: 1;
      transform: scale(1);
  }
  to {
      opacity: 0;
      transform: scale(1.5);
  }
}
@keyframes ripple-3 {
  from {
      opacity: 0;
      transform: scale(1);
  }
  to {
      opacity: 1;
      border: 3px solid rgb(0, 47, 167);
      transform: scale(1);
  }
}
.boite_a_outils{
  background-image: url('https://admin.olatua.life/wp-content/uploads/2025/01/Olatua-Cover-V1-Boite_outils.webp');
  background-size: auto 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.boite_a_outils_fond{
  min-height: auto;
  background-color: rgba(242, 249, 255, 0.9);
}
.outils-naturopathie-p p{ 
  padding: 30px;
 }
  @media (min-width: 1201px) {
    .outils-naturopathie{
      display: flex;
      flex-direction: row;
     
      }
      .texte{
        width: 500px;
      }
        .circle-container {
          min-width: 500px;
           /* background-color: #ffffff; */
          position: relative;
          width: 50%;
          height: 400px;
          padding: 5.8em;
          /*2.8em = 2em*1.4 (2em = half the width of a link with img, 1.4 = sqrt(2))*/
          padding: 3.75em auto ;
        }
        .circle-container div{
          position: absolute;
          top: 25%;
          left: 22.5%;
          width: 100%;
          height: 200px;
          margin: auto;
        }
        .circle-container center{
          display: block;
          position: absolute;
          top: 20em; left: 23em;
        }
        
        .circle-container img { display: block; width: 100%; }
        .deg0 { width: 90px;height: 90px;transform: rotate(120deg) translate(10em) rotate(-120deg); } /* 12em = half the width of the wrapper */
        .deg40 { width: 90px;height: 90px;transform: rotate(160deg) translate(10em) rotate(-160deg); }
        .deg80 { width: 90px;height: 90px;transform: rotate(200deg) translate(10em) rotate(-200deg); }
        .deg120 { width: 90px;height: 180px;transform: rotate(240deg) translate(10em) rotate(-240deg); }
        
        .deg180 { width: 90px; height: 90px;  transform: rotate(120deg) translate(-10em) rotate(-120deg); }
        .deg220 { width: 90px;height: 90px;transform: rotate(340deg) translate(10em) rotate(-340deg); }
        .deg260 {width: 90px;height: 90px; transform: rotate(380deg) translate(10em) rotate(-380deg); }
        .deg300 { width: 90px;height: 90px;transform: rotate(420deg) translate(10em) rotate(-420deg); }
        
        .circle-img{
          transition: all 0.6s;
          display: flex;
          justify-content: center;
          top: -55px;
          position: relative;
          width: 200px;
          right: 52px;
        }
        .circle-container img{
          transition: all 0.6s;
          border-radius: 100%;
        }
        .outils-img{
          display: flex;
          flex-direction: column;
          text-align: center;
          position: absolute;
          flex-shrink: 0;
        }
    
        .outils-img figcaption {
          text-align: left;
          font-size: 22px;
          left: 80px;
          font-weight: 600;
          color: rgb(0, 47, 167);
          height: 0;
          width: 178px;
          padding-left: 10px;
          z-index: -1;
          top: 0em;
          margin: auto;
          overflow: hidden;
         
        }
        .outils-img-2 figcaption {
          text-align: start;
          font-size: 22px;
          right: 80px;
          font-weight: 600;
          color: rgb(0, 47, 167);
          height: 0;
          width: 178px;
          padding-left: 10px;
          z-index: -1;
          top: 0em;
          margin: auto;
          overflow: hidden;
          opacity: 0;
        }
        .outils-img:hover figcaption {
          left: 90px;
          position: absolute;
          transition: all 1s;
          width: 180px;
          height: auto;
          z-index: 9999;
          opacity: 1;
          background-color: #ffffff;
          flex-shrink: 0;
          border-radius: 20px;
        }
        .outils-img-2{
          display: flex;
          flex-direction: column;
          text-align: center;
          height: 90px;
          width: 90px;
          position: absolute;
          flex-shrink: 0;
        }
        .outils-img-2 img{
          object-fit: cover;
        }
        .outils-img-2:hover figcaption {
          right: 90px;
          position: absolute;
          transition: all 1s;
          width: 190px;
          height: auto;
          z-index: 9999;
          opacity: 1;
          background-color: #ffffff;
          flex-shrink: 0;
          border-radius: 20px;
        }
        
        .outils-naturopathie-p{
          width: 30%;
          left: 0;
         }
    }

    @media (min-width: 768px) and (max-width: 1200px){
       .outils-naturopathie{
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    }
    .texte{
      width: 90%;
      margin: auto;
    }
      .circle-container {
        min-width: 500px;
         /* background-color: #ffffff; */
        position: relative;
        width: 50%;
        height: 400px;
        padding: 5.8em;
        /*2.8em = 2em*1.4 (2em = half the width of a link with img, 1.4 = sqrt(2))*/
        padding: 3.75em auto ;
        margin: auto;
      }
      .circle-container div{
        position: absolute;
        top: 25%;
        left: 22.5%;
        width: 100%;
        height: 200px;
        margin: auto;
      }
      .circle-container center{
        display: block;
        position: absolute;
        top: 20em; left: 23em;
      }
      
      .circle-container img { display: block; width: 100%; }
      .deg0 { width: 90px;height: 90px;transform: rotate(120deg) translate(10em) rotate(-120deg); } /* 12em = half the width of the wrapper */
      .deg40 { width: 90px;height: 90px;transform: rotate(160deg) translate(10em) rotate(-160deg); }
      .deg80 { width: 90px;height: 90px;transform: rotate(200deg) translate(10em) rotate(-200deg); }
      .deg120 { width: 90px;height: 180px;transform: rotate(240deg) translate(10em) rotate(-240deg); }
      
      .deg180 { width: 90px; height: 90px;  transform: rotate(120deg) translate(-10em) rotate(-120deg); }
      .deg220 { width: 90px;height: 90px;transform: rotate(340deg) translate(10em) rotate(-340deg); }
      .deg260 {width: 90px;height: 90px; transform: rotate(380deg) translate(10em) rotate(-380deg); }
      .deg300 { width: 90px;height: 90px;transform: rotate(420deg) translate(10em) rotate(-420deg); }
      
      .circle-img{
        transition: all 0.6s;
        display: flex;
        justify-content: center;
        top: -55px;
        position: relative;
        width: 200px;
        right: 52px;

      }
      .circle-img img {
        flex-shrink: 0;
      }
      .circle-container img{
        transition: all 0.6s;
        border-radius: 100%;
      }
      .outils-img{
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 90px;
        width: 90px;
        position: absolute;
        flex-shrink: 0;
      }
  
      .outils-img figcaption {
        text-align: left;
        font-size: 22px;
        left: 80px;
        font-weight: 600;
        color: rgb(0, 47, 167);
        height: auto;
        width: 178px;
        padding-left: 10px;
        z-index: -1;
        top: 0em;
        margin: auto;
        overflow: hidden;
        opacity: 0;
      }
      .outils-img-2 figcaption {
        text-align: start;
        font-size: 22px;
        right: 80px;
        font-weight: 600;
        color: rgb(0, 47, 167);
        height: auto;
        width: 178px;
        padding-left: 10px;
        z-index: -1;
        top: 0em;
        margin: auto;
        overflow: hidden;
        opacity: 0;
      }
      .outils-img:hover figcaption {
        left: 90px;
        position: absolute;
        transition: all 1s;
        width: 180px;
        height: auto;
        z-index: 9999;
        opacity: 1;
        background-color: #ffffff;
        flex-shrink: 0;
        border-radius: 20px;
      }
      .outils-img-2{
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 90px;
        width: 90px;
        position: absolute;
        flex-shrink: 0;
      }
      .outils-img-2 img{
        object-fit: cover;
      }
      .outils-img-2:hover figcaption {
        right: 90px;
        position: absolute;
        transition: all 1s;
        width: 180px;
        height: auto;
        z-index: 9999;
        opacity: 1;
        background-color: #ffffff;
        flex-shrink: 0;
        border-radius: 20px;
      }
      
      .outils-naturopathie-p{
        width: 30%;
        left: 0;
       }
     }
 @media screen and (max-width: 767px) {
      .circle-container {
         /* background-color: #ffffff;*/
        position: relative;
        width:100vw;
        height: auto;
        padding: 0;
        /*2.8em = 2em*1.4 (2em = half the width of a link with img, 1.4 = sqrt(2))*/
        border: solid 0px rgb(0, 47, 167);
        border-radius: 50%;
        padding: 3.75em auto ;
        margin: 50px auto;
      }
      .circle-container_block{
        margin: 5px;
      }
      .circle-container figure{
        position: relative;
        margin-top: 10px; 
      }
      .circle-container center{
        display: block;
        position: relative;
        top: auto; left: 10px;
      
      }
      .circle-container img { display: block; width: 100%; }
      .deg0 {transform: rotate(0) translate(0) rotate(-0); } /* 12em = half the width of the wrapper */
      .deg40 { transform: rotate(0) translate(0) rotate(-0); }
      .deg80 { transform: rotate(0) translate(0) rotate(-0); }
      .deg120 { transform: rotate(0) translate(0) rotate(-0); }
      
      .deg180 {transform: rotate(0) translate(-0) rotate(-0); }
      .deg220 {transform: rotate(0) translate(0) rotate(-0); }
      .deg260 {transform: rotate(0) translate(0) rotate(-0); }
      .deg300 {transform: rotate(0) translate(0) rotate(-0); }
      
      .circle-img{
        transition: all 0.6s;
        top: 0;
        left: auto!important;
      }
      .circle-img .wp-block-columns{
        margin: 1px!important;
      }
      .circle-container img{
        transition: all 0.6s;
        border-radius: 100%;
      }
      .outils-img {
        display: flex!important;
        background-color: #ffffff;
        border-radius: 50px;
        margin-inline: 10px;
      }
      .outils-img-2 {
        display: flex!important;
        background-color: #ffffff;
        border-radius: 50px;
        margin-inline: 10px;
      }
      .outils-img img{
        border: 1px solid #ffffff;
        transition: all 0.6s;
        width: 100px;
        height: 100px;
      }
      
      .outils-img figcaption {
        text-align: left;
        transition: all 0.6s;
        transition: all 1s;
        font-size: 22px;
        right: 0;
        font-weight: 600;
        color: rgb(0, 47, 167);
        height: auto;
        width: 200px;
        padding-left: 10px;
        z-index: -1;
        top: 0em;
        margin: auto;
        overflow: hidden;
        opacity: 0;
      }
      .outils-img-2 figcaption {
        vertical-align: middle;
        text-align: left;
        transition: all 1s;
        font-size: 22px;
        right: 0;
        font-weight: 600;
        color: rgb(0, 47, 167);
        height: auto;
        width: 200px;
        padding-left: 10px;
        z-index: -1;
        top: 0em;
        margin: auto;
        overflow: hidden;
        opacity: 0;
      }
      .outils-img figcaption {
        border-radius: 20px;
        left: 0%;
        text-align: center;
        transition: all 1s;
        width: 200px;
        height: auto;
        z-index: 9999;
        opacity: 1;
        background-color: #ffffff;
      }
      .outils-img-2 img{
        transition: all 0.6s;
        width: 100px;
        height: 100px;
      }
      .outils-img-2 figcaption {
        border-radius: 20px;
        border-radius: 20px;
        text-align: center;
        transition: all 1s;
        width: 200px;
        height: auto;
        z-index: 9999;
        opacity: 1;
        background-color: #ffffff;
      }
      .figcaption {
        margin: 10px auto ;
        
      }
      .outils-naturopathie-p{
        width: 90%;
        margin: auto;
       }
       .outils-naturopathie-p p{
        margin: 10px!important;
       }
       .entete-1 p{
        margin-left: 10px!important;
        margin-right: 10px!important;
       }
      .footer-div{
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        text-align: start;
      }
      .container_picto{
        padding-right: 0!important;
        flex-direction: column-reverse;
      }
  }

  .methode h2{
  text-align: center;
  }
  .methode .wp-block-column{
    justify-content: center;
  }
  @media screen and (min-width: 1023px){
    .methode_left{
      padding-left: 20px;
    }
  .methode .wp-block-column{
    width: 90%;  
    justify-content: center;
  }
}
.wp-block-media-text__content{
  max-width: 900px;
}
@media screen and (max-width: 950px) {
  .wp-block-media-text {
    display: flex;
    flex-direction: column;
 } 
 .wp-block-media-text__content{
  padding: 0;
}
.wp-block-media-text__media{
  margin: auto;
}
}
@media screen and (min-width: 950px) {
.wp-block-media-text {
  justify-content: space-between;
}
.wp-block-media-text {
  display: grid;
  grid-template-columns: auto 50%;
}
.wp-block-media-text>.wp-block-media-text__content{
  padding: 2em 5px;
}
.wp-block-media-text>.wp-block-media-text__media>img{
  width: 100%;
}
.wp-block-media-text {
  margin: 30px auto;
}
.wp-block-media-text__content{
  padding: 0 50px 0 0;
}
}
@media screen and (max-width: 767px){

  .center{
    padding-inline: 0%;
  }
}
@media (min-width: 768px) and (max-width: 1023px){
  .methode .wp-block-column{
    width: 90%;  
  }
  .center{
    padding-inline: 3%;
  }
  .center h2{
    text-align: center;
  }
}
  .methode .wp-block-image{
    display: flex;
    justify-content: center;
  }
  .methode_img{
    margin-top: 10px;
  }
  .methode_img img{
    opacity:0
  }
  .methode_img:hover img{
    opacity:1;
  }
  .methode_img figcaption{
    background-color: #f89f42;
    border-radius: 100%;
    color: rgb(0, 47, 167);
    font-size: 20px;
    position: relative;
    top: 0px;
    right: 80px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    flex-shrink: 0;
  }
  .methode_img:hover figcaption{
    border: 4px solid rgba(0, 47, 167, 0.5);
    animation: ripple ease-out 0.8s;
    opacity: 0;
  }
  .methode_img:hover figcaption{
    opacity:0
  }
  .methode_texte{
    width:80%;
  }

  @media screen and (min-width: 1023px){
  .div_buttons_items{
    height: 100%;
  }
  .buttons_items{
    width: 300px;
    position: sticky;
    height: 20px;
    top: 120px;
  }
  .buttons_items-1{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .buttons_items-2{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .buttons_items-3{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .buttons_items-4{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .items{
    margin: auto;
    max-width: 1600px;
  }
  .sticky{
    position: sticky;
  }
  .scrolling{
    scroll-margin-block: 120px;
  }
  .scrolling-mutuelle{
    scroll-margin-block: 100px;
  }
  .button_icon-1{
   display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  .div_buttons_items{
    height: 100%;
  }
  .buttons_items{
    width: 95vw;
    position: sticky;
    height: 70px;
    padding-top: 10px;
    top: 75px;
    flex-direction: row;
    justify-content: space-around;
    margin: auto;
    font-size: 14px;
  }
  .buttons_items-1{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .buttons_items-2{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .buttons_items-3{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .buttons_items-4{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
  }
  .items{
    margin: auto;
    max-width: 1600px;
    flex-direction: column;
  }
  .sticky{
    position: sticky;
  }
  .scrolling{
    scroll-margin-block: 190px;
  }
  .scrolling-mutuelle{
    scroll-margin-block: 100px;
  }
  .button_icon-1{
    display: none;
   }
}
@media screen and (max-width: 767px){
  .div_buttons_items{
    height: 100%;
  }
  .buttons_items{
    width: 95vw;
    position: sticky;
    height: 70px;
    padding-top: 20px;
    top: 80px;
    flex-direction: row;
    margin: auto;
    margin-left: -10px;
  }
  .buttons_items-1{
    display: none;
  }
  .buttons_items-2{
    display: none;
  }
  .buttons_items-3{
    display: none;
  }
  .buttons_items-4{
    display: none;
  }
  .items{
    margin: auto;
    max-width: 1600px;
    flex-direction: column;
  }

  .sticky{
    position: sticky;
  }
  .scrolling{
    scroll-margin-block: 170px;
  }
  .scrolling-mutuelle{
    scroll-margin-block: 90px;
  }
  .button_icon-1{
    position: sticky;
    height: 50px;
    margin-bottom: 5px;
    width: 25vw;
  }
  .offre{
    border: 1px solid rgb(0, 47, 167);
    margin-bottom: 30px;
    border-radius: 5px;
  }
}
.offres ul{
  height: 146px;
}

.cookies{
  position: fixed;
  bottom: 0;
  width: 100vw;
  filter: blur(4px);
}
.cookie_img{
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  height:40px;
  width:auto;
  border-radius: 5px;
}
.cookie_banner_container{
  width: 100vw;
  display: flex;
  position: fixed;
  bottom: 10px;
  z-index: 1;
}
.cookie_banner{
  filter: blur(0px);
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  margin-inline: 2%;
  border: rgb(0, 47, 167) 2px solid;
}
.cookie_banner a{
  text-decoration: underline;
}
.cookie_banner p{
  margin: 15px 10px;
  text-align: start;
  color: rgb(0, 47, 167);
  font-size: 14px;
}
.cookie_button{
  align-items: center;
  background-color: rgb(0, 47, 167);
  margin-left: auto;
  margin-right: auto;
  border: none;
  width: 100px;
  height: 23px;
  padding: 5px;
  display: flex;
  justify-content: center;
  border-radius: 5px; 
  color: rgb(255, 255, 255);
  border:rgb(0, 47, 167) 1px solid;
}
.cookie_button:hover{
  background-color: rgb(255, 255, 255);
  color: rgb(0, 47, 167);
  border: rgb(0, 47, 167) 1px solid;
}
.cookie_button_refused{
  align-items: center;
  background-color: rgb(255, 255, 255);
  margin-left: auto;
  margin-right: auto;
  border: none;
  width: 100px;
  height: 23px;
  padding: 5px;
  display: flex;
  font-size: 12px;
  justify-content: center;
  border-radius: 5px; 
  color: rgb(0, 47, 167);
  border:rgb(0, 47, 167) 1px solid;
}
.cookie_button_refused:hover{
  background-color: rgb(0, 47, 167);
  color: rgb(255, 255, 255);
  border:rgb(0, 47, 167) 1px solid;
}
@media screen and (max-width: 1024px) {
  .cookie_button{
    margin-top: 10px; 
  }
  .cookie_button_refused{
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 900px) {
  .cookie_banner{
    margin-left: 30px;
    margin-bottom: 30px;
    height: 260px;
    width: 280px;
  }
  .cookie_button{
    height: 30px;
    margin: 10px;
    width: auto;
    color: rgb(255, 255, 255);
    font-size: 18px;
  }
  .cookie_button_refused{

    margin: 10px;
    height: 30px;
    width: auto;
    color: rgb(0, 47, 167);
    font-size: 14px;
  }
}
.liste-mutuelles{
  margin: auto;
}
.liste-mutuelles a{
  transition: all 0.6s;
 background-color: rgb(0, 47, 167);
 border: 2px  solid rgb(0, 47, 167);
 color: rgb(255, 255, 255);
 width: 30px;
 height: 30px;
 border-radius: 5px;
 margin: 10px;
 display: inline-block;
 text-align: center;
}
.liste-mutuelles a:hover{
  transition: all 0.6s;
  background-color: rgb(255, 255, 255);
  border: 2px  solid rgb(0, 47, 167);
  color: rgb(0, 47, 167);
  border-radius: 5px;
 }

 .summary summary{
  margin-top: 7px;
  margin-bottom: 7px;
  width: 60px;
  justify-content: space-between;
  display: flex;
 }
 .summary p{
  margin: 20px;
 }
 .summary p a{
  transition: all 0.6s;
  color: rgb(0, 47, 167);
 }
 .summary p a:hover{
  transition: all 0.6s;
  text-decoration: underline;
 }
 @media screen and (max-width: 767px) {
  .scrolling-mutuelle  p{
    max-width: 100%;
  }
 }
 .cta_button_reflexo{

 }
 .cta_button_reflexo{
  transition: all 0.6s;
  width: 250px;
  margin: 20px auto;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 8px 10px 5px 10px;
  color: rgb(0, 47, 167);
  font-weight: bold;
  height: 40px;
  text-align: center;
}
.cta_button_reflexo:hover{
  transition: all 0.6s;
  background-color: rgb(0, 47, 167);
  border-radius: 20px;
  padding: 8px 10px 5px 10px;
  color: #ffffff;
}
.cta_button_reflexo a{
  text-decoration: none;
}
.cta_button_reflexo a:hover{
  color: #ffffff;
}
.social{
  justify-content: space-around;
  max-width: 80%;
}
.social a:hover{
  text-decoration: #002fa7;
  background-color: none;
  padding: 0;
  border-radius: 0;
  transition: all .6s;
  height: 500px!important;
  scale: 1.1;
}
.social a img{
  transition: all .4s;
}
.social a:hover img{
  scale: 1.1;
  transition: all .4s;
}

.day-card{
  background-color: var(--accent-blue);
  border-radius: 5px;
}
.day-past{
  background-color: var(--bg-light);
  border: 1px solid var(--accent-blue);
}
input, textarea{
  border: 2px solid var(--border)!important;
}