.form_games {
  background-color: #221F1F;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.radio {
  margin-left: 70px;
  border: #F2F2F2;
}

.filter_radio {
  display: flex;
  gap: 10px;
}

.New_radio,
.Old_radio {
  color: #FFF;
}

.search-button {
  background-color: #EF4934;
  color: #FFF;
  margin: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  border: none;
}

.filter_search {
  display: flex;
}

.search-input {
  background-image: url("../icon/search_form.svg");
  background-position: 11px 7px;
  background-repeat: no-repeat;
  padding: 10px 90px 10px 50px;
  border-radius: 6px;
  margin-right: -7px;
  border: #FFF;
  outline: none;
}

.form_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-name {
  background-color: #333;
  color: #FFF;
  padding: 13px;
  border-radius: 6px;
}

.select_gap {
  display: flex;
  gap: 20px;
}
/* --------- */

.hero {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 50px 40px;
}

.hero_flex {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.title_one {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
}

.link_MA {
  color: #EF4934;
}

.about_me {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.title_about_1 {
  line-height: 32px;
  font-size: 48px;
  font-weight: 700;
}

.card_load {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: #221F1F;
}

.card_loading_text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.all_cards {
  padding: 0 53px;
  flex-grow: 1;
}

.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #E35734;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

.card {
  background-color: #ECECEC;
  width: 275px;
  border-radius: 12px;
  padding: 12px 12px 20px;
}

.card_cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

ul.card_cards {
  margin: 0;
  padding: 0;
}

.card_img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.card_card {
  width: 275px;
  display: flex;
  flex-direction: column;
  background-color: #ECECEC;
  border-radius: 12px;
}

.card_games {
  display: flex;
  gap: 10px;
  line-height: 21px;
  margin: 12px;
}

.card_text {
  margin-left: 14px;
}

.info_game {
  list-style: none;
  padding: 7px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.name_game {
  margin: 0;
}

.info_game {
  margin: 0;
}

.bolt {
  font-weight: 600;
  font-size: 14px;
}

.list_card {
  padding-bottom: 10px;
}

.list_card:last-child {
  padding-bottom: 0;
}

@media (max-width: 960px) {

  .form_flex {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
}

@media (max-width: 600px) {

  .title_about_1 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {

  .nav {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .hero_flex {
    flex-direction: column;
  }

  .hero_img {
    width: 1100px;
  }
}

@media (max-width: 920px) {

  .hero_img {
    width: 400px;
  }
}
