/* BEGIN of Minimal CSS Reset*/

html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
}

/* END of Minimal CSS Reset*/

a {
  text-decoration: none;
}

body {
  font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
  font-weight: normal;
  padding: 2rem;
}

button {
  background-color: transparent;
  border: solid 2px #DC2626;
  border-radius: 6px;
  color: #DC2626;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

button:active {
  background-color: #d0d0d0;
}

button.primary {
  background-color: #DC2626;
  color: white;
}

button:active.primary {
  background-color: #BC1616;
  border-color: #BC1616;
  color: white;
}

footer {
  background-color: #eee;
  border-top: 2px solid #404080;
  padding: 1rem;
}

header {
  background-color: #eee;
  border-bottom: 2px solid #404080;
  padding: 1rem;
}

header > p {
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.0rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

input {
  color: #333;
  font-size: 1.25rem;
  padding: 0.5rem;
}

label {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  padding-bottom: 0.5rem;
}

li {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

p {
  color: #333;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

select {
  font-size: 1.25rem;
  padding: 0.5rem;
}

textarea {
  color: #333;
  font-size: 1.25rem;
  margin: 0;
  padding: 0.5rem;
  width: 100%;
}

.input-group {
  margin-bottom: 1rem;
}

.content {
  padding: 1rem;
  max-width: 1080px;
  margin: auto;
}

.blog-article {
  white-space: pre-line;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.fullscreen-overlay {
  height: 100%;
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(32, 48, 64, 0.60);
}

.creative-input-summary {
  border-bottom: 2px solid #d0d0e0;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
}

.col-2 {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.bubble-col-item {
  border: 2px solid #d0d0e0;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);
  min-height: 15rem;
  padding: 1.5rem;
  width: 50%;
}

.description-text {
  color: #6B7280;
  font-weight: 400;
  font-size: 1.25rem;
}

.stat-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stat-count {
  text-align: center;
}

.stat-label {
  color: #4B5563;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.w-50 {
  width: 50%;
}

.loader {
  width: 60px;
  aspect-ratio: 1;
  display: grid;
  grid: 50%/50%;
  color: #DC2626;
  --_g: no-repeat linear-gradient(currentColor 0 0);
  background: var(--_g),var(--_g),var(--_g);
  background-size: 50.1% 50.1%;
  animation:
    l6-0   1.5s infinite steps(1) alternate,
    l6-0-0 3s   infinite steps(1);
}
.loader::before {
  content: "";
  background: currentColor;
  transform: perspective(150px) rotateY(0deg) rotateX(0deg);
  transform-origin: bottom right;
  animation: l6-1 1.5s infinite linear alternate;
}
@keyframes l6-0 {
  0%  {background-position: 0    100%,100% 100%,100% 0}
  33% {background-position: 100% 100%,100% 100%,100% 0}
  66% {background-position: 100% 0   ,100% 0   ,100% 0}
}
@keyframes l6-0-0 {
  0%  {transform: scaleX(1)  rotate(0deg)}
  50% {transform: scaleX(-1) rotate(-90deg)}
}
@keyframes l6-1 {
  16.5%{transform:perspective(150px) rotateX(-90deg)  rotateY(0deg)    rotateX(0deg);filter:grayscale(0.8)}
  33%  {transform:perspective(150px) rotateX(-180deg) rotateY(0deg)    rotateX(0deg)}
  66%  {transform:perspective(150px) rotateX(-180deg) rotateY(-180deg) rotateX(0deg)}
  100% {transform:perspective(150px) rotateX(-180deg) rotateY(-180deg) rotateX(-180deg);filter:grayscale(0.8)}
}

.loader-container {
  /*fixed w-full h-full top-0 left-0 z-40 flex items-center justify-center*/
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  top: 0;
  position: fixed;
}


