.service-sidebar-box .service-title {
  --empty: #000;
}

.service-sidebar-box ul {
  margin-top: 10px;
  list-style-type: none;
}

.service-sidebar-box ul li {
  position: relative;
}

.service-sidebar-box ul li a {
  display: block;
  padding: 20px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.service-sidebar-box ul li:hover a {
  background-color: #ffffff;
  box-shadow: 1px 1px 60px 0px rgb(0, 0, 0, 0.1);
  transition: 0.3s;
}

.service-sidebar-box .active {
  background-color: #ffffff;
  box-shadow: 1px 1px 60px 0px rgb(0, 0, 0, 0.1);
}

.service-sidebar-box .service-text {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: #777777;
  transition: 0.3s;
}

.service-sidebar-box ul li:hover .service-text {
  color: #b68c5a;
  transition: 0.3s;
}

.service-sidebar-box .active .service-text {
  color: #b68c5a;
}

.service-sidebar-box ul li span:last-child {
  position: absolute;
  right: 20px;
  transition: 0.3s;
}

.service-sidebar-box .active span:last-child {
  right: 30px;
}

.service-sidebar-box ul li:hover span:last-child {
  right: 30px;
  transition: 0.3s;
}

.service-contact.overlayed-bg {
  padding: 40px;
  text-align: center;
  margin-top: 50px;
  z-index: 1;
}

.service-contact-box {
  position: relative;
  background-color: #ffffff;
  padding: 8px 17px 8px 27px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.service-contact-box::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #b68c5a;
  border-radius: 100%;
  top: 0;
  left: -30px;
}

.service-contact-icon {
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b68c5a;
  box-shadow: 1px 1px 30px 0px rgb(0, 0, 0, 0.1);
  z-index: 1;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}

div.sticky.header-appear {
  top: 100px;
}