/*General*/

html, body {
    margin: 0;
    padding: 0;
}

.font {
	font-family: 'Raleway', sans-serif;
}

.main_text {
	font-size: 20px;
	color: #5e5a5a;
	line-height: 30px;
}

.top_banner {
	position: relative;
	width: 100%;
	height: 40%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner_titles {
	position: absolute;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.banner_title_text {
	font-size: 70px;
	animation-name: titles;
	animation-duration: 1s;
	color: white;
}

@keyframes titles {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes transitionIn {
	from {
		opacity: 0;
		transform: rotateX(-10deg);
	}

	to {
		opacity: 1;
		transform: rotateX(0deg);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.backend_button {
	cursor: pointer;
	background-color: #000000;
	color: #ffffff;
	transition: 0.6s;
}

.backend_button:hover {
	background-color: #ffffff;
	color: black;
	transition: 0.6s;
}

.button {
	cursor: pointer;
	background-color: green;
	color: white;
	transition: 0.6s;
	font-size: 17px;
	border-radius: 9999px;
	border: solid 2px green;
}

.button:hover {
	background-color: white;
	color: green;
	transition: 0.6s;
}

h1 {
	font-size: 30;
}

.main_page {
	background-color: white;
	background-size: all;
	position: relative;
	width: 100%;
	text-align: center;
	padding-top: 30px;
	overflow: hidden;
}

.centering_div {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	width: 60%;
	padding-top: 50px;
}

.input_box {
	display: block;
	background-color: lightgrey;
	margin: 10px auto;
	border: 1px solid white;
}

.titles {
	margin-bottom: 30px;
	color: #3b3b3b;
	font-size: 40px;
	font-family: Helvetica;
	font-weight: 100;
}


/*Menu*/
#menubar_container {
	width: 100%;
	height: 120px;
	position: relative;
	box-shadow: 0 0 20px #000000;
	background-color: white;
	z-index: 100;
}

#menubar_logo_container {
	height: 92px;
	position: absolute;
	cursor: pointer;
	left: 80;
	bottom: 14;
	transition: 0.2s;
	z-index: 10;
}

#menubar_logo_container:hover {
	height: 100px;
	left: 77;
	bottom: 10;
	transition: 0.2s;
}

#nav_container {
	position: absolute; 
	bottom: 20;
 	text-align: center;
 	width: 100%;
}

#nav_container li {
	display: inline;
	margin: 50px;
}

#nav_container li a {
	color: #8a8a8a;
	font-family: Verdana;
	text-decoration: none;
	font-size: 20px;
	transition: 0.3s;
}

#nav_container li a:hover{
	color: green;
	transition: 0.3s;
}

.active {
	color: green !important;
}


/*Footer*/
#footer {
	width: 100%;
	height: 70px;
	bottom: 0;
	position: relative;
	background-color: #262626;
	color: white;
	text-align: center;
	padding-top: 25px;
}


/*index*/

.slideshow_container {
	width: 100%;
	height: 100%;
	margin-top: -100px;
	position: fixed;
	background-size: 100%;
	background-color: white;
}

.slides {
	display: none;
}

.slide_number {
	color: white;
	font-size: 50;
	position: absolute;
	top: 15%;
	left: 2%;
}

.slideshow_caption {
	color: white;
	font-size: 50;
	position: absolute;
	bottom: 7%;
	width: 90%;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
}

.dots_container {
	text-align: center;
	position: fixed;
	right: 10px;
	bottom: 42%;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 5px 2px;
	background-color: white;
	border-radius: 50%;
	display: block;
	transition: 0.6s ease;
}

.current, .dot:hover {
	background-color: #525252;
	transition: 0.6s ease;
	overflow: hidden;
}

.fade {
	animation-name: fade;
	animation-duration: 2s;
}

@keyframes fade {
	from {opacity: 0.5}
	to {opacity: 1}
}

.center_text {
	width: 80%;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

#parallax {
	width: 80%;
	height: 40%;
	margin: auto;
	background-image: url('images/layton-drive-3.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: 50% 50%;
}

.testimonials {
	background-color: white;
	width: 900px;
	margin: 0 auto 0 auto;
	padding-bottom: 130px;
	text-align: center;
}

.testimonials_container {
	width: 800px;
	margin: auto;
	overflow: hidden;
}

.testimonial_slides {
	width: 100%;
	display: flex;
}

.testimonial {
}

.testimonial_text {
	width: 800px;
	text-align: center;
	font-size: 18px;
	color: #5e5a5a;
	line-height: 30px;
}

.testimonial_author {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #5e5a5a;
}

.testimonial_height{
	transition: max-height 0.7s linear;
}

.testimonial_centering {
}

.chevrons {
	cursor: pointer;
	height: 50px;
	width: 30px;
	color: white;
	background-color: black;
	font-size: 20px;
	opacity: 50%;
	transition: 0.5s;
}

.chevrons:hover {
	opacity: 80%;
}

.chevron_left {
	float: left;
}

.chevron_right {
	float: right;
}



/*Gallery*/

.project_select_wrapper{
	width: 300px;
	height: 200px;
	margin: auto;
	text-align: center;
	opacity: 0;
	animation: transitionIn 1s;
	animation-fill-mode: forwards;
}

.gallery_column {
	flex: 20%;
	padding: 40px 20px 40px 20px;
}

.gallery_container {
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 50px 0;
}

.project_select {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	transition: 0.3s;
	margin: auto;
}

.project_select:hover {
	cursor: pointer;
	opacity: 0.5;
}

.project_titles {
	text-decoration: none;
	font-size: 25px;
	transition: 0.6s;
}

.project_titles:hover {
	color: green;
}

.image_slider {
	margin-top: 50px;
	margin-bottom: 50px;
	animation: transitionIn 2s;
	width: 70vw;
	display: inline-block;
	position: relative;
	margin-left: 15vw;
}

#dummy {
	margin-top: 40vw;
}

.images_container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

.image_slide {
	display: flex;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#previous_image {
	position: absolute;
	top: calc(50% - 35px);
	left: 0;
	z-index: 10;
	height: 70px;
	width: 40px;
}

#next_image {
	position: absolute;
	top: calc(50% - 35px);
	right: 0;
	z-index: 10;
	height: 70px;
	width: 40px;
}

.description {
	width: 60%;
	margin: auto;
	text-align: center;
	margin-bottom: 50px;
	animation: transitionIn 2s;
}

.description_text {

}

/*about*/

.portrait {
	width: 90%;
	height: 90%;
	margin-left: 5%;
	margin-top: 5%;
}

.left_half {
	float: left;
	width: 50%;
	height: 60%;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
}

.right_half {
	float: right;
	width: 50%;
	height: 60%;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
}


/*Contact*/

.contact_container {
	animation-name: transitionIn;
	animation-duration: 2s;
}

.contact_form_container {
	width: 60%;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}

.contact_form {
}

.contact_form input{
	display: block;
	height: 50px;
	width: 100%;
	margin: auto;
	margin-bottom: 30px;
	text-align: center;
}

.contact_form textarea{
	display: block;
	height: 200px;
	width: 100%;
	text-align: center;
	margin: auto;
}

.contact_form button{
	display: block;
	margin: auto;
	width: 120px;
	height: 40px;
	margin: 30px auto 40px auto;
}

.left_box {
	width: 49% !important;
	float: left !important;
}

.right_box {
	width: 49% !important;
	float: right !important;
}

.wide_box {
	width: 100% !important;
}

.area_box {
    text-align: left !important;
}

.area_box::placeholder {
    text-align: center !important;
}


/*Admin*/

.admin_page_container {
	margin-left: 20px;
	width: 90%;
}

.admin_input_box {
	float: left;
	margin-right: 20px;
	box-shadow: 0 0 10px black;
	border: 1px solid white;
	width: 300px;
	height: 36px;
}

.gallery_add_textarea {
	width: 600px;
	height: 150px;
	box-shadow: 0 0 10px black;
	border: 1px solid white;
}

.admin_page_container button {
	width: 100px;
	height: 40px;
}

.gallery_edit {
	float: left;
	width: 90%;
}

.testimonials_edit {
	float: left;
	width: 90%;
	margin-top: 20px;
}

.gallery_order_edit {
	width: 100%;
	overflow: hidden;
}

.gallery_order_edit button{
	margin-top: 20px;
}

.text_response {
}

#drag_drop_container {
	margin-top: 30px;
	margin-bottom: 30px;

}

.draggable_image_container {
	display: inline-block;
	margin: 5px 5px 5px 5px;
}

.draggable_image {	
    cursor: move;
}

.delete_form {
	width: 40px !important;
	height: 40px !important;
	float: right;
	transform: translate(-43px, -17px);
}

.delete_photo_button {
	color: white;
	background-color: red;
	border: solid red;
	width: 100% !important;
	height: 100% !important;
	transition: 0.6s;
	cursor: pointer;
}

.delete_photo_button:hover {
	background-color: white;
	color: red;
	border: solid red;
}



@media(max-width: 500px){
/*General*/
.top_banner {
	height: 20%;
}

.banner_title_text {
	font-size: 40px;
}


/*Menu*/

#menubar_container {
	height: 200px;
}

#menubar_logo_container {
	height: 100px;
	left: 10;
	top: 55;
}

#menubar_logo_container:hover {
	height: 100px;
	left: 10;
	top: 55;
}

#menubar_logo_container:active {
	height: 100px;
	left: 10;
	top: 55;
}

#nav_container {
	top: 10px;
}

#nav_container li {
	display: block;
	text-align: right;
	margin: 10px;
	margin-right: 20px;
}



/*Footer*/



/*index*/

.slideshow_container {
	height: 50%;
}

.slideshow_caption {
	font-size: 25;
	bottom: 4%;
}

.slide_number {
	font-size: 40;
	position: absolute;
	top: 30%;
	left: 2%;
}

.dots_container {
	bottom: 30%;
}

.gallery_column {
	padding: 40px 0 40px 0;
}

.testimonials {
	width: 350px;
}

.testimonials_container {
	width: 250px;
}

.testimonial_text {
	width: 250px;
}


/*Gallery*/

.image_slider {
	width: 90vw;
	margin-left: 5vw;
}

#dummy {
    margin-top: 50vw;
}



/*about*/

.portrait {
	height: 40%;
	margin: 5% auto 0 auto;
}

.left_half {
	float: none;
	width: 100%;
	height: auto;
	margin: auto;
	text-align: center;
	display: block;
}

.right_half {
	float: none;
	width: 100%;
	height: auto;
	margin: auto;
	text-align: center;
	display: block;
}

.bottom_image {
	margin-top: 50px;
}



/*Contact*/

.contact_form_container {
	width: 90%;
	text-align: center;
	margin: auto;
	margin-bottom: 100px;
}

.left_box {
	width: 100% !important;
	float: none !important;
}

.right_box {
	width: 100% !important;
	float: none !important;
}



/*Admin*/
}

@media(min-width: 501px) and (max-width: 900px) {
/*General*/



/*Menu*/
#menubar_container {
	height: 200px;
}

#menubar_logo_container {
	height: 100px;
	left: 10;
	top: 55;
}

#menubar_logo_container:hover {
	height: 100px;
	left: 10;
	top: 55;
}

#menubar_logo_container:active {
	height: 100px;
	left: 10;
	top: 55;
}

#nav_container {
	top: 10px;
}

#nav_container li {
	display: block;
	text-align: right;
	margin: 10px;
	margin-right: 20px;
}



/*Footer*/


/*index*/

.slideshow_container {
	height: 50%;
}

.slideshow_caption {
	font-size: 25;
	bottom: 4%;
}

.slide_number {
	font-size: 40;
	position: absolute;
	top: 30%;
	left: 2%;
}

.dots_container {
	bottom: 30%;
}

.gallery_column {
	padding: 40px 0 40px 0;
}

.testimonials {
	width: 500px;
}

.testimonials_container {
	width: 420px;
}

.testimonial_text {
	width: 420px;
}


/*Gallery*/


/*about*/



/*Contact*/



/*Admin*/

}

@media(min-width: 901px) and (max-width: 1200px) {
/*General*/



/*Menu*/

#menubar_logo_container {
	left: 10;
}

#nav_container li {
	margin: 20px;
}


/*Footer*/


/*index*/

.dots_container {
	bottom: 39%;
}


/*Gallery*/


/*about*/



/*Contact*/



/*Admin*/

}