@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

:root {
  --primary: #21259e;
  --text: #323232;
}

body {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	color: var(--text);
}
.header--wrapper {
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items:flex-end;
}
.header--background {
	filter: opacity(0.2);
	position: absolute;
	top: 0;
	height: calc(100vh + 70px);
	object-fit: cover;
}
.header--navbar{
	position: sticky;
	top: 0;
	z-index: 999;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 1s;
}
.header--navbar .container{
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
}
.container{
	margin-left: auto;
	margin-right: auto;
	padding: 0px 24px;
	position: relative;
	z-index: 1;
}
.logo--image{
	width: 40px;
	height: 40px;
}
.title{
	font-size: 3em;
	font-weight: 600;
	margin-bottom: 1em;
}
.section--primary{
	background: var(--primary);
	color: white;
}
.menus a{
	font-weight: bold;
	margin: 0px 4px;
	font-size: 16px;
}
.container{
	padding: 10vh 0px;
}
.title--tagline{
	font-size: 2.4em;
	font-weight: bold;
	max-width: 600px;
}
.color--primary{
	color: var(--primary);
}
.btn--primary{
	background-color: var(--primary);
	color: white;
	padding: 10px 30px;
	font-size: 20px;
	border-radius: 30px;
}
.social-media--section{
	display: flex;
}
.social-media--section a{
	background-color: var(--primary);
	color: white;
	margin: 0px 10px;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.image--team{
	position: absolute;
	bottom: 0;
	filter: opacity(0.1) grayscale(1);
	height: 57vh;
	left: 0;
	right: 0;
	width: 100vw;
	object-fit: cover;
}
.icon--service{
	width: 50px;
	margin-bottom: 16px;
}

.text--description{
	font-size: 1.2em;
}
.title--service{
	font-size: 1.4em;
}
.text--logo{
	font-size: 1.2em;
}
.text--team{
	font-size: 1.4em;
}
.columns--team{
	columns: 3;
	gap: 2rem;
	margin-top: 3em;
}
.column--service{
	display: flex;
	margin-top: 3em;
	gap: 1rem;
}

@media (max-width: 639px) { 
	.header--wrapper{
		height: auto;
		min-height: 80vh;
	}
	.container{
		padding: 35px 24px;
	}
	.header--navbar{
		padding-left: 24px;
		padding-right: 24px;
		background-color: white;
	}
	.menus{
		display: none;
	}
	.title--tagline{
		font-size: 1.6em;
	}
	.text--description{
		font-size: 1em;
	}
	.btn--primary{
		font-size: 1em;
		padding-left: 14px;
		padding-right: 14px;
	}
	.social-media--section a{
		margin: 0px 4px;
		width: 36px;
		height: 36px;
	}
	.title{
		font-size: 1.6em;
	}
	.icon--service{
		width: 30px;
		margin-bottom: 16px;
	}
	.title--service{
		font-size: 1.2em;
	}
	.header--navbar{
		position: relative;
	}
	.text--logo{
		font-size: 1em;
	}
	.text--team{
		font-size: 1em;
	}
	.columns--team{
		columns: 1;
		margin-top: 30px;
	}
	.columns--team > div{
		margin-bottom: 20px;
	}
	.column--service{
		display: block;
	}
	.column--service > div{
		margin-bottom: 30px;
		display: flex;
    	align-items: center;
	}
	.icon--service{
		margin-right: 16px;
	}
 }