/**
 * Page title banner specific styles
 * 
 */

/** General */
	.page-title-banner {
		color: #fff;
		text-align: center;
		background-color: #af1e25;
		box-sizing: border-box;
		padding: 0;
		position: relative;
	}
	.page-title-banner.homepage-banner {
		text-align: right;
	}

		.page-title-banner .container {
			width: 100%;
		}

		.page-title-banner .owl-stage {
			display: flex;
		}

		.page-title-banner .owl-item {
			flex: 1 0 auto;
		}

			.page-title-banner .item {
				width: 100%;
				padding: 4em 0;
				min-height: 250px;
				height: 100%;
				overflow: hidden;
				display: flex;
				align-items: center;
				position: relative;
			}
			.page-title-banner.homepage-banner .item {
				height: 500px;
			}

				.page-title-banner .item img {
					width: 100%;
					height: 100%;
					border-radius: 0;
					max-width: none;
					object-fit: cover;
				}

				.page-title-banner .caption {
					width: 100%;
					height: 100%;
					display: flex;
					align-items: center;
					justify-content: center;
					z-index: 2;
					text-align: left;
					color: #fff;
				}

					.page-title-banner .container {
						display: block;
					}
					section.include-nav.page-title-banner .container {
						padding-left: 60px;
						padding-right: 60px;
					}

						.flexible-content.page-title-banner h1 {
							margin: 0 0;
							font-weight: 700;
							font-size: 42px;
							color: #fff;
						}

						.page-title-banner h3 {
							margin: 0.5em 0 0;
							color: #fff;
							font-size: 24px;
						}

						.page-title-banner .buttons {
							margin-top: 2em;
						}

				.page-title-banner .overlay {
					position: absolute;
					width: 100%;
					height: 100%;
					z-index: 1;
					background: rgba(19, 42, 55, 0.5);
					top: 0;
					left: 0;
				}


/** Banner Pagination */
	.page-title-banner.include-pagination .owl-dots {
		text-align: center;
		height: 16px;
		position: absolute;
		margin: 0;
		bottom: 1em;
		left: 0;
		width: 100%;
	}
	
	.page-title-banner.include-pagination .owl-dot {
		border: 4px solid #FFF;
		background-color: transparent;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		display: inline-block;
		margin: 0 5px;
	}

	.page-title-banner.include-pagination .owl-dot.active {
		border-color: #FFF;
		background: #FFF;
	}


/** Owl Carousel Nav */
	.page-title-banner.owl-carousel.include-nav {
		padding: 0;
	}
	
	.page-title-banner.owl-carousel .owl-prev {
		background-image: url('/images/icons/arrow-left.svg');
	}

	.page-title-banner.owl-carousel .owl-next {
		background-image: url('/images/icons/arrow-right.svg');
	}


/** Responsive */
	@media only screen and (max-width: 768px) {

		.page-title-banner.homepage-banner .item {
			height: 500px;
		}

			.flexible-content.page-title-banner h2 {
				font-size: 28px;
			}

			.page-title-banner .button {
				font-size: 14px;
				padding: 0.5em 1.2em;
			}

		.page-title-banner.homepage-banner h3,
		.page-title-banner.homepage-banner h1,
		.page-title-banner.homepage-banner .buttons {
			max-width: 100%;
		}
	}