.u-section-1 {
  background-image: none;
}

.u-section-1 .u-sheet-1 {
  min-height: 33px;
}

.u-section-1 .u-image-1 {
  width: 150px;
  height: 150px;
  margin: 15px auto 70px 10px;
}

.u-section-1 .u-text-1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin: -216px -32px 30px 230px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-text-1 {
    font-size: 3.3rem;
    width: auto;
    margin: -260px 0 10px 100px;
  }
  .u-section-1 .u-image-1 {
    width: 120px;
    height: 120px;
    margin: 10px auto 140px 0;
  }
}

@media (max-width: 992px) {
  .u-section-1 .u-sheet-1 {
    min-height: 33px;
  }

  .u-section-1 .u-image-1 {
    width: 110px;
    height: 110px;
    margin: 10px auto 130px 0;
  }

  .u-section-1 .u-text-1 {
    font-size: 3rem;
    margin: -240px 0 10px 100px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 120px;
  }

  .u-section-1 .u-image-1 {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: -80px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2rem;
    margin-top: -90px;
    margin-bottom: 10px;
    margin-left: 100px;
    margin-right: auto;
    
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 380px;
  }

  .u-section-1 .u-image-1 {
    width: 234px;
    height: 234px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;

  }

  .u-section-1 .u-text-1 {
    animation-timing-function: ease;
    --animation-custom_in-translate_x: 0px;
    --animation-custom_in-translate_y: 0px;
    --animation-custom_in-opacity: 0;
    --animation-custom_in-rotate: 0deg;
    --animation-custom_in-scale: 1;
    font-size: 2.25rem;
    margin-left: auto;
    margin-top: 90px;
    margin-bottom: 8px;
    margin-right: auto;
  }
}
.u-section-2 .u-sheet-1 {
  min-height: 400px;
}.u-section-3 .u-sheet-1 {
  min-height: 400px;
}
/* body css code starts here */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
}

header {
  color: #000000;
  text-align: center;
  padding: 0px;
}

header h1 {
  color: #000000;
  font-size: 36px;
  margin: 0;
}

header h2 {
  color: #000000;
  font-size: 24px;
  margin: 10px 0;
}
header h4 {
  color: #000000;
  font-size: 24px;
  margin: 10px 0;
}

section {
  background-color: #fff;
  padding: 0px;
  margin: 0px;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 18px;
  margin: 5px 0;
}




/*----------Code of CSS for Governing body-----*/ 

.doctors {
  background: #fff;
}

.doctors .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 30px;
  border-radius: 10px;
}

.doctors .member .pic {
  
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.doctors .member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .member:hover img {
  transform: scale(1.1);
}

.doctors .member .member-info {
  padding-left: 30px;
}

.doctors .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #2c4964;
}

.doctors .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}

.doctors .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

