


.banner-section {
  background-image: url("assets/images/your-image.jpg"); /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 160px;
  position: relative;
}

.banner-overlayy {
  background-image: url(http://www.vcarepathlab.com/wp-content/uploads/2016/05/section_bg4-1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    transform: translateY(0px);
  width: 100%;
  height: 100px;
}

.banner-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left text */
.banner-title {
  color: #777777;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

/* Breadcrumb */
.banner-breadcrumb {
  color:rgb(153,153,153);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.banner-breadcrumb i {
  color: rgb(153, 153, 153);
  font-size: 16px;
}

.banner-breadcrumb span {
  text-transform: uppercase;
}

.banner-slash {
  margin: 0 4px;
}


@media (max-width: 768px) {
  .banner-section {
    height: 140px;
  }

  .banner-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .banner-title {
    font-size: 22px;
  }

  .banner-breadcrumb {
    font-size: 13px;
  }
}



.contact-area {
  padding: 50px 0;
  height: 807px;
}

.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading h2 {
     font-weight: 400;
    font-size: 28px;
    color: rgb(51, 51, 51);
  margin-bottom: 10px;
}

.contact-heading img {
  max-width: 120px;
}

/* Layout */
.contact-flex {
  display: flex;
  gap: 60px;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 18px;
  height: 60px;
  margin-bottom: 20px;
  border: 1px solid #e2e2e2;
  font-size: 15px;
  color: rgb(153, 153, 153);
  background-color: #fafafa;
}

.contact-left textarea {
  height: 200px;
  resize: none;
  background-color: #fafafa;
}

.btn-wrap {
  text-align: center;
}

.contact-left button {
  background: #8bc53f;
  color: #fff;
  border: none;
  padding: 12px 45px;
  font-size: 14px;
  cursor: pointer;
}

/* RIGHT */
.contact-right {
  flex: 1;
}

.contact-right h4 {
  font-size: 16px;
  color: rgb(119, 119, 119);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-right p {
  font-size: 16px;
  line-height: 28px;
  color: #777;
}

.contact-right a {
  color: #8bc53f;
  text-decoration: none;
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-flex {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .contact-heading h2 {
    font-size: 24px;
  }

  .contact-left button {
    width: 100%;
  }

  .map-box iframe {
    height: 230px;
  }
}
