/* ========== HERO SECTION ========== */
.hero {
  width: 100%;
  height: 700px;
  background-image: url('https://tse4.mm.bing.net/th/id/OIP.HPFWeJ5oWgJyn5N7uZj4-wHaEK?rs=1&pid=ImgDetMain&o=7&rm=3');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(202, 199, 199, 0.536);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero h2,
.hero p,
.hero button {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 28px;
  max-width: 600px;
  padding: 0 20px;
}

.hero button {
  border-radius: 50px;
  padding: 10px 25px;
  border: none;
  background-color: white;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #333;
  color: white;
}

/* ========== SERVICES TITLE ========== */
.services h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
