.welcome {
  position: relative;
  height: 100vh;
  max-height: 1200px;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.welcome-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.welcome-content {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  margin: 100px 16px 0;
}
.welcome-content .subtitle {
  max-width: 720px;
}
.welcome-content .btn-white {
  opacity: 0;
  transform: translate(0, 40px);
}

.welcome-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, transparent 50%);
  opacity: 0;
}

@media (max-width: 768px) {
  .welcome-content {
    margin: 74px 16px 0;
  }
  .welcome-content .h1 br {
    display: none;
  }
  .welcome-img {
    object-position: 56% 100%;
  }
}
.four {
  position: relative;
  z-index: 2;
  background: white;
}

.four-blocks {
  display: flex;
  flex-wrap: wrap;
  row-gap: 64px;
  column-gap: 8px;
}

.four-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc((100% - 8px) / 2);
}

.four-img-info {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #1D1D1D;
}

.four-img {
  display: flex;
  aspect-ratio: 652/502;
  overflow: hidden;
}
.four-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.6s;
}
.four-img:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cl-container {
    padding: 50px 16px;
  }
  .four-blocks {
    gap: 24px;
  }
  .four-block {
    width: 100%;
  }
  .four-img-info {
    gap: 12px;
  }
}
.digits-blocks {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.digit-block {
  width: calc((100% - 24px) / 4);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.digit {
  font-size: 44px;
  line-height: 1.2;
  font-family: Medium;
}

@media (max-width: 1200px) {
  .digits-blocks {
    row-gap: 24px;
    margin-top: 32px;
  }
  .digit-block {
    width: calc((100% - 8px) / 2);
  }
}
@media (max-width: 768px) {
  .digit-block {
    width: 100%;
  }
}
.slider-swiper {
  overflow: unset;
  margin-top: 48px;
}

.slider-img {
  aspect-ratio: 648/465;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.slider-slide-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.slider-slide-link:hover .subtitle {
  text-decoration: underline;
}

.slider-slide-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.slider-nav {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  background-color: white;
  top: 44%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease 0.3s;
}
.slider-nav svg {
  width: 24px;
  height: 24px;
  fill: #1D1D1D;
  transition: ease 0.3s;
}
.slider-nav:hover {
  background-color: #1D1D1D;
}
.slider-nav:hover svg {
  fill: white;
}

.slider-prev {
  left: -28px;
}
.slider-prev svg {
  transform: rotate(180deg);
}

.slider-next {
  right: -28px;
}

.slider-swiper .swiper-button-disabled {
  opacity: 0;
  cursor: default;
}

@media (max-width: 768px) {
  .slider-swiper {
    margin-top: 32px;
  }
  .slider-nav {
    display: none;
  }
}
.links {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.links-items {
  display: flex;
  column-gap: 48px;
  flex-wrap: wrap;
  max-width: 870px;
  width: 100%;
}

.link-item {
  width: calc((100% - 48px) / 2);
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}

@media (max-width: 1200px) {
  .links-items {
    flex-direction: column;
    max-width: 400px;
  }
  .link-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .links {
    flex-direction: column;
    gap: 24px;
  }
}
.wide-swiper {
  overflow: unset;
  margin-top: 48px;
}

.wide-img {
  aspect-ratio: 648/465;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.wide-img-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.wide-slide-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  align-items: flex-start;
}
.wide-slide-info .subtitle {
  width: 100%;
}

.wide-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wide-row {
  display: flex;
  gap: 8px;
}

.slider-nav {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  background-color: white;
  top: 44%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease 0.3s;
}
.slider-nav svg {
  width: 24px;
  height: 24px;
  fill: #1D1D1D;
  transition: ease 0.3s;
}
.slider-nav:hover {
  background-color: #1D1D1D;
}
.slider-nav:hover svg {
  fill: white;
}

.wide-prev {
  left: -28px;
}
.wide-prev svg {
  transform: rotate(180deg);
}

.wide-next {
  right: -28px;
}

.wide-swiper .swiper-button-disabled {
  opacity: 0;
  cursor: default;
}

@media (max-width: 768px) {
  .wide-swiper {
    margin-top: 32px;
  }
  .slider-nav {
    display: none;
  }
}
.trio-items {
  display: flex;
  gap: 16px;
}

.trio-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}
.trio-item .link {
  margin-top: 24px;
}

.trio-img {
  display: flex;
  aspect-ratio: 426/300;
  width: 100%;
  overflow: hidden;
}
.trio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trio-info-row {
  display: flex;
  gap: 8px;
  margin: 4px 0;
  flex-wrap: wrap;
}

.trio-info {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.trio-place-name {
  display: block;
  margin: 0 0 12px;
  font-family: Medium;
  color: #1D1D1D;
}
.trio-place-name:visited {
  color: #1D1D1D;
}

.trio-phone {
  display: block;
  margin: 4px 0;
  font-size: 18px;
  line-height: 1.2;
}

.trio-btns {
  margin: 48px 0 0 auto;
}

@media (max-width: 768px) {
  .trio-items {
    flex-direction: column;
    gap: 24px;
  }
  .trio-item {
    width: 100%;
  }
  .trio-item .link {
    margin-top: 8px;
  }
  .trio-info {
    gap: 8px;
  }
  .trio-info-row {
    gap: 4px;
    flex-direction: column;
  }
  .trio-phone {
    font-size: 16px;
  }
  .trio-btns {
    margin-top: 32px;
  }
}
.faq {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding: 100px 32px 100px;
}

.faq-body {
  max-width: 880px;
  width: 100%;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}
.faq-item.active .faq-question svg {
  transform: rotate(90deg);
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 8px 32px 8px 0;
}
.faq-item .faq-question {
  padding: 9px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.faq-item .faq-question svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
  transition: ease 0.3s;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 32px 0 0;
}

.faq-description {
  margin-bottom: 48px;
}

@media (max-width: 1200px) {
  .faq {
    flex-direction: column;
    gap: 32px;
    padding: 50px 16px;
  }
  .faq-description {
    margin-bottom: 32px;
  }
}
.related-posts-top {
  align-items: center;
}

.related-posts-body {
  margin-top: 48px;
  display: flex;
  gap: 8px;
}

.related-post {
  width: calc((100% - 8px) / 2);
}

.related-post-image {
  position: relative;
  display: flex;
  aspect-ratio: 650/500;
  overflow: hidden;
}

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

.related-post-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

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

.related-post-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-post-link {
  position: relative;
  color: #1D1D1D;
  width: fit-content;
}
.related-post-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #1D1D1D;
  left: 50%;
  bottom: 1px;
  transition: ease 0.3s;
}
.related-post-link:visited {
  color: #1D1D1D;
}
.related-post-link:hover::after {
  width: 100%;
  left: 0;
}

.related-post-description {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.related-post-tags {
  display: flex;
  gap: 8px;
}

@media (max-width: 768px) {
  .related-posts-top {
    flex-direction: row;
  }
  .related-posts-body {
    flex-direction: column;
    margin-top: 32px;
    gap: 32px;
  }
  .related-post {
    width: 100%;
  }
}
.cta {
  position: relative;
  height: 800px;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-accueil footer.cl-new-footer {
  margin-top: 0;
}

.cta-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.cta-content .subtitle {
  max-width: 560px;
  margin: 24px 0 32px;
}

.cta-content .cl-contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 640px;
}

@media (max-width: 768px) {
  .cta {
    height: 640px;
  }
  .cta-content {
    margin: 0 16px;
  }
  .cta-content .h3 br {
    display: none;
  }
  .cta-content .subtitle br {
    display: none;
  }
}