.sidebar_sect.service {
  background: #19181b;
  padding: 0;
  text-align: center;
  gap: 0;
}

.sidebar-texts {
  display: flex;
  flex-direction: column;
  margin: 12px;
  gap: 10px;
}

.sidebar-texts a:link,
.sidebar-texts a:visited,
.sidebar-texts a:hover,
.sidebar-texts a:active {
  color: #a1a1a1;
}

.service-card {
  display: flex;
  background: #24232a;
  border-radius: 5px;
  padding: 8px;
  align-items: center;
  text-align: left;
}

.service-card-icon {
  margin: 8px;
}

.service-card-texts {
  display: flex;
  flex-direction: column;
  margin: 5px;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.service-card-desc {
  font-size: 0.9rem;
}

.service-card-price {
  background-color: #000000;
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-left: auto;
  margin-bottom: auto;
}

@media screen and (max-width: 960px) {
  .sidebar.service {
    width: auto;
    position: static;
    padding: 8px 8px 0 8px;
  }

  .sidebar_sect.service {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    z-index: 1000;
    margin: 0 0 8px 0;
  }
}