div.block-area#instagram
{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 100px 0px;
}

	div.block-twelve-container
	{
		margin-bottom: 40px;
		text-align: center;
	}
	
		span.block-twelve-title
		{
			font-family: Lexend;
			font-size: 40px;
			font-weight: 600;
			color: #014f79;
		}

	div.block-twelve-list
	{
		width: 100%;
		overflow: hidden;
	}
	
		div.block-twelve-list-item
		{
			position: relative;
			background: #ccc;
			border-radius: 10px;
			overflow: hidden;
			cursor: pointer;
		}
		
			i.block-twelve-list-item-play
			{
				position: absolute;
				top: 50%;
				left: 50%;
				margin-top: -25px;
				margin-left: -25px;
				font-size: 50px;
				color: rgba(0, 0, 0, 0.45);
				opacity: 1;
				transition: 0.3s;
				-o-transition: 0.3s;
				-webkit-transition: 0.3s;
			}
			
			i.block-twelve-list-item-play.hidden
			{
				opacity: 0;
			}
	
			div.instagram-user
			{
				position: absolute;
				display: flex;
				align-items: center;
				top: 20px;
				left: 25px;
			}
			
				div.instagram-user-cell.avatar
				{
					width: 32px;
					margin-right: 10px;
				}
				
					span.instagram-avatar
					{
						display: block;
						height: 32px;
						background-size: contain;
						background-position: center;
						background-repeat: no-repeat;
					}
					
					span.instagram-user-name
					{
						display: block;
						font-size: 12px;
						font-weight: 500;
						color: #fff;
					}
					
					span.instagram-followers
					{
						display: block;
						font-size: 10px;
						color: #fff;
					}
					
					video.instagram-video
					{
						width: 100%;
						height: 240px;
						object-fit: cover;
					}