﻿/* -----------------------------------------------
Intro Page Styles
----------------------------------------------- */

.rs-intro-view {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 0;
	background: #fff;
}

.rs-intro-view-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 100vh;
}

.rs-intro-view-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 768px;
	width: 95%;
	margin-top: 1rem;
}

.rs-intro-view-heading {
	outline: none;
}

.rs-intro-view-header-logo {
	width: 300px;
}

@media all and (max-width: 640px) {
	.rs-intro-view-header-logo {
		width: 215px;
	}
}

.rs-intro-view-header-nav {
	display: flex;
	align-items: center;
}

.rs-intro-view-main {
	max-width: 720px;
	width: 95%;
	margin: 5rem auto;
	text-align: center;
}

.rs-intro-view-footer {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding: 3rem 2rem;
	color: rgba(255, 255, 255, 0.8);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	background-image: url("https://buffiniandcompany.blob.core.windows.net/real-strengths/images/bg-blue-textured.jpg");
	background-repeat: no-repeat;
	background-color: #06a2db;
	background-size: cover;
}

@media all and (max-width: 640px) {
	.rs-intro-view-main {
		width: 100%;
		padding: 0 1rem;
		margin: 2rem auto;
	}

	.rs-intro-view-footer {
		padding: 2rem 1rem;
	}
}

.rs-intro-view-footer-nav {
	margin-bottom: 1rem;
}

.rs-intro-view-footer-nav a {
	margin: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease-in-out;
}

.rs-intro-view-footer-nav a:hover {
	color: rgba(255, 255, 255, 1);
}

.rs-intro-view-footer-social {
	margin-bottom: 1.5rem;
}

.rs-intro-view-footer-social a {
	margin: 0.75rem;
}

@media all and (max-width: 640px) {
	.rs-intro-view-footer-social a, .rs-intro-view-footer-nav a {
		margin: 0.5rem;
	}
}