.our-team {
  padding: 30px 0 40px;
  width: 40%;
  height: 340px;
  margin: auto;
  margin-bottom: 30px;
  background-color: #f7f5ec;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  margin-top: 41px;
}

.carousel-slider{
  margin-top: 40px;
  height: 440px;
}

.team-content .name{
    color: black;
    font-weight: 600;
}

.titletalk{
  color: black;
  display: block;
  font-weight: 400;
  font-size: 17px;
}

.tttopic{
  color: orangered
}

.our-team .picture {
  display: inline-block;
  /* height: 130px; */
  width: 104px;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: -1000px;
  transition: all 0.5s ease 0s;
  z-index: 3;
/*   opacity: 0.7; */
  background-color: rgba(0, 0, 0, 0.9);
   text-align: center;
}

/* .our-team:hover .social {
  left: 0;
} */

.social p{
  margin-top: 3%;
  font-size: 15px;
 color: orangered;
  z-index: 4;
   font-weight:500;
   /* margin-bottom: 3%; */
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: white;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: #1369ce;
  background-color: #f7f5ec;
}

.GDcolor{
  color: orangered;
  font-size: 27px;
}

.carousel-inner>.carousel-item {
  position: relative;
  display: none;
  /* -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left; */
  transition: 0.2s ease-in-out left;
}


@media only screen and (max-width: 762px)  {
  .GDcolor{
    color: orangered;
    font-size: 17px;
  }
  .our-team{
    width: 70%;
    height: 360px;
  }
  .carousel-slider {
    height: 470px;
  }
}