* {
	box-sizing: border-box;
	font-family: 'Nunito', sans-serif;
}

body {
	background-image: url("../images-logo/bglaptop2.png");
	background-size: cover;
}

span {
	padding-left: 8px;
}

.uiButton {
	position: relative;
	width: 37px;
	height: 37px;
	top: 14px;
}

footer {
	position: absolute;
	bottom: 0;
	margin-top: 15px;
	border-top: 2px solid #FFFFFF;
	color: #F575FE;
	width: 100%;
}

.link {
	display: flex;
	justify-content: flex-end;
	width: 75%;
}

.current {
	border-bottom: 2px solid #ffffff;
}

.container {
	display: flex;
	justify-content: space-between;
	width: 85%;
	margin: 0 auto;
}

.navlink {
	color: #05FFFE;
	width: auto;
	height: 60px;
	font-size: 1.2rem;
	text-decoration: none;
	margin: 5px 15px;
}

.navlink:active {
	border-top: 2px solid #FFFFFF;
}

.navlink::before {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background-color: #FFFFFF;
	transition: width .4s
}

.navlink:hover::before {
	width: 100%;
	transition: width .4s;
}

.index-main {
	margin: 10% 0;
	display: grid;
	grid-template-columns: 45% 55%;
}

.box-content {
	justify-self: right;
	text-align: left;
	font-size: 1.4rem;
	width: 68%;
	padding: 15px;
	margin-right: 5px;
	color: #FFFFFF;
	border-left: 2px solid #FFFFFF;
}

.box-content h1 {
	color: #05FFFE;
}

.box-content span {
	color: #05FFFE;
}

.contact {
	display: flex;
	justify-content: space-evenly;
}

.logo {
	width: 50px;
	margin-top: 20px;
}

/*-----------------------PORTFOLIO SECTION---------------------*/
.portfolio-container {
	margin-top: 50px;
}

.swiper-container {
	margin: auto auto;
	width: 90%;
	height: 640px;
}

.project-title {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	color: #5C007D;
	border-bottom:2px solid #5C007D;
}

.swiper-slide {
	display:grid;
}

.swiper-slide p {
	color: #004F6E;
	border-top: 2px solid #5C007D;
	margin-bottom: 20%;
	padding: 10px;
}

.slider-container {
	background-color: #FFFFFF;
	width: 65%;
	margin: auto auto;
	border-radius: 30px;
}

.image-container {
	margin-top: 15px;
	padding: 5px;
	width: 660px;
	height: 360px;
	justify-self: center;
}

.image-container img{
	width: 100%;
	height: 100%;
	border-radius: 40px;
}

.icons-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.first-icons {
	font-size: 2.4rem;
}
.first-icons .html {
	color: #e34c26;
}
.first-icons .css {
	color: #587fdb;
}
.first-icons .js {
	color: #e6cb22;
}

.first-icons .php {
	color: #000000;
	font-size: 2.6rem;
}

.second-icons {
	font-size: 2rem;
}

.second-icons a{
	color: #6b6b6b;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: "";
	display: none
}
.swiper-portfolio-icon {
	font-size: 3.5rem;
	color: #5C007D;
	margin-top: -20px;
}

/*-----------------------ABOUT ME SECTION---------------------*/
.aboutme {
	background-color: #FFFFFF;
	width: 90%;
	margin: 10% auto;
	border-radius: 5px;
	color: #03A6B9;
}

.avatar {
	width: 630px;
	height: 500px;
	margin: auto;
}

.avatar img{
	width: 100%;
	height: 100%;
}

.box-content-aboutme {
	justify-self: right;
	text-align: left;
	font-size: 1.4rem;
	width: 68%;
	padding: 10px;
	margin-right: 5px;
	color: #00738D;
}

.transition-fade {
	opacity: 1;
	transition: 500ms;
	transform: translateX(0);
	transform-origin: right;
}

html.is-animating .transition-fade {
	opacity: 1;
	transform: translateX(100%);
}

html.is-leaving .transition-fade {
	opacity: 0;
	transform: translateX(0);
}

@media only screen and (min-width: 2560px)  {

	.navlink {
		width: auto;
		height: 60px;
		font-size: 2rem;
		margin: 15px 15px;
	}

	.uiButton {
		position: relative;
		width: 50px;
		height: 50px;
		top: 5px;
	}


	.box-content {
		font-size: 2.2rem;
		margin-top: 5%;
	}

	.avatar {
		width: 1260px;
		height: 1000px;
	}

	.box-content-aboutme {
		font-size: 2.2rem;
	}

	.swiper-container {
		margin: 18% auto;
		width: 1480px;
		height: 1200px;
	}

	.project-title {
		font-size: 2rem;
	}

	.swiper-slide p {
		font-size: 2rem;
	}

	.image-container {
		width: 1280px;
		height: 720px;
	}

	.first-icons {
		font-size: 3rem;
	}

	.second-icons {
		font-size: 3rem;
	}
}

@media only screen and (min-width: 750px) and (max-width: 1435px)  {
	body {
		background-size: auto;
	}
	.empty {
		display: none;
	}

	.link {
		justify-content: center;
		width: 100%;
	}

	.navlink {
		color: #05FFFE;
		font-size: 1.4rem;
		margin: 5px 10px;
	}

	.uiButton {
		position: relative;
		width: 32px;
		height: 32px;
		top: 8px;
	}

	.index-main {
		margin: 10% 0;
		display: grid;
		grid-template-columns: 100%;
	}

	.box-content {
		justify-self: center;
		padding: 15px;
		background-color: #5C007D;
		border: 2px solid #FFFFFF;
		border-radius: 5px;
		font-size: 1.2rem;
	}

	.box-content h1 {
		color: #05FFFE;
	}

	.box-content span {
		color: #05FFFE;
	}

	.contact {
		display: flex;
		justify-content: space-evenly;
	}

	footer {
		position: relative;
		bottom: 0;
	}

	.aboutme {
		width: 80%;
		margin: 2% auto;
		background-color: #5C007D;
		border: 2px solid #FFFFFF;
	}

	.avatar {
		padding: 5px;
		width: 480px;
		height: 350px;
	}

	.box-content-aboutme {
		justify-self: center;
		text-align: left;
		font-size: 1.09rem;
		width: 68%;
		padding: 5px;
		margin: 0;
		color: #FFFFFF;
	}

	.box-content-aboutme h1 {
		color: #05FFFE
	}

	.swiper-container {
		width: 100%;
	}

	.project-title {
		color: #05FFFE;
		border-bottom:2px solid #FFFFFF;
	}

	.swiper-slide {
		padding: 10px;
	}

	.swiper-slide p {
		color: #05FFFE;
		border-top: 2px solid #FFFFFF;
		width: 100%;
	}

	.slider-container {
		background-color: #5C007D;
		width: 85%;
		margin: 5% auto;
		border-radius: 30px;
		border: 2px solid #FFFFFF;
	}

	.image-container {
		width: 560px;
		height: 300px;
	}

	.icons-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.second-icons a{
		color: #6b6b6b;
	}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		content: "";
		display: none
	}
	.swiper-portfolio-icon {
		font-size: 3.5rem;
		color: #05FFFE;
		margin-top: -20px;
	}

}

@media only screen and (min-width: 542px) and (max-width: 749px)  {
	body {
		background-size: auto;
	}
	.empty {
		display: none;
	}

	.link {
		justify-content: space-evenly;
		width: 100%;
	}

	.navlink  {
		color: #05FFFE;
		font-size: 0.9rem;
		margin: 5px 10px;
	}

	.uiButton {
		position: relative;
		width: 25px;
		height: 25px;
		top: 8px;
	}

	.index-main {
		margin: 0 0;
		display: grid;
		grid-template-columns: 100%;
	}

	.box-content {
		justify-self: center;
		padding: 15px;
		width: 90%;
		background-color: #5C007D;
		border: 2px solid #FFFFFF;
		border-radius: 5px;
		font-size: 0.9rem;
	}

	.box-content h1 {
		color: #05FFFE;
		font-size: 1.2rem;
	}

	.box-content span {
		color: #05FFFE;
	}

	.contact {
		display: flex;
		justify-content: space-evenly;
	}

	.logo {
		width: 30px;
		margin-top: 5px;
	}

	footer {
		position: relative;
	}

	.aboutme {
		width: 90%;
		margin: 1% auto;
		background-color: #5C007D;
		border: 2px solid #FFFFFF;
	}

	.avatar {
		padding: 5px;
		width: 280px;
		height: 210px;
	}

	.box-content-aboutme {
		justify-self: center;
		text-align: left;
		font-size: 1rem;
		width: 90%;
		padding: 5px;
		margin: 0;
		color: #FFFFFF;
	}

	.box-content-aboutme h1 {
		color: #05FFFE;
		font-size: 1.4rem;
	}

	.swiper-container {
		width: 100%;
	}

	.project-title {
		color: #05FFFE;
		border-bottom:2px solid #FFFFFF;
		margin: 0;
	}

	.swiper-slide {
		padding: 10px;
	}

	.swiper-slide p {
		color: #05FFFE;
		border-top: 2px solid #FFFFFF;
		width: 100%;
		margin: 0;
	}

	.slider-container {
		background-color: #5C007D;
		width: 90%;
		margin: auto auto;
		border-radius: 30px;
		border: 2px solid #FFFFFF;
	}

	.image-container {
		width: 460px;
		height: 230px;
	}

	.icons-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.second-icons a{
		color: #6b6b6b;
	}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		content: "";
		display: none
	}
	.swiper-portfolio-icon {
		font-size: 3.5rem;
		color: #05FFFE;
		margin-top: -20px;
	}

}

@media only screen  and (max-width: 541px)  {
	body {
		background-size: auto;
	}
	.empty {
		display: none;
	}

	.link {
		justify-content: space-evenly;
		width: 100%;
	}

	.navlink  {
		display:flex;
		flex-wrap: wrap;
		justify-content: center;
		color: #05FFFE;
		font-size: 0.9rem;
		margin: 5px 10px;
	}

	.navlink span {
		padding: 4px;
		margin-top: 4px;
		text-align: center;
		font-size: 0.8rem;
	}

	.uiButton {
		position: relative;
		width: 25px;
		height: 25px;
		top: 8px;
	}

	.index-main {
		margin: 0 0;
		display: grid;
		grid-template-columns: 100%;
	}

	.box-content {
		justify-self: center;
		padding: 15px;
		width: 90%;
		background-color: #5C007D;
		border: 2px solid #FFFFFF;
		border-radius: 5px;
		font-size: 0.9rem;
	}

	.box-content h1 {
		color: #05FFFE;
		font-size: 1.2rem;
	}

	.box-content span {
		color: #05FFFE;
	}

	.contact {
		display: flex;
		justify-content: space-evenly;
	}

	.logo {
		width: 30px;
		margin-top: 5px;
	}

	footer {
		position: relative;
		bottom: 0;
	}

	.aboutme {
		width: 90%;
		margin: 1% auto;
		background-color: #5C007D;
		border: 2px solid #FFFFFF;
	}

	.avatar {
		padding: 5px;
		width: 240px;
		height: 180px;
	}

	.box-content-aboutme {
		justify-self: center;
		text-align: left;
		font-size: 1rem;
		width: 100%;
		padding: 5px;
		margin: 0;
		color: #FFFFFF;
	}

	.box-content-aboutme h1 {
		color: #05FFFE;
		font-size: 1.4rem;
	}

	.swiper-container {
		width: 100%;
	}

	.project-title {
		color: #05FFFE;
		border-bottom:2px solid #FFFFFF;
		font-size: 0.9rem;
		margin: 0;
	}

	.swiper-slide {
		padding: 10px;
	}

	.swiper-slide p {
		color: #05FFFE;
		border-top: 2px solid #FFFFFF;
		width: 100%;
		margin: 0;
	}

	.slider-container {
		background-color: #5C007D;
		width: 95%;
		margin: auto auto;
		border-radius: 30px;
		border: 2px solid #FFFFFF;
	}

	.image-container {
		width: 360px;
		height: 180px;
	}

	.icons-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.second-icons a{
		color: #6b6b6b;
	}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		content: "";
		display: none
	}
	.swiper-portfolio-icon {
		font-size: 3.5rem;
		color: #05FFFE;
		margin-top: -20px;
	}

}