/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: > 0.2%,last 2 versions
*/

/* Service Section Start */
.service-heading {
  margin-top: -100px;
  margin-bottom: 50px;
}
.service-heading h2{
  position: relative;
}

.service-heading h2::before{
  content: '';
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 70px;
  background: #ffc300;
}
@media screen and (max-width: 820px){
  .service-heading {
    margin-top: -40px;
    margin-bottom: 0;
  }
}
@media (max-width: 820px) {
  .service-heading h2 {
    text-align: center;
    padding-left: unset;
  }
}

.card_container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card_container .card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 380px;
  height: 326px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px #a5a5a5;
          box-shadow: 0px 0px 20px #a5a5a5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 30px;
  background: rgb(131,100,0);
  background: linear-gradient(45deg, rgba(131,100,0,1) 0%, rgba(207,158,0,1) 30%, rgba(255,195,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#836400",endColorstr="#ffc300",GradientType=1);
}

.card_container .card:hover {
  height: 400px;
}

.card_container .card .imgBx {
  position: absolute;
  top: 20px;
  width: 335px;
  height: 246px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card_container .card:hover .imgBx {
  top: -100px;
  scale: 0.85;
  -webkit-box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
          box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
}

.card_container .card .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card_container .card .card_content {
  position: absolute;
  top: 237px;
  width: 100%;
  margin-top: 30px;
  padding: 0 33px;
  height: 47px;
  overflow: hidden;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card_container .card:hover .card_content {
  top: 130px;
  height: 250px;
}

.card_container .card .card_content h2 {
  margin-top: 12px;
  margin-bottom: 30px;
  font-size: 1.6em;
  font-weight: 700;
  color: #000;
}

.card_container .card .card_content p {
  color: #333;
  padding: 20px 25px;
  margin-top: -20px;
  background-image: url(/images/text-background.webp);
  background-size: 310px;
  background-repeat: no-repeat;
  background-position: center;
}

.card_container .card .card_content a {
  display: inline-block;
  position: relative;
  top: 10px;
  padding: 12px 40px;
  background: #ffc300;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 5px #3d3d3d;
          box-shadow: 0 0 5px #3d3d3d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card_container .card .card_content a:hover {
  scale: 1.1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.truck {
  -webkit-animation: MoveUpDown 1s linear infinite;
          animation: MoveUpDown 1s linear infinite;
  position: relative;
  padding: 40px 100px;
}

.shadow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
  margin-bottom: 60px;
  width: 320px;
  height: 10px;
  background: transparent;
  -webkit-box-shadow: 0 25px 15px rgba(0, 0, 0, 0.8);
          box-shadow: 0 25px 15px rgba(0, 0, 0, 0.8);
}

@-webkit-keyframes MoveUpDown {
  0%, 100% {
    bottom: 5px;
  }
  50% {
    bottom: 10px;
  }
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 5px;
  }
  50% {
    bottom: 10px;
  }
}
/* Service Section End */