.site-content .container {
	padding: initial;
	width: auto;
	max-width: initial;
}


.underlined-link-reversed a:hover {
	text-decoration: none;
}
.link-white a {
	color: #ffffff;
}
.link-white a:focus,
.link-white a:hover,
.link-white a:visited {
	color: #ffffff !important;
}
.site-header {
	position: relative;
}
.footer-menu {
	margin-top: 0 !important;
}
.desktop-only {
	display: none;
}
.page {
	transform: translate3d(0px, 0px, 0px);
	transition: all 700ms linear;
}
.page .segment {
	height: 100%;
	min-height: 100vh;
	padding: 50px 20px;
}
.page .segment .content {
	margin: 0 auto;
	max-width: 1400px;
}
.page .segment h2,
.page .segment h3 {
	font-size: 20px;
	font-size: 1.25rem;
	font-style: normal;
}
.page .segment p {
	font-size: 16px;
	font-size: 1rem;
	line-height: 21px;
	letter-spacing: 0.05em;
}
.page .segment a:visited:not([class*="c-button"]) {
	color: #a9b838;
}
.page .segment .wf-title {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #231f20;
}
.page .segment .banner {
	max-width: 1400px;
	margin: 0 auto;
}
.page .segment .down-arrow {
	display: none;
}
.page .segment .cta {
	font-size: 16px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	transition: 0.2s;
}
.page .segment .cta span {
	display: inherit;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes slideIn {
	to {
		transform: translateX(0%);
		opacity: 1;
	}
}
@keyframes transformContent {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(1.05);
	}
	to {
		transform: scale(1);
	}
}
@media screen and (min-width: 768px) {
	.page .segment {
		height: 100%;
		min-height: 100vh;
		padding: 40px;
	}
	.page h2,
	.page h3 {
		font-size: 24px;
		font-size: 1.5rem;
	}
	.page p {
		font-size: 16px;
		font-size: 1rem;
		line-height: 24px;
	}
}
@media screen and (min-width: 1024px) {
	.page .segment {
		padding: 50px;
	}
}
@media screen and (min-width: 1200px) {
	.page .segment .down-arrow {
		display: block;
		position: absolute;
		bottom: 15px;
		transform: translateX(-50%);
		left: 50%;
		text-align: center;
		animation: bounce 6s infinite;
	}
	.page .segment .down-arrow svg {
		opacity: 0.6;
	}
	.page .segment .down-arrow:hover svg {
		opacity: 1;
	}
	@keyframes bounce {
		0% {
			transform: translateY(0);
		}
		3.0303% {
			transform: translateY(0);
		}
		6.06061% {
			transform: translateY(0);
		}
		12.12121% {
			transform: translateY(-15px);
		}
		15.15152% {
			transform: translateY(0);
		}
		18.18182% {
			transform: translateY(-15px);
		}
		24.24242% {
			transform: translateY(0);
		}
		to {
			transform: translateY(0);
		}
	}
}
.page ::selection {
	background: #ffdd00;
}
.modal {
	display: none;
	position: absolute;
	justify-content: center;
	align-items: center;
	z-index: 81;
	left: 0;
	top: 0;
	height: 915px;
	width: 100%;
	overflow: auto;
	background-color: rgba(35, 31, 32, 0.9);
	animation: fadeIn 0.5s;
	transform-origin: center;
}
.modal .modal-content {
	position: relative;
	animation: transformContent 0.5s;
	transform-origin: center;
	background-color: transparent;
	margin: auto;
	width: 95%;
	max-width: 100%;
	top: 0;
	border: 0;
	padding: 0;
	height: auto;
}
.modal iframe {
	position: relative;
	top: -15px;
	min-height: 220px;
}
.modal .close {
	width: 25px;
	height: 35px;
	position: absolute;
	top: -60px;
	right: 0;
}
.modal .close svg {
	opacity: 0.5;
	width: 100%;
}
.modal .close:focus svg,
.modal .close:hover svg {
	opacity: 1;
}
@media screen and (min-width: 768px) {
	.modal {
		height: 100vh;
	}
	.modal iframe {
		min-height: 420px;
	}
	.desktop-only {
		display: block;
	}
	.mobile-only {
		display: none;
	}
}
@media screen and (min-width: 1000px) {
	.modal iframe {
		height: 540px;
	}
	.modal .modal-content {
		height: 430px;
	}
	.modal .close {
		width: 35px;
		top: -50px;
	}
}
@media screen and (min-width: 1400px) {
	.modal .modal-content {
		height: 720px;
		width: 100%;
		max-width: 1280px;
	}
	.modal iframe {
		margin-top: 15px;
		height: 100%;
	}
}
.cloud-container {
	display: none;
}
@media screen and (min-width: 768px) {
	.cloud-container {
		position: absolute;
		overflow: hidden;
		height: calc(100vh - 165px);
		width: 100%;
		left: 0;
		display: grid;
		grid-template-columns: repeat(10, [col-start] 1fr);
		grid-template-rows: repeat(10, [col-start] 1fr);
	}
	.sliding-clouds {
		position: absolute;
		height: calc(100vh - 165px);
		width: 100%;
		animation: cloudMove 150s linear infinite;
	}
	.sliding-clouds--offscreen {
		position: absolute;
		height: calc(100vh - 165px);
		width: 100%;
		animation: cloudMoveOffscreen 150s linear infinite;
	}
	.cloud {
		position: absolute;
	}
	.cloud.first {
		top: 5%;
		left: 15%;
		width: 13vw;
		transform: translateX(-15%);
		animation-delay: 0.4s;
	}
	.cloud.second {
		top: 45%;
		left: 55%;
		width: 17vw;
		transform: translateX(-55%);
		animation-delay: 0.3s;
	}
	.cloud.third {
		top: 10%;
		left: 87%;
		width: 15vw;
		transform: translateX(-87%);
		animation-delay: 0.2s;
	}
	.cloud.fourth {
		top: 72%;
		left: 15%;
		width: 17vw;
		transform: translateY(-15%);
		animation-delay: 0.5s;
	}
	.cloud.fith {
		top: 78%;
		left: 81%;
		width: 17vw;
		transform: translateY(-81%);
		animation-delay: 0.1s;
	}
	@keyframes cloudMove {
		0% {
			transform: translate3d(0, 0, 0);
		}
		to {
			transform: translate3d(100%, 0, 0);
		}
	}
	@keyframes cloudMoveOffscreen {
		0% {
			transform: translate3d(-100%, 0, 0);
		}
		to {
			transform: translate3d(0, 0, 0);
		}
	}
}
.segment#one {
	position: relative;
	z-index: 80;
}
.segment#one + .segment-photo-comp {
	position: relative;
	z-index: 85;
}
.ie #one > .container {
	display: block;
}
.ie #one .left-col {
	min-height: 190px;
}
#one {
	background: url("../img/Segment 1_background with clouds_mobile.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 750px;
	min-height: 750px;
}
#one .content {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-top: 20px;
}
#one > .container {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#one > .container .banner {
	width: 100%;
}
#one a {
	color: #a9b838 !important;
	text-decoration: none;
}
#one a:hover {
	text-decoration: underline;
}
#one h2 {
	margin: 0;
}
#one .left-col {
	flex-basis: 42%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
}
#one .left-col p {
	margin-bottom: 0;
}
#one .right-col {
	margin-top: 20px;
}
#one .right-col .container {
	background: none;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	height: 100%;
	min-height: 220px;
}
#one .right-col .container .wf-title {
	font-weight: 400;
}
#one .cta {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	position: absolute;
	bottom: 0;
}
#one .cta:hover {
	background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 580px) {
	#one .right-col .container {
		min-height: 280px;
	}
}
@media screen and (min-width: 768px) {
	#one {
		height: calc(100vh - 165px);
		background: #5799db;
	}
	#one > .container {
		height: calc(100% - 37px);
		min-height: calc(100% - 165px);
	}
	#one .content {
		width: 100%;
		max-width: 1160px;
		justify-content: center;
		flex-direction: row;
		padding: 40px 0;
	}
	#one .left-col {
		flex-basis: 40%;
		margin-right: 20px;
		padding: 35px;
	}
	#one .right-col {
		margin-top: 0;
		flex-basis: 60%;
		flex-grow: 1;
		width: 600px;
		margin-left: 20px;
	}
	#one .right-col .container .cta {
		font-size: 20px;
		font-size: 1.25rem;
		padding: 20px 35px;
	}
	#one .right-col .container h2 {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
@media screen and (min-width: 1024px) {
	#one {
		padding: 0;
	}
	#one .content {
		width: 85%;
	}
}
@media screen and (min-width: 1500px) {
	#one .content {
		width: 70%;
		padding: 47px 0;
	}
	#one .left-col {
		flex-basis: 51%;
		min-width: 430px;
		margin-right: 50px;
		padding: 50px;
	}
	#one .right-col {
		flex-basis: 60%;
		margin-left: 0;
	}
}
@media screen and (min-width: 768px) {
	.ie #two {
		background: url("../img/Segment 2_background scene_desktop.JPG");
		background-position: 20%;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.ie #two .animation-container--terrain {
		display: none;
	}
	.ie #two .animation-container--sky {
		display: none;
	}
}
#two {
	background: url("../img/Segment 2_background scene_mobile.jpg");
	background-position: 20%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	min-height: 1180px;
	overflow: hidden;
}
#two .container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 20px;
	z-index: 1;
	position: relative;
}
#two .container .wf-title {
	margin: 0;
	color: #fff;
}
#two .container .content {
	background-color: #5799db;
	border: 2.5px solid #fff;
	color: #fff;
	padding: 20px;
}
#two .container .content > * + * {
	margin-top: 30px;
}
#two .animation-container--terrain {
	display: none;
}
#two .animation-container--sky {
	display: none;
}
#two .flower-contained {
	opacity: 0;
}
@media screen and (min-width: 768px) {
	#two {
		background: #5799db;
		height: 100vh;
		min-height: 880px;
	}
	#two .container {
		height: 100%;
		padding-top: 0px;
	}
	#two .container .content {
		width: 65%;
		margin-left: 0;
		padding: 35px;
	}
	#two .animation-container--terrain {
		display: block;
		position: absolute;
		width: 100%;
		bottom: -7px;
		left: 0px;
		overflow: hidden;
	}
	#two .animation-container--terrain svg {
		bottom: 2vh;
	}
	#two .animation-container--sky {
		background: url("../img/Segment 2_background scene_tablet.jpg");
		background-position: top;
		background-size: cover;
		background-repeat: no-repeat;
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		overflow: hidden;
		z-index: 0;
	}
	#two .animation-container--sky svg {
		display: none;
	}
	#two.start-anim #tractor {
		animation: tractorMove 40s linear infinite both;
	}
	#two.start-anim .flower-contained {
		transform-box: fill-box;
		animation: flowerScale 0.5s ease both;
		transform-origin: 50% 50%;
		opacity: 1;
	}
	#two.start-anim .flower-contained.delay-first {
		animation-delay: 0.4s;
	}
	#two.start-anim .flower-contained.delay-second {
		animation-delay: 0.3s;
	}
	@keyframes tractorMove {
		0% {
			transform: translate(0px, 0) rotate(0deg);
			opacity: 1;
		}
		5% {
			transform: translate(80px, 3px) rotate(1deg);
			opacity: 1;
		}
		10% {
			transform: translate(160px, 10px) rotate(2deg);
			opacity: 1;
		}
		15% {
			transform: translate(240px, 20px) rotate(2deg);
			opacity: 1;
		}
		20% {
			transform: translate(320px, 30px) rotate(2deg);
			opacity: 1;
		}
		25% {
			transform: translate(400px, 37px) rotate(3deg);
			opacity: 1;
		}
		30% {
			transform: translate(480px, 40px) rotate(5deg);
			opacity: 1;
		}
		35% {
			transform: translate(560px, 50px) rotate(5deg);
			opacity: 1;
		}
		40% {
			transform: translate(640px, 60px) rotate(6deg);
			opacity: 1;
		}
		45% {
			transform: translate(720px, 70px) rotate(8deg);
			opacity: 1;
		}
		50% {
			transform: translate(800px, 90px) rotate(8deg);
			opacity: 1;
		}
		55% {
			transform: translate(880px, 105px) rotate(8deg);
			opacity: 1;
		}
		60% {
			transform: translate(960px, 120px) rotate(9deg);
			opacity: 1;
		}
		65% {
			transform: translate(1040px, 145px) rotate(9deg);
			opacity: 1;
		}
		70% {
			transform: translate(1120px, 155px) rotate(9deg);
			opacity: 1;
		}
		75% {
			transform: translate(1200px, 155px) rotate(9deg);
			opacity: 1;
		}
		77% {
			transform: translate(1200px, 155px) rotate(9deg);
			opacity: 0;
		}
		79% {
			transform: translate(-320px, -10px) rotate(0deg);
			opacity: 0;
		}
		80% {
			transform: translate(-320px, -10px) rotate(0deg);
			opacity: 1;
		}
		85% {
			transform: translate(-240px, -10px) rotate(0deg);
			opacity: 1;
		}
		90% {
			transform: translate(-160px, -5px) rotate(0deg);
			opacity: 1;
		}
		95% {
			transform: translate(-80px, 0px) rotate(0deg);
			opacity: 1;
		}
		to {
			transform: translate(0px, 0) rotate(0deg);
			opacity: 1;
		}
	}
	@keyframes flowerScale {
		0% {
			transform: translate(0px, 0) scale(0, 0);
		}
		50% {
			transform: translate(0, 6px) scale(1.1, 1.1);
		}
		to {
			transform: translate(0px, 0) scale(1, 1);
		}
	}
}
@media screen and (min-width: 1024px) {
	#two .container {
		max-width: 1160px;
	}
	#two .animation-container--sky {
		background: none;
	}
	#two .animation-container--sky svg {
		display: block;
	}
	#two.start-anim #sun {
		transform-origin: center center;
		transform-box: fill-box;
		animation: sunSpin 60s linear infinite;
	}
	@keyframes sunSpin {
		0% {
			transform: rotate(0deg);
		}
		to {
			transform: rotate(360deg);
		}
	}
}
@media screen and (min-width: 1500px) {
	#two .container {
		margin: 0 auto;
		width: 70%;
	}
	#two .container .content {
		padding: 50px;
	}
}
@media screen and (min-width: 1024px) {
	.ie #three,
	.unknown #three {
		background: url("../img/Segment 3_background scene_desktop.JPG");
		background-position: center bottom;
		background-size: cover;
		background-repeat: no-repeat;
	}
}
#three {
	background: url("../img/Segment 3_background scene_mobile.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
#three .container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#three .container .content {
	width: 100%;
	color: #fff;
}
#three .container .content p {
	margin-bottom: 0;
}
#three .container .wf-title {
	color: #fff;
	margin: 0;
}
#three .container .content--main {
	padding: 20px;
	background-color: rgba(35, 31, 32, 0.8);
}
#three .container .content--info-box h3 {
	font-size: 20px;
	font-size: 1.25rem;
	margin: 0;
}
#three .container .content--info-box .info-box {
	background-size: 0;
	background-repeat: no-repeat;
	margin-top: 20px;
}
#three .container .cta-content {
	display: none;
	animation: fadeIn 0.5s;
	position: absolute;
	background: rgba(35, 31, 32, 0.8);
	padding: 20px;
	left: 0;
	margin: 0;
	top: 0;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
}
#three .container .cta-content .cta-content-inner {
	display: flex;
	flex-direction: column;
	position: relative;
	animation: transformContent 0.5s;
	width: 100%;
}
#three .container .cta-content .cta-content-inner img {
	max-height: 400px;
	object-fit: cover;
}
#three .container .cta-content .copy {
	padding: 20px;
	background: rgb(35, 31, 32);
}
#three .container .cta-content .cross {
	position: absolute;
	right: 0;
	padding: 15px;
	background: rgba(35, 31, 32, 0.3);
	display: inline-flex;
}
#three .container .cta-content .cross:hover {
	cursor: pointer;
	background: rgba(35, 31, 32, 0.8);
}
#three .container .cta {
	height: auto;
	padding: 20px;
	background-color: rgba(35, 31, 32, 0.8);
}
#three .container .cta .cross {
	display: none;
}
#three .container .cta:hover {
	cursor: pointer;
	background-color: rgb(35, 31, 32);
}
@media screen and (min-width: 768px) {
	#three .container .content--main {
		padding: 35px;
	}
}
@media screen and (min-width: 1024px) {
	#three {
		background: url("../img/Segment 3_background scene_v2-01.svg");
		background-position: center bottom;
		background-size: cover;
		background-repeat: no-repeat;
	}
	#three .container .content {
		max-width: 1160px;
	}
	#three .container .content--main {
		float: right;
		width: calc(66.66% - 15px);
		padding: 35px;
	}
	#three .container .content--info-box {
		clear: both;
		display: flex;
		justify-content: space-between;
	}
	#three .container .content--info-box .info-box {
		background-size: cover;
		width: calc(33.33% - 30px);
		margin-top: 50px;
		min-height: 356px;
		display: flex;
		align-items: flex-end;
		flex-direction: column;
	}
	#three .container .cta {
		padding: 20px 35px;
		align-items: flex-end;
		flex-shrink: 0;
	}
	#three .container .cta h3 {
		margin-right: 10px;
		font-weight: 400;
	}
	#three .container .cta .arrow,
	#three .container .cta .cross {
		height: 20px;
		position: relative;
		top: -5px;
	}
	#three .container .cta.active .arrow {
		display: none;
	}
	#three .container .cta.active .cross {
		display: inline-block;
	}
	#three .container .cta-content {
		display: block;
		animation: none;
		position: relative;
		background: none;
		padding: 0;
		left: auto;
		margin: auto;
		top: auto;
		flex: 1;
		height: auto;
	}
	#three .container .cta-content .cta-content-inner {
		overflow: hidden;
		height: 100%;
	}
	#three .container .cta-content .cta-content-inner img {
		display: none;
	}
	#three .container .cta-content .copy {
		height: 100%;
		background-color: rgba(35, 31, 32, 0.9);
		animation: slideIn 0.5s linear forwards;
		border-bottom: 1px solid #707070;
		position: relative;
		padding: 15px 35px;
		width: 100%;
		left: -100%;
		transition: left 0.4s ease-in-out;
	}
	#three .container .cta-content .copy h3 {
		display: none;
	}
	#three .container .cta-content .cross {
		display: none;
	}
	#three .container .cta-content.active .copy {
		left: 0;
	}
}
@media screen and (min-width: 1500px) {
	#three .container .content--main {
		padding: 50px;
	}
}
@media screen and (min-width: 1024px) {
	.ie #four,
	.unknown #four {
		background: url("../img/Segment 4_background scene-01.JPG");
		background-position: center bottom;
		background-size: cover;
		background-repeat: no-repeat;
	}
}
#four {
	background: url("../img/Segment 4_background scene_mobile.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
#four a {
	color: #a9b838 !important;
	text-decoration: none;
}
#four a:hover {
	text-decoration: underline;
}
#four .container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#four .container .content p {
	margin-bottom: 0;
}
#four .container .wf-title {
	margin: 0;
	font-weight: 500;
}
#four .container .content--main {
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.8);
}
#four .container .content--info-box h3 {
	margin: 0;
}
#four .container .content--info-box .info-box {
	background-size: 0;
	background-repeat: no-repeat;
	margin-top: 20px;
}
#four .container .cta-content {
	display: none;
	animation: fadeIn 0.5s;
	position: absolute;
	background: rgba(35, 31, 32, 0.8);
	padding: 20px;
	left: 0;
	margin: 0;
	top: 0;
	height: 100%;
	justify-content: center;
	align-items: center;
}
#four .container .cta-content .cta-content-inner {
	display: flex;
	flex-direction: column;
	position: relative;
	animation: transformContent 0.5s;
	color: #fff;
	width: 100%;
}
#four .container .cta-content .wf-title {
	font-size: 20px !important;
	color: #fff;
}
#four .container .cta-content .copy {
	padding: 20px;
	background: rgb(35, 31, 32);
}
#four .container .cta-content .cross {
	position: absolute;
	top: -55px;
	right: 0;
	padding: 15px;
	background: rgba(35, 31, 32, 0.6);
	display: inline-flex;
}
#four .container .cta-content .cross:hover {
	cursor: pointer;
	background: rgba(35, 31, 32, 0.8);
}
#four .container .cta {
	height: auto;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.8);
}
#four .container .cta:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
	#four .container .content--main {
		padding: 35px;
	}
	#four .container .cta-content .copy {
		padding: 0;
	}
	#four .container .content--info-box p {
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 22px;
	}
}
@media screen and (min-width: 1024px) {
	#four {
		background: url("../img/Segment 4_background scene-01.svg");
		background-position: center bottom;
		background-size: cover;
		background-repeat: no-repeat;
	}
	#four .container .content {
		max-width: 1160px;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		justify-content: space-between;
	}
	#four .container .content--main {
		float: left;
		width: calc(33.33% - 25px);
		padding: 35px;
	}
	#four .container .content--info-box {
		clear: both;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: calc(66.66% - 25px);
	}
	#four .container .content--info-box .info-box {
		position: relative;
		overflow: hidden;
		margin-top: 0;
		background-size: cover;
		width: calc(50% - 25px);
		height: 349px;
		display: flex;
		align-items: flex-end;
		border: 2px solid #fff;
		transition: border 1s ease;
		cursor: default;
	}
	#four .container .content--info-box .info-box:first-child {
		margin-bottom: 50px;
	}
	#four .container .content--info-box .info-box.hover-effect,
	#four .container .content--info-box .info-box:hover {
		border: 2px solid rgb(35, 31, 32);
	}
	#four .container .content--info-box .info-box.hover-effect .cta,
	#four .container .content--info-box .info-box:hover .cta {
		opacity: 0;
	}
	#four .container .content--info-box .info-box.hover-effect .cta-content,
	#four .container .content--info-box .info-box:hover .cta-content {
		left: 0px;
	}
	#four .container .content--info-box .cta {
		position: absolute;
		background-color: transparent;
		pointer-events: none;
		padding: 20px;
		height: 100%;
		width: 100%;
		left: 0;
		top: 0;
		text-align: center;
	}
	#four .container .content--info-box .cta .wf-title {
		margin: 0 auto;
		color: #fff;
	}
	#four .container .content--info-box .cta span {
		display: none;
	}
	#four .container .content--info-box .cta-content {
		display: flex;
		position: absolute;
		width: 101%;
		left: -101%;
		height: 100%;
		transition: left 0.4s ease-in-out;
		background: rgb(35, 31, 32);
	}
	#four .container .content--info-box .cta-content .copy {
		color: #fff;
		background: transparent;
	}
	#four .container .content--info-box .cta-content .cross {
		display: none;
	}
}
@media screen and (min-width: 1112px) {
	#four .container .content--info-box .cta {
		padding: 55px;
	}
	#four .container .content--info-box p {
		font-size: 16px;
		font-size: 1rem;
		line-height: 21px;
	}
	#four .container .cta-content .copy {
		padding: 15px;
	}
}
@media screen and (min-width: 1500px) {
	#four .container .content--main {
		padding: 50px;
	}
	#four .container .cta-content .copy {
		padding: 20px;
	}
}
#five {
	background: url("../img/Segment 1_background with clouds_mobile.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#five > .container {
	position: relative;
	height: 100%;
	min-height: calc(100vh - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#five img {
	width: 100%;
}
@media screen and (min-width: 768px) {
	#five {
		background: #5799db;
	}
	#five > .container img {
		max-width: 705px;
	}
	#five .cloud-container {
		height: 100vh;
	}
	#five .sliding-clouds,
	#five .sliding-clouds--offscreen {
		height: 100vh;
	}
}
.c-photo-comp {
	padding: 0 60px 65px;
	padding: 0 clamp(40px, min(40px, 20%), 225px) 65px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.c-photo-comp a {
	transition: 0.2s ease-in-out all;
}
.c-photo-comp__header {
	position: relative;
	z-index: 5000;
	width: 100%;
	max-width: 562px;
	margin-top: -110px;
	margin-top: max(-26%, -140px);
	margin-bottom: 40px;
}
@media (min-width: 1200px) {
	.c-photo-comp__header {
		margin-bottom: 0;
	}
}
.c-photo-comp__header:before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 50.1779359431%;
}
.c-photo-comp__header:after {
	content: "";
	display: block;
	background: transparent url(../img/graphic-photo-comp-2022.svg) no-repeat center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.c-photo-comp__content {
	max-width: 670px;
	margin: 0 auto;
}
.c-photo-comp__content > * {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	margin: 0;
}
.c-photo-comp__date {
	margin-bottom: 2em;
}
@media (min-width: 900px) {
	.c-photo-comp__date {
		display: none;
		position: fixed;
	}
}
.c-photo-comp__content > * + * {
	margin-top: 3em;
}
.page .segment .c-photo-comp__display-2 {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.page .segment .c-photo-comp__display-2 {
		font-size: 24px;
		font-size: 1.5rem;
	}
}
.page .segment .c-photo-comp__display-3 {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: none;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.page .segment .c-photo-comp__display-3 {
		font-size: 24px;
		font-size: 1.5rem;
	}
}
.l-rhythm > .c-photo-comp__display-2 + .c-photo-comp__display-3 {
	margin-top: 0.2em;
}
.c-photo-comp__display-4 {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.c-photo-comp__display-4 {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
[class*="c-photo-comp__flowers-"] {
	position: absolute;
	z-index: 4000;
	animation: tik-tok 1s ease-in-out infinite;
}
[class*="c-photo-comp__flowers-"] > [class*="c-flowers-"] {
	width: 100px;
	width: clamp(120px, 10vw, 224px);
}
.c-photo-comp__flowers-1 > [class*="c-flowers-"],
.c-photo-comp__flowers-2 > [class*="c-flowers-"] {
	width: clamp(80px, 10vw, 224px);
}
.c-photo-comp__flowers-1 {
	top: 0;
	left: 0;
	transform-origin: top left;
}
.c-photo-comp__flowers-1 > * {
	margin-top: -25%;
	margin-left: -25%;
}
.c-photo-comp__flowers-2 {
	top: 0;
	right: 0;
	transform-origin: top right;
	animation-direction: reverse;
}
.c-photo-comp__flowers-2 > * {
	transform: translate(34%, -25%);
}
.c-photo-comp__flowers-3 {
	bottom: 0;
	right: 0;
	transform-origin: bottom right;
	animation-direction: reverse;
}
.c-photo-comp__flowers-3 > * {
	transform: translate(25%, 25%);
}
.c-photo-comp__flowers-4 {
	bottom: 0;
	left: 0;
	transform-origin: bottom left;
}
.c-photo-comp__flowers-4 > * {
	transform: translate(-25%, 25%);
}
@keyframes tik-tok {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(2deg);
	}
	to {
		transform: rotate(0);
	}
}
.segment-photo-comp {
	background: url("../img/Segment 1_background with clouds_mobile.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 750px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width: 768px) {
	.segment-photo-comp {
		height: auto;
		background: #5799db;
	}
}
@media screen and (min-width: 1024px) {
	.segment-photo-comp {
		padding: 0;
	}
}
.segment-photo-comp > .container {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.segment.segment-photo-comp .content {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-top: 12vh;
	padding-top: clamp(40px, 12vh, 200px);
	padding-bottom: 4vh;
	padding-bottom: clamp(40px, 10vh, 120px);
}
@media screen and (min-width: 768px) {
	.segment.segment-photo-comp .content {
		width: 100%;
		max-width: 1160px;
		justify-content: center;
		flex-direction: row;
	}
}
@media screen and (min-width: 1024px) {
	.segment.segment-photo-comp .content {
		width: 85%;
	}
}
@media screen and (min-width: 1500px) {
	.segment.segment-photo-comp .content {
		width: 70%;
	}
}
