/*Default style*/
.dark-bg {
  background-color: rgb(0, 0, 0);
}
.secondary-heading {
  text-align: center;
  font-size: 26px;
  color: #8d7339;
  line-height: 1.5;
  font-weight: bold;
}
.padding-100 {
  padding: 30px 100px;
}
.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/s-ban.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.about-img img {
  animation-name: floating-image-up;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating-image-up {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

.about-content-box {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-inner-heading {
  color: rgb(213, 213, 213);
  font-size: 32px;
  line-height: 1.4;
}
.about-content p {
  color: rgb(169, 169, 169);
}

.call-bow-box a:link,
.call-bow-box a:visited {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.call-now-btn {
  padding: 10px 20px;
  border: 1px solid #b4780b;
}

@media only screen and (max-width: 600px) {
  /*Default*/
  .padding-100 {
    padding: 20px;
  }
  /*Default*/
  .about-breadcrumbs {
    height: 150px;
    background-image: url(../images/s-ban.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .about-content-box {
    display: flex;
    flex-direction: column;
  }
  .about-img img {
    width: 100%;
  }
}
