@font-face {
  font-family: "Custom Font";
  src: url("assets/fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.heroMainSeciton {
  background: url("./images/sliderImgOne.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: inherit;
  z-index: 1;
}

.heroMainSeciton::before {
  content: "";
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

body {
  font-family: Custom Font, sans-serif;
}

.globalNavBar {
  position: relative;
  z-index: 2;
}

.globalNavBar ul li{
  color: white;
  font-size: 18px;
  font-weight: 400px;
}

.heroContent {
  z-index: 2;
  position: relative;
}

.heroContent h1 {
  font-size: 3rem;
  /* font-weight: 400; */
  color: white;
}

.heroContent p {
  font-size: 2rem;
  /* font-weight: 400; */
  color: white;
}

.outlinedBtn {
  color: white;
  border: 2px solid white;
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  padding: 0.5rem 1rem;
  font-size: 18px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.outlinedBtn:hover {
  background-color: white;
  color: #89c2c9;
}

.darkoutlinedBtn {
  color: #2e2e2e;
  border: 1px solid #2e2e2e;
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  padding: 0.5rem 1rem;
  font-size: 18px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.darkoutlinedBtn:hover {
  background-color: #2e2e2e;
  color: white;
}

.serviceCard {
  box-sizing: inherit;
}

.serviceCard h1 {
  font-size: 1.5rem;
  margin-top: 10px;
}

.serviceCard p {
  text-align: center;
  font-size: 1rem;
  opacity: 0.7;
}

