:root {
  --primary-color: #212121;
  --secondary-color: #f57c00;
  --font-family: "Montserrat";
  --header-height: 80px;
}

body {
  font-family: var(--font-family), sans-serif;
  margin: 0;
  padding: 0;
  background: var(--primary-color);
}

h2 {
  color: var(--secondary-color);
  padding-bottom: 2rem;

  @media (max-width: 768px) {
    font-size: 1.5rem;
  }
}

.hero {
  padding: 20px;
  position: relative;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: 1000;
  opacity: 1;
}

.logo {
  width: 200px;
  height: 80px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  height: 80px;
  color: black;
  font-weight: 400;
}

.nav-menu ul li {
  display: flex;
  align-items: center;
}

.nav-menu ul li:last-child {
  margin-right: 20px;
}

.nav-menu ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.color-hero {
  color: #8974b7;
}

.hero-dog {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  background-color: var(--secondary-color);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.col {
  flex: 1;
  width: 50%;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 10rem;
  left: 6rem;
  width: 30%;

  @media (max-width: 768px) {
    gap: 10px;
    left: 1rem;
    bottom: 2rem;
    width: 50%;
  }
}

.service-card {
  background-color: var(--secondary-color);
  height: 500px;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.left-btn {
  left: -40px;
}

.right-btn {
  right: 10px;
}

.phone-button {
  background-color: var(--secondary-color);
}

.secondary-color {
  color: var(--secondary-color);
}
footer a {
  color: var(--secondary-color);
}
