:root {
	--primary-color: #108fd0;
	--secundary-color: #3ca5db;
}

/* Import a external font */
@import url('https://fonts.googleapis.com/css?family=Roboto');

/* Resets and Pattern*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.4;
}

a {
	text-decoration: none;
}

p {
	margin: 0.75rem 0;
}

ul {
	list-style: none;
}

/* Utility Classes */
.container {
	max-width: 1100px;
	margin: auto;
	padding: 0 2rem;
	overflow: hidden;
}

.text-center {
	text-align: center;
}

.text-primary {
	color: var(--primary-color);
}

.bg-light {
	background: #f4f4f4;
	color: #333;
}

.bg-dark {
	background: #333;
	color: #fff;
}

.bg-primary {
	background: var(--primary-color);
	color: #fff;
}

.list {
	margin: 0.5rem 0;
	list-style: none;
}

.list li {
	padding: 0.5rem 0;
	border-bottom: #444 dotted 1px;
}

.l-heading {
	font-size: 4rem;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}

.m-heading {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}


.lead {
	font-size: 1.3rem;
	margin-bottom: 2rem;
}

.py-1 {padding: 1.5rem 0;}
.py-2 {padding: 2rem 0;}
.py-3 {padding: 3rem 0;}

.p-1 {padding: 1.5rem;}
.p-2 {padding: 2rem;}
.p-3 {padding: 3rem;}

.btn {
	display: inline-block;
	color: #fff;
	background: var(--primary-color);
	padding: 0.5rem 2rem;
	border: none;
	border-radius: 5px;
}

.btn:hover {
	background: var(--secundary-color);
}

.btn-dark {
	background: #333;
	color: #fff;
}

/* Navbar */
#navbar {
	/* Mostrando filhos "logo" e "ul" horizontalmente --- */
	display: flex;
	/* Alinhando o conteudo nas laterais */
	justify-content: space-between;
	/* Fixando o navbar na pagina */
	position: -webkit-sticky; /* Para funcionar nos celulares */
	position: sticky;

	top: 0;
	/* Definindo o navbar para ficar na frente de tudo */
	z-index: 1;
	background: #333;
	color: #fff;
	padding: 1rem;
}

#navbar ul {
	/* Mostrando filhos "li" horizontalmente --- */
	display: flex;
	/* Alinhando a "li" para o centro */
	align-items: center;
}

#navbar ul li a {
	color: #fff;
	padding: 0.75rem;
	margin: 0 0.25rem;
}

#navbar ul li a:hover {
	background: var(--primary-color);
	border-radius: 5px;
}

/* Showcase */
#showcase {
	background: #333 url('../img/showcase.jpg') no-repeat center center/cover;
	height: 100vh;
	color: white;
}

#showcase .showcase-content {
	/* Definindo os filhos "h1", "p" e "a" para flex */
	display: flex;
	/* Alinhando eles em verticalmente ! */
	flex-direction: column;
	/* Centralizando o texto */
	text-align: center;
	/* Alinhando tudo para o centro do container */
	justify-content: center;
	/* Alinhando os filhos para centro do container */
	align-items: center;
	/* Definindo a altura para o total do container */
	height: 100%;
	padding: 0 2rem;
}

/* Section: What We Do */
#what .items {
	/* Definindo os filhos para flex */
	display: flex;
	padding: 1rem;
}

#what .items .item {
	/* definindo filhos com espaços iguais */
	flex: 1;
	text-align: center;
	padding: 1rem;
}

#what .items .item i {
	background: var(--primary-color);
	padding: 1rem;
	border-radius: 50%;
	margin-bottom: 1rem;
}

/* Section: Who We Are */
#who {
	/* Definindo os filhos para flex horizonalmente --- */
	display: flex;
}

#who div {
	/* definindo filhos com espaços iguais */
	flex: 1;
}

#who .who-img {
	background: url('../img/people.jpg') no-repeat center center/cover;
}

/* Section: Clients */
#clients .items {
	/* Definindo os filhos para flex horizonalmente --- */
	display: flex;
}

#clients .items img {
	display: block;
	margin: auto;
	width: 60%;
}

/* Section: Contact */

#contact {
	/* Definindo os filhos para flex horizonalmente --- */
	display: flex;
}

#contact .map, #contact .contact-form {
	/* definindo filhos com espaços iguais */
	flex: 1;
}

#contact .contact-form .form-group {
	margin: 0.75rem;
}

#contact .contact-form label {
	/* Quebrando a linha */
	display: block;
}

#contact .contact-form input,
#contact .contact-form textarea {
	width: 100%;
	padding: 0.5rem;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
	outline: none;
	border-color: var(--secundary-color);
}

    

