.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.card-photo {
  object-fit: cover;
  width: 100%;
  height: 307px;
}

.card-btn {
  width: 100%;
  min-height: 130px;
  position: absolute;
  background: rgba(255,165,208,0.4);
}

.btn-body {
  position: relative;
}

.btn-ken {
  text-decoration: none;
  padding: 12px;
  color: white;
  font-weight: 500;
  border-radius: 20px;
  border: none;
  background: #de6a8c;
}

.btn-ken:hover {
  color: white;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.54);
  background: #c4476c;
}

.sm-btn {
  border-radius: 50%;
  padding: 13px;
  text-decoration: none;
  background: #072141;
}

.sm-btn:hover {
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.62);
  background: #072141;
}

