:root {
  --primary-color: #010101;
  --secondary-color: #d7041a;
}

.button-1 {
  background: var(--secondary-color);
  padding: 10px 30px;
  border: 1px solid var(--secondary-color);
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  display: block;
  width: fit-content;
}

.button-1:hover {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.button-2 {
  display: block;
  background: #fff;
  padding: 10px 30px;
  border: 1px solid #fff;
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: 700;
  width: fit-content;
}

.button-2:hover {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid #fff;
}

.text-1 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 2.6rem !important;
}

.text-2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

.text-3 {
  font-size: 2.3rem !important;
  font-weight: 500;
}

.para {
  line-height: 1.6;
  font-weight: 500;
}

.border-red {
  border: 1px solid var(--secondary-color);
}

.border-black {
  border: 1px solid var(--primary-color) !important;
}

.bg-red{
  background: var(--secondary-color);
}

.text-red{
  color: var(--secondary-color);
}