.applicants__list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.title_b_two {
  color: var(--white, #FFF);
  font-family: TT Runs;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 0px;
  line-height: normal;
  text-transform: uppercase;
}

.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.card__wrapper {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  max-width: 280px;
  width: 100%;
  background: var(--grey, #2F363A);
  border-radius: 40px 0;
  border-bottom: 12px solid #D72528;
  position: relative;
  bottom: 0;
  height: 313px;
}

.card__img {
  position: relative;
  margin-right: 20px;
}

.card .avatar {
  position: relative;
  width: 147px;
  height: 216px;
  max-width: 147px;
}

.video_player {
  width: 100%;
  height: 229px;
  border-bottom: 7px solid #D72528;
  padding-bottom: 0px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.video_player img {
  width: 100%;
}

.video_player:after {
  content: "";
  position: absolute;
  background-size: contain;
  width: 90px;
  height: 90px;
  left: 50%;
  transform: translateX(-50%);
  top: 30%;
  text-align: center;
  background-image: url("../../../../assets/img/play_video.svg");
  background-repeat: no-repeat;
}

.card .avatar:after {
  background: black;
  z-index: 2;
  border: 1px solid #ffb600;
}

.avatar__gerb {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: 133px;
  max-height: 133px;
  height: 100%;
}

.avatar__img {
  z-index: 10;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 2px);
  -o-object-fit: cover;
     object-fit: cover;
}

.card__info {
  padding-top: 20px;
  padding-right: 33px;
  max-width: 40%;
}

.card__info p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "TT Runs", serif;
}

.card__info .country span {
  font-family: "TT Runs", serif;
  font-size: 14px;
}

.card__info .role span {
  font-family: "TT Runs", serif;
  font-size: 14px;
}

.card .name {
  font-size: 22px;
  font-weight: 800;
  max-width: 100%;
}

.card .club {
  font-size: 16px;
  font-family: "TT Runs", serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.card .game-color {
  color: var(--red, #D72528);
  font-family: "TT Runs", serif !important;
}

.card .game img {
  height: 30px;
  display: inline-block;
}

.card .game svg {
  display: inline-block;
}

.card .game {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card .game .game-right {
  width: 50%;
}

.card .row {
  margin-bottom: 18px;
}

.role-color {
  color: var(--red, #D72528);
  margin-bottom: 5px;
  font-family: "TT Runs", serif !important;
}

.country div {
  display: flex;
  align-items: center;
}

.country img {
  max-width: 31px;
  margin-right: 4px;
}

.country-color {
  color: var(--red, #D72528);
  font-family: "TT Runs", serif !important;
  margin-bottom: 5px;
}

.card__btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__btns .btn_light {
  border-radius: 12px;
  background: var(--red, #D72528);
  color: white;
}

.card__btns .btn_light:hover {
  color: white;
}

.applicants__item .card__btns {
  margin-top: 10px;
}

@media (min-width: 620px) {
  .card {
    max-width: 450px;
  }
  .card .name {
    font-size: 22px;
  }
  .card__info {
    max-width: 100%;
    width: 53%;
  }
  .card .row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
  }
  .card__info .date .date-color {
    color: var(--red, #D72528);
    font-family: "TT Runs", serif !important;
  }
  .card__info .date span {
    font-family: "TT Runs", serif;
    font-size: 14px;
  }
  .card__info .score-color {
    color: var(--red, #D72528);
    font-family: "TT Runs", serif !important;
  }
  .card__info .score span {
    font-family: "TT Runs", serif;
    font-size: 14px;
  }
  .datescore {
    margin-top: 22px;
    margin-bottom: 14px !important;
  }
  .datescore-two {
    margin-bottom: 22px !important;
  }
  .card__wrapper {
    max-width: 100%;
  }
  .card .avatar {
    height: 285px;
  }
  .card__btns {
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
  }
  .card__img {
    max-width: 201px;
    width: 100%;
    margin-right: 3px;
    bottom: 0;
    position: absolute;
    left: 0;
  }
  .card .avatar {
    max-width: 201px;
    width: 100%;
  }
}
@media (min-width: 1020px) {
  .applicants__list {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    gap: 72px;
  }
  .card {
    max-width: 450px;
  }
}
@media (max-width: 1030px) {
  .applicants__list .applicants__item {
    margin: 0 auto;
  }
  .title_b_two {
    font-size: 60px;
    line-height: 81px;
  }
}
@media (max-width: 768px) {
  .title_b_two {
    font-size: 50px;
    line-height: 67px;
  }
}
@media (max-width: 640px) {
  .card__wrapper {
    max-width: 100%;
  }
  .applicants__item .card__info {
    padding-right: 0;
    max-width: inherit;
    width: 80%;
  }
  .applicants__item .card__img {
    margin-right: 10px;
    display: flex;
    align-items: flex-end;
  }
  .applicants__item .card__info .name {
    font-size: 16px;
  }
  .applicants__item .card__info .club {
    font-size: 14px;
  }
  .applicants__item .card__info .country-color {
    font-size: 14px;
  }
  .applicants__item .card__info .role-color {
    font-size: 14px;
  }
  .applicants__item .card__info .game-color {
    font-size: 14px;
  }
  .applicants__item .card__info .country span {
    font-size: 14px;
  }
  .applicants__item .card__info p {
    font-size: 14px;
  }
  .applicants__item .card__info .date span {
    font-size: 14px;
  }
  .applicants__item .card__info .score span {
    font-size: 14px;
  }
  .applicants__item .card__info .row {
    display: flex;
    justify-content: space-between;
  }
  .applicants__item .card__info .row .date {
    width: 50%;
  }
  .applicants__item .card__info .row .score {
    width: 50%;
  }
  .applicants__item .card__info .row .country {
    width: 50%;
  }
  .applicants__item .card__info .row .role {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .title_b_two {
    font-size: 30px;
    line-height: 40px;
  }
  .applicants__item .card__info .row .role span {
    display: block;
    word-break: break-all;
    padding-right: 10px;
  }
  .applicants__item .card__info .country span {
    font-size: 10px;
  }
  .applicants__item .card__info .row .role span {
    padding-top: 6px;
    font-size: 10px;
  }
  .applicants__item .card__info .date span {
    font-size: 10px;
  }
  .applicants__item .card__info .score span {
    font-size: 10px;
  }
  .video_player {
    height: 173px;
  }
}
@media (max-width: 400px) {
  .card__wrapper {
    height: 281px;
  }
  .applicants__item .card__img {
    margin-right: 0px;
  }
  .avatar__img {
    height: 85%;
  }
}
@media (max-width: 375px) {
  .avatar__img {
    overflow: visible;
    left: 50%;
    height: 67%;
  }
  .avatar__gerb {
    max-width: 70px;
    max-height: 70px;
    top: 47%;
    left: 51%;
  }
  .card .avatar {
    width: 89px;
    height: 180px;
  }
  .card .game .game-right {
    margin-right: 15px;
  }
  .applicants__item .card__img {
    z-index: 1;
  }
  .applicants__item .card__info {
    padding-left: 20px;
    z-index: 1;
  }
  .applicants__item .card__info .name {
    position: absolute;
    left: 30px;
  }
  .applicants__item .card__info .club {
    position: absolute;
    left: 30px;
    top: 61px;
  }
  .applicants__item .datescore-two {
    padding-top: 75px;
  }
  .card__wrapper {
    height: 279px;
  }
}
@media (max-width: 350px) {
  .video_player {
    height: 150px;
  }
  .card .game img {
    max-height: 20px;
  }
  .applicants__item .card__img {
    margin-right: 15px;
  }
  .applicants__item .card__info {
    padding-left: 5px;
  }
}
@media (max-width: 330px) {
  .applicants__item .card__info {
    padding-left: 0px;
  }
  .applicants__item .card__img {
    margin-right: 8px;
  }
}

.vkvideo {
  display: none;
  max-width: 900px
}

.vkvideo iframe, .vkvideo video {
  width: 100% !important;
  height: 480px !important;
}

@media (max-width: 600px) {
  .vkvideo iframe, .vkvideo video {
    width: 100% !important;
    height: 250px !important;
  }

  .card .name {
    font-size: 16px;
  }
}