        .our-team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }

        .team-member {
            width: 17%;
            margin: 15px 0px;
        /*padding: 10px;*/
         /* border: 1px solid #ddd;*/
            cursor: pointer;
           /* background-color: #f9f9f9;*/
            transition: all 0.3s ease;
        }

        /*.team-member.active {
            border-color: #007bff;
            background-color: #e0f7ff;
        }
*/
        .team-member-info {
            display: flex;
/*            align-items: center;*/
            margin-bottom: 10px;
            flex-direction: column;
        }

        .team-member-info img {
            max-width: 50px;
            margin-right: 10px;
        }

        .team-member-name {
/*            margin-right: 15px;*/
            margin-top: 25px;
            color:#828068;
            font-size: 28px;
            line-height: 35px;
            font-family: "Calluna";
            font-weight: 400;
            font-style: italic;
            width: 50%;
        }
         .team-member-name:last-child{
            width: 42%!important;
        }

        .team-member-position {
            border-top:1px solid #a3a182;
            padding-top: 10px;
            margin-top: 10px;
            font-style: italic;
            text-transform: uppercase;
            color:#404733;
             font-family: "utile-display";
             padding-right: 62px;
        }

        .team-member-btn {
            background-color: #007bff;
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .team-member-btn:hover {
            background-color: #0056b3;
        }

        #team-member-display {
            margin-bottom: 30px;
            padding: 15px;
            border: 2px solid #007bff;
            background-color: #e9f4ff;
        }

       
        .top-our-team{
            display: flex;
            border-top:1px solid #a3a182;
            border-bottom: 1px solid #a3a182;
            padding: 0px 30px;
        }
        .team-member-image-title-position{
            width: 25%;
             padding: 40px 30px;
        }
         .team-member-image-title-position h3{
            color:#828068;
            margin-bottom: 6px;
         }
         .team-member-image-title-position p{
            color:#404733;
            text-transform: uppercase;
            letter-spacing: 2px;
         }
        .team-member-content{
            border-left:1px solid #a3a182;
            width:75%;
            padding: 40px 0px;
            margin-top: 0px;
            padding-left: 30px;
            color: #404733;
            font-size: 18px;
            font-family: "utile-display";
        }

        @media screen and (max-width:991px){
           .team-member {
              width: 30%;
        }
        .team-member-image-title-position {
         width: 35%;
        padding: 40px 20px 40px 0px;
}
    }
@media screen and (max-width:767px){
    .team-member {
        width: 48%;
    }
    .top-our-team{
       display: flex;
      flex-direction: column;
    }
    .team-member-image-title-position{
        width: 100%;
         padding: 40px 20px 10px 0px;

    }
    .team-member-content {
    border-left: 0px solid #a3a182;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    padding-left: 0px;
  }
  .our-team-members{
    gap: 12px;
  }
  .team-member-position {
    padding-right: 10px;
    font-size: 16px;
}

 .team-member-name {
    width: 100%;
    font-size: 20px;
}
.top-our-team{
    padding: 0px 0px 30px;
}

}