.services-page-container .container {
    padding: 115px 20px;
}

@media (max-width: 1024px) {
    .services-page-container .container {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .services-page-container .container {
        padding: 45px 20px;
    }
}

.services-page-container {
    border-top: 1px solid #dbdbdb;
}

.service-wrapper {
    padding: 20px 0;
}

.service-wrapper h3.title-alt {
    margin-bottom: 20px;
}

.service-wrapper ul.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-wrapper p.info {
    margin-bottom: 20px;
}

/* Sidebar Menu */
.menu-services li {
  background: #eef0f3;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  transition: 0.2s;
  border-left: 0 solid transparent;
}

.menu-services li:not(:last-child) {
  margin-bottom: 5px;
}

.menu-services li.active,
.menu-services li:hover {
  border-left: 5px solid #0051b5;
  background: #fdfdfd;
}

.menu-services li:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 0.7rem;
  margin-left: auto;
  color: #0051b5;
}

.menu-services li a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.menu-content > div {
  display: none;
}

.menu-content > div.selected {
  display: block;
}

.service-elem {
  flex-basis: 48%;
  max-width: 48%;
  margin: 1%;
  padding: 15px;
  box-shadow: 3px 3px 4px 0 #cbcbcb;
}

.service-elem .title {
  background: #0051b5;
  color: #fff;
  font-size: 1rem;
  padding: 7px 10px;
  text-align: center;
}

.service-elem .img-wrapper {
  overflow: hidden;
  height: 200px;
}

.service-elem .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#return-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 25px;
  right: -50px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  transition: right 0.2s linear;
  outline: none;
  z-index: 10;
}

#return-to-top.visible {
  right: 25px;
}

#return-to-top:hover {
  background: #5d5d5d;
}

@media (max-width: 767px) {
  .service-elem {
    flex-basis: 96%;
    max-width: 96%;
  }
}