:root {
  --repa-red: #C8102E;
  --white: #FFFFFF;
  --font-family: 'Poppins', sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  background-color: var(--repa-red);
  color: var(--white);
  text-align: center;
}

.bg-repa-red {
  background-color: var(--repa-red);
}

.logo {
  width: 245px;
  height: auto;
  margin-top: 30px;
}

.full_content h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}

.tagline {
  font-size: 32px;
  font-weight: 500;
}

.btn {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0 !important;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #f4f4f4;
}

.base-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 67%;
  width: 45%;
  height: auto;
}

.decor-left,
.decor-right {
  position: absolute;
  height: auto;
  mix-blend-mode: multiply;
}

.decor-left {
  width: 288px;
  height: 302px;
  top: -55px;
  left: -282px;
}

.decor-right {
  width: 377px;
  top: 19%;
  right: -76%;
}

.company-info {
  text-align: center;
  margin-top: 3rem;
}

.company-info .company-name {
  font-weight: 600;
  font-size: 16px;
}

.company-info p {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.company-info a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

.company-info a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .full_content h1 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .overlay-image {
    width: 40%;
    top: 8%;
    left: 60%;
  }

  .decor-left,
  .decor-right {
    display: none !important;
  }
}

.footer {
	font-family: 'Zilla Slab';
}