.checker_card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  font-family: 'SF Pro Display', sans-serif;
}

.title_checker {
  font-family: 'Unbounded';
}

.img-block-checker {
  display: flex;
  width: 100%;
  justify-content: center;
  align-content: center;
  padding: 5px 10px;
}

.checker-img {
  display: flex;
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 0 10px #0000002b;
}

.info-block-checker {
  display: flex;
  padding: 0px 15px 15px;
  flex-direction: column;
}

.checker_span {
  display: flex;
  color: var(--text-default);
  font-weight: 400;
  font-size: 15px;
  margin-left: 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;

  margin-bottom: 35px;
}

.header-checker {
  display: flex;
  padding: 10px 10px 0 10px;
}

.p-checker {
  display: flex;
  color: var(--text-default);
  margin-left: 10px;
  flex-direction: column;
  font-size: 20px;
}

.goodbye-checker {
  display: flex;
  justify-content: center;
  font-size: 16px;
  color: var(--span);
  font-weight: 700;
}

.checker-buttons {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.download-btns {
  gap: 35px;
  display: flex;
}

.checker-installer {
  padding: 20px 30px;
  border-radius: 15px;
  text-decoration: none;
  color: var(--span);
  fill: var(--span);
  /* background-color: var(--span); */

  transition: all 0.3s;
  font-size: 1.1em;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: center;
}


.checker-installer:hover {
  background: var(--span-low);
}

.website {
  cursor: pointer;
}


@media (max-width:713px) {
  .download-btns {
    flex-direction: column;
    width: 100%;
  }
}