/* =====================================================================
   CSS RESET & BASELINE NORMALIZATION
====================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F3EE;
  color: #22313F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a {
  color: #8D6748;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 12px;
  font-weight: 600;
  color: #22313F;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; color: #22313F; }
h4, h5, h6 { font-size: 1.1rem; }
p, li { font-size: 1rem; color: #22313F; margin-bottom: 10px; }
strong { font-weight: 600; }

/* =====================================================================
   NATURE ORGANIC: COLOR PALETTE & ACCENTS
====================================================================== */
:root {
  --primary: #22313F;
  --secondary: #8D6748;
  --accent: #F5F3EE;
  --green-accent: #298764;
  --earth: #C8B79C;
  --organic-bg: #F8F6F1;
  --organic-card: #FFFDF9;
  --organic-border: #E8E1D5;
  --gray: #878787;
  --emphasis: #364B3A;
  --focus-ring: #a7c8af;
}

/* =====================================================================
   LAYOUT CONTAINERS & FLEXBOX
====================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Section Spacing—Nature Organic with abundant breathing room */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-bg);
  border-radius: 24px;
}

/* Flex containers for multi-item content */
.card-container,
.feature-grid,
.card-grid,
.testimonial-slider,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: var(--organic-card);
  box-shadow: 0 3px 12px 0 rgba(34,49,63,.06);
  border: 1px solid var(--organic-border);
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  color: #22313F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--organic-card);
  border-radius: 18px;
  border: 1px solid var(--organic-border);
  padding: 30px 24px 24px 24px;
  min-width: 250px;
  flex: 1 1 250px;
  box-shadow: 0 2px 6px 0 rgba(34,49,63,.05);
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 8px 36px 0 rgba(41,135,100,0.13);
  transform: translateY(-4px) scale(1.02);
}

/* Card (future extensibility, not present but for .card) */
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--organic-card);
  border-radius: 16px;
  border: 1px solid var(--organic-border);
  box-shadow: 0 2px 8px 0 rgba(41,135,100,0.07);
  transition: box-shadow 0.18s, transform 0.18s;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 20px;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(41,135,100,0.13);
  transform: translateY(-3px) scale(1.01);
}

/* --------------------------------------------------------------------
   HERO SECTION
--------------------------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  min-height: 320px;
  background: linear-gradient(120deg, #F5F3EE 65%, #E8E1D5 100%);
  border-radius: 0 0 56px 56px / 0 0 34px 34px;
  box-shadow: 0 6px 48px 0 rgba(34, 49, 63, 0.05);
  margin-bottom: 50px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--emphasis);
}
.hero h2 {
  font-size: 1.5rem;
  color: #4B6B52;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------
   HEADER & NAVIGATION (Desktop)
--------------------------------------------------------------------- */
header {
  width: 100%;
  background: var(--organic-bg);
  box-shadow: 0 1px 16px 0 rgba(34,49,63,.03);
  position: sticky;
  top: 0;
  z-index: 20;
}
header nav {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header nav a img {
  width: 120px;
  height: auto;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  transition: color .18s;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: var(--green-accent);
}
header nav .cta.primary {
  margin-left: 30px;
  padding: 14px 32px;
}

/* --------------------------------------------------------------------
   CTA BUTTONS
--------------------------------------------------------------------- */
.cta {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  background: var(--green-accent);
  color: #fff;
  font-size: 1.14rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 32px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 18px -4px rgba(41,135,100,0.14);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .22s, box-shadow .22s, transform .18s;
  position: relative;
  margin-top: 16px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #326c53;
  box-shadow: 0 8px 36px 0 rgba(41,135,100,0.17);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* --------------------------------------------------------------------
   FEATURE CARDS
--------------------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
/* Already defined .feature-item above */

.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 12px;
  background: #e6edeb30;
  padding: 3px;
  box-shadow: 0 1px 7px 0 rgba(34,49,63,0.07);
}

.feature-item h3 {
  color: var(--green-accent);
  font-size: 1.17rem;
}

/* --------------------------------------------------------------------
   SERVICE LISTS
--------------------------------------------------------------------- */
.service-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--organic-card);
  border-radius: 15px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px rgba(200,183,156,0.07);
  font-size: 1.02rem;
  border-left: 5px solid var(--green-accent);
  position: relative;
  margin-bottom: 12px;
}
.service-list strong { color: var(--emphasis); }
.service-price {
  color: var(--secondary);
  font-weight: 600;
  float: right;
  margin-left: auto;
}

/* --------------------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------------------- */
.testimonials {
  background: linear-gradient(90deg, #F5F3EE 80%, #e6edeb2a 100%);
  border-radius: 36px;
  margin-bottom: 50px;
}
.testimonials h2 {
  color: var(--emphasis);
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 8px;
}
.testimonial-card {
  background: var(--organic-card);
  color: #22313F;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(41,135,100,0.09);
  padding: 24px 22px;
  border: 1px solid var(--organic-border);
  min-width: 260px;
  max-width: 330px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(34,49,63,0.14);
  transform: scale(1.02) translateY(-2px);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #22313F;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-detail {
  color: var(--green-accent);
  font-size: 0.97rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------
   ABOUT & TEXT SECTIONS
--------------------------------------------------------------------- */
.about, .footer-section, .contact-details, .services-overview, .services {
  background: var(--organic-bg);
  border-radius: 30px;
  box-shadow: 0 2px 20px 0 rgba(41,135,100,0.04);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px;
}
.text-section ul {
  margin-left: 12px;
  padding-left: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section ul li {
  position: relative;
  padding-left: 19px;
  font-size: 1.02rem;
  margin-bottom: 5px;
  color: var(--green-accent);
}
.text-section ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
}

/* --------------------------------------------------------------------
   FOOTER
--------------------------------------------------------------------- */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border-top-left-radius: 46px;
  border-top-right-radius: 46px;
  margin-top: 55px;
  padding-top: 44px;
  padding-bottom: 36px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  flex-direction: row;
}
.footer-logo {
  flex: 0 0 auto;
  margin-bottom: 12px;
}
.footer-logo img {
  width: 79px;
  height: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  transition: color 0.17s;
}
footer nav a:hover { color: var(--green-accent); }
.contact-info p {
  color: var(--earth);
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.contact-info a {
  color: var(--green-accent);
}

/* --------------------------------------------------------------------
   MOBILE MENU & RESPONSIVE NAVIGATION
--------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 25px;
  top: 22px;
  z-index: 31;
  background: var(--green-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: background .20s, box-shadow .16s;
  box-shadow: 0 2px 10px rgba(41,135,100,0.17);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #326c53;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(34,49,63,0.90);
  z-index: 51;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.57,.06,.33,1.01);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 26px;
  right: 23px;
  cursor: pointer;
  z-index: 102;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #326c53;
}
.mobile-nav {
  margin-top: 79px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  padding: 16px 35px;
  border-radius: 28px;
  transition: background .18s, color .18s;
  margin: 2px 0;
  width: 90%;
  text-align: center;
  background: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #8D674830;
  color: var(--green-accent);
}
@media (max-width: 1000px) {
  header nav ul {
    gap: 10px;
  }
  .feature-grid, .card-container, .testimonial-slider, .content-grid {
    gap: 16px;
  }
  .feature-item, .testimonial-card {
    min-width: 180px;
    padding: 18px 13px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95%;
    padding: 0 8px;
  }
  .footer-logo img { width: 60px; }
}
@media (max-width: 800px) {
  .feature-item, .testimonial-card { min-width: 145px; }
}
@media (max-width: 768px) {
  header nav ul {
    display: none;
  }
  header nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-accent);
  }
  .container {
    max-width: 100%;
    padding: 0 6px;
  }
  .content-wrapper, .feature-grid, .testimonial-slider, .card-container, .content-grid {
    gap: 12px;
  }
  .section, section {
    border-radius: 18px;
    padding: 24px 6px;
    margin-bottom: 32px;
  }
  .hero {
    border-radius: 0 0 26px 26px / 0 0 12px 12px;
    padding: 24px 6px;
    margin-bottom: 22px;
  }
  .testimonials {
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .feature-grid, .testimonial-slider {
    flex-direction: column;
    gap: 9px;
  }
  .feature-item, .testimonial-card {
    min-width: 0;
    padding: 14px 6px;
    width: 100%;
    box-sizing: border-box;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-logo img { width: 44px; }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.64rem; }
  h2 { font-size: 1.23rem; }
  .cta, .cta.primary { font-size: 0.97rem; }
  .footer-logo img { width: 33px; }
}

/* --------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--organic-card);
  border-top: 2.5px solid var(--green-accent);
  box-shadow: 0 -2px 24px 0 rgba(34,49,63,.09);
  color: var(--primary);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  z-index: 10000;
  animation: slideInBanner 0.6s cubic-bezier(.65,.07,.37,1.01);
}
@keyframes slideInBanner {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-consent-banner p {
  color: #22313F;
  font-size: 1.01rem;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-btn,
.cookie-btn.accept,
.cookie-btn.reject,
.cookie-btn.settings {
  display: inline-block;
  border-radius: 28px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 9px 19px;
  background: var(--earth);
  color: var(--primary);
  border: none;
  outline: none;
  font-weight: 600;
  margin: 0 2px;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow 0.15s;
  box-shadow: 0 2px 7px 0 rgba(41,135,100,0.07);
}
.cookie-btn.accept {
  background: var(--green-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #326c53;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff6e6;
  color: var(--secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e6d3c0;
  color: #22313F;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #4b3826;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  background: rgba(34, 49, 63, 0.66);
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 12001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .45s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--organic-card);
  border-radius: 26px;
  padding: 36px 24px 24px 24px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 6px 24px 0 rgba(41,135,100,0.13);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--emphasis);
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  margin-top: 7px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--green-accent);
  margin-right: 5px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #22313F;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #326c53;
  color: #fff;
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: var(--gray);
  padding-left: 29px;
  margin-bottom: 5px;
}
.cookie-modal .cookie-save-btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  background: var(--green-accent);
  color: #fff;
  padding: 12px 0;
  font-size: 1.11rem;
  border-radius: 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal .cookie-save-btn:hover, .cookie-modal .cookie-save-btn:focus {
  background: #326c53;
}

/* --------------------------------------------------------------------
   MISC - TABLES, LINKS, BORDERS, MICRO-INTERACTIONS, FOCUS
--------------------------------------------------------------------- */
hr {
  border: none;
  border-top: 1.5px solid var(--organic-border);
  margin: 24px 0;
}
::-webkit-selection {
  background: var(--green-accent);
  color: #fff;
}
::selection {
  background: var(--green-accent);
  color: #fff;
}
a:focus, button:focus, .cta:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
input, textarea, select {
  border-radius: 8px;
  border: 1px solid var(--organic-border);
  background: #fff;
  padding: 9px 11px;
}
input:focus, textarea:focus {
  border-color: var(--green-accent);
}

/* --------------------------------------------------------------------
   ORGANIC SHAPES: ORGANIC DESIGN HIGHLIGHTS
--------------------------------------------------------------------- */
.section, .feature-item, .testimonial-card, .card, .cookie-consent-banner, .cookie-modal {
  /* Gentle border and large radius for organic feel */
  border-radius: 28px 40px 24px 38px / 26px 36px 18px 32px;
  border-width: 1.2px;
  border-style: solid;
  border-color: var(--organic-border);
}

/* Decorative organic shadow illustration - demo only (optionally for cards)
.card:before, .testimonial-card:before {
  content: '';
  position: absolute;
  left: -6px; bottom: -6px;
  width: 40px; height: 18px;
  background: radial-gradient(circle at 28px 14px, #e6edeb55 70%, transparent 100%);
  border-radius: 40px 18px 33px 15px;
  z-index: 0;
  opacity: 0.37;
}
*/

/* --------------------------------------------------------------------
   TRANSITIONS & MICRO-INTERACTIONS
--------------------------------------------------------------------- */
.feature-item, .card, .testimonial-card, .cta, .cookie-btn, .mobile-menu-toggle {
  transition: box-shadow .17s, transform .18s, background .20s, color .20s;
}
@media (hover: hover) {
  .cta:hover, .cookie-btn:hover, .feature-item:hover, .testimonial-card:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 14px 28px 0 rgba(41,135,100,0.16);
  }
  .card:hover {
    box-shadow: 0 14px 32px 0 rgba(41,135,100,0.16);
  }
}

/* --------------------------------------------------------------------
   SCROLLBAR & SELECTION
--------------------------------------------------------------------- */
body::-webkit-scrollbar {
  width: 10px;
  background: #e6edeb33;
}
body::-webkit-scrollbar-thumb {
  background: var(--green-accent);
  border-radius: 7px;
}

/* --------------------------------------------------------------------
   PRINT FRIENDLY
--------------------------------------------------------------------- */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  header, footer, nav, .cta, .testimonials, .feature-grid, .feature-item, .testimonial-card {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
    border-color: #e0e0e0 !important;
  }
}
section.cta.fade-in-init.fade-in-visible {
    width: 100%;
}