.service-area {
  overflow: hidden;
  position: relative;
}

.service-area .section-title h2 {
  margin-top: 0;
}

.service-area .section-title p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--title-primary-color);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  opacity: 0;
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.8;
}

.service-card:hover .service-content {
  top: 36%;
  -webkit-transform: translateY(-31%);
          transform: translateY(-31%);
}

.service-card:hover .service-content::before {
  display: none;
}

.service-card:hover .service-content .service-icon {
  background-color: #ffffff;
  color: var(--title-primary-color);
  margin-bottom: 20px;
}

.service-card:hover .service-content h3 {
  margin-bottom: 10px;
}

.service-card:hover .service-content h3 a {
  color: #ffffff;
}

.service-card:hover .service-content .content {
  display: block;
}

.service-card:hover .service-content .content p {
  color: #ffffff;
}

.service-card:hover .service-shape-1 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.service-card:hover .service-shape-2 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.service-card a {
  display: block;
}

.service-card .service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  background-color: transparent;
  z-index: 1;
  height: auto;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}

.service-card .service-content::before {
  content: '';
  position: absolute;
  bottom: -60px;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.service-card .service-content .service-icon {
  font-size: 35px;
  width: 75px;
  height: 75px;
  color: #ffffff;
  background-color: var(--green-color);
  line-height: 75px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}

.service-card .service-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card .service-content h3 a {
  color: var(--title-primary-color);
}

.service-card .service-content .content {
  margin-top: 10px;
  margin-bottom: 10px;
  display: none;
}

.service-card .service-content .content p {
  color: #ffffff;
  margin-bottom: 0;
}

.service-card .service-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.service-card .service-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.service-dots {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-dots-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-item {
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  opacity: 0;
}


.service-item::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--title-primary-color);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  opacity: 0;
}

.service-item:hover {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.service-item:hover::before {
  height: 100%;
  opacity: 1;
}

.service-item:hover::after {
  height: 100%;
  opacity: 0.8;
}

.service-item:hover .service-shape-1 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.service-item:hover .service-shape-2 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.service-item:hover .service-item-icon {
  background-color: #ffffff;
  color: var(--title-primary-color);
}

.service-item:hover h3 a {
  color: #ffffff;
}

.service-item:hover p {
  color: #ffffff;
}

.service-item .service-item-icon {
  font-size: 35px;
  width: 75px;
  height: 75px;
  color: #ffffff;
  background-color: var(--green-color);
  line-height: 75px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}

.service-item h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-item h3 a {
  color: var(--title-primary-color);
}

.service-item p {
  color: var(--title-primary-color);
  margin-bottom: 0;
}

.service-item .service-shape-1 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.service-item .service-shape-2 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.service-details-area {
  position: relative;
}

.service-details-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.service-details-shape img {
  max-width: 200px;
}

.services-article h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.services-article .services-article-img {
  margin-bottom: 30px;
}

.services-article .services-content h3 {
    margin-bottom: 20px;
}
.services-article .services-content p {
  margin-bottom: 15px;
    font-weight: 400;
}
.services-article .services-content p strong {
    margin-bottom: 15px;
    font-weight: 700;
    color:var(--primary-color)
}

.services-article .services-another-content p {
  margin-bottom: 20px;
}

.services-article .services-another-content .content-img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.services-article .services-content-more p {
  margin-bottom: 20px;
}

.services-article .services-specialist h2 {
  margin-bottom: 30px;
}

.service-categories {
  margin-bottom: 30px;
}

.service-categories h3 {
  font-size: 20px;
  color: var(--title-primary-color);
  margin-bottom: 20px;
}

.service-categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.service-categories ul li {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  display: block;
}

.service-categories ul li:last-child {
  margin-bottom: 0;
}

.service-categories ul li a {
  color: #ffffff;
  font-weight: 600;
  background-color: var(--primary-color);
  padding: 15px;
  display: inline-block;
  width: 100%;
}

.service-categories ul li a i {
  float: right;
  color: #ffffff;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.service-categories ul li a:hover {
  background-color: var(--secondary-color);
}

.service-open-hours {
  background-color: var(--title-primary-color);
  padding: 40px 30px;
  margin-bottom: 30px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.service-open-hours h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.service-open-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-open-hours ul li {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
}

.service-open-hours ul li:last-child {
  margin-bottom: 0;
}

.service-open-hours ul li span {
  float: right;
}