

*,
*::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,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #fff;
}

.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 {
  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-white {
  background: #fff;
  color: #e42323;
  border-color: #fff;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(228, 35, 35, 0.3);
}




.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);
}




.sectors {
  background: #050505;
  padding-top: 60px;
}

.sector-block {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sector-block:last-of-type {
  border-bottom: none;
}

.sector-block.sector-reverse {
  grid-template-columns: 0.7fr 1.3fr;
}

.sector-block.sector-reverse .sector-content {
  order: 2;
}

.sector-block.sector-reverse .sector-visual {
  order: 1;
}

.sector-number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(228, 35, 35, 0.1);
  line-height: 1;
  margin-bottom: -20px;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(228, 35, 35, 0.1);
  border: 1px solid rgba(228, 35, 35, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ff6b6b;
  margin-bottom: 20px;
}

.sector-tag svg {
  color: #e42323;
}

.sector-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.3;
}

.sector-content > p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 24px;
}

.sector-problems {
  margin-bottom: 24px;
}

.sector-problems h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.sector-problems ul {
  list-style: none;
}

.sector-problems li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #c0c0c0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sector-problems li:last-child {
  border-bottom: none;
}

.sector-problems li svg {
  color: #e42323;
  flex-shrink: 0;
  opacity: 0.7;
}

.sector-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.solution-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #b0b0b0;
  transition: all 0.3s ease;
}

.solution-tag:hover {
  background: rgba(228, 35, 35, 0.15);
  border-color: rgba(228, 35, 35, 0.3);
  color: #ff6b6b;
}


.sector-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  width: 280px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  transition: all 0.4s ease;
}

.visual-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(228, 35, 35, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.visual-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(228, 35, 35, 0.2), rgba(228, 35, 35, 0.05));
  border-radius: 28px;
  color: #ff6b6b;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.visual-card:hover .visual-icon {
  background: linear-gradient(135deg, #e42323, #b91c1c);
  color: #fff;
  transform: scale(1.1);
}

.visual-number {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visual-card:hover .visual-number {
  background: linear-gradient(135deg, #ff6b6b, #e42323);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}




.not-found {
  position: relative;
  background: #080808;
  overflow: hidden;
}

.not-found-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.not-found-shape {
  position: absolute;
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(228, 35, 35, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.not-found-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
}

.not-found-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(228, 35, 35, 0.2), rgba(228, 35, 35, 0.05));
  border-radius: 24px;
  color: #ff6b6b;
}

.not-found-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

.not-found-content p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 28px;
}




.cta {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f 0%, #1c0505 60%, #0f0f0f 100%);
  border-top: 1px solid rgba(228, 35, 35, 0.1);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation: float 12s ease-in-out infinite reverse;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}




.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: 1.5fr 1fr 1fr 1.2fr;
  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) {
  .sector-block,
  .sector-block.sector-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sector-block.sector-reverse .sector-content,
  .sector-block.sector-reverse .sector-visual {
    order: unset;
  }

  .sector-visual {
    order: -1;
  }

  .visual-card {
    width: 240px;
    height: 280px;
  }

  .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;
  }

  .sector-content h2 {
    font-size: 1.6rem;
  }

  .sector-content p {
    font-size: 0.9rem;
  }

  .sector-number {
    font-size: 4rem;
  }

  .visual-card {
    width: 200px;
    height: 240px;
  }

  .visual-icon {
    width: 80px;
    height: 80px;
  }

  .visual-icon svg {
    width: 36px;
    height: 36px;
  }

  .visual-number {
    font-size: 3rem;
  }

  .sector-visual {
    display: flex;
    justify-content: center;
  }

  .not-found-content {
    padding: 30px 20px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .sector-problems ul li {
    font-size: 0.9rem;
  }

  .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;
  }
}

@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;
  }

  .sector-content h2 {
    font-size: 1.3rem;
  }

  .sector-content p {
    font-size: 0.85rem;
  }

  .sector-number {
    font-size: 3rem;
  }

  .sector-block {
    padding: 24px 0;
  }

  .visual-card {
    width: 160px;
    height: 200px;
  }

  .visual-icon {
    width: 64px;
    height: 64px;
  }

  .visual-icon svg {
    width: 28px;
    height: 28px;
  }

  .visual-number {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .solution-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .sector-problems h4 {
    font-size: 0.9rem;
  }

  .sector-problems ul li {
    font-size: 0.85rem;
  }

  .not-found-content {
    padding: 24px 16px;
  }

  .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;
  }

  .sector-content h2 {
    font-size: 1.1rem;
  }

  .sector-number {
    font-size: 2.5rem;
  }

  .sector-tag {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .sector-problems li {
    font-size: 0.8rem;
    gap: 8px;
  }

  .solution-tag {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .visual-card {
    width: 140px;
    height: 180px;
  }

  .visual-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .visual-icon svg {
    width: 24px;
    height: 24px;
  }

  .visual-number {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }
}
.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;
}
