/* Start custom CSS *//* ===================================================
   SACRED FLOW CHIROPRACTIC & WELLNESS
   Modern One-Page Website Stylesheet
   =================================================== */

/* ----- CSS Custom Properties ----- */
:root {
  --teal:        #1f5c5c;
  --teal-dark:   #163f3f;
  --teal-light:  #2d7a7a;
  --gold:        #c9a96e;
  --gold-dark:   #a8843e;
  --gold-light:  #e8d4a8;
  --cream:       #faf7f2;
  --warm-white:  #ffffff;
  --gray-light:  #f5f2ed;
  --gray-mid:    #d4cfc8;
  --gray-text:   #6b6560;
  --dark-text:   #2a2420;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 30px rgba(0,0,0,0.11);
  --shadow-lg:   0 16px 60px rgba(0,0,0,0.14);

  --max-width:   1200px;
  --section-pad: 100px 24px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* ----- Utility ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-dark);
  margin-bottom: 20px;
}

.section-title.light { color: var(--warm-white); }

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}

.divider-line.light { background: var(--gold-light); }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-teal {
  background: var(--teal);
  color: var(--warm-white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,92,92,0.3);
}

.btn-lg { padding: 16px 40px; font-size: 0.9rem; }

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  width: 100%;
  padding: 0 48px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--warm-white);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-social:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://files.manuscdn.com/user_upload_by_module/session_file/310519663396377637/pIbvAwEhPPSgpuAW.jpg') center center / cover no-repeat;
  padding: 120px 24px 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(22, 63, 63, 0.72) 0%,
    rgba(31, 92, 92, 0.55) 50%,
    rgba(168, 132, 62, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--warm-white);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-title-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 12px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: none;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-text .divider-line {
  margin-left: 0;
  margin-right: 0;
}

.about-text p {
  color: var(--gray-text);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

/* GoHighLevel form wrapper */
.lc-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-md);
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.lc-form-wrap iframe {
  border-radius: calc(var(--radius-md) - 8px);
  display: block;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  background: var(--teal-dark);
  padding: var(--section-pad);
}

.services-header {
  text-align: center;
  padding: 0 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-duration {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.with-provider {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-text);
}

.service-body p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-best {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
  font-size: 0.85rem !important;
  color: var(--teal) !important;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--gray-light);
  text-align: center;
}

.testimonials .section-label,
.testimonials .section-title,
.testimonials .divider-line {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: var(--section-pad);
  background: var(--cream);
}

.faq-inner {
  max-width: 800px;
  text-align: center;
}

.faq-inner .faq-list {
  text-align: left;
}

.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-mid);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--gold-dark);
}

.faq-answer {
  padding: 0 0 24px;
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.8;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  background: var(--teal-dark);
  padding: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.contact-form-col .divider-line {
  margin-left: 0;
  margin-right: auto;
}

.contact-intro {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.req { color: var(--gold-light); }

.form-group input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--warm-white);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-check { flex-direction: row; align-items: flex-start; gap: 12px; }

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-label span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.contact-info-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.contact-info-item a:hover { color: var(--gold-light); }

.contact-map iframe {
  filter: brightness(0.85) saturate(0.8);
}

/* ===================================================
   VIDEO SECTION
   =================================================== */
.video-section {
  background: var(--warm-white);
  padding: 80px 24px;
  text-align: center;
}

.video-inner {
  max-width: 780px;
  margin: 0 auto;
}

.video-intro {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 40px;
}

.video-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  background: #0d1b2a;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0d1b2a;
}

/* Custom video controls */
.vcustom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  padding: 0 12px;
  z-index: 10;
}

.vcustom-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.vbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.9;
  flex-shrink: 0;
}

.vbtn:hover { opacity: 1; }

.vprogress-wrap {
  flex: 1;
  cursor: pointer;
  padding: 8px 0;
}

.vprogress-bg {
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  position: relative;
}

.vprogress-fill {
  height: 100%;
  background: #4a9eff;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.vtime {
  color: white;
  font-size: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: sans-serif;
}

/* Big play overlay */
.vplay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.vplay-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: transform 0.15s;
}

.vplay-circle:hover { transform: scale(1.1); }

/* ===================================================
   BOOKING SECTION
   =================================================== */
.booking-section {
  background: #ffffff;
  padding: 80px 24px;
  text-align: center;
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.booking-intro {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

.calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(201,169,110,0.2);
}

/* ===================================================
   FOOTER
   =================================================== */
/* ── Footer ── */
.site-footer {
  background: #ffffff;
  border-top: 2px solid rgba(201,169,110,0.25);
}

/* Top section: 3-column grid */
.footer-top {
  padding: 64px 24px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-col {}

/* Brand column */
.footer-brand .footer-logo img {
  height: 90px;
  width: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.footer-sub {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 280px;
}

/* Column headings */
.footer-heading {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.35);
}

/* Nav list */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a {
  font-size: 0.88rem;
  color: var(--gray-text);
  transition: color 0.2s ease;
}

.footer-nav li a:hover { color: var(--gold-dark); }

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-text);
}

.footer-contact-list li svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: var(--teal);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover { color: var(--gold-dark); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 18px 24px;
  background: #f9f7f4;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-inner p {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray-text);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--gold-dark); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 20px;
  }

  .nav-inner { padding: 0 16px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-frame img {
    height: 400px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-social { justify-content: flex-start; }

  .nav-links .btn-gold { display: none; }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 3.2rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

/* ===================================================
   WORDPRESS FULL-WIDTH OVERRIDES
   =================================================== */
.site-header,
.site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}/* End custom CSS */