@import url('https://fonts.googleapis.com/css?family=Montserrat');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #24252A;
  background: no-repeat;
  font-family: "Montserrat", sans-serif;
}

body{
  background-color: #24252A;
}

/* NAVBAR*/

.header {
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.3rem 10%;
	background: #24252A;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.header::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .1);
	backdrop-filter: blur(50px);
	z-index: -1;
}

.logo {
	font-size: 2rem;
	color: white;
	text-decoration: none;
	font-weight: 700;
}

.navbar a{
	font-size: 1.15rem;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	margin-left: 2.5rem;
}

#check{
	display: none;
}

.icons{
	position: absolute;
	right: 5%;
	font-size: 2.8rem;
	color: #fff;
	cursor: pointer;
	display: none;
}

@media (max-width: 992px){
	.header{
		padding: 1.3rem 5%;
	}
}

@media (max-width: 768px) {
	.icons{
		display: inline-flex;
	}

	#check:checked~.icons #menu-icon{
		display: none;
	}

	.icons #close-icon{
		display: none; 
	}

	#check:checked~.icons #close-icon{
		display: block;
	}

	.navbar{
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		background: rgba(0, 0, 0, .1);
		backdrop-filter: blur(50px);
		transition: .3s ease;
		overflow: hidden;
	}

	#check:checked~.navbar{
		height: 17.7rem;
	}

	.navbar a{
		display: block;
		font-size: 1.2rem;
		margin: 2rem 0;
		text-align: center;
		transform: translateY(-50px);
		opacity: 0;
		transition: .3s ease;
	}

	#check:checked~.navbar a{
		transform: translateY(0);
		opacity: 1;
		transition-delay: calc(.15s * var(--i));
	}
}

h1{
  margin-top: 50px;
  text-align: center;
  color: white;
}

h2{
  margin-top: 20px;
  text-align: center;
  color: white;
  font-size: 20px;
}

.container3{
	width: 100%;
	height: 100%;
	padding: 0 8%;
	margin-bottom: 100px;
	margin-top: 80px;
}

.container3 h1{
	text-align: center;
	padding-top: 10%;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}

.container3 h1::after{
	content: '';
	background: white;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%);
}

.row{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 30px;
}

.service{
	text-align: center;
	 padding: 25px 10px;
	 border-radius: 5px;
	 font-size: 14px;
	 cursor: pointer;
	 background: transparent;
	 transition: transform 0.5s, background 0.5s;
}

.service i{
	font-size: 40px;
	margin-bottom: 10px;
	color: white;
}

.service h2{
	font-weight: 600;
	margin-bottom: 8px;
	color: white;
}