.hero {
  width: 100%;
  height: 325px;
  background-image: url(../SRC/service.jpg);
  background-position-y: -100px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 325px;
  background-color: rgba(0, 4, 54, 0.3);
}
.hero .container {
  z-index: 3;
}

.widget img {
  width: 100%;
  border-radius: 20px;
}

.service .card{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: transparent;
}
.service .card .detail-card{
    position: absolute;
    background-color: var(--color);
    height: 100%;
    padding-top: 15px;
    transform: translateY(-170px);
    transition: all 0.5s ease;
}
.service .card:hover .detail-card{
    transform: translateY(0);
}
.service .card .detail-card h3{
    color: #fff;
}
.service .card .detail-card p{
    color: #f7f7f7;
}

.service-contact{
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  background-image: url(../SRC/service-2.jpg);
  background-position-y: -200px ;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.service-contact .container-fluid{
  z-index: 2;
}
.service-contact .bg-contact{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background:linear-gradient(45deg,rgba(0,0,0,1),rgba(0,0,0,0.8), rgba(0, 4, 54, 0.3));
}
.service-contact .container-fluid h2,.service-contact .container-fluid p{
  width: 45%;
}