.actors_all {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
        }

        .actors {
          position: relative;
          box-sizing: border-box;

          height: auto;
        }

        .actors>img {
          width: 100%;
        }

        .actors_child {
          text-align: center;
          background-color: rgba(125, 30, 39, 0.85);
          padding-top: 34%;
          box-sizing: border-box;
          width: 100%;
          height: calc(100% - 5px);
          position: absolute;
          top: 0px;
          left: 0px;
          opacity: 0;
          transition: all 0.3s;
        }

        .actors_child:hover {
          opacity: 1;
        }

        .actors_child>p {
          font-size: 20px;
          color: white;
        }

        .actors_child>span {
          display: block;
          width: 10%;
          height: 0px;
          border: 1px solid #fff;
          margin: auto;
        }

        .actors_child>a {
          display: block;
          font-size: 14px;
          width: 45%;
          border: 1px solid #ba9597;
          height: auto;
          margin: 30px auto;
          color: #ba9597;
          padding: 5px 0px;
          transition: all 0.3s;
        }

        .actors_child>a:hover {
          background-color: #fff;
        }


        .actors_child>img {
          width: 28%;
          display: inline-block;
        }