html .w-100 {
    width: auto !important;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  .banner-title{
    color: #FEFEFE;
    font-size: 64px;
    font-weight: 700;
    font-family: "Poppins", serif;
    font-style: normal;
  }
.banner-subtitle{
    font-size: 16px;
    color: #FEFEFE;
    font-weight: 400;
    font-family: "Cabin", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;

} 
.banner-subtitle a{
    text-decoration: none;
    color: #B8B8B8;
}
.banner-subtitle a:hover{
    color: white;
}
.btnBanner {
   
    background-image: linear-gradient(to bottom right,#02955F, #083778);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: "Poppins", serif;
    font-style: normal;
} 
.btnBanner a{
    text-decoration: none;
    color: #FFFFFF;
}
.btnBanner:hover{
    background-image: linear-gradient(to bottom right, #083778,#02955F);

}

/* team type */
.TeamContainer{
    padding: 50px 50px;
}
.teamType{
    display: flex;
    justify-content: center;
    gap: 30px;
    
}
.coreTeam{
    color: #969696;
    font-weight: 600;
    font-size: 32px;
    text-decoration: none;
    cursor: pointer;
    font-family: "Poppins", serif;
  font-style: normal;
}
.techTeam{
    color: #969696;
    font-weight: 500;
    font-size: 32px;
    cursor: pointer;
    font-family: "Poppins", serif;
  font-style: normal;
}
.active{
    color: #02A66A;
    font-weight: 600;
    font-size: 32px;
    text-decoration: underline;

}

.team-container{
    padding: 30px 50px;
}


.team-cards-part{
    display: grid;
    grid-template-columns: repeat(4,3fr);
    gap: 20px;
    margin-top: 30px;
}
.team-card{
    width: 100%;
    position: relative;
    overflow: hidden;
  
}
.team-card img{
    width: 100%;
    object-fit: cover;
}
.team-card-hover {
    background-color: #FBFBFB;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 6fr 6fr;
    padding: 10px;
    position: absolute;
    bottom: -100%; 
    width: 80%; 
    left: 50%;
    transform: translateX(-50%); 
    transition: bottom 0.4s ease-in-out;
}

.team-card:hover .team-card-hover {
    bottom: 10px;
}
.team-card-title{
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 500;
    font-family: "Cabin", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}
.team-card-subtitle{
    color: #969696;
    font-size: 14px;
    font-weight: 500;
    font-family: "Cabin", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;

}
.coreTeam .active{
    color: #02A66A;
}
.hover-icons{
    display: flex !important;
    justify-content: right  !important;
    justify-items: right !important;
    align-items: right !important;
}
.hover-icons span{
    color: #FFFFFF;
    background-color: #106EEF;
    padding: 5px 8px;
    border-radius: 20px;
}

@media screen and (max-width:768px) {
    .coreTeam,.techTeam{
        font-size:25px 
    }
    .TeamContainer{
        padding:10px
    }
    .team-cards-part{
        grid-template-columns: repeat(2,2fr);
    }
    .banner-title{
        font-size: 45px;
    }
}