/*
Theme Name:         Sage Starter Theme
Theme URI:          https://roots.io/sage/
Description:        Sage is a WordPress starter theme.
Version:            11.x-dev
Author:             Roots
Author URI:         https://roots.io/
Text Domain:        sage
License:            MIT License
License URI:        https://opensource.org/licenses/MIT
Requires PHP:       8.2
Requires at least:  6.6
*/

@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Passion+One:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=Outfit:wght@100..900&family=Passion+One:wght@400;700;900&display=swap");

:root {
  --outfit: "Outfit", sans-serif;
  --passion: "Passion One", sans-serif;
  --onest: "Onest", sans-serif;
}

@font-face {
  font-family: "Rousie";
  src: url("https://lestoitiersdefrance.com/app/themes/sage/resources/fonts/RousieRegular.woff2")
      format("woff2"),
    url("https://lestoitiersdefrance.com/app/themes/sage/resources/fonts/RousieRegular.woff")
      format("woff"),
    url("https://lestoitiersdefrance.com/app/themes/sage/resources/fonts/RousieRegular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #fef6ee;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a.sr-only.focus\:not-sr-only {
  display: none;
}

.page-header h1 {
  display: none;
}

/*--- Header CSS Start ---*/

.headerMain {
  position: absolute;
  width: 100%;
  top: 0px;
  z-index: 9;
  transition: all 0.3s ease; /* Smooth animation */
}
.headerMain .container {
  position: relative;
}
header.headerMain.stickyMenu {
  position: fixed !important;
  top: 0px;
  background-color: #fef6ee;
}
.headerMain nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0px;
}
.headerMain .brandLogo dotlottie-wc {
  height: 80px;
  width:160px;
}
.page-id-9 .headerMain {
  display: none;
}
.page-id-9 .headerMain.stickyMenu {
  display: block;
}
.page-id-9 header.headerMain.stickyMenu .brandLogo {
  visibility: visible;
}
.headerMain .header_btns {
  display: flex;
  align-items: center;
  gap: 0px;
}
.headerMain .header_btns a button {
  height: 56px;
  padding: 0px 24px;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-family: var(--outfit);
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
}
.headerMain .header_btns a button img {
  width: 38px;
}
.headerMain .header_btns a:nth-child(1) button {
  background-color: #142135;
  border-radius: 8px 0px 0px 8px;
}
.headerMain .header_btns a:nth-child(2) button {
  background-color: #cc4d1b;
  border-radius: 0px 8px 8px 0px;
}

.formOrange {
  background-color: #cc4d1b;
}
.headerForm {
  padding: 64px;
  border-radius: 16px 0px 0px 0px;
  position: absolute;
  top: 88px;
  width: calc(100% - 158px);
  height: 70vh;
  overflow-y: scroll;
}
.headerForm::-webkit-scrollbar {
  display: none;
}
.formOrange,
.formPurpal {
  visibility: hidden;
}
.formOrange.orangeFormActive,
.formPurpal.purpalFormActive {
  visibility: visible;
}
.formPurpal {
  background-color: #142135;
}
.formHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.formHeader h2 {
  color: #fef6ee;
  font-size: 48px;
  line-height: 48px;
  font-weight: 600;
  font-family: var(--onest);
  width: 370px;
}
.formHeader ul {
  margin: 0px;
  list-style: none;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 70px;
}
.formHeader ul li {
  color: #fef6ee;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--outfit);
  position: relative;
  padding-left: 10px;
}
.formHeader ul li::before {
  content: "";
  position: absolute;
  width: 21.68px;
  height: 16.16px;
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/check-icon.svg);
  background-size: contain;
  top: 6px;
  right: 100%;
}
.formPurpal .formHeader ul li::before {
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/check-icon-two.svg);
}
.headerForm .formMain {
  margin-top: 64px;
}
.headerForm .formMain p {
  margin-top: 32px;
}
.headerForm .formMain label {
  color: #fef6ee;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  font-family: var(--onest);
}
.headerForm .formMain label input {
  padding: 16px;
  color: #fef6ee;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--onest);
  width: calc(100% - 32px);
  background-color: transparent;
  border: 1px solid #f3b37e;
  outline: 1px solid transparent;
  border-radius: 5px;
  margin-top: 10px;
}
.headerForm .formMain label input:focus-visible {
  outline: none;
  border: 1px solid #fef6ee;
  outline: 1px solid #fef6ee;
  font-family: var(--onest);
}
.headerForm .formMain label input::placeholder {
  color: #dc835f;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--onest);
}
.headerForm input.wpcf7-submit {
  color: #3e140c;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--onest);
  padding: 24px 40px;
  border-radius: 10px;
  border: none;
  background-color: #fef6ee;
  margin-top: 100px;
  cursor: pointer;
}
.inputGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.formBack {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-top: -48px;
}
.formBack span {
  color: #fef6ee;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--onest);
  cursor: pointer;
}
.formBack img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  cursor: pointer;
}
.formPurpal.headerForm .formMain label input::placeholder {
  color: #5f6570;
}
.formPurpal.headerForm .formMain label input {
  border: 1px solid #99bae0;
}
.headerForm .wpcf7-response-output {
  color: #fff;
  font-family: var(--onest);
  display: inline-block;
}

/*--- Header CSS End ---*/

/*--- Home CSS Start ---*/

.homeSlider {
  width: 100%;
  height: 100vh;
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/hero-img-ciel-scaled.jpg);
  background-size: cover;
  position: relative;
  z-index: 1;
}
.homeSlider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/hero-img-roof-scaled.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  z-index: -1;
}
.homeSlider .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hmInner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hmInner ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 56px;
}
.hmInner ul li a {
  color: #f8f7f4;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--outfit);
}
.hmInner dotlottie-wc {
  width: 500px;
  margin: auto;
}

.roofMain {
  width: 100%;
  height: calc(100vh - 128px);
  background-color: #142135;
  padding: 64px 0px;
}
.roofMain .container {
  height: 100%;
}
.roofInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.roofInner h1 {
  color: #ffffff;
  font-size: 104px;
  line-height: 96px;
  font-weight: 400;
  font-family: var(--passion);
  width: 810px;
  text-align: left;
  margin: auto 0px;
  text-transform: uppercase;
  position: relative;
}
h1 .line1 {
    position: absolute;
    right: 0px;
    top: -12px;
}
h1 .line1, h1 .line4 {
    font-family: "Rousie";
    color: #CC4D1B;
    text-transform: initial;
    font-size: 128px;
}
h1 .line4 {
    position: absolute;
    bottom: 13px;
    left: 340px;
}
span.line2 {
    padding-left: 52px;
    display: block;
}
span.line3 {
    padding-left: 25px;
    display: block;
}
.roofInner dotlottie-wc {
  margin: auto 0px;
  width: 818px;
}
.roofMain p {
  color: #f8f7f4;
  font-size: 36px;
  line-height: 43px;
  text-align: center;
  font-family: var(--onest);
}

section.ourRoofMain {
  padding: 128px 0px 192px 0px;
}
.ormInner h2 {
  color: #142135;
  font-size: 80px;
  line-height: 72px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--passion);
  width: 516px;
  text-transform: uppercase;
}
.myFirstSwiper {
  margin-top: 64px;
}

.myFirstSwiper .swiper-wrapper .swiper-slide.slide-1 .boxCont,
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-3 .boxCont,
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-5 .boxCont {
  border-radius: 15px 15px 0px 0px !important;
}
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-2 .boxCont,
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-4 .boxCont {
  border-radius: 0px 0px 15px 15px;
}
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-1 .boxCont {
  background-color: #213859;
}
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-2 .boxCont {
  background-color: #cc4d1b;
}
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-3 .boxCont {
  background-color: #3e7ab9;
}
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-4 .boxCont {
  background-color: #90321c;
}
.myFirstSwiper .swiper-wrapper .swiper-slide.slide-5 .boxCont {
  background-color: #142135;
}
.ourBox {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.boxCont {
  padding: 75px 25px;
  color: #fef6ee;
  min-height: 180px;
}
.boxCont span {
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  font-family: var(--onest);
  display: block;
}
.boxCont p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--onest);
  margin-top: 50px;
}

.teamMain {
  padding-bottom: 160px;
}
.teamInner {
  width: 938px;
  margin: auto;
  text-align: center;
}
.teamInner h2 {
  color: #142135;
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: 1px;
  font-weight: 800;
  font-family: var(--onest);
}
.teamInner h2 span {
  display: block;
  font-family: "Rousie";
  color: #cc4d1b;
  font-size: 58px;
  line-height: 64px;
  letter-spacing: 2px;
  font-weight: 400;
  transform: rotate(-1.9deg);
}
.teamInner span {
  font-size: 32px;
  line-height: 44.8px;
  font-weight: 800;
  font-family: var(--onest);
  width: 730px;
  margin: 64px auto 0px auto;
  display: inline-block;
}
.teamInner p {
  color: #142135;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  width: 922px;
  margin: 32px auto 0px auto;
  font-family: var(--onest);
}

.myImageSwiper .swiper-slide img {
    border-radius: 5px;
}

.uniMain {
  background-color: #cc4d1b;
  padding: 128px 0px 160px 0px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.uniMain::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/une-top-bg-img.png);
  background-position: 150px 75px;
  background-repeat: no-repeat;
  z-index: -1;
}
.uniMain::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/une-bottom-bg-img.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: -1;
}
.uniTitle {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.uniTitle h2 {
  color: #fef6ee;
  font-size: 80px;
  line-height: 72px;
  font-weight: 400;
  font-family: var(--passion);
  width: 560px;
  text-transform: uppercase;
}
.ntCont {
  color: #fef6ee;
  width: 675px;
}
.ntCont span {
  font-size: 32px;
  line-height: 44.8px;
  font-weight: 600;
  font-family: var(--onest);
  display: block;
}
.ntCont p {
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 400;
  font-family: var(--onest);
  margin-top: 24px;
}
.uneInner img {
  margin: 128px 0px;
}
.uiCont {
  text-align: center;
  width: 868px;
  margin: 0 auto;
}
.uiCont h2 {
  color: #fef6ee;
  font-size: 64px;
  line-height: 70px;
  font-family: var(--outfit);
  font-weight: 700;
}
.uiCont h2 span {
  color: #f8d3b0;
  font-family: "Rousie";
  display: block;
  font-weight: 400;
}
.uiCont p {
  color: #fef6ee;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  font-family: var(--outfit);
  margin-top: 64px;
}
.uiCont b {
  font-weight: 600;
}

.textSlider {
  background-color: #142135;
  padding: 10px 0px;
}
.textBox {
  text-align: center;
}
.textBox span {
  color: #fef6ee;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--passion);
  text-transform: uppercase;
}
.textBox img {
  width: 70px;
}

.marqueeSwiper {
  background-color: #142135;
  padding: 10px 0px !important;
  overflow: hidden;
}
.marqueeSwiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.marqueeSwiper .swiper-slide span {
  color: #fef6ee;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--passion);
  text-transform: uppercase;
}
.marqueeSwiper img {
  width: 70px;
  margin-left: 50px;
}

.reviewMain {
  background-color: #fcebd8;
  padding: 128px 0px 160px 0px;
}
.reviewMain h2 {
  color: #142135;
  font-size: 80px;
  line-height: 72px;
  font-weight: 400;
  font-family: var(--passion);
  text-transform: uppercase;
  width: 526px;
}
.rcLeft img {
  width: 130px;
}
.myReviewSwiper .swiper-wrapper {
  height: 600px;
}
.myReviewSwiper .custom-pagination.swiper-pagination-bullets {
    display: flex;
    left: 0px;
    top: auto;
    bottom: -18px;
    gap: 8px;
    position: absolute;
    z-index: 999;
}
.reviewSlide p {
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 400;
  font-family: var(--onest);
  color: #c9c0b6;
}
.reviewSlide span {
  font-size: 20px;
  line-height: 33.6px;
  font-weight: 600;
  font-family: var(--onest);
  color: #c9c0b6;
  display: block;
  margin-top: 16px;
}
.myReviewSwiper .swiper-slide-next span,
.myReviewSwiper .swiper-slide-next p {
  color: #142135;
}
.reviewCont {
  display: flex;
  align-items: center;
  gap: 112px;
  width: 1025px;
  margin: 96px auto 0px auto;
}
.myReviewSwiper span.swiper-pagination-bullet {
  background-color: #cc4d1b;
  width: 16px;
  height: 16px;
}
/*--- Home CSS End ---*/

/*--- Legal CSS Start ---*/

.legalMain {
  padding: 200px 0px 128px 0px;
  background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/legal-bg-img.png);
  background-repeat: no-repeat;
  background-position: top right;
}
.legalTitle {
  padding-bottom: 64px;
}
.legalTitle h1 {
  color: #142135;
  font-size: 104px;
  line-height: 96px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--passion);
}
.legalTitle span {
  color: #142135;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--outfit);
  display: block;
  margin-top: 25px;
}
.legalInner h2 {
  margin-top: 64px;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  color: #142135;
  font-family: var(--onest);
}
.legalInner p {
  color: #142135;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--outfit);
  margin-top: 24px;
}
.legalInner p a {
  color: #3e7ab9;
  text-decoration: underline;
}
.legalInner ul, .legalInner ol {
    margin-top: 24px;
    padding: 0px 0px 0px 50px;
    list-style-position: outside;
}
.legalInner ol li::marker {
  color: #cc4d1b;
  font-weight: 700;
}
.legalInner ul li,
.legalInner ol li {
  color: #142135;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--outfit);
  margin-top: 10px;
  padding-left: 16px;
}
.legalInner ul li:first-child,
.legalInner ol li:first-child {
  margin-top: 0px;
}
.legalInner ul {
  padding-left: 36px;
}
.legalInner ul li {
  list-style: none;
  padding-left: 26px;
  position: relative;
}
.legalInner ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 100%;
  width: 8px;
  height: 8px;
  background-color: #cc4d1b;
  border-radius: 3px 0px 0px 3px;
}

/*--- Legal CSS End ---*/

/*--- 404 CSS Start ---*/

.errorMain {
  padding: 164px 0px;
}
.errorInner {
  width: 581px;
  margin: 0 auto;
  text-align: center;
}
.error404 form.search-form {
  display: none;
}
.errorInner img {
  width: 100%;
}
.errorInner h2 {
  margin-top: 80px;
  font-size: 48px;
  font-weight: 600;
  color: #142135;
  font-family: var(--onest);
}
.errorInner p {
  color: rgba(20, 33, 53, 64%);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--outfit);
  margin: 24px 0px;
}
.errorInner a {
  color: #142135;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--outfit);
}

/*--- 404 CSS End ---*/

/*--- footer CSS Start ---*/

.footerMain {
  padding: 40px 0px;
}
.footerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footerTop p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  width: 761px;
  font-family: var(--onest);
  color: #142135;
}
.footerTop p span {
  color: #cc4d1b;
}
.footerTop ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footerTop ul li a {
  background-color: #b43e1a;
  width: 48px;
  height: 48px;
  border-radius: 70px;
  display: inline-block;
  text-align: center;
}
.footerTop ul li a i {
  line-height: 48px;
  color: #fff;
  font-size: 18px;
}
.footerBottom {
  font-size: 16px;
  font-weight: 400;
  color: #142135;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  font-family: var(--onest);
}
.fbMenu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footerBottom a {
  color: #142135;
  text-decoration: underline;
}

/*--- footer CSS End ---*/

@media (min-width: 1366px) {
  .legalInner {
    width: 1187px;
  }
  .footerTop {
    gap: 25px;
  }
}
@media (max-width: 1366px) {
  .legalInner {
    width: auto;
  }
  .footerTop {
    gap: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1366px) {
  .reviewCont {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .teamInner,
  .teamInner span,
  .teamInner p {
    width: 100%;
  }
  h1 .line1, h1 .line4 {
    font-size: 80px;
  }
  h1 .line4 {
    bottom: 6px;
    left: 240px;
  }
  .uiCont {
    width: 100%;
  }
  .uniTitle h2,
  .ntCont {
    width: auto;
  }
  .roofInner h1 {
    font-size: 70px;
    line-height: 74px;
  }
}

@media (min-width: 1200px) and (max-width: 1920px) {
  .boxCont {
    height: 260px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .boxCont {
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footerTop p,
  .reviewCont {
    width: 100%;
  }
  .footerTop {
    flex-direction: column;
  }
  .uniTitle {
    flex-direction: column;
  }
  .headerMain nav {
    flex-direction: column;
  }
  .page-id-9 .brandLogo {
    display: none;
  }
  .page-id-9 header.headerMain.stickyMenu .brandLogo {
    display: block;
  }
  .headerForm {
    top: 80px;
  }
  .stickyMenu .headerForm {
    top: 80px;
  }
  .formHeader {
    flex-direction: column;
    align-items: self-start;
    gap: 25px;
  }
  .formHeader ul {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .boxCont {
    padding: 30px 15px;
    height: 200px;
  }
  .reviewCont {
    width: 100%;
  }
  a.brandLogo {
    display: none;
  }
  .roofInner h1 {
    width: 552px;
  }
}

@media screen and (max-width: 767.98px) {
  .errorInner {
    width: calc(100% - 30px);
    padding: 0px 15px;
  }
  .errorMain {
    padding: 112px 0px;
  }
  .footerTop {
    flex-direction: column;
    align-items: center;
  }
  .footerTop img {
    width: 190px;
  }
  .footerTop p {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
  .legalTitle h1 {
    font-size: 56px;
    line-height: 52px;
  }
  .legalMain {
    background-size: contain;
  }
  .legalTitle span {
    font-size: 20px;
  }
  .legalTitle {
    padding-bottom: 24px;
  }
  .legalMain {
    background-image: none;
  }
  .legalInner h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .ormInner h2,
  .reviewMain h2,
  .formHeader h2 {
    width: 100%;
  }
  .teamInner h2, .teamInner h2 span {
    font-size: 34px;
    line-height: 40.4px;
    width: 286px;
    margin: 0 auto;
  }
  .footerBottom {
    gap: 16px;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
  .roofInner h1 {
    font-size: 60px;
    line-height: 58px;
    text-align: center;
  }
  section.ourRoofMain {
    padding: 96px 0px;
  }
  .uniTitle {
    flex-direction: column;
    gap: 64px;
  }
  .reviewCont {
    gap: 24px;
    width: 100%;
    align-items: self-start;
  }
  .myReviewSwiper .swiper-wrapper {
    height: 340px;
  }
  .boxCont {
    padding: 25px 25px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .headerMain nav {
    flex-direction: column;
  }
  .headerMain .header_btns a button img {
    width: 20px;
  }
  .headerMain .header_btns a button {
    gap: 8px;
    width: 100%;
    justify-content: center;
    height: 48px;
    padding: 0px 8px;
    font-size: 16px;
  }
  .page-id-9 .brandLogo {
    display: none;
  }
  .page-id-9 header.headerMain.stickyMenu .brandLogo {
    display: block;
  }
  .boxCont span {
    font-size: 30px;
    line-height: 30px;
  }
  .headerForm {
    padding: 25px;
    top: 68px;
    width: calc(100% - 80px);
    border-radius: 0px 0px 8px 8px;
  }
  .stickyMenu .headerForm {
    top: 65px;
  }
  .formHeader ul {
    gap: 15px 40px;
    align-items: self-start;
    margin-left: 25px;
    flex-wrap: wrap;
  }
  .formHeader {
    flex-direction: column;
    gap: 25px;
    align-items: self-start;
  }
  .boxCont p {
    margin-top: 25px;
  }
  .formBack {
    justify-content: center;
    margin-top: 0;
    position: fixed;
    width: 100%;
    left: 0px;
    bottom: 15px;
  }
  .myReviewSwiper .swiper-slide-active span,
  .myReviewSwiper .swiper-slide-active p {
    color: #142135;
  }
  .hmInner dotlottie-wc {
    width: 285px;
    margin: auto;
  }
  .ormInner h2,
  .uniTitle h2,
  .reviewMain h2 {
    font-size: 48px;
    line-height: 46px;
  }
  .roofInner dotlottie-wc {
    width: 100%;
  }
  .hmInner ul li a {
    font-size: 20px;
  }
  .errorInner p,
  .legalInner p, .legalInner ul li, .legalInner ol li, .uiCont p, .ntCont p, .teamInner p {
    font-size: 16px;
    line-height: 24px;
  }
  .headerMain .brandLogo dotlottie-wc {
    display: none;
  }
  .legalMain {
    padding: 120px 0px 80px 0px;
  }
  .legalInner h2 {
    margin-top: 40px;
  }
  .rcLeft img {
    width: 40px;
  }
  .reviewMain {
    padding: 80px 0px 96px 0px;
  }
  .reviewCont {
    margin: 40px auto 0px auto;
  }
  .textBox span,
  .formHeader h2 {
    font-size: 32px;
    line-height: 32px;
  }
  .textSlider {
    padding: 32px 0px;
  }
  .uniMain {
    padding: 80px 0px;
  }
  .uiCont h2 {
    font-size: 34px;
    line-height: 40px;
    width: 286px;
    margin: 0 auto;
    padding-bottom: 24px;
  }
  .uneInner img {
    margin: 56px 0px 80px 0px;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
  }
  .uiCont p {
    margin-top: 40px;
  }
  .ntCont span {
    font-size: 24px;
    line-height: 31.8px;
    margin-bottom: 24px;
  }
  .teamMain {
    padding-bottom: 80px;
  }
  .teamInner span {
    font-size: 24px;
    line-height: 31px;
  }
  .teamInner p {
    margin-top: 24px;
  }
  .myFirstSwiper {
    margin-top: 40px;
  }
  .roofMain p {
    font-size: 24px;
    line-height: 30px;
    width: 254px;
  }
  .hmInner ul {
    gap: 16px;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .homeSlider::before {
    background-image: url(https://lestoitiersdefrance.com/app/uploads/2025/08/hero-mobile-img-roof-scaled-1.png);
  }
  .formHeader ul li {
    font-size: 16px;
  }
  .formHeader ul li::before {
    content: '';
    width: 16px;
    height: 15.16px;
    top: 6px;
    background-repeat: no-repeat;
  }
  .headerForm .formMain label {
    font-size: 16px;
    line-height: 17px;
  }
  .headerForm input.wpcf7-submit {
    margin-top: 32px;
    padding: 16px;
    width: 100%;
  }
  .headerForm .formMain {
    margin-top: 32px;
  }
  .headerMain .header_btns {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .headerForm .formMain label input,
  .headerForm .formMain label input::placeholder {
    font-size: 20px;
    line-height: 20px;
  }
  .marqueeSwiper .swiper-slide span {
    font-size: 32px;
    line-height: 32px;
  }
  .marqueeSwiper img {
    width: 58px;
  }
  .reviewSlide p {
    font-size: 20px;
    line-height: 30px;
  }
  .reviewSlide span {
    font-size: 16px;
    line-height: 19.2px;
  }
  .inputGroup {
    grid-template-columns: 1fr;
    gap: 0;
  }
  header.headerMain.stickyColor {
    background-color: #787878;
    height: 100%;
  }
  h1 .line1, h1 .line4 {
    font-size: 64px;
  }
  h1 .line1, h1 .line4 {
    position: initial;
    display: block;
    margin-top: -25px;
  }
  span.line2, span.line3 {
    padding: 0px;
  }
  .roofInner h1 {
    width: 280px;
  }
}

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

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
  .headerForm {
    height: auto;
    overflow-y: hidden;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1776px;
  }
}
