.history-dot {
	width: initial!important;
}

.history-section-divider {
	border: 1px solid rgb(226, 229, 241);
	width: 165px;
	right: -80px;
	top: 12px;
  z-index: -1;
}

.variants-icon-container {
	padding: 24px;
	border-radius: 8px;
	align-items: flex-start;
	flex-direction: column;
	display: inline-flex;
	gap: 24px;
	box-shadow: 0px 0px 0px 1px rgba(226, 229, 241, 1) inset;
	background-color: rgba(255, 255, 255, 1);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.card-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(48, 115, 156, 0.85), 
    rgba(16, 60, 98, 0.85)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: .375rem;
	padding: 0px 8px;
}

.card-img-wrapper:hover .overlay {
  opacity: 1;
  cursor: default;
}

@media (max-width: 406px) {
	.main-image {
		margin-top: 12px;
	}
}