.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-color:transparent;
}

body {
  display: flex;
  height: 100vh;
  width: 100%;
}
.swiper-container {
  width: 100%;
  height: 100vh;
  padding-top: 11%;
}


.person {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 280px;
}
.container {
  cursor: pointer;
  border-radius: 50%;
  height: 312px;
  -webkit-tap-highlight-color: transparent;
  transform: scale(0.48);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 400px;
}
.container::before {
  background-color: transparent;
  content: "";
  height: 390px;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border-bottom: 20px solid rgb(255, 255, 255);
  width: 100%;
}
.container:hover {
  transform: scale(0.54);
}
.container-inner {
  clip-path: path(
    "M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z"
  );
  position: relative;
  transform-origin: 50%;
  top: -200px;
}
.circle {
  border-radius: 50%;
  cursor: pointer;
  height: 380px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 380px;
}

.img {
  pointer-events: none;
  position: relative;
  transform: translateY(20px) scale(1.15);
  transform-origin: 50% bottom;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.container:hover .img {
  transform: translateY(0) scale(1.2);
}

.img2 {
  left: 80px;
  top: 244px;
  width: 250px;
}

.img3 {
  left: 140px;
  top: 244px;
  width: 120px;
}
.name {
  color: #404245;
  font-size: 25px;
  font-weight: 600;
  margin-top: -20px;
  width: 120%;
  text-align: center;
}
.title {
  color: #6e6e6e;
  font-size: 14px;
  margin-top: 4px;
}

.open-product{
  top: 105%;
  position: absolute;
  z-index: 10;
  pointer-events: all;
  cursor: pointer;
}

.open-product span svg{
  width: 28px;
}

.open-product:hover .progress {
  transform: scale3d(1.2, 1.2, 1);
}

.open-product:hover .progress__path {
  stroke-dashoffset: 0;
}

.open-product span{
  font-size: 13px;
}

.navigation{
  display: none;
}

.background-sise-item:nth-child(4){
  top: 10%;
}


@media screen and (max-width: 920px) {
  .open-product{
    top: 99% !important;
  }
  .open-product span{
    font-size: 9px;
  }
  .navigation{
    display: flex;
  }
  .name{
    font-size: 20px;
  } 
  .swiper-container{
    padding-top: 13%;
  }
  .open-product span svg{
    width: 14px;
  }
}