/* home banner section css start */

section.home-banner {
  position: relative;
  background-image: url("./img/about-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 75vh;
}

section.home-banner .home-cont {
  align-self: center;
  padding: 150px 50px;
  position: relative;
}

section.home-banner .home-cont .hero-head {
  padding: 30px;
}

section.home-banner .home-cont .hero-head h6 {
  color: var(--other-color);
}

section.home-banner .home-cont .hero-head h1 {
     font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
}









/* team progress section start */



section.teamprgrs {
  position: relative;
  padding: 60px 66px;
}

section.teamprgrs .left-text {
align-self: center;
}

section.teamprgrs .left-text h2{
  font-size: 48px;
  font-weight: 700;
}




section.teamprgrs .right-bars{
  position: relative;
}

section.teamprgrs .right-bars .bar-item {
  padding: 15px 0;
}

section.teamprgrs .right-bars .bar-item h5{
 padding: 10px 0;
 font-weight: 600;
 text-transform: capitalize;
 font-size: 18px;
}

.right-bars .bar-item .progress-bar{
  background: var(--other-color);
}



/* team member card section start */


section.teammembers {
   position: relative;
  padding: 60px 66px;
  background: var(--lt-bg-color);
}

.teammembers-row {
    justify-content: center;
    gap: 30px 0;
}

.teammembers-bx,
.tmmbrcrdicon {
  position: relative;
  /* border: 2px solid red; */
}

.teammembers-bx .tmmbrcard {
  border: none;
  text-align: center;  
}

.tmmbrcrdbdy {
  position: relative;
  /* border: 2px solid red; */
  max-height: 90px;
  overflow: hidden;
   transition: max-height 0.6s ease;
}

.tmmbrcard:hover .tmmbrcrdbdy {
  max-height: 140px;
}

.tmmbrcrdbdy h5 {
  font-weight: 600;
  text-transform: capitalize;
}

.tmmbrcrdbdy p {
  font-weight: 500;
  text-transform: capitalize;
  color: #707582;
  font-size: 18px;
}

.teammembers-bx img.tmmbrimg {
  height: 350px;
  object-fit: cover;
}

.tmmbrcrdicon ul.tmmbrcrdul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  padding: 0;
}

.tmmbrcrdicon ul.tmmbrcrdul li {
  list-style-type: none;
}

.tmmbrcrdicon ul.tmmbrcrdul li a {
  text-decoration: none;
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.tmmbrcrdicon ul.tmmbrcrdul li a:hover {
  color: var(--other-color);
}