body {
  font-family: Poppins, sans-serif;
  font-weight: 300;
  background: #fff;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.pageWrapper {
  overflow: hidden;
  padding-top: 179px;
}

@media (max-width: 991px) {
  .pageWrapper {
    padding-top: 257px;
  }
}

a {
  color: inherit;
  transition: 0.2s;
  text-decoration: none;
}

a:hover {
  color: #0051b5;
}

ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.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%;
  }
}