@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Poppins:ital,wght@0,600;0,700;1,400&display=swap');
* {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	height: 100vh;
}
header {
	position: sticky;
	display: flex;
	align-items: center;
	justify-content: space-around;
	min-height: 90px;
	background: #fff;
	box-shadow: 0 1px 3px 0 #444;
	z-index: 2;
}
.menu a {
	letter-spacing: 2px;
	margin: 0 20px;
	color: #999;
	transition-duration: .3s;
}
.menu a:hover {
	color: #444;
}
.hero {
	position: fixed;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: calc(100svh);
	background-image: url('/img/hero.webp');
	background-size: cover;
	background-position-y: 10%;
}
.hero .hero-h2 {
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: #eee;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	position: absolute;
	bottom: 0.5rem;
	left: 32%;
	transform: translate(-50%, -50%);
}
.hero .hero-h2 p {
	font-size: 10px;
}
.content {
	position: absolute;
	z-index: 2;
	top: 100vh;
	text-align: center;
	background: #f1f1f1;
	width: 100%;
	box-shadow: 0 -1px 3px 0 #444;
}
.skills, .contact {
	margin: 2rem;
}
.skills .skills-logos {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
}
.skills .skills-logos .slogo {
	flex: 1 0 12%;
	display: grid;
	align-items: center;
	justify-content: center;
	justify-items: center;
	width: 150px;
	height: 150px;
	margin: 1rem;
	transition-duration: 0.5s;
	cursor: pointer;
}
.skills .skills-logos .slogo:hover {
	transform: scale(1.05);
}
.skills .skills-logos .slogo img {
	max-width: 100px;
	height: 100px;
}
.projects .projects-thumbnails {
	margin-top: 2rem;
	z-index: 3;
	display: grid;
	flex-wrap: wrap;
	justify-content: center;
	min-height: 100svh;
}
.projects .projects-thumbnails .pthumb {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 80vw;
	height: 350px;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 0 20px 0px #d2d2d2;
	background: #fff;
	margin-top: 2rem;
	transition-duration: 0.3s;
}
.projects .projects-thumbnails .pthumb:hover {
	transform: scale(1.01);
}
.projects .projects-thumbnails .pthumb img {
	max-height: 350px;
	transition-duration: 0.3s;
}
.projects .projects-thumbnails .pthumb img:hover {
	transform: scale(1.03);
}
.marginr5 {
	margin-right: 5%;
}
.marginl5 {
	margin-left: 5%;
}
.marginb5 {
	margin-bottom: 2rem;
}
.projects .projects-thumbnails .pthumb .description {
	max-width: 35%;
	letter-spacing: 1px;
}
.projects .projects-thumbnails button {
	position: relative;
	height: 45px;
	width: 190px;
	margin: 10px 7px;
	padding: 5px 5px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 5px;
	color: #000;
	border: 2px #000 solid;
	border-radius: 4px;
	text-transform: uppercase;
	outline: 0;
	overflow: hidden;
	background: none;
	cursor: pointer;
	transition: 0.08s ease-in;
}

.projects .projects-thumbnails button.fill:hover {
	color: whitesmoke;
}

.projects .projects-thumbnails button.fill:before {
	content: "";
	position: absolute;
	background: #000;
	bottom: 0;
	left: 0;
	right: 0;
	top: 100%;
	z-index: -1;
	transition: top 0.09s ease-in;
}

.projects .projects-thumbnails button.fill:hover:before {
	top: 0;
}


.projects .projects-thumbnails .pthumb-2 {
	display: grid;
	align-items: start;
	justify-content: space-between;
	justify-items: center;
	width: 80vw;
	min-height: 60vh;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 0 20px 0px #d2d2d2;
	background: #fff;
	margin-top: 2rem;
}
.marginr5 {
	margin-right: 5%;
}
.marginl5 {
	margin-left: 5%;
}
.margin-auto {
	margin: auto;
}
.projects .projects-thumbnails .pthumb-2 .description {
	letter-spacing: 1px;
}
.max-width-90 {
	max-width: 90%;
}
.projects .projects-thumbnails .pthumb-2 .description p, .projects .projects-thumbnails .pthumb-2 .description h2 {
	margin: 1rem auto;
}
.projects .projects-thumbnails .pthumb-2 .description .note {
	margin-top: 1rem;
	font-size: 0.7rem;
	color: #797979;
	font-weight: 700;
}
.social-links {
	gap: 1rem;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-links a {
	width: 80px;
	height: 80px;
	text-align: center;
	text-decoration: none;
	color: #000;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
	margin: 0 30px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	transition: transform 0.5s;
}

.social-links a .fab, .social-links a .fa-regular {
	font-size: 30px;
	line-height: 80px;
	position: relative;
	z-index: 10;
	transition: color 0.5s;
}

.social-links a::after {
	content: '';
	width: 100%;
	height: 100%;
	top: -90px;
	left: 0;
	background: #000;
	position: absolute;
	transition: 0.5s;
}
#facebook:after {
	background: #1679F1;
}
#instagram:after {
	top: 90px;
	background: linear-gradient(45deg, #FFBE01, #FE6F03, #FF0D4D, #FD01AC, #FC01CA);
}
#telegram:after {
	top: 90px;
	background: linear-gradient(180deg, #2AABEE, #229ED9);
}
#whatsapp:after {
	background:linear-gradient(45deg, #24B43B, #54CF61);
}
#email:after {
	background: #D64A3A;
}
.social-links a:hover::after {
	top: 0 !important;
	left: 0 !important;
}

.social-links a:hover .fab, .social-links a:hover .fa-regular {
	color: #fff;
}

.social-links a:hover {
	transform: translateY(-5px);
}
.footer {
	display: flex;
	justify-content: center;
	color: #444;
	margin-bottom: 2rem;
}
.footer .copyright {
	letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
	.hero {
		background-position-x: 21%;
	}
	.hero .hero-h2 {
		left: 36%;
	}
	.menu a {
		margin: 0 4px;
	}
	.social-links {
		flex-wrap: wrap;
	}
	.footer {
		flex-direction: column-reverse;
	}
	.projects .projects-thumbnails .pthumb-2 {
		width: 90vw;
	}
	.projects .projects-thumbnails .pthumb {
		width: 90vw;
		flex-direction: column;
		height: 650px;
	}
	.projects .projects-thumbnails .pthumb .description {
		max-width: 85%;
	}
}