
.header-inner {
  background-color: brown;
  position: relative;
  height: 70px;
  color: wheat;
  z-index: 11;
  margin-bottom: 40px;
}

.header-inner__top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.header-inner__none {
  display: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrapper {
  padding: 70px 0 30px;
}

.card {
  display: flex;
  justify-content: space-between;
  max-width: 930px;
  height: 270px;
  width: 100%;
  padding: 10px 5px;
  border: 1px solid #939393;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.card__image {
  height: 180px;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 50px;
  margin-bottom: 30px;
}

.card__image:hover {
    background-color: brown;
  }

.card__image:hover .card__inner {
    background-color: whitesmoke;
}

.card__left {
  width: 30%;
  padding: 20px;
  border-right: 1px solid #939393;
}

.card__right {
  width: 70%;
  padding: 10px 20px;
}

.card__inner {
  display: block;
  border: 1px solid gray;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  object-fit: cover;
  overflow: hidden;
}

.card__inner img {
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  width: 100%;
}

.card__name {
  font-family: "OpenSans", sans-serif;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  color: #c71919;
  margin-bottom: 25px;
}

.card__story {
  color: #858585;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}

.card__story p {
  margin-bottom: 20px;
}

.blockquote-fed {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-right: 50px;
  margin-bottom: 40px;
  
}
  .blockquote-fed__face {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    width: 100%;
    height: 100px;
    margin-left: 30px;
    border-radius: 50%;
    position: relative;
    background-image: url(http://ramchess.ru/wp-content/themes/ramchess/assets/app/images/icons/lavro.svg);
    background-position: center center;
    background-repeat: no-repeat;
  }

  .blockquote-fed__img {
    max-width: 75px;
	border-radius: 50%;
  }

  .blockquote-fed__cite {
    display: block;
    font-family: Georgia;
    font-style: italic;
    padding-left: 70px;
    font-size: 24px;
    line-height: 1.4;
    color: #fb4141;
    
  }

  .blockquote-fed__author {
    display: block;
    @extend %opensans-400;
    font-size: 14px;
    color: #858585;
    margin-top: 10px;
  }


@media (max-width: 960px) {
  .blockquote {
    margin-bottom: 20px;
  }
}

@media (max-width: 550px) {
  .blockquote {
    display: block;
    padding-right: 0;
    margin: 0 auto;
    text-align: center;
  }
    .blockquote__face {
      margin: 0 auto 20px;
    }

    .blockquote__cite {
      padding: 0 30px;
      margin: 0 auto 20px;
    }
  
}