body {
    padding-top: 76px;
    font-family: system-ui, sans-serif
}

.active {
    font-weight: bold
}

.logo {
  width: 158px;
}

.site-container,
.content-wrapper {
    width: 80%;
    max-width: 1400px;
    margin: auto
}

.site-navbar {
    background: #fff;
    transition: .3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}

.hero-carousel img {
    height: auto
}

.service-section {
    margin: 20px auto 20px auto;
    border: 2px solid #eee;
	background: linear-gradient(180deg,#fff,hsla(0,0%,100%,0));
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.15);
	width: 70vw;
}

.content-section {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    /* align-items: flex-start */
    align-items: center;
}

.content-section.reverse {
    flex-direction: row-reverse
}

.section-hr {
    border-top: 1px solid black; 
    width: 80vw; 
    margin: auto;
}

.text-content {
    flex: 0 0 70%
}

.image-content {
    flex: 0 0 30%
}

.image-content img {
    width: 350px;
}

.text-content.service {
    margin-left: 14%;
    flex: 0 0 40%
}

.footer-section {
    background: #1f2937;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    font-size: 13px;
}

.footer-section p {
    margin-top: 0.75rem;
    margin-bottom: auto;
}

.footer-links {
    text-align: left;
}

.contact-icon, .footer-icon {
  height: 24px;
  width: auto;
}
.footer-icon {
  filter: invert(1) brightness(1.5);
}

.footer-logo {
  width: 128px;
  filter: invert(1) brightness(1.5);
}

.breadcrumb-area {
    padding: 1rem 0;
    /* font-weight: 600; */
    color: #ddd;
}

.breadcrumb-area a {
    color: #ddd;
    text-decoration: none;
}

.para {
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.top-bg {
  background-color: #ccc;
  background-image: url(/static/img/top-bg.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 150px;
  left: 0;
  position: relative;
  width: 100vw;
  z-index: 2;
}

.list-style-none {
  list-style: none;
}
.fz-24px {
  font-size: 24px;
}

.map {
  border: 0;
  height: 350px;
  width: 100vw;
}

.form input {
  background: hsla(0,0%,100%,0);
  border: 2px solid #f4f4f4;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 hsla(0,0%,67%,.13);
  color: #6c757d;
  font-family: Roboto;
  font-size: 16px;
  width: 95%;
}
.form textarea {
  background: hsla(0,0%,100%,0);
  border: 2px solid #f4f4f4;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 hsla(0,0%,67%,.13);
  color: #6c757d;
  font-family: Roboto;
  font-size: 16px;
  margin: 1rem 0;
  outline: none;
  padding: 1rem;
  resize: none;
  width: 100%;
}
.other-inputs {
  padding: 1rem;
}

@media(max-width:768px) {
    .site-container,
    .content-wrapper {
        width: 95%
    }

    .content-section,
    .content-section.reverse {
        flex-direction: column
    }

    .text-content,
    .image-content {
        flex: 100%
    }

    .service-section {
        width: 95%;
        margin: auto;
        border: none;
    }

    .image-content img {
        width: 98%;
    }
}