@charset "utf-8";

*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	list-stlye: none;
	scroll-behavior: smooth;
	text-decoration: none;
}

:root{
	text-color:#f5f5f5;
	hover-color:#12f7ff;
	bg-color:#250821;
	second-bg-color:#292e33;
	big-font:2.5rem;
	normal-font:2rem;
	neon-box-shadow:0 0 .5rem #12f7ff;
	h2-font: 3rem;
	font-neon-text-shadow:0 0 10px rgba(18,247,255,0.3),
		0 0 20px rgba(18,247,255,0.3),
		0 0 30px rgba(18,247,255,0.3),
		0 0 40px rgba(18,247,255,0.3),
		0 0 70px rgba(18,247,255,0.3),
		0 0 80px rgba(18,247,255,0.3),
		0 0 100px rgba(18,247,255,0.3),
		0 0 150px rgba(18,247,255,0.3),	
}
 
.wrapper{
    width: 1300px;
	
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    background:#250821;
    color: #f5f5f5;
    margin-left: auto;
    margin-right: auto;
}

header{
	background-color:#320F2D; 
	display: flex;
	align-items: center;
	justify-content:space-between;
	padding:20px 10%;
	box-shadow:0 0 .5rem #12f7ff;
	
	
}

.logo{
	
	font-size:26px;
	font-weight:700px;
	letter-spacing:1px;
	
}

span{
    color: #12f7ff;
    font-size: 25px;
    
}

.navlist{
	display:flex;
	width:700px;
    margin-left: auto;
	margin-right: auto;
}

.nav{
	color:#f5f5f5;
	font-weight:500;
	padding:10px 20px;
}

.nav:hover{
	color:#12f7ff;
	text-shadow:0 0 10px rgba(18,247,255,0.6),
		0 0 20px rgba(18,247,255,0.3),
		0 0 30px rgba(18,247,255,0.3),
		0 0 40px rgba(18,247,255,0.3),
		0 0 70px rgba(18,247,255,0.3),
		0 0 80px rgba(18,247,255,0.3),
		0 0 100px rgba(18,247,255,0.3),
		0 0 150px rgba(18,247,255,0.3);	 
}

.main-text{
	width:100%;
	text-align:center;
	margin-top:4rem;
	margin-bottom:2rem;
	color:#12f7ff;	
}

.main-text h2{
	font-weight:700;
	font-size:2rem;
}

.main-text span{
	color:#fdfdfd;
	font-size:.8rem;
	font-weight:200;
	letter-spacing:2px;
	text-transform:uppercase;
}

.section-service{
	display:flex;
	justify-content:center;
	align-items:wrap;
	grid-gap: 2rem;
}

.section-service .service-box{
	width:350px;

	padding:2rem 1rem 2rem;
	text-align:center;
	background:#292e33;
	transition: transform .6s;
	border-radius: 10px;
}

.service-btn{
	width:auto;
	justify-content:center;
}

.service-box:hover{
	transform: translateY(-.7rem);
}

.service-icon{
    width: 100px;
    height:80px;
	border: 3px solid #12f7ff;
    padding: 15px;
	 background: #250821;
    display: flex;
    font-size: 3rem;
    border-radius: 20%;
    color: #12f7ff;
    margin-left: auto;
    margin-right: auto;
	position:relative;
	box-shadow:0 0 .5rem #12f7ff;
	outline: 3px solid #250821;	
}

.service-box{
	margin-top:10px;
	font-size:14px;
	border: 2px solid #12f7ff;
}


.service-box p{
	margin: .5rem 0 1.5rem 0;
	font-weight:300;
	color:fdfdfd;
	
}

.btn-box service-btn{
    justify-content: space-between;
    display: flex;
    width: 340px;
    height: 45px;
    margin-left: 45px 0;
    text-align: left;
}

.btn-box a {
	position:relative;
	display: inline-flex;
	justify-content:center;
	align-items:center;
	width: 150px;
	height: 50px;
	background:#12f7ff;
	box-shadow:0 0 .5rem #12f7ff;
	border: 2px solid #14f7ff;
	border-radius: 10px;
	font-size:18px;
	color:#fdfdfd;
	text-decoration: none;
	font-weight: 600;
	letter-spacing:1px;
	z-index: 1;
	overflow: hidden;
	transition: .5s;
	
}

.btn-box a:hover{
	color:#12f7ff;
}

.btn-box a:nth-child(2) {
	background: transparent;
	
	
}

.btn-box a:nth-child(2):hover{
	color:#12f7ff;
	
}

.btn-box a:nth-child(2)::before {
	background:#12f7ff;
	
}

.btn-box a::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0%;
	height: 100%;
	background:#292e33;
	z-index: -1;
	transition: .5s;
	
}

.btn-box a:hover::before {
	width: 100%;
	
}


#footer{
	background-color:#320F2D; 
	display: flex;
	align-items: center;
	justify-content:space-between;
	padding:20px 10%;
	box-shadow:0 0 .5rem #12f7ff;
	margin-top:50px;

}



