@charset "utf-8";
/*General Styles*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body, html {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	font-family: "Proxima Nova", "Proxima Nova Light", "Proxima Nova Thin", "Proxima Nova Medium", "Proxima Nova Semibold";
}
section {
	display: flex;
	flex-direction: column;
	padding-top: 100px;
	padding-bottom: 100px;
}
/*section:not(.one):nth-child(odd) {
	background-color: #ffffff;
}
section:not(.one):nth-child(even) {
	background-color: #f5f5f5;
}*/
.column_1 {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}
.column_2 {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}
/*button styles */
a {
	text-decoration: none;
	color: #ffffff;
	font-family: "Proxima Nova", "Proxima Nova Light", "Proxima Nova Thin", "Proxima Nova Medium", "Proxima Nova Semibold";
	font-size: 14px;
}
a.btn {
	border-radius: 20px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	background-color: #4671a4;
	position: relative;
	color: white;
	box-shadow: 0 4px #4671a4;
}
.btn:hover {
	box-shadow: 0 2px #4671a4;
	top: 2px;
}
.btn:active {
	box-shadow: 0 0 #4671a4;
	top: 6px;
}
.btn {
	margin: 1.5rem;
	padding: 0.7rem 2rem;
}

@media (max-width: 1200px) {
	a {
		font-size: 40px;
	}
	section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*Header Styles*/
header {
	display: flex;
	flex-direction: row;
	background-color: #204369;
	color: #ffffff;
	width: 100%;
	height: 85px;
	overflow-y: auto;
}
nav {
	display: flex;
	align-items: center;
	flex-grow: 1;
	justify-content: space-between;
}
nav img {
	max-height: 63px;
	width: auto;
	padding-left: 2.2rem;
}
nav p {
	display: flex;
	padding-left: 20rem;
	font-size: 16px;
}

@media (max-width: 1200px) {
	header {
		width: 100vw;
		height: auto;
	}
	nav {
		height: 6.5rem;
	}
	nav img {
		padding-left: 2rem;
		width: 98%;
		height: auto;
	}
	nav p {
		font-size: 18px;
		padding-right: 2rem;
	}
}

/*one styles*/
.one {
	width: 100vw;
	height: 100vh;
}
.one .background_image {
	position: absolute;
	top: 85px;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: 1;
}
.one .rally_logo {
	display: flex;
	justify-content: center;
	margin-top: -4rem;
	z-index: 2;
}
@media (max-width: 1200px) {
	.one { 
		width: 100vw;
		height: 100vh;
		padding-top: 0;
		padding-bottom: 0;
	}
	.one .background_image {
		background-size: cover; 
		width: 100vw;
		height: 100vh;
		top: 6.5rem;
		position: absolute;
		background-position: center center;
	}
	.one .rally_logo img {
		height: auto;
		width: 100vw;
		position: absolute;
		top: 15rem;
	}
}

/* two styles */
.two {
	display: flex;
	flex-direction: row;
	flex: 1;
	position: relative;
}
.two .column_1::before {
  content: "";
  position: absolute;
  margin-top: 7.7rem;
  top: 0;
  left: 26%; 
  transform: translateX(-50%); 
  width: 30rem; 
  height: 2px; 
  background-color: black; /* Use background instead of border */
}
.two .column_1 {
	align-items: center;
	text-align: center;
	font-size: 16px;
	color: black;
	line-height: 2;
}
.two .column_1 h2 {
	padding-top: 3rem;
	padding-bottom: 1rem;
	padding-left: 1rem;
}
.two .column_2 {
	align-items: center;
}
.two a {
	margin-left: 2rem;
}

/*slider styles */
.slider {
	position: relative;
	width: 90%;
	height: 90%;
	margin: auto;
	margin-right: 13rem;
	overflow: hidden;
}

.slider img {
	width: 100%;
	display: none;
	object-fit: cover;
}

img.displaySlide {
	display: block;
	animation-name: fade;
	animation-duration: 1.5s;
}

.slider button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	padding: 10px 15px;
	background-color: black;
	opacity: 50%;
	color: white;
	border: none;
	cursor: pointer;
}
.previous {
	left: 0;
}
.next {
	right: 0;
}
@keyframes fade {
	from {opacity: .2}
	to {opacity: 1}
}

@media (max-width: 1200px) {
	.two {
		flex-direction: column;
	}
	.two .column_1 h2 {
		padding-top: 0;
		top: 0;
		font-size: 45px;
	}
	.two .column_1 p {
		font-size: 40px;
	}
	.two .column_1::before {
		display: none;
	}
	.two .column_1 a {
		margin-top: 2rem;
	}
	.slider {
		margin-right: auto;
		margin-left: auto;
		margin-top: 3rem;
		max-width: 80%;
		height: auto;
	}
}

/* three styles */
.three {
	position: relative;
	z-index: 25;
	display: flex;
	flex-direction: row;
}
.three::before {
  content: "";
  position: absolute;
  margin-top: 6.4rem;
  top: 0;
  left: 72.5%;
  transform: translateX(-50%); /* Center it */
  width: 41rem; 
  height: 3px; 
  background-color: black; /* Use background instead of border */
}
.column_1 img {
	width: 50%;
	height: auto;
}
.three .column_1 {
	align-items: center;
}
.three .column_2 {
	align-items: flex-start;
}
.column_2 h3, p {
	width: 42rem;
	padding-left: 20px;
}
.column_2 h3 {
	padding-bottom: 2rem;
	text-align: left;
	padding-top: 3rem;
}
.column_2 p {
	font-size: 16px;
	text-align: left;
}
.column_2 #sign_off_logo {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 15%;
	height: auto;
	padding-left: 1.5rem;
	padding-top: 1rem;
}
@media (max-width: 1200px) {
	.three {
		flex-direction: column;
	}
	.three::before {
		margin-top: 0.5rem;
		top: 0;
		left: 50%; 
		transform: translateX(-50%); 
		width: 35rem; 
	}
	.three .column_2 {
		align-items: center;
}
	.column_2 h3, p {
		width: auto;
		height: auto;
		padding-left: 0;
	}
	.column_2 h3 {
		padding-top: 2rem;
		font-size: 45px;
		text-align: center;
	}
	.column_2 p {
		font-size: 40px;
		text-align: center;
	}
	.column_2 #sign_off_logo {
		justify-content: center;
		width: 25%;
		height: auto;
	}
}

/* footer styles */
footer {
	background-color: #204369;
	color: #ffffff;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 8rem;
	width: 100%;
}
footer .footer_logo img {
	max-height: 5rem;
	width: auto;
	padding-left: 3rem;
}
footer .footer_order {
	display: flex;
	align-items: center;
}
footer .footer_order .footer_text p {
	font-size: 14px;
	line-height: 1.5;
	padding-left: 4rem;
}
footer .footer_order .footer_btns {
	margin-left: 12rem;
}

@media (max-width:1200px) {
	footer {
		flex-direction: column;
		height: auto;
	}
	footer .footer_order .footer_btns a{
		font-size: 20px;
	}
	footer .footer_logo {
		margin-top: 2rem;
	}
	footer .footer_logo img {
		padding-left: 0;
		max-height: 10rem;
	}
	footer .footer_order {
		display: flex;
		flex-direction: column;
		margin-top: 2rem;
	}
	footer .footer_order .footer_text p {
		margin-right: 0;
		padding-left: 0;
		text-align: center;
		margin-bottom: 1rem;
		font-size: 30px;
		margin-top: 2rem;
	}
	footer .footer_order .footer_text {
		order: 2;
	}
	footer .footer_order .footer_btns {
		display: flex;
		flex-direction: column;
		order: 1;
		margin: 0;
	}
	footer .footer_order .footer_btns #flyer_btn {
		margin-bottom: 0.2rem;
	}
}
