:root {
/*   --main-color: #ffc53a; */
/*   --shadow-color: #ff004d; */
  --main-color: #d5006d;
  --shadow-color: #fff;
}


body {
/*             background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
    background-color: #20211b;
    color: #ffffff;
/*     overflow: hidden; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-section {
/*             background: rgba(0, 0, 0, 0.3); */
    background-color: #20211b;
/*             backdrop-filter: blur(10px); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.main-section {
    background-color: #20211b;
/*             background: rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(5px);
    position: relative;
    overflow-y: auto;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
/*            background:
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 159, 67, 0.1) 0%, transparent 50%);*/
    pointer-events: none;
}

.footer-section {
    background-color: #20211b;
/*             background: rgba(0, 0, 0, 0.4); */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
/*             box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3); */
    line-height: 1.25rem;
}

.btn-primary {
  background-color: var(--main-color);
/*     background: linear-gradient(45deg, var(--main-color) 0%, var(--shadow-color) 100%); */
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-primary:hover {
/*     transform: translateY(-2px); */
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    background-color: var(--shadow-color);
}

a {
    color: var(--main-color);
/*     font-weight: bold; */
}
a:hover {
  color: var(--shadow-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: #C41230; /*linear-gradient(45deg, #667eea, #764ba2);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-brand img {
  max-width: 200px;
}
.nav-item {
  text-transform: uppercase;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--shadow-color) !important;
}

.content-container {
    position: relative;
    z-index: 1;
}

.column-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.text-item {
    position: absolute;
    width: 100%;
    transition: all 1s ease;
    padding: 0.5rem;
}
.content-header {
    color: var(--main-color);
/*     text-shadow: 1px 1px var(--shadow-color); */
}
.content-flipper {
    color: #eee;
}
.center-column {
    display: flex;
    justify-content: center;
    height: 100%;
    color: var(--main-color);
/*     text-shadow: 3px 3px var(--shadow-color); */
}
.content-flipper h2 {
    margin-bottom: 2rem;
    text-align: center;
}
span.company-name {
  color: var(--main-color);
  background-color: #484a3d;
  border-radius: 1px;
  font-weight: bold;
}
tt {
  color: #eee;
  background-color: #484a3d;
}
@media (max-width: 1024px) {
  .footer-section {
    font-size: 0.75rem;
  }
}

/* FAQ */
h3 {
    color: var(--main-color);
}

