:root {
  --forest: #083b2d;
  --forest-2: #0f5a41;
  --green: #6ca832;
  --lime: #a7d84e;
  --gold: #f4c542;
  --gold-2: #ffe69a;
  --cream: #fff8e9;
  --white: #fff;
  --ink: #10231b;
  --muted: #5d6f66;
  --line: rgba(8, 59, 45, 0.14);
  --shadow: 0 24px 70px rgba(8, 59, 45, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: #fffdf7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.section-pad {
  padding: 82px 0;
}
.center {
  text-align: center;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  background: radial-gradient(
    circle at 50% 38%,
    rgba(255, 248, 220, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 42%,
    rgba(234, 246, 220, 0.92) 100%
  );
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo-wrap {
  position: relative;
  width: min(340px, 74vw);
}
.logo-reveal {
  position: absolute;
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 232, 130, 0.85) 22%,
    rgba(244, 197, 66, 0.48) 45%,
    rgba(244, 197, 66, 0.16) 65%,
    transparent 72%
  );
  mix-blend-mode: screen;
  animation: sunReveal 3.2s ease-in-out infinite;
  pointer-events: none;
}
.loading-bar {
  width: min(280px, 70vw);
  height: 7px;
  border-radius: 999px;
  background: rgba(8, 59, 45, 0.13);
  overflow: hidden;
}
.loading-progress {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--lime));
  animation: loadingMove 2.4s ease-in-out infinite;
}
.preloader p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-align: center;
}
@keyframes sunReveal {
  0% {
    transform: translate(-50%, -50%) scale(0.15);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
@keyframes loadingMove {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(0);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(8, 59, 45, 0.08);
}
.top-line,
.footer-top {
  height: 7px;
  background: linear-gradient(90deg, var(--forest), var(--green), var(--gold), var(--lime), var(--forest-2));
}
.header-panel {
  width: min(1220px, 94%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
}
.brand img {
  width: 240px;
  max-height: 96px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: var(--forest);
}
.main-nav a {
  position: relative;
  padding: 10px 0;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.3s;
}
.main-nav a:hover:after {
  transform: scaleX(1);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.return-link {
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 28px rgba(8, 59, 45, 0.18);
}
.social-top,
.footer-social {
  display: flex;
  gap: 9px;
}
.social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  box-shadow: 0 12px 26px rgba(8, 59, 45, 0.18);
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.social:hover {
  transform: translateY(-4px) scale(1.04);
}
.youtube:hover {
  background: linear-gradient(135deg, #ff2f2f, #ab0f0f);
}
.facebook:hover {
  background: linear-gradient(135deg, #2d77d8, #174ea6);
}
.tiktok:hover {
  background: linear-gradient(135deg, #111, #23f4ef);
}
.hero {
  height: calc(100vh - 108px);
  min-height: 640px;
  max-height: 820px;
  position: relative;
  overflow: hidden;
  background: #132d24;
}
.slider,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.1s ease,
    transform 6s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1676px, 92%);
  margin: auto;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(720px, 100%);
  padding: 34px;
  border-radius: 34px;
  background: rgba(8, 59, 45, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}
.eyebrow,
.section-tag,
.form-kicker {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  font-size: 0.74rem;
  color: var(--forest);
  background: linear-gradient(135deg, #fff, var(--gold-2));
  border-left: 6px solid var(--gold);
  padding: 10px 15px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(244, 197, 66, 0.2);
}
.hero h1 {
  max-width: 740px;
  margin: 22px 0 16px;
  font-size: clamp(2.6rem, 3.9vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
}
.hero p {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
}
.btn-primary,
.btn-advisor {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--forest);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 44px rgba(244, 197, 66, 0.26);
  transition: 0.35s;
}
.btn-primary:hover,
.btn-advisor:hover {
  transform: translateY(-4px);
}
.slider-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--forest);
}
.prev {
  left: 24px;
}
.next {
  right: 24px;
}
.slider-dots {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  width: 42px;
  background: var(--gold);
  border-color: var(--gold);
}
.project-summary {
  background: linear-gradient(135deg, #fffdf7 0%, #f4fae9 100%);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.section-copy h2,
.section-head h2,
.testimonial-form h2 {
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  margin: 18px 0 16px;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.section-copy p,
.section-head p {
  color: #4f6258;
  line-height: 1.78;
  font-size: 1.05rem;
  font-weight: 500;
}
.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.feature-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 18px 45px rgba(8, 59, 45, 0.08);
}
.feature-list strong {
  display: block;
  color: var(--forest);
  font-size: 1rem;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.feature-list span {
  color: var(--muted);
  font-weight: 600;
}
.image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #f5f8ed;
}
.image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: linear-gradient(135deg, var(--forest), var(--green));
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
}
.lots {
  background: #fff;
}
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.lot-card {
  background: linear-gradient(135deg, #fff 0%, #fff8e9 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: 0.35s;
}
.lot-card:hover {
  transform: translateY(-10px);
}
.lot-card.highlighted {
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #fff;
}
.lot-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 2rem;
  margin-bottom: 20px;
}
.lot-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.lot-card p {
  margin: 0;
  color: inherit;
  opacity: 0.82;
  line-height: 1.65;
  font-weight: 600;
}
.advisor-strip {
  padding: 42px 0;
  background: linear-gradient(135deg, var(--forest), #1c6c43);
  color: #fff;
}
.advisor-box {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr auto;
  gap: 28px;
  align-items: center;
}
.advisor-copy span {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}
.advisor-copy h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
}
.advisor-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  line-height: 1.6;
}
.advisor-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.advisor-visual img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
}
.phone-card {
  background: #fff;
  color: var(--forest);
  border-radius: 22px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.phone-card small {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.08em;
}
.phone-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.btn-advisor {
  margin: 0;
}
.location-contact {
  background: linear-gradient(135deg, #f6faee 0%, #fffdf7 100%);
}
.location-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 28px;
  align-items: stretch;
}
.map-panel {
  position: relative;
  min-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #e9f1e3;
}
.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.96);
}
.map-overlay {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  max-width: 560px;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 50px rgba(8, 59, 45, 0.16);
  transition: 0.35s;
}
.map-panel:hover .map-overlay {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.94);
}
.map-overlay span {
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.map-overlay h2 {
  margin: 8px 0;
  color: var(--forest);
  font-size: 2rem;
}
.map-overlay p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.form-card,
.testimonial-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-card {
  align-self: center;
  position: relative;
  z-index: 2;
}
.form-card h3 {
  margin: 16px 0 8px;
  color: var(--forest);
  font-size: 1.9rem;
  line-height: 1.08;
}
.form-intro {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 18px;
}
.form-card label,
.testimonial-form label,
.modal-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--forest);
  font-size: 0.88rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(9, 163, 24, 0.18);
  border-radius: 16px;
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
  background: #fffdf9;
  outline: none;
  transition: 0.25s;
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(108, 168, 50, 0.12);
  background: #fff;
}
.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.form-actions button,
.testimonial-form button,
.btn-whatsapp-form {
  border: 0;
  border-radius: 999px;
  padding: 15px 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: 0.3s;
}
.form-actions button:first-child,
.testimonial-form button {
  background: linear-gradient(135deg, var(--forest), var(--green));
  color: #fff;
}
.btn-whatsapp-form {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}
.form-actions button:hover,
.testimonial-form button:hover {
  transform: translateY(-3px);
}
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}
.testimonials {
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}
.testimonial-form p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}
.testimonial-display {
  position: relative;
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, #083b2d, #15583f);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  align-content: center;
}

.testimonial-display h3 {
  text-align: center;
  margin: 0 0 26px;
  font-size: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  padding: 34px;
  min-height: 270px;
  display: grid;
  place-items: center;
  text-align: center;
  transition: 0.4s ease;
}

.testimonial-card.fade {
  opacity: 0;
  transform: translateY(10px);
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--forest);
  font-weight: 900;
  font-size: 1.4rem;
}

.testimonial-person strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.05rem;
}

.testimonial-person span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.testimonial-card p {
  max-width: 680px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  font-weight: 700;
}
.testimonial-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.05rem;
}
.testimonial-card span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 28, 21, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.lead-modal.show {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f0f3ec;
  color: var(--forest);
  font-size: 1.6rem;
  cursor: pointer;
}
.modal-card h2 {
  margin: 16px 0 8px;
  color: var(--forest);
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.modal-card p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}
.footer {
  background: #062519;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 42px 0;
}
.footer-brand img {
  width: 225px;
  border-radius: 22px;
  padding: 12px;
}
.footer-brand p,
.footer-center p {
  color: #dcebe3;
  line-height: 1.55;
}
.footer-center {
  text-align: center;
}
.footer-center h3 {
  font-size: 2rem;
  margin: 0 0 8px;
  color: #fff;
}
.footer-center p {
  font-weight: 800;
  color: var(--gold-2);
  margin: 0 0 14px;
}
.footer-center .footer-social {
  justify-content: center;
}
.footer-copy {
  text-align: right;
}
.developer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.netsemtec-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.netsemtec-logo {
  height: 28px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}
.netsemtec-link:hover .netsemtec-logo {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
}
@media (max-width: 1100px) {
  .header-panel {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .hero {
    height: 700px;
  }
  .advisor-box,
  .location-wrap,
  .two-col,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .advisor-box {
    text-align: center;
  }
  .advisor-visual {
    order: 3;
  }
  .form-card {
    max-width: 720px;
    margin: auto;
  }
  .map-panel {
    min-height: 520px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-brand img {
    margin: auto;
  }
  .footer-center .footer-social {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  .section-pad {
    padding: 62px 0;
  }
  .brand img {
    width: 220px;
  }
  .header-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
  }
  .hero {
    height: 660px;
    min-height: 660px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 37, 28, 0.82) 0%,
      rgba(5, 37, 28, 0.62) 55%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }
  .hero-content {
    align-items: flex-end;
    padding-bottom: 70px;
  }
  .hero-copy {
    padding: 24px;
    border-radius: 26px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 0.98rem;
  }
  .slider-btn {
    display: none;
  }
  .lots-grid {
    grid-template-columns: 1fr;
  }
  .image-card img {
    height: 360px;
  }
  .advisor-visual {
    flex-direction: column;
  }
  .phone-card strong {
    font-size: 1.65rem;
  }
  .location-wrap {
    width: min(100%, 94%);
  }
  .map-panel {
    min-height: 440px;
  }
  .map-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }
  .form-card,
  .testimonial-form,
  .testimonial-display,
  .modal-card {
    padding: 24px;
    border-radius: 26px;
  }
  .testimonial-card p {
    font-size: 1.05rem;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 0;
  }
  .footer-brand,
  .footer-center,
  .footer-copy {
    text-align: center;
    width: 100%;
  }
}
