.fild {
  display: flex;
  justify-content: space-between;
  height: 40vw;
  min-height: 280px;
  max-height: 40vw;
  max-width: 60vw;
  margin: 3% auto;
  border: 3px solid black;
  background-image: url("../images/geometric.png");
  background-size: cover;
  box-shadow: 10px -10px 23px 4px black;
}
.fild > div > img {
  max-height: 100%;
}
.non-shadow{
  animation: none;
}
.shadow {
  animation: shadow 2s ease-in-out 0s 1 normal forwards;
}

@keyframes shadow {
  0% {
    box-shadow: none;
  }
  100% {
    box-shadow: 10px -10px 23px 4px black;
  }
}
.fild > div {
  max-width: 34vw;
  text-align: center;
}
.left,
.right {
  position: relative;
  top: 45%;
  width: 40px;
  height: 40px;
  margin: 20px;
  padding: 0;
  text-align: center;
  border-style: none;
  border-radius: 50%;
  align-items: flex-end;
  box-shadow: 3px -3px 12px 2px black;
  background-color: rgba(219, 218, 218, 0.541);
}
.left,
.right:hover {
  cursor: pointer;
}
.left,
.right:focus {
  outline: none;
}
.right:hover img {
  left: 2px;
  transition: 2s ease-in-out;
}
.left:hover img {
  right: 2px;
  transition: 2s ease-in-out;
}
button > img {
  display: block;
  position: relative;
  height: 30px;
  width: 30px;
  margin: auto;
}
.left > img {
  transform: rotateZ(270deg);
}
.right > img {
  transform: rotateZ(90deg);
}
@media (min-width: 1367px) {
  .fild {
    max-width: 1200px;
  }
}
@media (max-width: 760px) {
  .fild > div {
    max-width: calc(64% + 2vw);
  }
  .fild {
    max-width: calc(35% + 60vw);
  }
  .left,
  .right {
    margin: 0;
  }
}
