div.main-wrap.home
{
	position: relative;
	padding: 50px 0px;
	overflow: hidden;
}

	div.home-credo-bg
	{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
	}

		div.home-credo-bg:before
		{
			position: absolute;
			content: '';
			width: 100%;
			height: 50%;
			top: 0px;
			left: 0px;
			background: #000;
		}
		
		div.home-credo-bg:after
		{
			position: absolute;
			content: '';
			width: 120%;
			bottom: 0px;
			left: -10%;
			height: 100%;
			background: #000;
			border-radius: 50%/50%;
		}

	div.home-credo-wrap
	{
		position: relative;
		display: flex;
		width: 1100px;
		margin: 0px auto;
		align-items: center;
	}

		div.home-credo-block
		{
			width: 50%;
		}
		
			span.home-credo-header
			{
				display: block;
				font-size: 40px;
				font-weight: 700;
				line-height: 48px;
				color: #fff;
			}
			
			span.home-credo-header span.color
			{
				color: #ed2224;
			}
			
			span.home-credo-desc
			{
				display: block;
				width: 50%;
				margin: 20px 0px;
				font-size: 22px;
				font-weight: 500;
				line-height: 28px;
				color: #fff;
			}
			
			span.home-credo-menu
			{
				display: inline-block;
				padding: 30px 100px;
				background: #ed2224;
				border-radius: 100px;
				font-size: 14px;
				text-transform: uppercase;
				color: #fff;
				cursor: pointer;
				transition: 0.3s;
				-o-transition: 0.3s;
				-webkit-transition: 0.3s;
			}
			
			span.home-credo-menu:hover
			{
				background: #df1214;
			}			