/* professionals */
.professionals {
  padding-top: 35px;
  padding-bottom: 80px;
}
.professionals .title {
  margin-bottom: 30px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.professionals .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2,1fr);
  gap: 25px 25px;
}
.professionals .list .itm {
  background-image: -o-radial-gradient(183.65% 197.09%, 348px 348px, #dfe8ed 0%, #bbccd4 100%);
  background-image: radial-gradient(348px 348px at 183.65% 197.09%, #dfe8ed 0%, #bbccd4 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-top: 10px;
  cursor: pointer;
}
.professionals .list .itm:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url(../../../img/triangle-avatar.svg);
  width: 290px;
  height: 290px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.professionals .list .itm .avatar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 278px;
}
.professionals .list .itm .avatar img{
  width: 100%;
  position: relative;
  z-index: 2;
}
.professionals .list .itm .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: -15px;
  right: 0px;
  width: 345px;
  height: 72px;
  z-index: 4;
  background-color: #f3f4f5;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.professionals .list .itm .more .name {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  position: relative;
  margin-right: 40px;
}
.professionals .list .itm .more .name:after {
  position: absolute;
  right: -20px;
  top: -2px;
  content: '';
  width: 1px;
  height: 20px;
  background-color: #d1D1D1;
}
.professionals .list .itm .more .position {
  color: #4b4b4b;
  font-size: 15px;
  font-weight: 300;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.professionals .list .itm:hover .more {
  background-color: #621bff;
}
.professionals .list .itm:hover .more .name {
  color: #ffffff;
}
.professionals .list .itm:hover .more .position {
  color: #ded0ff;
}
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {
    
}
@media only screen and (max-width: 768px) {
  .professionals .list .itm:after {
    width: 150px;
    height: 150px;
  }
  .professionals .list .itm .more {
    width: 100%;
  }
  .professionals .list .itm .avatar {
    width: 250px;
  }
  .professionals .list {
    gap: 15px 15px;
  }
  .professionals {
    padding-top: 70px;
    padding-bottom: 95px;
  }
}
@media only screen and (max-width: 576px) {
  .professionals .list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1,1fr);
    gap: 35px 15px;
  }
  .professionals .list .itm .more {
    width: 95%;
  }
}
@media only screen and (max-width: 375px) {

}