//page-title-area
.page-title-area {
	background-size: cover;
	background-position: center;
	width: 100%;
	background-repeat: no-repeat;
	min-height: 516px;
	position: relative;
	top: -16px;
	z-index: 1;
	display: flex;
	align-items: center;
	@media #{$lg} {
		min-height: 450px;
	}
	@media #{$md} {
		min-height: 350px;
	}
	@media #{$xs} {
		min-height: 350px;
	}
	&::before {
		content: "";		
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
	&::after {
		content: "";
		position: absolute;
		background: $theme-color;
		width: 179px;
		height: 350px;
		border-radius: 0 0 0 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		-webkit-border-radius: 200px 0 0 0;
		-moz-border-radius: 0 0 0 0;
		-ms-border-radius: 0 0 0 0;
		-o-border-radius: 0 0 0 0;
		@media #{$xs} {
			display: none;
		}
	}
	.right-shape {
		position: absolute;
		right: 100px;
		bottom: 111px;
		z-index: 2;
		animation: float-bob-y infinite 3s linear;
		-webkit-animation: float-bob-y infinite 3s linear;
		@media #{$xs} {
			display: none;
		}
	}
}
.page-title-wrapper {
	position: relative;
	z-index: 2;
	& .page-title {
		color: $white;
		font-size: 80px;
		z-index: 1;
		@media #{$lg} {
			font-size: 50px;
		}
		@media #{$md} {
			font-size: 50px;
		}
		@media #{$xs} {
			font-size: 35px;
		}
	}
}

ul.breadcrumb {
	& li {
		&.active {
			color: $theme-color;
			margin-left: 5px;
		}
		& a {
			color: #c4cfd2;
			font-size: 16px;
			line-height: 1;
			display: inline-block;
		}
	}
}
