:root {
  --primary-color: #D11D23;
  --secondary-color: #fff;
  --text-color: #333;
  --font-family: 'Arial', sans-serif;
}

.social-pill {
  background-color: #fff;
  border-radius: 50px;
  padding: 6px 20px 6px 6px;
  gap: 8px;
}

.social-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.phone-link {
  color: #c0392b;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 6px;
}

.navbar {
  background-color: var(--primary-color);
}

.btn-red {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.btn-red:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.nav-link {
  color: #fff !important;
}

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

@media (max-width: 1400px) {
  .navbar-nav .nav-link {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
    font-size: 0.9rem;
  }
  .social-pill {
    padding: 4px 12px 4px 4px;
    gap: 4px;
  }
  .social-icon img {
    width: 26px;
    height: 26px;
  }
  .phone-link {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=welcome.css.map */