


#banner {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  cursor: default;
  height: 100vh;
  min-height: 30em;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#services { 
  display: flex;
  align-items: top;
  background: #fff;
  
  }

.container {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr;
  background: #fff;
  text-align: left;
  margin: 1.5em;
  min-height: 700px;
  
}

body.landing #page-wrapper {
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../../images/service-banner.webp");
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../../images/service-banner.webp");
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../../images/service-banner.webp");
	background-image: linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../../images/service-banner.webp");
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

body.is-mobile.landing #banner,
body.is-mobile.landing .wrapper.style4 {
  background-image:
    -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../images/service-banner.webp");
  background-image:
    -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../images/service-banner.webp");
  background-image:
    -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../images/service-banner.webp");
  background-image:
    linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../images/service-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

h5{
  color: black;
}

#services h5,
#services h5 + p {
    display: inline;
    font-size: 1em;
}

#services h5 + p a {
    color: #000;
}


.column {
  padding: 20px;
  align-items: center;
  max-width: none;
  
}

.column h1 {
  font-size: larger;
  text-align: left;
  color: black;
}

.categories {
  border-right: #cfcfcf solid 1px;
}

.category-item {
  padding-left: 10px;
  margin-bottom: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  color: #323437;
  text-transform: uppercase;
  font-size: medium;
}

.category-item:hover,
.category-item.active {
  font-size: medium;
  font-weight: 600;
}

.service-category {
  display: none;
}
.service-category.active {
  display: block;
}

.service-image {
  display: none;
}
.service-image.active {
  display: block;
}


.service-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #ddd;
}

.price {
  font-weight: 600;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  width: 350px; 
  height: 450px; 
  object-fit: cover;
  border-radius: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  margin: 10px 15px;
}

.service-category p {
  font-style: italic;
}

.service-name {
  color: black;
  white-space: wrap;
}

.dots {
  flex: 1;
  height: 6px;
  margin: 0 12px;
  background-image: radial-gradient(circle, #999 2px, transparent 2px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
  background-position: center;
}

.service-price {
  color: black;
  white-space: nowrap;
}

#services h5 + p {
    margin-top: 0;
}

#services h5 + p a {
    color: #000;
}

@media(max-width: 1200px) {
  .image-section {
    display: none;
  }
  .container {
    grid-template-columns: 0.3fr 1fr;
  }
}

.service-category h1 {
  text-decoration: underline;
}

@media (max-width: 736px) {
  .service-category h1{
    margin-top: 1.5em;
  }
  .categories {
    display: none;
  }

  .container {
    grid-template-columns: 1fr;
    margin: 0.5em;
    gap: 10px;
  }

  .container > .column.services {
    min-width: auto;
  }

  .column {
    padding: 10px 15px;
  }

  .service-item {
    margin-bottom: 8px;
    padding-bottom: 4px;
  }

  .price-row {
    margin: 6px 0;
  }

  .service-category h1 {
    padding-top: 0.5em;
  }

  .wrapper.style5 {
    padding: 0.1em;
  }

  html,
  body,
  #page-wrapper {
    overflow-x: hidden;
  }
}
	