.logo-wrapper {
  padding: 30px 0;
  background: #FBF9F9
}

.logo-wrapper__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1200px) {
  .logo-wrapper__card {
    padding: 30px;
  }
}

.logo-wrapper__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 15px;
}

@media screen and (min-width: 576px) {
  .logo-wrapper__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (min-width: 992px) {
  .logo-wrapper__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
  }
}

.logo-wrapper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-wrapper__icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .logo-wrapper__icon {
    width: 101px;
    height: 101px;
  }
}

.logo-wrapper__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-wrapper__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--blue);
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .logo-wrapper__label {
    font-size: 20px;
  }
}

.logo-wrapper__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
}

.logo-wrapper__btn {
  margin: 0;
  padding: 15px 30px;
  font-size: 15px !important;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .logo-wrapper__btn {
    padding: 15px 30px !important;
    font-size: 15px !important;
  }
}
@media screen and (min-width: 1024px) {
  .logo-wrapper__card {
   margin-top: -100px;
}
}