/* reset */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* Common elements */

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.4;
	/* color: #ddd; */
}

a {
	text-decoration: none;
}

p {
	margin: 0.75rem 0;
}

ul {
	list-style: none;
}

/* General use classes (utility) */
.text-primary {
	color: #c3073f;
	text-decoration: overline;
}

.text-center {
	text-align: center;
}

.l-heading1 {
	font-size: 4rem;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}

.m-heading1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.s-heading1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.lead {
	font-size: 1.3rem;
	margin-bottom: 2rem;
}

.btn {
	display: inline-block;
	color: #fff;
	background-color: #c3073f;
	padding: 0.5rem 2rem;
	border: none;
	border-radius: 5px;
}

.btn:hover {
	background-color: #950740;
}

.container {
	max-width: 1100px;
	margin: auto;
	padding: 0 2rem;
	overflow: hidden;
}

.py-1 {
	padding: 1.5rem 0;
}

.py-2 {
	padding: 2rem 0;
}

.py-2 {
	padding: 3rem 0;
}

.bg-colored {
	background: #6f2232;
}

.text-color {
	color: #ddd;
}
/* Header and navbar */

#navbar {
	display: flex;
	position: sticky;
	top: 0;
	background: #1a1a1d;
	color: #fff;
	justify-content: space-between;
	z-index: 1;
	padding: 1rem;
}

#navigation {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#navbar ul li a {
	color: #fff;
	padding: 0.75rem;
	margin: 0 0.5rem;
}

#navbar ul li a:hover {
	background: #950740;
	border-radius: 5px;
}

/* Showcase */

#showcase {
	position: relative;
	background: #333 url('../Assets/Images/Imgs/showcase.jpg') no-repeat center center/cover;
	height: 100vh;
	color: #fff;
}

#showcase .showcase-content {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 2rem;
	/* overlay */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

/* what Section */
#what {
	text-align: center;
}

#what h2 {
	color: #ddd;
}

#what .text-primary {
	/* background: #ddd; */
	/* background-size: 50%; */
}

#what .items {
	text-align: center;
	display: flex;
	color: #ddd;
	justify-content: space-around;
	padding: 2rem 0;
}

#what .items .item {
	flex: 1;
	padding: 1.5rem;
	/* display: flex; */
	/* text-align: left; */
}

#what .items .item i {
	/* align-self: center; */
	/* float: left; */
	color: #4e4e50;
	background: #fff;
	border-radius: 50%;
	padding: 1rem;
	margin: 1rem;
	/* margin-right: 1rem;
	margin-bottom: 1rem; */
}

/* who section */

#who {
	display: flex;
	background: #1a1a1d;
	color: #fff;
}

#who-img {
	flex: 1;
	background: #333 url('../Assets/Images/Imgs/people.jpg') no-repeat center center/cover;
}

#who-content {
	flex: 1;
	padding: 3rem;
}

#team-members {
	font-weight: lighter;
}

#team-members li {
	font-weight: lighter;
	margin-bottom: 1.5rem;
	border-bottom: #333 1px solid;
}

/* Section: Clients */
#clients {
	color: #ddd;
}
#clients .items {
	display: flex;
}

#clients .items img {
	display: block;
	margin: auto;
	width: 70%;
}

/* Section: Contacts */
#contacts {
	display: flex;
}

.form {
	padding: 1.5rem;
	flex: 1;
}

.form form .container {
	width: 100%;
	/* background: red; */
}

#map {
	flex: 1;
}
#contacts form {
	display: flex;
	flex-direction: column;
}

#contacts form .form-item {
	margin-bottom: 1rem;
}

#contacts form label {
	display: block;
	font-size: 1.2rem;
}

#contacts form input,
#contacts form textarea {
	width: 100%;
	height: 25px;
}

#contacts form input:focus,
#contacts form textarea:focus {
	outline: none;
	border: none;
	border: #c3073f 1px solid;
}

#contacts form textarea {
	height: 15vh;
}

#contacts p {
	margin-bottom: 1.2rem;
}

/* Footer */
footer {
	display: none;
	position: relative;
	background: #1a1a1d;
	color: white;
	height: 10vh;
	font-size: 0.8 rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
