/* Global Styles */
body {
	font-size: 16px;
    font-family: 'Open Sans', sans-serif; 
    overflow-x: hidden;
}
p {
	line-height: 1.6;
	font-size: 1rem;
	margin: 0 0 1.2rem 0;
}
a,
button,
.btn {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

/* Nav Bar */
.navbar {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.footer {
	
}

/* Utility classes */
.red { color: #c60000; }
.blue { color: #0000cc; }
.white { color: white; }

.background--red { background-color: #c60000; }
.background--blue { background-color: #005dab; }
.background--blue-transparent { background-color: rgba(0,93,171,0.7); }
.background--white { background-color: white; }
.background--white-transparent { background-color: rgba(255,255,255,0.5); }

.border--red { border-color: #c60000; }
.border--blue { border-color: #0000cc; }