@import url(https://fonts.googleapis.com/css?family=Nunito);
.hero-style1-warp {
  background-image: url("/public/img/thearrows.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  min-height: 210px; /* Adjust this based on the actual height of the image */
}

.btn.custom-hover-effect {
  background: linear-gradient(95.64deg, #2797ee 0%, #38DA71 100%) !important;
  border: 1px solid transparent;
  padding: 15px 28px;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.btn.custom-hover-effect span {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
}

.btn.custom-hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s ease-in-out;
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
}

.btn.custom-hover-effect:hover::before {
  opacity: 1;
}
