/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-12 {
	--block-background: white;
	--block-text-color: var(--text-primary);
	background: var(--block-background);
	color: var(--block-text-color);
	position: relative;
	z-index: 1
  }
  
  .block-12__shape-for-background {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 75%;
	background: linear-gradient(to top, rgba(0, 0, 0, .05) 0, transparent 70%);
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%)
  }
  
  .block-12-card-1 {
	height: 100%;
	padding: 3rem 2.3rem;
	border-radius: 5px;
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .09);
	position: relative;
	z-index: 1;
	transition: transform .5s;
	background: #fff;
	overflow: hidden
  }
  
  @media(min-width:992px) {
	.block-12-card-1 {
	  padding: 3rem 2.8rem
	}
  }
  
  .block-12-card-1::after,
  .block-12-card-1::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 1px;
	background: rgb(255 255 255 / 19%);
	border-radius: 10rem;
	box-shadow: 0 0 115px 52px rgb(255 255 255 / 60%);
	z-index: -1;
	opacity: 0;
	transition: opacity 1s
  }
  
  .block-12-card-1::before {
	left: 0;
	bottom: 0;
	transform: translate(-50%, 50%)
  }
  
  .block-12-card-1::after {
	right: 0;
	top: 0;
	transform: translate(50%, -50%)
  }
  
  .block-12-card-1__icon img {
	width: 75px;
	margin-bottom: 1.5rem
  }
  
  .block-12-card-1__title {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: .93rem
  }
  
  .block-12-card-1__paragraph {
	font-size: 14.4px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.53;
	margin-bottom: 0
  }
  
  .block-12-card-1__content {
	position: relative;
	padding-bottom: 1rem;
	height: 100%;
	z-index: 2
  }
  
  .mb-2-1rem {
	margin-bottom: 2.1rem
  }