.leadership-profile__section{
  margin: 50px 0;
}

.leadership-profile__content{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  flex-wrap: wrap;
  padding: 0px;
}

.leadership-profile-title,
.leadership-profile-title h2{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #0070B9;
  margin-bottom: 30px;
}

.leadership-profile-title h3{
  font-size: 14px;
}

.leadership-profile-title h4{
  font-size: 14px;
  font-weight: 600;
}

.leadership-profile-title h5{
  font-size: 12px;
  font-weight: 600;
}

.leadership-profile__item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: 0px; */
  gap: 24px;
  /* max-width: 240px; */
  margin-bottom: 30px;
  cursor: pointer;
}

.profile-photo-wrapper{
  width: 100%;
  height: auto;  
  filter: drop-shadow(4px 4px 9.7px rgba(0, 0, 0, 0.15));
  border-radius: 15px;
  overflow: hidden;
  background-color: #dbdbdb;
  border: 1px solid #ccc;

  overflow: hidden;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}

.profile-photo-wrapper:hover{
  border: 1px solid #90D9F9;
}

.profile-photo-wrapper img{  
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 5px;
  width: 100%;
}

.position-title-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 100%;
}

.position-title{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  color: #181818;
}

.position-title-wrapper .title-bar-color{
  height: 9px;
  background: #90D9F9;
  border-radius: 40.75px;
  flex-grow: 1;
  margin-left: 10px;
}

.profile-name{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #063354;
}

.hidden-content{
  display: none;
}

.modal-popup {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); 
  justify-content: center;
  align-items: center;
}

.modal-popup-container {
  background-color: #fff;
  margin: auto;
  padding: 60px;
  width: 90%;
  border-radius: 15px;
  border: 1px solid #90D9F9;
  box-shadow: 4px 4px 9.7px rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-popup-close {
  position: absolute;
  top: 50px;
  right: 60px;
  cursor: pointer;
  font-size: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding-right: 80px;
}

.position-description{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 24px;
}

.linkein-icon{
  width: 24px;
  height: 24px;
  background: #0070B9;
  text-align: center;
}

.modal-popup .leadership-profile__item{
  margin-bottom: 0;
}

@media (max-width: 768px) { 
  .leadership-profile__content{
    justify-content: center;
  }

  .content-wrapper{
    flex-direction: column;
    justify-content: center;
  }

  .modal-popup-close{
    top:30px;
    right: 30px;
  }
}


@media (max-width: 533px) {  
  .modal-popup-container{
    padding: 40px 20px;
  }

  .content-wrapper{
    padding: 0;
  }

  .modal-popup-close{
    top:10px;
    right: 15px;
  }
}