/* 

--- COLOR GUIDE ---
BUTTON = #465052;
BLUE = #149dcc;
GREY = #465052;

*/


body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	font-size: 16px;
	font-family: 'Rubik', sans-serif;
    background-color: #ffffff;
}

h1 {
	margin: 0;
	color: #ffffff;
	font-size: 4.5rem;
	text-align: center;
}

h2 {
	font-weight: 100;
	text-align: center;
	margin: 1em 0;
    color: #ffffff;
	padding: .2em 0 .5em 0;
	font-size: 1.75rem;
}

h3 {
	font-size: 6rem;
	font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
	color: #ffffff;
	margin: 0;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

section {
	padding: 4em 0;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
}

p {
	color: #767676;
	font-size: 1.125rem;
}

a {
	text-decoration: none;
	transition: .5s ease;
	cursor: pointer;
	color: #ffffff;
    text-decoration: none;
    outline: none;
}

a:hover {
	transition: .5s ease;
	color: #767676;
    text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
    position: relative;
}

li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

.main {
	max-width: 1440px;
	margin: 0 auto;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.flex {
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}

/* BUTTONS */
button {
    outline: none;
}

.btn-wrap {
	text-align: center;
	margin-top: 4em;
}

.btn {
	transition: .5s ease;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
	background-color: #465052;
	color: #ffffff;
	padding: 1em 2em;
	margin-top: 1em;
	border-radius: 50px;
	border: none;
	outline: none;
	font-size: 1rem;
	font-weight: 500;
}

.btn:hover {
	transition: .5s ease;
	background-color: #2c687c;
	outline: none;
	color: #ffffff;
	box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.3);
}

/* INPUTS */
form * {
    box-sizing: border-box;
}

input,
select,
textarea {
	font-size: 1.2rem;
	outline: none;
	padding: 1em;
	transition: 0.5s ease;
	border: 1px solid #d7dce0;
	border-radius: 5px;
	margin: .5em 0;
	display: block;
	width: 100%;
	background-color: #f7f8f9;
}

textarea {
	resize: vertical;
}

input[type="radio"]:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* LABELS */
label.show {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.2rem;
}

.required {
    color: #ba0000;
}

/* INPUT FOCUS */
input:focus,
textarea:focus {
	/* border: 2px solid #149dcc; */
    box-shadow: 0 0 7px 0 inset #149dcc;
	background-color: #ffffff;
	outline: none;
}

.input-text {
	position: relative;
    margin: 2em 0;
}

.full {
	width: 100%;
}

.half {
	width: calc(50% - 0.7rem);
}

.thirds {
	width: calc(33% - .5em);
    margin-bottom: 2em;
}

.thirds > .input-text,
.date > .input-text {
	position: relative;
}

/* PLACEHOLDERS */
::-webkit-input-placeholder {
	opacity: 0.5;
    transition: .5s ease;
}

:focus::-webkit-input-placeholder {
	opacity: 0.2;
    transition: .5s ease;
}



/*** SECTION HEADERS ***/
.overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.4;
}

.section-header {
    height: 300px;
    overflow-y: hidden;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000000;
}

.section-header > header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*
#ServicesSection {
    background-image: url('../images/services-header.jpg');
}

#ContactSection {
    background-image: url('../images/contact-header.jpg');
}
*/



/*** NAV ***/
.mobile-nav {
    display: none;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: .5s ease;
}

.top-nav .navbar {
    margin: 1em 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #ffffff;
    transition: .5s ease;
}

.top-nav .flex {
    justify-content: flex-start;
}

.top-nav .navbar > * {
    align-items: center;
}

.top-nav .navbar .logo {
    flex: 0 1 10%;
    transition: .5s ease;
}

.top-nav .navbar .nav-links {
    flex: 0 1 90%;
}

.top-nav .navbar .nav-links li {
    margin: 0 1.5em;
}

.top-nav.change {
    background-color: #465052;
    transition: .5s ease;
}

.top-nav.change .navbar {
    border-bottom: none;
    padding-bottom: 0;
    transition: .5s ease;
}

.top-nav.change .navbar .logo {
    flex: 0 1 5%;
    transition: .5s ease;
}



/*** HERO SECTION ***/
.hero {
    overflow-y: hidden;
    height: 700px;
    position: relative;
    padding: 0;
}

.hero .image {
    width: 100%;
    height: 100%;
    /* background-image: url('../images/hero-background.jpg'); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blue-overlay {
    background-color: #149dcc;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1440px;
    z-index: 1;
}



/*** ABOUT ***/
.about .content {
    text-align: center;
    border-top: 2px solid #149dcc;
    border-bottom: 2px solid #149dcc;
    padding: 2em 0;
}



/*** SERVICES ***/
.services .flex {
    flex-wrap: nowrap;
    justify-content: space-between;
}

.services .service {
    flex: 0 1 20%;
    text-align: center;
    transition: .5s ease;
}

.services .service:hover {
    transition: .5s ease;
    transform: scale(1.2);
}

.services .service > i {
    color: #149dcc;
    font-size: 7rem;
}



/*** CONTACT ***/
.contact .flex {
    align-items: flex-end;
}

.contact .flex > li {
    margin: .5em 0;
}

.contact .radio .input-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact .radio .input-wrap > input {
    flex: 0 1 2%;
}

.contact .input-text .budget {
    padding-left: 1.7em;
}

.contact .input-text .dollar-sign {
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    font-size: 1.25rem;
}



/*** FOOTER ***/
footer {
    background-color: #465052;
    padding: 2em;
    text-align: center;
}

footer .flex {
    justify-content: center;
}

footer .flex li {
    margin: 0 2em 1.5em 2em;
}

footer .social i {
    font-size: 1.75rem;
}

footer .copyright p {
    margin: 0;
    color: #ffffff;
    font-size: .8rem;
}



/*** THANK YOU ***/
.thank-you .check {
    text-align: center;
}

.thank-you h1 {
    color: #000000;
    margin: .5em 0;
}

.thank-you .check > i {
    font-size: 10rem;
    color: #149dcc;
}

.thank-you .content {
    text-align: center;
}

.thank-you .content .btn {
    margin-bottom: 2em;
}



/*** ACCESSIBILITY ***/
.accessibility .content * {
    color: #000000;
}

.accessibility .top-nav {
    background-color: #465052;
    transition: .5s ease;
    position: relative;
}

.accessibility .top-nav .navbar {
    border-bottom: none;
    padding-bottom: 0;
    transition: .5s ease;
    margin: 0;
    padding: 1em;
}

.accessibility h1 {
    margin: 2em 0 0 0;
    font-size: 3rem;
    font-weight: 300;
}

.accessibility h2 {
    margin: 1em 0 0 0;
    padding: 0;
    text-align: left;
    font-weight: 500;
    font-size: 1.5rem;
}

.accessibility span {
    text-align: center;
    font-style: italic;
    display: block;
}

.accessibility a:hover {
    color: #149dcc;
}







