*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2563eb;
	--primary-color-dark: #1d4ed8;
	--bg-color: #0f172a;
	--bg-color-light: #1e293b;
	--text-color: #f8fafc;
	--text-color-light: #cbd5e1;
	--container-width: 1200px;
}

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--bg-color);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark));
	border-radius: 10px;
	border: 2px solid var(--bg-color);
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
	transform: scale(1.1);
}

::-webkit-scrollbar-corner {
	background: var(--bg-color);
}

* {
	scrollbar-width: thin;
	scrollbar-color: var(--primary-color) var(--bg-color);
}

html {
	scroll-behavior: auto;
	scroll-padding-top: 70px;
}

body {
	overflow-x: hidden;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;

}

a {
	margin: 0;
	padding: 0;
	color: var(--text-color);
	text-decoration: none;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section {
	padding: 5rem 0;
}

.section__title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	transition: all 0.3s ease;
}

.section__title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.section__title:hover::after {
	width: 80px;
}

.about__content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about__content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-color-light);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.about__content p:last-child {
	margin-bottom: 0;
}

.about__content p:hover {
	color: var(--text-color);
	transform: translateY(-2px);
}

.button {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	outline: none;
}

.button:hover {
	background-color: var(--primary-color-dark);
}



.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.nav__logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.nav__logo:hover {
	color: var(--primary-color);
}

.nav__list {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 2rem;
}

.nav__link {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav__link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav__link:hover::after {
	width: 100%;
}

.nav__link:hover,
.nav__link:focus {
	color: var(--primary-color);
	background-color: rgba(37, 99, 235, 0.1);
	transform: translateX(10px);
	outline: none;
}

.nav__link.button {
	background-color: var(--primary-color);
	color: white;
	padding: 0.6rem 1.5rem;
	border-radius: 5px;
	font-weight: 600;
	border: 2px solid var(--primary-color);
	position: relative;
	overflow: hidden;
	z-index: 1;
}





.nav__link.button:hover {
	background-color: var(--primary-color-dark);
	border-color: var(--primary-color-dark);
	color: white;
}



.nav__link.button::after {
	display: none;
}

.nav__link--active {
	color: var(--primary-color);
}

.nav__link--active::after {
	width: 100%;
}

.nav__link.button.nav__link--active {
	background-color: var(--primary-color-dark);
	border-color: var(--primary-color-dark);
	box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.nav__toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	background: none;
	border: none;
	color: var(--text-color);
	padding: 0.5rem;
}

.nav__toggle:hover {
	color: var(--primary-color);
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(to bottom, var(--bg-color), var(--bg-color-light));
	position: relative;
	overflow: hidden;
}



.hero__container {
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	position: relative;
	z-index: 3;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero__title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.hero__name {
	color: var(--primary-color);
}

.hero__subtitle {
	font-size: 1.8rem;
	color: var(--text-color-light);
	margin-bottom: 1.5rem;
}

.hero__description {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--text-color-light);
}

.hero__image {
	text-align: center;
}

.hero__img {
	width: 100%;
	max-width: 400px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.hero__img:hover {
	transform: scale(1.05);
	box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
}

.hero__info {
	margin: 1.5rem 0;
}

.hero__info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-color-light);
	transition: all 0.3s ease;
}

.hero__info-item:hover {
	color: var(--primary-color);
	transform: translateX(10px);
}

.hero__info-item i {
	color: var(--primary-color);
	width: 20px;
	transition: all 0.3s ease;
}

.hero__info-item:hover i {
	transform: scale(1.2);
}

.skills__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.section {
	position: relative;
	z-index: 1;
}

.skill__category {
	background: var(--bg-color-light);
	padding: 2rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.skill__category:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
	border-color: var(--primary-color);
}

.skill__category h3 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	transition: all 0.3s ease;
}

.skill__category:hover h3 {
	transform: scale(1.05);
}

.skill__items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
}

.skill__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
}

.skill__item:hover {
	border-color: var(--primary-color);
}

.skill__item img {
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
}



.skill__item span {
	font-size: 0.9rem;
	text-align: center;
	transition: all 0.3s ease;
}



.skill-animate {
	animation: skillFadeIn 0.6s ease forwards;
}

@keyframes skillFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.8);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.projects__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.project__card {
	background-color: var(--bg-color-light);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
}

.project__card:hover {
	border-color: var(--primary-color);
}

.project__img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: all 0.3s ease;
}



.project__content {
	padding: 1.5rem;
}

.project__title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.project__card:hover .project__title {
	color: var(--primary-color);
}

.project__description {
	color: var(--text-color-light);
	margin-bottom: 1rem;
}

.project__links {
	display: flex;
	gap: 1rem;
}

.project__link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.project__link:hover {
	text-decoration: underline;
}

.project__tech {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.project__tech span {
	background: var(--primary-color);
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.project__tech span:hover {
	background: var(--primary-color-dark);
	transform: scale(1.1);
}

.experience {
	background: var(--bg-color-light);
}

.experience__items {
	max-width: 800px;
	margin: 0 auto;
}

.experience__item {
	background: var(--bg-color);
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	border-left: 4px solid var(--primary-color);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
}

.experience__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
	border-left-width: 8px;
}

.experience__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.experience__date {
	color: var(--primary-color);
	font-weight: 600;
}

.experience__list {
	list-style: none;
}

.experience__list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-color-light);
	transition: all 0.3s ease;
}

.experience__list li:hover {
	color: var(--text-color);
	transform: translateX(10px);
}

.experience__list li::before {
	content: "▸";
	color: var(--primary-color);
	position: absolute;
	left: 0;
	transition: all 0.3s ease;
}

.experience__list li:hover::before {
	transform: scale(1.2);
}

.experience-animate {
	animation: experienceSlideIn 0.8s ease forwards;
}

@keyframes experienceSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact {
	text-align: center;
}

.contact__text {
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--text-color-light);
}

.contact__socials {
	margin: 2rem 0 2rem;
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.social__link {
	color: var(--text-color);
	font-size: 1.8rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.social__link:hover {
	color: var(--primary-color);
	transform: scale(1.2) rotate(5deg);
}

.contact__info {
	max-width: 400px;
	margin: 2rem auto;
}

.contact__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--bg-color-light);
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.contact__item:hover {
	transform: translateX(10px);
	background: rgba(37, 99, 235, 0.1);
}

.contact__item i {
	color: var(--primary-color);
	font-size: 1.2rem;
	width: 20px;
	transition: all 0.3s ease;
}

.contact__item:hover i {
	transform: scale(1.2);
}

.contact__item a {
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact__item a:hover {
	color: var(--primary-color);
}

.footer {
	text-align: center;
	padding: 2rem 0;
	background-color: var(--bg-color-light);
	color: var(--text-color-light);
}









































.section,
.section__title {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.5s ease-out;
}

.section.animate,
.section__title.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero__title {
	opacity: 0;
	transform: translateY(40px);
	animation: heroTitleAppear 0.6s ease-out 0.3s forwards;
}

.hero__subtitle {
	opacity: 0;
	transform: translateY(40px);
	animation: heroSubtitleAppear 0.6s ease-out 0.6s forwards;
}

.hero__description {
	opacity: 0;
	transform: translateY(40px);
	animation: heroDescriptionAppear 0.6s ease-out 0.9s forwards;
}

@keyframes heroTitleAppear {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroSubtitleAppear {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroDescriptionAppear {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.skill__item {
	opacity: 0;
	transform: translateY(20px);
	animation: skillItemAppear 0.5s ease-out forwards;
}

.skill__item:nth-child(1) {
	animation-delay: 0.1s;
}

.skill__item:nth-child(2) {
	animation-delay: 0.2s;
}

.skill__item:nth-child(3) {
	animation-delay: 0.3s;
}

.skill__item:nth-child(4) {
	animation-delay: 0.4s;
}

.skill__item:nth-child(5) {
	animation-delay: 0.5s;
}

.skill__item:nth-child(6) {
	animation-delay: 0.6s;
}

.skill__item:nth-child(7) {
	animation-delay: 0.7s;
}

@keyframes skillItemAppear {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.experience__item {
	opacity: 0;
	transform: translateY(30px);
	animation: experienceItemAppear 0.6s ease-out forwards;
}

.experience__item:nth-child(1) {
	animation-delay: 0.2s;
}

@keyframes experienceItemAppear {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.project__card {
	transition: all 0.3s ease;
}

.project__card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.project__card:active {
	transform: scale(0.95);
}

.skill__item {
	transition: all 0.3s ease;
}

.skill__item:hover {
	transform: translateY(-8px) rotate(2deg);
	background: rgba(37, 99, 235, 0.1);
}

.section__title {
	transition: all 0.3s ease;
}

.section__title:hover {
	transform: scale(1.05);
	color: var(--primary-color);
}



.social__link {
	transition: all 0.3s ease;
}

.social__link:hover {
	transform: scale(1.2) rotate(5deg);
}

.skill__category {
	transition: all 0.3s ease;
}

.skill__category:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.contact__item {
	transition: all 0.3s ease;
}

.contact__item:hover {
	transform: translateX(10px);
	background: rgba(37, 99, 235, 0.1);
}

.hero__info-item {
	transition: all 0.3s ease;
}

.hero__info-item:hover {
	color: var(--primary-color);
	transform: translateX(10px);
}

.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease-out;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.6s ease-out;
}

.fade-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(40px);
	transition: all 0.6s ease-out;
}

.fade-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.6s ease-out;
}

.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

@media (max-width: 820px) {
	.container {
		padding: 0 1rem;
	}

	.section {
		padding: 3rem 0;
	}

	.section__title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.nav__list {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: rgba(15, 23, 42, 0.98);
		backdrop-filter: blur(15px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 1.5rem;
		gap: 1rem;
		transition: all 0.3s ease;
		overflow-y: auto;
		transform: translateX(-100%);
	}

	.nav__list.active {
		left: 0;
		transform: translateX(0);
		animation: slideInMenu 0.3s ease forwards;
		box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	}

	@keyframes slideInMenu {
		from {
			opacity: 0;
			transform: translateX(-20px);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.nav__link {
		font-size: 1.2rem;
		padding: 0.8rem 1rem;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(37, 99, 235, 0.2);
		opacity: 0;
		transform: translateX(-20px);
		transition: all 0.3s ease;
	}

	.nav__list.active .nav__link {
		animation: slideInLink 0.3s ease forwards;
	}

	.nav__list.active .nav__link:nth-child(1) {
		animation-delay: 0.1s;
	}

	.nav__list.active .nav__link:nth-child(2) {
		animation-delay: 0.2s;
	}

	.nav__list.active .nav__link:nth-child(3) {
		animation-delay: 0.3s;
	}

	.nav__list.active .nav__link:nth-child(4) {
		animation-delay: 0.4s;
	}

	.nav__list.active .nav__link:nth-child(5) {
		animation-delay: 0.5s;
	}

	.nav__list.active .nav__link:nth-child(6) {
		animation-delay: 0.6s;
	}

	.nav__list.active .nav__link:nth-child(7) {
		animation-delay: 0.7s;
	}

	@keyframes slideInLink {
		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.nav__link.button {
		margin: 1rem 0;
		width: auto;
		min-width: 200px;
		border: 2px solid var(--primary-color);
		background-color: transparent;
		color: var(--primary-color);
		transition: all 0.3s ease;
	}

	.nav__link.button:hover,
	.nav__link.button:focus {
		background-color: var(--primary-color);
		color: white;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
	}

	.nav__link.button:active {
		transform: translateY(0);
		box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
	}

	.nav__toggle {
		display: block;
		font-size: 1.8rem;
		color: var(--text-color);
		background: none;
		border: none;
		cursor: pointer;
		padding: 0.5rem;
		transition: all 0.3s ease;
	}

	.nav__toggle:hover,
	.nav__toggle:focus {
		color: var(--primary-color);
		transform: scale(1.1);

	}

	.nav__toggle.active {
		transform: rotate(90deg);
		color: var(--primary-color);
	}

	.nav__toggle.active i {
		transform: rotate(180deg);
		transition: transform 0.3s ease;
	}

	.nav__list li {
		width: 100%;
		text-align: center;
	}

	.nav__list li:last-child {
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 2px solid rgba(37, 99, 235, 0.3);
	}

	.hero__container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero__title {
		font-size: 2.5rem;
	}

	.hero__subtitle {
		font-size: 1.4rem;
	}

	.hero__description {
		font-size: 1rem;
	}

	.hero__img {
		max-width: 300px;
	}

	.skills__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.skill__items {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 0.8rem;
	}

	.projects__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.project__card {
		margin: 0 auto;
		max-width: 400px;
	}

	.contact__socials {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.social__link {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 0.8rem;
	}

	.hero__title {
		font-size: 1.8rem;
	}

	.hero__subtitle {
		font-size: 1.1rem;
	}

	.hero__description {
		font-size: 0.9rem;
	}

	.about__content p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.section__title {
		font-size: 1.6rem;
	}

	.button {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
	}

	.nav__link.button {
		min-width: 160px;
		font-size: 0.85rem;
	}

	.skill__item {
		padding: 0.6rem;
	}

	.skill__item img {
		width: 30px;
		height: 30px;
	}

	.skill__item span {
		font-size: 0.75rem;
	}

	.project__content {
		padding: 0.8rem;
	}

	.project__title {
		font-size: 1rem;
	}

	.experience__item {
		padding: 1.2rem;
	}
}

@media (max-width: 360px) {
	.container {
		padding: 0 0.5rem;
	}

	.hero__title {
		font-size: 1.6rem;
	}

	.hero__subtitle {
		font-size: 1rem;
	}

	.hero__description {
		font-size: 0.85rem;
	}

	.about__content p {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.section__title {
		font-size: 1.4rem;
	}

	.nav__link {
		font-size: 1rem;
		padding: 0.6rem 0.6rem;
	}

	.nav__link.button {
		min-width: 140px;
		font-size: 0.8rem;
	}

	.skill__item {
		padding: 0.5rem;
	}

	.skill__item img {
		width: 25px;
		height: 25px;
	}

	.skill__item span {
		font-size: 0.7rem;
	}
}

@media (max-width: 820px) and (orientation: landscape) {
	.nav__list {
		padding-top: 1rem;
		gap: 0.8rem;
	}

	.nav__link {
		font-size: 1rem;
		padding: 0.6rem 0.8rem;
	}

	.hero {
		min-height: 100vh;
		padding: 2rem 0;
	}

	.hero__container {
		gap: 1.5rem;
	}

	.hero__title {
		font-size: 2.2rem;
	}

	.hero__subtitle {
		font-size: 1.3rem;
	}
}

@media (max-width: 820px) {

	.nav__link,
	.nav__toggle {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.nav__list {
		padding: 2rem 1rem;
	}

	.nav__link {
		font-weight: 500;
		letter-spacing: 0.5px;
	}
}

@media (max-width: 320px) {
	.container {
		padding: 0 0.3rem;
	}

	.hero__title {
		font-size: 1.4rem;
	}

	.hero__subtitle {
		font-size: 0.9rem;
	}

	.hero__description {
		font-size: 0.8rem;
	}

	.about__content p {
		font-size: 0.8rem;
		line-height: 1.5;
	}

	.section__title {
		font-size: 1.2rem;
	}

	.nav__link {
		font-size: 0.9rem;
		padding: 0.5rem 0.4rem;
	}

	.nav__link.button {
		min-width: 120px;
		font-size: 0.75rem;
	}

	.skill__item {
		padding: 0.4rem;
	}

	.skill__item img {
		width: 22px;
		height: 22px;
	}

	.skill__item span {
		font-size: 0.65rem;
	}

	.nav__list {
		padding-top: 1rem;
		gap: 0.8rem;
	}

	.nav__list li:last-child {
		margin-top: 0.8rem;
		padding-top: 0.8rem;
	}
}