/* Start custom CSS for html, class: .elementor-element-0b4570b *//* =========================================================
   LEICESTER PAGE
   COLOR PALETTE
   #5D3140
   #CF4173
   #F39399
   #F6D8BD
========================================================= */

.leicester-page {
  --leicester-primary: #5D3140;
  --leicester-pink: #CF4173;
  --leicester-light-pink: #F39399;
  --leicester-cream: #F6D8BD;

  --leicester-white: #ffffff;
  --leicester-dark: #28151d;
  --leicester-soft: #fff8f5;

  font-family: Arial, Helvetica, sans-serif;

  color: var(--leicester-dark);

  background: #ffffff;

  line-height: 1.7;

  overflow: hidden;
}

.leicester-page *,
.leicester-page *::before,
.leicester-page *::after {
  box-sizing: border-box;
}

.leicester-page h1,
.leicester-page h2,
.leicester-page h3,
.leicester-page p {
  margin-top: 0;
}

.leicester-page a {
  text-decoration: none;
}


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

.leicester-hero {
  position: relative;

  display: grid;

  grid-template-columns: 1.4fr 0.6fr;

  gap: 55px;

  align-items: center;

  min-height: 610px;

  padding: 100px 7%;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(207,65,115,0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--leicester-cream),
      #fff5ef
    );
}

.leicester-hero-content {
  max-width: 850px;
}

.leicester-eyebrow,
.leicester-heading > span,
.leicester-cta-inner > span {
  display: inline-block;

  color: var(--leicester-pink);

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 16px;
}

.leicester-hero h1 {
  color: var(--leicester-primary);

  font-size: clamp(42px,5vw,72px);

  line-height: 1.08;

  margin-bottom: 25px;

  font-weight: 800;
}

.leicester-hero p {
  max-width: 760px;

  color: #553b44;

  font-size: 18px;

  margin-bottom: 32px;
}


/* =========================================================
   BUTTONS
========================================================= */

.leicester-buttons {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

.leicester-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 26px;

  border-radius: 50px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.leicester-primary {
  color: #fff;

  background: var(--leicester-primary);

  border: 2px solid var(--leicester-primary);
}

.leicester-primary:hover {
  color: #fff;

  background: var(--leicester-pink);

  border-color: var(--leicester-pink);

  transform: translateY(-3px);
}

.leicester-secondary {
  color: var(--leicester-primary);

  background: transparent;

  border: 2px solid var(--leicester-primary);
}

.leicester-secondary:hover {
  color: #fff;

  background: var(--leicester-primary);

  transform: translateY(-3px);
}


/* =========================================================
   HERO CARD
========================================================= */

.leicester-hero-card {
  padding: 40px 30px;

  border-radius: 28px;

  background: rgba(255,255,255,0.78);

  border: 1px solid rgba(93,49,64,0.15);

  box-shadow:
    0 25px 60px rgba(93,49,64,0.12);

  backdrop-filter: blur(8px);
}

.leicester-card-icon {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 18px;

  margin-bottom: 22px;

  color: #fff;

  background: var(--leicester-pink);

  font-size: 27px;
}

.leicester-hero-card h2 {
  color: var(--leicester-primary);

  font-size: 27px;

  line-height: 1.2;

  margin-bottom: 12px;
}

.leicester-hero-card p {
  font-size: 15px;

  margin: 0;
}


/* =========================================================
   HEADINGS
========================================================= */

.leicester-heading h2 {
  color: var(--leicester-primary);

  font-size: clamp(32px,4vw,50px);

  line-height: 1.15;

  margin-bottom: 18px;
}

.leicester-center-heading {
  max-width: 850px;

  margin: 0 auto 55px;

  text-align: center;
}

.leicester-center-heading p {
  max-width: 700px;

  margin: auto;

  color: #684e57;
}


/* =========================================================
   INTRO
========================================================= */

.leicester-intro {
  padding: 100px 7%;

  background: #fff;
}

.leicester-intro-grid {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 70px;

  align-items: center;
}

.leicester-intro-content p {
  color: #5c464d;

  font-size: 17px;

  margin-bottom: 20px;
}


/* Highlight Box */

.leicester-highlight-box {
  padding: 12px;

  border-radius: 25px;

  background: var(--leicester-primary);

  box-shadow:
    0 25px 55px rgba(93,49,64,0.18);
}

.leicester-highlight {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 23px;

  color: #fff;

  border-bottom:
    1px solid rgba(255,255,255,0.15);
}

.leicester-highlight:last-child {
  border-bottom: 0;
}

.leicester-highlight strong {
  color: var(--leicester-light-pink);

  font-size: 24px;
}

.leicester-highlight span {
  font-size: 16px;

  font-weight: 700;
}


/* =========================================================
   SERVICES
========================================================= */

.leicester-services {
  padding: 105px 7%;

  background: var(--leicester-soft);
}

.leicester-service-grid {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 25px;
}

.leicester-service-card {
  position: relative;

  min-height: 270px;

  padding: 35px 30px;

  border-radius: 22px;

  background: #fff;

  border:
    1px solid rgba(93,49,64,0.1);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.leicester-service-card::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: -45px;
  bottom: -45px;

  border-radius: 50%;

  background: var(--leicester-cream);

  transition: transform 0.35s ease;
}

.leicester-service-card:hover {
  transform: translateY(-9px);

  border-color: var(--leicester-light-pink);

  box-shadow:
    0 22px 45px rgba(93,49,64,0.13);
}

.leicester-service-card:hover::after {
  transform: scale(1.5);
}

.leicester-service-number {
  color: var(--leicester-pink);

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

.leicester-service-card h3 {
  position: relative;

  z-index: 2;

  color: var(--leicester-primary);

  font-size: 23px;

  line-height: 1.25;

  margin-bottom: 14px;
}

.leicester-service-card p {
  position: relative;

  z-index: 2;

  color: #684e57;

  font-size: 15px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.leicester-why {
  padding: 105px 7%;

  background: var(--leicester-cream);
}

.leicester-why-inner {
  max-width: 1150px;

  margin: auto;
}

.leicester-why-description {
  max-width: 850px;

  color: #573f47;

  font-size: 17px;

  margin-bottom: 45px;
}

.leicester-benefits {
  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 22px;
}

.leicester-benefit {
  display: flex;

  gap: 18px;

  padding: 25px;

  background: rgba(255,255,255,0.65);

  border-radius: 18px;

  transition: all 0.3s ease;
}

.leicester-benefit:hover {
  transform: translateY(-5px);

  background: #fff;
}

.leicester-benefit > span {
  flex-shrink: 0;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background: var(--leicester-pink);

  font-weight: 800;
}

.leicester-benefit h3 {
  color: var(--leicester-primary);

  font-size: 19px;

  margin-bottom: 5px;
}

.leicester-benefit p {
  color: #684e57;

  font-size: 14px;

  margin: 0;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.leicester-content-section {
  padding: 105px 7%;

  background: #fff;
}

.leicester-content {
  max-width: 950px;

  margin: auto;
}

.leicester-content p {
  color: #5d474f;

  font-size: 17px;

  margin-bottom: 22px;
}


/* =========================================================
   PROCESS
========================================================= */

.leicester-process {
  padding: 105px 7%;

  background: var(--leicester-soft);
}

.leicester-process-grid {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 20px;
}

.leicester-process-step {
  padding: 30px 22px;

  text-align: center;

  background: #fff;

  border-radius: 20px;

  border-bottom:
    4px solid var(--leicester-light-pink);

  transition: all 0.3s ease;
}

.leicester-process-step:hover {
  transform: translateY(-7px);

  border-bottom-color: var(--leicester-pink);

  box-shadow:
    0 18px 35px rgba(93,49,64,0.1);
}

.leicester-process-step > span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  margin: 0 auto 18px;

  border-radius: 50%;

  color: #fff;

  background: var(--leicester-primary);

  font-weight: 800;
}

.leicester-process-step h3 {
  color: var(--leicester-primary);

  font-size: 19px;

  margin-bottom: 9px;
}

.leicester-process-step p {
  color: #684e57;

  font-size: 14px;

  margin: 0;
}


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

.leicester-faq {
  padding: 105px 7%;

  background: #fff;
}

.leicester-faq-container {
  max-width: 900px;

  margin: auto;
}

.leicester-faq-container details {
  margin-bottom: 14px;

  border-radius: 15px;

  background: var(--leicester-soft);

  border:
    1px solid rgba(93,49,64,0.1);

  overflow: hidden;
}

.leicester-faq-container summary {
  position: relative;

  padding: 22px 25px;

  padding-right: 60px;

  color: var(--leicester-primary);

  font-weight: 700;

  cursor: pointer;

  list-style: none;
}

.leicester-faq-container summary::-webkit-details-marker {
  display: none;
}

.leicester-faq-container summary::after {
  content: "+";

  position: absolute;

  right: 24px;
  top: 18px;

  color: var(--leicester-pink);

  font-size: 25px;

  font-weight: 400;
}

.leicester-faq-container details[open] summary::after {
  content: "−";
}

.leicester-faq-container details p {
  padding: 0 25px 22px;

  margin: 0;

  color: #684e57;

  font-size: 15px;
}


/* =========================================================
   CTA
========================================================= */

.leicester-cta {
  padding: 100px 7%;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(243,147,153,0.25),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--leicester-primary),
      #3f202c
    );
}

.leicester-cta-inner {
  max-width: 850px;

  margin: auto;

  text-align: center;
}

.leicester-cta-inner > span {
  color: var(--leicester-light-pink);
}

.leicester-cta-inner h2 {
  color: #fff;

  font-size: clamp(32px,4vw,52px);

  line-height: 1.15;

  margin-bottom: 20px;
}

.leicester-cta-inner p {
  max-width: 700px;

  margin: 0 auto 30px;

  color: #f9e5df;

  font-size: 17px;
}

.leicester-cta-button {
  color: var(--leicester-primary);

  background: var(--leicester-cream);

  border:
    2px solid var(--leicester-cream);
}

.leicester-cta-button:hover {
  color: #fff;

  background: var(--leicester-pink);

  border-color: var(--leicester-pink);

  transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .leicester-hero {
    grid-template-columns: 1fr;

    padding: 80px 6%;
  }

  .leicester-hero-card {
    max-width: 600px;
  }

  .leicester-intro-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .leicester-service-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .leicester-process-grid {
    grid-template-columns: repeat(2,1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .leicester-hero,
  .leicester-intro,
  .leicester-services,
  .leicester-why,
  .leicester-content-section,
  .leicester-process,
  .leicester-faq,
  .leicester-cta {
    padding-left: 5%;
    padding-right: 5%;
  }

  .leicester-hero {
    padding-top: 65px;

    padding-bottom: 65px;
  }

  .leicester-hero h1 {
    font-size: 40px;
  }

  .leicester-hero p {
    font-size: 16px;
  }

  .leicester-heading h2 {
    font-size: 32px;
  }

  .leicester-service-grid,
  .leicester-benefits,
  .leicester-process-grid {
    grid-template-columns: 1fr;
  }

  .leicester-service-card {
    min-height: auto;
  }

  .leicester-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .leicester-btn {
    width: 100%;
  }

  .leicester-highlight {
    padding: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .leicester-hero h1 {
    font-size: 34px;
  }

  .leicester-eyebrow,
  .leicester-heading > span,
  .leicester-cta-inner > span {
    font-size: 11px;

    letter-spacing: 1.3px;
  }

  .leicester-hero-card {
    padding: 28px 22px;
  }

  .leicester-service-card {
    padding: 28px 23px;
  }

}/* End custom CSS */