.primary-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s ease;
  border: none;
  cursor: pointer;

  &:hover {
    background-color: var(--accent-color);
    color: #000;
  }
}

.outline-btn {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s ease;
  cursor: pointer;
  --bs-bg-opacity: 1;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.bordered-btn {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
  padding: .5rem 1rem;
  border-radius: var(--bs-border-radius) !important;
}

.img-original {
  /* width: attr(data-width-size px);
  height: attr(data-height-size px); */
  width: revert-layer;
  height: auto;
  max-width: 100%;
  /* never overflow container */
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

.thumbnail-vertical {
  width: 100%;
}

@media (min-width: 576px) {
  .thumbnail-vertical {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .thumbnail-vertical {
    width: 25%;
  }
}