

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.nv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nv-section {
  padding: 100px 0;
  position: relative;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #e42323;
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e42323, #ff6b6b);
  border-radius: 10px;
  animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}




.nv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nv-header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nv-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.nv-logo:hover {
  opacity: 0.85;
}

.nv-logo img {
  height: 44px;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #a0a0a0;
  letter-spacing: 0.05em;
}

.nv-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  color: #c5c5c5;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e42323, #ff6b6b);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(228, 35, 35, 0.5);
  color: #fff;
  background: rgba(228, 35, 35, 0.1);
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-cta.active {
  background: #e42323;
  border-color: #e42323;
  box-shadow: 0 5px 20px rgba(228, 35, 35, 0.4);
}

.nv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nv-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nv-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nv-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nv-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .logo-text {
    display: none;
  }

  .nv-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nv-nav.open {
    transform: translateX(0);
  }

  .nv-burger {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, #e42323, #b91c1c);
  border-color: #e42323;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(228, 35, 35, 0.4);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(228, 35, 35, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}



.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floating-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(228, 35, 35, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 35, 35, 0.4), transparent 70%);
  top: -300px;
  left: -200px;
  animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.3), transparent 70%);
  bottom: -200px;
  right: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(228, 35, 35, 0.15);
  border: 1px solid rgba(228, 35, 35, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: #a0a0a0;
  line-height: 1.8;
}




.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



.contact-section {
  background: #050505;
  padding-top: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}




.contact-form-wrapper {
  position: relative;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fff;
}

.form-header p {
  color: #a0a0a0;
  font-size: 1rem;
}

.contact-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #c0c0c0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #606060;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(228, 35, 35, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(228, 35, 35, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  display: none;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #e42323;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e42323;
}

.form-group.error .error-message {
  display: block;
}




.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #059669, #047857);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(150%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              visibility 0.3s ease;
  z-index: 9999;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
}

.toast-content strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.toast-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}




.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 35, 35, 0.1);
  border-radius: 12px;
  color: #ff6b6b;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.info-content p,
.info-content a:not(.whatsapp-btn) {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.5;
}

.info-content a:not(.whatsapp-btn):hover {
  color: #ff6b6b;
}



.whatsapp-card {
  flex-direction: column;
  align-items: stretch;
  padding: 28px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.02));
  border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.whatsapp-card .info-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  margin-bottom: 8px;
}

.whatsapp-card .info-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.whatsapp-card .info-content p {
  margin-bottom: 16px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-number {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  font-weight: 700;
  color: #25d366;
  text-align: center;
  letter-spacing: 0.02em;
}


.social-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
}

.social-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #909090;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #909090;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #e42323;
  border-color: #e42323;
  color: #fff;
  transform: translateY(-3px);
}




.nv-footer {
  position: relative;
  background: #000;
  color: #a0a0a0;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(228, 35, 35, 0.15), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 50px;
  border-radius: 10px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.footer-logo-subtitle {
  font-size: 0.7rem;
  color: #707070;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  margin: 0 auto;
}

.footer-social .social-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #909090;
  transition: all 0.3s ease;
  padding: 0;
  line-height: 1;
  margin-bottom: 0;
}

.footer-social .social-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-social .social-link:hover {
  background: #e42323;
  border-color: #e42323;
  color: #fff;
  transform: translateY(-3px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .footer-logo-wrapper {
  justify-content: center;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  color: #808080;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col p strong {
  color: #c0c0c0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #606060;
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #606060;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}





@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nv-section {
    padding: 70px 0;
  }

  .page-hero {
    padding: 140px 0 80px;
  }

  .page-hero-content h1 {
    font-size: 2.5rem;
  }

  .page-hero-content p {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-section {
    padding-top: 40px;
  }

  .info-card {
    padding: 16px;
  }

  .whatsapp-card {
    padding: 20px;
  }

  .whatsapp-btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .nv-section {
    padding: 50px 0;
  }

  .nv-container {
    padding: 0 16px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .page-hero-content p {
    font-size: 0.9rem;
  }

  .form-header h2 {
    font-size: 1.4rem;
  }

  .form-header p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 18px;
  }

  /* iOS fix: font-size >= 16px prevents auto-zoom on input focus */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  .whatsapp-number {
    font-size: 1.2rem;
  }

  .whatsapp-card .info-content h3 {
    font-size: 1rem;
  }

  .info-content h4 {
    font-size: 0.85rem;
  }

  .btn-submit {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .nv-footer {
    padding-top: 40px;
  }
}

@media (max-width: 360px) {
  .nv-container {
    padding: 0 12px;
  }

  .page-hero-content h1 {
    font-size: 1.5rem;
  }

  .page-hero-content p {
    font-size: 0.85rem;
  }

  .form-header h2 {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 16px;
  }

  .info-card {
    padding: 14px;
    gap: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .info-content h4 {
    font-size: 0.85rem;
  }

  .info-content p,
  .info-content a:not(.whatsapp-btn) {
    font-size: 0.8rem;
  }

  .whatsapp-card {
    padding: 16px;
  }

  .whatsapp-number {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .whatsapp-card .info-content h3 {
    font-size: 0.95rem;
  }

  .social-btn {
    width: 44px;
    height: 44px;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 16px;
    padding: 16px 18px;
    gap: 12px;
  }

  .toast-content strong {
    font-size: 0.9rem;
  }

  .toast-content p {
    font-size: 0.8rem;
  }
}
.footer-created-by {
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #707070;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -10px;
}

.footer-created-by strong {
  color: #ffffff;
  font-weight: 600;
}
