@charset "utf-8";
/* CSS Document */

/* Imported Fonts */

@font-face {
  font-family: "Caros Light";
  src: url("https://project2.austinlage.com/assets/fonts/caros-light.ttf") format("TrueType");
}

@font-face {
  font-family: "Caros";
  src: url("https://project2.austinlage.com/assets/fonts/caros.ttf") format("TrueType");
}

@font-face {
  font-family: "Caros Medium";
  src: url("https://project2.austinlage.com/assets/fonts/caros-medium.ttf") format("TrueType");
}

@font-face {
  font-family: "Caros Bold";
  src: url("https://project2.austinlage.com/assets/fonts/caros-bold.ttf") format("TrueType");
}

@font-face {
  font-family: "Caros Extra Bold";
  src: url("https://project2.austinlage.com/assets/fonts/caros-extrabold.ttf") format("TrueType");
}


/* Universal Styles */

html, body {
	height: 100%;
}

p {
	font-family: "Caros Medium", sans-serif;
	font-size: 17px;
	line-height: 28px;
}

a {
	text-decoration: none;
	font-family: inherit;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	color: #f5cc74;
	transition: 0.2s;
}

h1 {
	font-family: "Caros Extra Bold", sans-serif;
	font-size: 64px;
    margin-bottom: 15px;
}

h2 {
	font-family: "Caros Bold", sans-serif;
	font-size: 50px;
	margin-bottom: 15px;
}

h3 {
	font-family: "Caros Bold", sans-serif;
	font-size: 24px;
}

.centertext {
	text-align: center;
}

input:focus, textarea:focus, select:focus, textarea, button, button:focus {
	outline: none;
}

button {
	background-color: #f5cc74; 
	border-radius: 50px;
	padding: 17px 40px;
	font-family: "Caros Bold", sans-serif;
	font-size: 18px;
	transition: 0.2s;
	cursor: pointer;
	border: none;
}

button:hover {
	background-color: #f4c766;
	transition: 0.2s;
}

.link {
	text-decoration: underline;
	text-decoration-color: #f05454;
}

.link:hover {
	color: #f05454;
}

::selection {
  background: rgba(240,84,84,.5);
  color: #fff;
}


/* Nav Bar Styles */

.navbackground {
	width: 100%;
	height: 100px;
	background-color: #222222;
	float: left;
}

.navbar {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

.logo {
	margin-top: 21px;
	float: left;
}

nav {
	float: right;
	display: flex;
 	align-items: center;
	height: 100px;
}

nav a, .navitem {
	font-family: "Caros Medium", sans-serif;
	font-size: 15px;
	text-decoration: none;
	color: #fff;
	padding: 40px 10px;
	transition: 0.2s;
	display: inline-block;
  	overflow: hidden;
}

.navbar a:hover, .navitem:hover {
	color: #f5cc74;
	transition: 0.2s;
	cursor: pointer;
}

.dropdown {
  	display: none;
  	position: absolute;
 	background-color: #222222;
  	width: 9em;
  	z-index: 1;
}

.dropdown a {
  	color: #ffffff;
  	padding: 16px 16px;
  	text-decoration: none;
  	display: block;
  	text-align: left;
	transition: 0.2s;
}

.dropdown a:hover {
  	background-color: #2C2C2C;
	transition: 0.2s;
}

.navitem:hover .dropdown {
  	display: block;
}


/* Main Content Styles */

#wrapper {
	margin: auto;
	display: flex;
	width: 60%;
	padding: 100px 0;
}

.homebackground {
	background-image: url(https://project2.austinlage.com/assets/images/home-background.jpg);
	background-repeat: no-repeat;
  	background-size: cover;
	background-color: #222;
	height: 100%;
}

.homeheadline {
	padding: 17% 0 0 13%;
	line-height: 90px;
}

.homeline2 {
	font-family: "Caros Light", sans-serif;
}

.homeheadline mark {
	background: #f05454;
	color: #fff;
	padding: 0 8px;
}

.container {
  	display: flex;
  	flex-direction: column;
  	flex-wrap: wrap;
	justify-content: flex-end;
  	align-items: center;
	height: 100%;
	width: 100%;
}

.box1, .box2, .box3 {
	display: flex;
	align-items: flex-end;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #222;
	color: #fff;
}

.box1 h2, .box2 h2, .box3 h2 {
	margin: 15px;
}

.box1 {
  	height: 100%;
  	width: 45%;
	flex-basis: 100%;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(34, 34, 34, 1)), url("https://project2.austinlage.com/assets/images/box1background.jpg");
}

.box2 {
	height: 47%;
	width: 50%;
	flex-direction: column-reverse;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(34, 34, 34, 1)), url("https://project2.austinlage.com/assets/images/box2background.jpg");
}

.box3 {
	height: 47%;
	width: 50%;
    margin-top: 2.1em;
	flex-direction: column-reverse;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(34, 34, 34, 1)), url("https://project2.austinlage.com/assets/images/box3background.jpg");
}

.box1:hover, .box2:hover, .box3:hover {
	cursor: pointer;
	transition: 0.3s;
	color: #f5cc74;
}

.contactform {
  	display: flex;
 	justify-content: center;
  	align-items: center;
	margin: 20px;
}

.contactform form {
	width: 85%;
}

.contactinputcontainer {
	width: 100%;
	display: flex;
}

.contactform input, textarea {
	font-family: "Caros", sans-serif;
	font-size: 17px;
	margin: 10px;
	border-radius: 18px;
	width: 100%;
	background-color: #eee;
	border: #eee;
	padding: 17px 25px;
}

textarea {
	resize: none;
	overflow: hidden;
	border-width: 10px 20px;
}

.contactform-submit {
	background-color: #392b93 !important; 
	border-radius: 5px !important;
	color: #fff;
	padding: 17px 40px !important;
	width: auto !important;
	font-family: "Caros Medium", sans-serif !important;
	font-size: 18px;
	transition: 0.2s;
}

.contactform-submit:hover, .contactform-submit:hover{
	background-color: #4332AE !important;
	cursor: pointer;
	transition: 0.2s;
}

.gallery {
	margin: 10px;
}

.boxes {
	margin: 50px;
}

.content-box {
	width: 300px;
	height: 100px;
	margin: 10px;
}
		
.content-box h3 {
	font-family: "Caros Bold", sans-serif;
	font-size: 24px;
}

.profile {
	float: left;
	height: 250px;
	width: 250px;
	padding-right: 25px;
}

.thankyou-background {
	height: 80%;
	background-color: #392b93;
}

.thankyou-flexbox {
	height: 100%;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.thankyou-content {
	color: #fff;
}

/* Footer Styles */
/* Subscription Box */

footer {
	height: 100vh;
	clear: both;
}

.footerform-background {
	height: 80%;
	background-color: #f5cc74;
}

.footerform-flexbox {
	height: 100%;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.footerform-content h3 {
	margin-top: 21px;
	margin-bottom: 32px;
}

.footerform input {
	border-radius: 50px;
	border: none;
	font-size: 16px;
	font-family: "Caros", sans-serif;
	padding: 20px 30px;
	margin: 5px;
	width: 350px;
}

.footerform-join {
	width: 115px !important;
	background-color: #392b93;
	color: #fff;
	font-family: "Caros Medium", sans-serif !important;
	transition: 0.2s;
}

.footerform-join:hover, .footerform-join:active {
	background-color: #4332AE;
	cursor: pointer;
	transition: 0.2s;
}


/* Copyright Bar */

.btmfooter-background {
	height: 20%;
	background-color: #222222;
}

.btmfooter {
	height: 100%;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}

.copyright p {
	font-size: 14px;
	color: #fff;
	font-family: "Caros Light", sans-serif;
}

.socialicons {
	margin-left: auto; 
	margin-right: 0;
}

.socialicons img {
	margin-left: 7px;
}

.socialicons img:hover {
	opacity: 75%;
}
