/*Default style*/
.dark-bg {
  background-color: rgb(0, 0, 0);
}
.secondary-heading {
  text-align: center;
  font-size: 36px;
  color: #8d7339;
  line-height: 1.5;
  font-weight: bold;
  padding: 30px 0;
}
.padding-150 {
  padding: 30px 220px;
}
.grid--3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
.sidebar-floating-img {
  width: 30%;
  position: absolute;
  right: -100px;
  top: -60px;
  opacity: 50%;
  transform: rotate(50deg);
  overflow: hidden;
}
/*Default style*/
.about-breadcrumbs {
  height: 300px;
  background-image: url(../images/service-banner-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.service-box {
  border: 1px solid #d7a62e;
}
.service-box img {
  /* height: 200px;
  width: 340px; */
  width: 100%;
  height: auto;
  size: cover;
}

.service-content {
  padding: 40px 10px;
}

.service-inner-title {
  font-size: 18px;
  text-transform: uppercase;
  color: rgb(184, 184, 184);
}

.service-content p {
  color: rgb(154, 154, 154);
}

/* .sidebar-image {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
} */

@media only screen and (max-width: 1024px) {
  .padding-150 {
    padding: 30px 100px;
  }

  .grid--3 {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 600px) {
  /*Default Styles*/
  .padding-150 {
    padding: 20px;
  }
  /*Default Styles*/
  .about-breadcrumbs {
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .grid--3 {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .service-box img {
    width: 100%;
  }
}
