@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");

body {
	overflow-x: hidden;
	font-family: "Lato", sans-serif;
	color: #505962;
}

/****************************************
 * NAVIGATION
 * **************************************/
.navbar {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.1rem;
	background: #004225;
	padding: 1rem;
	box-shadow: 0 0 5px black;
}

.navbar-brand img {
	height: 3rem;
}

.navbar-nav li {
	padding-right: 0.7rem;
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	text-shadow: 0.1rem 0.1rem 0.8rem black;
	padding-top: 0.8rem;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
	color: #1ebba3;
}

/****************************************
 * RE-USABLE 
 * **************************************/

.btn-hover {
	width: 200px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	margin: 20px;
	height: 55px;
	text-align: center;
	border: none;
	background-size: 300% 100%;

	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
		0 2px 10px 0 rgba(0, 0, 0, 0.12);
	border-radius: 50px;
	moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.btn-hover:hover {
	box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
		0 4px 15px 0 rgba(0, 0, 0, 0.15);
	background-position: 100% 0;
	moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.btn-hover:focus {
	outline: none;
}

.btn-hover.red {
	background-image: linear-gradient(
		to right,
		#eb3941,
		#f15e64,
		#e14e53,
		#e2373f
	);
}

.btn-hover.partners-btn {
	background-image: linear-gradient(
		to right,
		#eb3941,
		#f15e64,
		#e14e53,
		#e2373f
	);
	/*background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);*/
	/*box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);*/
}

.btn-hover.partners-btn:hover {
}

.image-shadow {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
}

.slanted {
	position: relative;
	padding: 20px;
}

.slanted:not(.only-bottom)::before {
	content: "";
	height: 100px;
	transform: skewY(2deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
}

.slanted:not(.only-top)::after {
	content: "";
	background: #004225;
	height: 100px;
	transform: skewY(2deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
}

.slanted::before {
	top: -50px;
}

.slanted::after {
	bottom: -65px;
}

.slanted.racing-green {
	background: #004225;
}

.slanted.racing-green::before {
	background: #004225;
}

.slanted.racing-green::after {
	background: #004225;
}

.slanted.iron {
	background-color: #1c2331;
}

.slanted.iron::before {
	background-color: #1c2331;
}

.slanted.iron::after {
	background-color: #1c2331;
}

@keyframes swing {
	0% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(-5deg);
	}
}

.swing {
	animation: swing ease-in-out 2s infinite alternate;
	transform-origin: center -3px;
}

/****************************************
 * LANDING 
 * **************************************/

.hero {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url("/images/hero/hero-min.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
}

.hero .partners-btn {
	display: block;
	margin: 0 auto;
}

.hero .font-logo {
	font-family: "Arizonia", cursive;
	text-transform: none;
	font-size: 8rem;
	font-weight: 300;
}

.hero .business-status img {
	width: 100px;
	margin-bottom: 10px;
}

.hero .business-status .status {
	font-size: 1.2rem;
	text-shadow: 0 0 5px black;
}

.hero .business-status .status span {
	font-weight: bold;
}

.hero .stuewe-logo {
	width: 80%;
	filter: invert(1);
}

@media only screen and (min-width: 800px) {
	.hero .stuewe-logo {
		width: 50%;
	}
}

.full-name {
	display: none;
}

@media only screen and (min-width: 1200px) {
	.full-name {
		display: inline-block;
	}
}

.hero h1 {
	font-size: 5em;
	font-weight: 700;
	letter-spacing: 0.3rem;
	text-shadow: 0.1rem 0.1rem 0.8rem black;
	padding-bottom: 1rem;
	text-transform: uppercase;
}

.hero h3 {
	font-size: 2rem;
	text-shadow: 0.1rem 0.1rem 0.5rem black;
	padding-bottom: 1.6rem;
}

.hero a {
	text-decoration: none;
}

.btn-lg {
	border-width: medium;
	border-radius: 0;
	padding: 0.6rem 1.3rem;
	font-size: 1.1rem;
}

.arrow {
}

/****************************************
 * Sections 
 * **************************************/

.racing-green {
	color: rgb(0, 66, 37);
}

.intro-wrapper {
	background: #004225;
}

section#intro {
	padding-top: 3rem;
	color: #fff;
}

section#intro .icons {
	padding: 20px 0;
}

.introduction-text {
	font-size: 1.15rem;
	margin: 40px 0;
}

#categories {
	background: #f6f3f0;
}

#categories .wrapper {
	padding: 0 10px 10px 10px;
}

@media only screen and (min-width: 600px) {
	#categories .wrapper {
		padding: 0 10px 10px 10px;
	}
}

@media only screen and (min-width: 1700px) {
	#categories .wrapper {
		padding: 0 100px 100px 100px;
	}
}

#categories h2 {
	font-size: 3.5rem;
	/*text-shadow: 0.1rem 0.1rem 0.8rem black;*/
	padding: 50px 0;
}

#categories .category-wrapper {
	color: #fff;
	position: relative;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transition: 300ms;
}

@media only screen and (max-width: 800px) {
	#categories
		.row:nth-child(1)
		.col-lg-4:nth-child(1)
		.category-wrapper:nth-child(1)
		.category-headline {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 1200px) {
	#categories .category-description {
		font-size: 1rem;
	}
}

@media only screen and (min-width: 1200px) {
	#categories .category-description {
		font-size: 0.7rem;
	}
}

@media only screen and (min-width: 1500px) {
	#categories .category-description {
		font-size: 0.85rem;
	}
}

@media only screen and (min-width: 1600px) {
	#categories .category-description {
		font-size: 1rem;
	}
}

#categories .category-description {
	display: none;
	padding: 10px 0;
	border-radius: 10px;
	text-shadow: 0.1rem 0.1rem 0.8rem black;
}

@media only screen and (min-width: 700px) {
	#categories .category-description {
		display: block;
	}
}

#categories img {
	filter: grayscale(30%);
	transition: all 400ms;
}

/* ATTENTION! This element gets it height set by JS
 * Function name: setCategoryHeight */
#categories .cat-card {
	margin-bottom: 15px;
}

#categories .cat-card .content {
	height: 100%;
	text-align: center;
	transition: transform 2s;
	position: relative;
	background: #b7c9e5;
	transform-style: preserve-3d;
}

#categories .cat-card .front,
#categories .cat-card .back {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform-style: preserve-3d;
	perspective: 2000px;
	backface-visibility: hidden;
}

#categories .cat-card .front::before {
	content: "";
	position: absolute;
	top: 1em;
	bottom: 1em;
	left: 1em;
	right: 1em;
	border: 1px solid #fff;
	transform: translateZ(3rem);
}

#categories .cat-card .front .category-headline {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateZ(9rem);
	color: #fff;
	font-weight: bold;
	text-shadow: 0.1rem 0.1rem 0.8rem black;
	font-size: 1.35rem;
}

#categories .cat-card .back {
	transform: rotateY(180deg);
	background: #333;
	display: flex;
	justify-content: center;
	align-items: center;
}

#categories .cat-card .back .category-description {
	color: #fff;
	transform: translateZ(6rem);
	padding: 20px;
}

#categories .category-description-mobile {
	display: none;
	padding: 10px;
	font-size: 1.2rem;
}

/* card rotating only on tablet and desktop*/
@media only screen and (min-width: 700px) {
	#categories .cat-card:hover .content {
		transform: rotateY(180deg);
	}

	#categories .category-description {
		margin: 0 40px;
	}
}

@media only screen and (min-width: 550px) {
	#categories .cat-card .front .category-headline {
		font-size: 1.7rem;
	}
}

@media only screen and (max-width: 700px) {
	#categories .category-description-mobile {
		display: block;
	}
}

#before-after {
	padding: 10px;
	background: #f6f3f0;
}

@media only screen and (min-width: 800px) {
	#before-after {
		padding: 100px 50px;
	}
}

#before-after .shadow-wrapper {
	border-radius: 20px;
	box-shadow: 0 0 5px black;
}

#before-after .before-after-desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#before-after .before-after-desc p {
	padding: 0 10px;
	font-size: 1.2rem;
	text-align: justify;
}

#before-after .before-after-headline {
	font-size: 2.5rem;
	margin: 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background: linear-gradient(#004225, #006225);
	font-weight: bold;
	padding: 20px;
	color: #fff;
}

#before-after #before-after-slider {
	border-radius: 20px;
	overflow: hidden;
}

#partners {
	box-shadow: 0 0 5px black;
	padding: 50px 0 50px 0;
	background: #004225;
}

@media only screen and (min-width: 800px) {
	padding: 100px 0 100px 0;
}

#partners .container {
	border-radius: 20px;
	padding: 20px;
}

#partners .partners-headline {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 40px;
}

#partners .partners-headline .inline-text {
	display: inline-block;
}

#partners .but-theres-more {
	color: #fff;
	font-size: 1.5rem;
	letter-spacing: 5px;
	margin: 40px 0;
}

@media only screen and (min-width: 800px) {
	#partners .partners-headline {
		font-size: 3.5rem;
	}
}

#partners .partners-icon {
	font-size: 5rem;
	margin-bottom: 20px;
}

#partners .partner-img {
	background: #fff;
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.65);
	border-radius: 10px;
	filter: brightness(97%);
	transition: transform 300ms, filter 300ms;
}

#partners .partner-img:hover {
	filter: brightness(100%);
	transform: scale(1.02);
}

#about-us {
	padding: 10px;
	background: #f6f3f0;
}

@media only screen and (min-width: 700px) {
	#about-us {
		padding: 100px 50px;
	}
}

#about-us h2 {
	font-size: 3rem;
}

#about-us .gallery {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

#about-us .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#about-us .text .grey-text {
	font-size: 1.2rem;
	text-align: justify;
	padding: 0 20px;
}

#contact {
	padding: 50px 0 0 0;
	background-image: url("/images/contact.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background: #004225;
}

@media only screen and (min-width: 800px) {
	#contact {
		padding: 50px;
	}
}

#contact h1 {
	font-weight: bold;
	color: #fff;
	font-size: 3.5rem;
	text-shadow: 0.1rem 0.1rem 0.8rem black;
	margin-bottom: 50px;
}

#contact #map {
	height: 600px;
	box-shadow: 0 0 5px black;
}

#contact .contact-details {
	color: #fff;
	background: #004225;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

#contact .contact-details .form-group,
#contact .contact-details button {
	width: 90%;
}

@media only screen and (min-width: 800px) {
	#contact .contact-details .form-group,
	#contact .contact-details button {
		width: 75%;
	}
}

#contact .contact-details .row {
	margin-bottom: 20px;
}

#contact .contact-icon {
	font-size: 2rem;
}

#contact .data {
	font-size: 1.4rem;
}

#contact .error {
	color: red;
	font-size: 1.2rem;
}

#contact .send-message {
	background: #004225;
}

#contact .form-group > .error:nth-child(1) {
	color: #fff;
	background: #ff4b4b;
	padding: 5px;
	border-radius: 10px;
	margin-bottom: 10px;
}

#email-sent,
#email-cooldown {
	max-width: 450px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
	font-size: 1.2rem;
	z-index: -1;
}

#email-sent .toast-body,
#email-cooldown .toast-body {
	padding: 20px;
}

#email-sent i {
	color: lawngreen;
	margin-right: 10px;
}

#email-cooldown i {
	color: red;
	margin-right: 10px;
}

.grey-text {
	color: #9e9e9e;
}

.parallax {
	background: url("/images/para1.jpg") no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	height: 500px;
}

.parallax-window {
	min-height: 400px;
	background: transparent;
}

section.author {
	background: #161b26;
}

section.author p {
	margin: 0;
	padding: 20px;
	text-align: center;
}

footer li.row {
	margin-bottom: 15px;
}

footer li.row .data {
	font-size: 1.2rem;
}

footer .contact-icon {
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.footer-bs {
	background-color: #1c2331;
	padding: 60px 40px;
	color: rgba(255, 255, 255, 1);
}
.footer-bs .footer-brand,
.footer-bs .footer-nav,
.footer-bs .footer-social,
.footer-bs .footer-ns {
	padding: 10px 25px;
}
.footer-bs .footer-nav,
.footer-bs .footer-social,
.footer-bs .footer-ns {
	border-color: transparent;
}
.footer-bs .footer-brand h2 {
	margin: 0px 0px 10px;
}
.footer-bs .footer-brand p {
	color: rgba(255, 255, 255, 0.7);
}

.footer-bs .footer-nav ul.pages {
	list-style: none;
	padding: 0px;
}
.footer-bs .footer-nav ul.pages li {
	padding: 5px 0px;
}
.footer-bs .footer-nav ul.pages a {
	color: rgba(255, 255, 255, 1);
	font-weight: bold;
	text-transform: uppercase;
}
.footer-bs .footer-nav ul.pages a:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.footer-bs .footer-nav h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.footer-bs .footer-nav ul.list {
	list-style: none;
	padding: 0px;
}
.footer-bs .footer-nav ul.list li {
	padding: 5px 0px;
}
.footer-bs .footer-nav ul.list a {
	color: rgba(255, 255, 255, 0.8);
}
.footer-bs .footer-nav ul.list a:hover {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.footer-bs .footer-social ul {
	list-style: none;
	padding: 0px;
}
.footer-bs .footer-social h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.footer-bs .footer-social li {
	padding: 5px 4px;
}
.footer-bs .footer-social a {
	color: rgba(255, 255, 255, 1);
}
.footer-bs .footer-social a:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.footer-bs .footer-ns h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 10px;
}
.footer-bs .footer-ns p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
	.footer-bs .footer-nav,
	.footer-bs .footer-social,
	.footer-bs .footer-ns {
		border-left: solid 1px rgba(255, 255, 255, 0.1);
	}
}
