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

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	list-style: none;
}

header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 40px 80px;
	z-index: 10000;
	transition: 0.6s;
}

header .logo
{
	position: relative;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.6s;
}

header #toggle
{
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .5s ease-in-out;
}

.hamburger
{
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 1px;
	transition: all .5s ease-in-out;
}

.hamburger:before,
.hamburger:after
{
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 1px;
	transition: all .5s ease-in-out;
}

.hamburger:before
{
	transform: translateY(-10px);
}

.hamburger:after
{
	transform: translateY(10px);
}

.banner.active header #toggle .hamburger
{
	background: transparent;
	box-shadow: none;
}

.banner.active header #toggle .hamburger:before
{
	transform: rotate(45deg);
}

.banner.active header #toggle .hamburger:after
{
	transform: rotate(-45deg);
}

.banner
{
	position: absolute;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	background: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*justify-content: center;*/
	transition: 0.5s;
	z-index: 2;
}

.banner p
{
	font-size: 1.2em;
	color: #fff;
	font-weight: 300;
}

.banner.active
{
	transform: translateX(-400px);
}

/* ////// SKILLS ///// */

.skills 
{
	width: 100%;
	margin: 20px auto;
	color: #fff;
}

.skills li
{
	margin: 20px 0;
}

.bars {
	background: #000;
	height: 5px;
	display: block;
	border: 1px solid #40ceff;
	border-radius: 3px;
	/*box-shadow: 10px #40ceff;*/
	overflow: hidden;
}

.bars span
{
	height: 5px;
	float: left;
	background: #40ceff;
}

.html  
{
	width: 95%;
	animation: html 2s;
}

.css 
{
	width: 90%;
	animation: html 2s;
}

.javascript 
{
	width: 90%;
	animation: html 2s;
}

.jquery
{
	width: 75%;
}

.react
{
	width: 82%;
}

.angular
{
	width: 85%;
}

.node
{
	width: 80%;
}

.vue
{
	width: 75%;
}

.sass
{
	width: 90%;
}

/* ///// ANDROID ////// */

.xml
{
	width: 95%;
}

.java
{
	width: 90%;
}

.kotlin
{
	width: 70%;
}

.flutter
{
	width: 75%;
}

/* //// GAME ///// */

.unity
{
	width: 95%;
}
.pygame
{
	width: 97%;
}

.sfml
{
	width: 70%;
}

.libgdx
{
	width: 60%;
}

@keyframes html
{
	0%{
		width: 0%;
	}100%{
		width: 95%;
	}
}

/*** ///// NAVIGATION ////// ***/
#navigation
{
	position: fixed;
	top: 0;
	right: -200px;
	width: 400px;
	height: 100vh;
	background: #40c3ff;
	z-index: 1;
	display: grid;
	place-items: center;
	transition: 0.5s;
}

#navigation.active
{
	right: 0;
}

#navigation ul
{
	position: relative;
	display: flex;
	flex-direction: column;
}

#navigation ul li
{
	list-style: none;
}

#navigation ul li a
{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	font-size: 2em;
	font-weight: 600;
	text-transform: uppercase;
}

.sci
{
	position: absolute;
	display: flex;
	flex-direction: row;
	bottom: 20px;
	right: initial;
}

.sci li
{
	list-style: none;
}

.sci li a
{
	position: relative;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	text-decoration: none;
	border: 1px solid #fff;
	margin: 20px 0 0;
	margin: initial;
	margin-right: 20px;
}

sci li a [?ddata-scoll="in"]
{
	opacity: 0;
	transition: 1s;
}

.sci li a:hover
{
	font-size: 25px;
	background: #fff;
	transition: 0.5;
}

.sci li a i
{
	color: #fff;
	max-width: 20px;
	filter: invert(0);
	mix-blend-mode: difference;
	font-size: 20px;
}

@media (max-width: 767px)
{
	header
	{
		padding: 20px 30px;
	}
	
	header .logo
	{
		font-size: 1.6em;
		
	}
	
	.banner
	{
		padding: 100px 50px 100px;
		display: flex;
		flex-direction: column;
		/*justify-content: center;*/
		align-items: center;
	}
	
	.banner.active
	{
		transform: translateX(-250px);
	}
	
	#navigation
	{
		width: 250px;
	}
	
	#navigation ul li a
	{
		font-size: 1.5em;
		margin: 5px 0;
	}
}

.banner h1
{
	width: 100%;
	color: #40c3ff;
	text-align: center;
	font-size: 36px;
	margin-bottom: 10px;
	margin-top: 20px;
}

.banner h2
{
	width: 100%;
	color: #40c3ff;
	text-align: center;
	font-size: 25px;
	margin-bottom: 10px;
	margin-top: 20px;
}

.container .box a
{
	width: 100%;
	color: #40c3ff;
	text-align: center;
	text-decoration: none;
	font-size: 25px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.container 
{
	width: 100%;
	height: auto;
	margin-top: 15px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 10px;
}

.box
{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 2px;
	text-align: center;
}

.container .box .image
{
	position: relative;
	right: 0;
	margin: 10px;
	background: url(img/black.png);
	background-size: cover;
	width: 200px;
	height: 200px;
	
	border: 4px solid #40ceff;
	border-radius: 10px;
}

.container .box .image2
{
	position: relative;
	right: 0;
	margin: 10px;
	background: url(img/double.png);
	background-size: cover;
	width: 200px;
	height: 200px;
	border: 4px solid #40ceff;
	border-radius: 10px;
	/*border: 4px solid #40ceff;
	border-radius: 50%;*/
}


.services-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-box{
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.service-icon{
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 3px solid #40ceff;
  color: #40ceff;
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
  transition: 0.3s linear;
}


.service-icon i{
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 26px;
}


.service-box:hover .service-icon{
  background: #40ceff;
  color: #fff;
}


.service-title{
  font-size: 20px;
	color: #fff;
	font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-desc{
  font-size: 14px;
}

@media screen and (max-width:960px) {
  .service-box{
    max-width: 45%;
  }
}

@media screen and (max-width:768px) {
  .service-box{
    max-width: 50%;
  }
}

@media screen and (max-width:480px) {
  .service-box{
    max-width: 100%;
  }
}
