/* Banner */

	#banner {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		background-image: url("../../imgs/dairy-and-egg-protein-products.jpg");
		background-size: cover;
		background-attachment: fixed;
		background-position: center;
		background-repeat: no-repeat;
		min-height: 100vh;
		padding: 8rem 0;
		overflow: hidden;
		position: relative;
	}

		#banner > .content {
			background-color: #ffffff; /* #4a98e2; */
			color: #000000; /* #ffffff; */
			-moz-transition: -moz-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
			-webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
			-ms-transition: -ms-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
			transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
			padding: 2.75rem;
			width: 100%;
			text-align: center;
			position: relative;
			z-index: 1;
			margin-top: 2rem;
			opacity: 1;
		}

			#banner > .content input, #banner > .content select, #banner > .content textarea {
				color: #000000; /* #ffffff; */;
			}

			#banner > .content a {
				color: inherit;
			}

				#banner > .content a:hover {
					color: #4a98e2 !important;
				}

			#banner > .content strong, #banner > .content b {
				color: #000000; /* #ffffff; */;
			}

			#banner > .content h1, #banner > .content h2, #banner > .content h3, #banner > .content h4, #banner > .content h5, #banner > .content h6 {
				color: #000000; /* #ffffff; */;
			}

			#banner > .content blockquote {
				border-left-color: rgba(255, 255, 255, 0.25);
			}

			#banner > .content code {
				background: rgba(255, 255, 255, 0.075);
				border-color: rgba(255, 255, 255, 0.25);
			}

			#banner > .content hr {
				border-bottom-color: rgba(255, 255, 255, 0.25);
			}

			#banner > .content > * {
				margin: 0.25rem 0 0 0;
			}

			#banner > .content > :first-child {
				margin-top: 0;
			}

			#banner > .content > :last-child {
				margin-bottom: 0;
			}

			#banner > .content h1 {
				font-size: 2.25rem;
			}

			#banner > .content p {
				font-size: 1.25rem;
			}

		#banner > .more {
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg zoomAndPan='disable' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='40px' height='20px' viewBox='0 0 40px 20px'%3E%3Cstyle type='text/css'%3Eline %7B stroke: %23ffffff%3B stroke-width: 0.75px%3B %7D%3C/style%3E%3Cline x1='0' y1='0' x2='20' y2='20' /%3E%3Cline x1='20' y1='20' x2='40' y2='0' /%3E%3C/svg%3E");
			background-position: center;
			background-repeat: no-repeat;
			background-size: 3rem 1.5rem;
			width: 6rem;
			height: 6rem;
			text-align: center;
			color: #000000; /* #ffffff; */;
			border-bottom: 0;
			position: absolute;
			bottom: 0;
			left: calc(50% - 3rem);
			text-indent: 6rem;
			white-space: nowrap;
			overflow: hidden;
			z-index: 1;
		}

		#banner:before {
			pointer-events: none;
			-moz-transition: opacity 2s ease-in-out;
			-webkit-transition: opacity 2s ease-in-out;
			-ms-transition: opacity 2s ease-in-out;
			transition: opacity 2s ease-in-out;
			-moz-transition-delay: 0.5s;
			-webkit-transition-delay: 0.5s;
			-ms-transition-delay: 0.5s;
			transition-delay: 0.5s;
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: #3f3f3f;
			opacity: 0;
		}

		#banner:after {
			pointer-events: none;
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.625), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.625));
		}

		#header + #banner {
			margin-top: -3.25rem;
		}

		body.is-preload #banner > .content {
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
			transform: scale(1.05);
			opacity: 0;
		}

		body.is-preload #banner:before {
			opacity: 1;
		}

		@media screen and (max-width: 1280px) {

			#banner {
				background-attachment: scroll;
			}

		}

		@media screen and (max-width: 980px) {

			#banner > .content {
				margin-top: 0;
			}

		}

		@media screen and (max-width: 736px) {

			#banner > .content {
				padding: 1.75rem;
			}

				#banner > .content h1 {
					font-size: 1.75rem;
				}

				#banner > .content p {
					font-size: 1rem;
				}

			#header + #banner {
				margin-top: -44px;
			}

		}

		@media screen and (max-width: 480px) {

			#banner {
				padding: 12rem 0;
				min-height: 0;
			}

				#banner > .more {
					display: none;
				}

		}
