@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

*{
	padding: 0;
	margin: 0;
	font-family: 'Space Mono', monospace;
	box-sizing: border-box;
}
.hero{
	height: 100vh;
	width: 100%;
	background-image: url(../img/background.jpg);
	background-size: cover;
	background-position: center;
}

nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 45px;
	padding-left: 8%;
	padding-right: 8%;
}
.logo{
	font-size: 35px;
	letter-spacing: 1px;
	cursor: pointer;
	height: 170px;
	width: auto;
}
span{
	color: #00ff00;
}
nav ul li{
	list-style-type: none;
	display: inline-block;
	padding: 0px 25px;
	position: relative;
	bottom: 80px;
}
nav ul li a{
	color: white;
	text-decoration: none;
	font-weight: bold;
	text-transform: capitalize;
}
nav ul li a:hover{
	color: #00ff00;
	transition: .4s;
}

.content{
	position: absolute;
	top: 50%;
	left:8%;
	transform: translateY(-50%);
}
h1{
	color: white;
	margin: 20px 0px 20px;
	font-size: 90px;
}
h3{
	color: white;
	font-size: 25px;
	margin-bottom: 50px;
}
h4{
	color: #fcfc;
	letter-spacing: 2px;
	font-size: 20px;
}

.about{
	width: 100%;
	padding: 100px 0px;
	background-color: #191919;
}
.about img{
	height: auto;
	width: 430px;
}
.about-text{
	width: 550px;
}
.main{
	width: 1130px;
	max-width: 95%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.about-text h2{
	color: white;
	font-size: 75px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.about-text h5{
	color: white;
	letter-spacing: 2px;
	font-size: 22px;
	margin-bottom: 25px;
	text-transform: capitalize;
}
.about-text p{
	color: darkgreen;
	letter-spacing: 1px;
	line-height: 28px;
	font-size: 18px;
	margin-bottom: 45px;
}


.service{
	background: #101010;
	width: 100%;
	padding: 100px 0px;
}
.title h2{
	color: white;
	font-size: 75px;
	width: 1130px;
	margin: 30px auto;
	text-align: center;
}
.box{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}
.card{
	height: 365px;
	width: 335px;
	padding: 40px 10px;
	background: #191919;
	border-radius: 20px;
	margin: 15px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.card:hover
{
	background-color: darkgreen;
}

.card i{
	font-size: 50px;
	display: block;
	text-align: center;
	margin: 25px 0px;
	color: #00ff00;

}
h5{
	color: white;
	font-size: 23px;
	margin-bottom: 15px;
}
.pra p{
	color: #fcfc;
	font-size: 20px;
	line-height: 27px;
	margin-bottom: 25px;
}

.fourth
{
    position: relative;
    padding: 100px;
    background: #191919;
}

.fourth p
{
    font-size: 1.2em;
    color: #fff;
    text-align: center;
}

footer
{
    bottom: 0px;
    width: 100%;
    background: #101010;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 0px;
}

.main-adres
{
    display: flex;
}

.main-adres .box
{
    flex-basis: 50%;
    padding: 10px 20px;

}

.box h4
{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.box .adres
{
    margin: 20px 0 0 0;
}

