@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap");
/* :root {
    --white: #121212;
    --white-accent: #1b1b1b;
    --white-elevated: #333333;
    --white-empty: #727272;
    --white-gray: #727272;
    --black: #fff;
    --black-07: rgba(255, 255, 255, 0.7);
    --black-004: rgba(255, 255, 255, 0.1);
    --black-accent-header:#e6e6e6;
    --black-accent-paragraph: #c2c2c2;
    --black-svg: #ffffff;
    --theme-purple: #7C00DD;
    --theme-purple-darken: #7000C8;
} */
:root {
	--white: #fff;
	--white-accent: #f5f9ff;
	--white-elevated: #fff;
	--white-empty: rgba(39, 0, 69, 0.3);
	--white-gray: #727272;
	--black: #000;
	--black-07: rgba(0, 0, 0, 0.7);
	--black-004: rgba(0, 0, 0, 0.04);
	--black-accent-header: #252525;
	--black-accent-paragraph: #484848;
	--black-svg: #1a1918;
	--theme-purple: #7c00dd;
	--theme-purple-darken: #7000c8;
}
* {
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
.unselectable,
img {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

body {
	width: inherit;
	min-height: 100vh;
	background: var(--white-accent);
	overflow-x: hidden;
	overflow-y: scroll;
	padding-bottom: 3rem;
}
::-webkit-scrollbar {
	width: 0;
}
::selection {
	background: var(--theme-purple);
	color: white;
}
main {
	width: 100%;
	height: 100%;
}

.header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 84px;
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}
.innerHeader {
	width: 60%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.header .innerHeader .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.header .innerHeader .logo img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.header .innerHeader .logo label {
	font-size: 16px;
	color: var(--black);
	cursor: pointer;
}
.header .innerHeader nav a {
	cursor: pointer;
	min-width: 70px;
	border-radius: 5px;
	padding: 9px 12px;
	justify-content: center;
	transition: 0.15s cubic-bezier(0.3, 0.01, 0.3, 1.26);
	transition-property: background-color, color, border;
}
.header .innerHeader nav a:hover {
	background-color: var(--black-004);
}
.header .innerHeader nav span {
	font-size: 15px;
	line-height: 24px;
	color: var(--black-07);
	transition: 0.5s cubic-bezier(0.3, 0.01, 0.3, 1.26);
	transition-property: color;
}
.header .innerHeader nav a.nav-active {
	border-bottom: 1px solid var(--theme-purple);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.header .innerHeader nav a.nav-active:hover {
	border-bottom: 1px solid var(--theme-purple);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.header .innerHeader nav a:hover span {
	color: var(--black);
}

.preview {
	width: 100%;
	height: 240px;
	background: linear-gradient(
		90deg,
		var(--theme-purple) 0%,
		var(--theme-purple-darken) 100%
	);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.preview .innerPreview {
	width: 60%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.preview .innerPreview label {
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
	color: white;
}
.preview .innerPreview svg {
	fill: white;
}

.main {
	width: 100%;
	z-index: 1;
	display: flex;
	justify-content: center;
}
.main .innerMain {
	width: 60%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 66px;
}
.main .innerMain .info {
	width: 55%;
}
.main .innerMain .stats {
	width: 45%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.main .innerMain .info h1 {
	font-weight: 600;
	font-size: 26px;
	line-height: 32px;
	color: var(--black-accent-header);
	margin: 20px 0;
}
.main .innerMain .info p {
	font-size: 20px;
	line-height: 27px;
	color: var(--black-accent-paragraph);
	margin: 20px 0;
}
.main .innerMain .stats .skills {
	width: 360px;
	height: 420px;
	background: var(--white-elevated);
	box-shadow: 5px 5px 50px -5px rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	transition: 0.3s ease;
	transition-property: box-shadow, transform, background;
}
.main .innerMain .stats .skills .statHead {
	width: 100%;
	height: 15%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.main .innerMain .stats .skills .statHead label {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--black-accent-header);
	border-bottom: 1px solid var(--theme-purple);
	height: 101%;
	margin-left: 15px;
	display: flex;
	align-items: center;
}
.main .innerMain .stats .skills .statContent {
	width: 100%;
	height: 85%;
	overflow-y: scroll;
	scroll-behavior: smooth;
}
.statContent::-webkit-scrollbar {
	width: 0;
	height: 0;
}
.main .innerMain .stats .skills .statContent .statElement {
	width: 100%;
	height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	transition: 0.3s ease;
	transition-property: box-shadow, transform, background;
}
.statAddon {
	width: 90%;
	margin-left: 20px;
}
.main .innerMain .stats .skills .statContent .statElement svg {
	width: 30px;
	height: 30px;
	margin-left: 12px;
}
.main .innerMain .stats .skills .statContent .statElement span {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--black);
	margin-left: 12px;
	cursor: default;
}

.skills:hover {
	transform: scale(1.02);
}
.statElement:hover {
	transform: translateX(0.7%);
}

/*************************************************************************
*************************************************************************/

.projBlock {
	width: 100%;
	min-height: 300px;
	background: var(--white-elevated);
	box-shadow: 5px 5px 50px -5px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
}
.projBlock .projHead {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.projHead label {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: var(--black-accent-header);
	border-bottom: 1px solid var(--theme-purple-darken);
	height: 100%;
	display: flex;
	align-items: center;
	cursor: default;
}
.projContent {
	width: 100%;
	height: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.projContent.empty {
	display: flex;
	justify-content: center;
	align-items: center;
}
.projContent.empty span {
	font-size: 18px;
	line-height: 22px;
	color: var(--white-empty);
}

.projContentList {
	width: 100%;
	height: 100%;
	display: flex; /* flex */
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
	padding: 20px 0;
}
.projCard {
	width: 230px;
	height: 70px;
	background: var(--theme-purple-darken);
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.35);
	border-radius: 10px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 15px;
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: box-shadow, transform, background;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	margin: 12px 15px;
}
.projCard:hover {
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	transform: scale(0.97);
}
.projCard:active {
	background: #330457;
	transform: scale(0.9);
}
.projCardImage {
	width: 50px;
	height: 50px;
}
.projCardImage#calculator {
	width: 44px;
	height: 44px;
}
.projCardImage img {
	height: 100%;
}
.projCard span {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: white;
	margin-left: 5px;
}

.projContentActive {
	width: 100%;
	height: 100%;
	display: none; /* flex */
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.projActiveDescription {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
.projActiveDescription img {
	width: 70%;
	margin-top: 20px;
	border-radius: 6px;
}
.projActiveDescription span {
	font-size: 15px;
	line-height: 125%;
	color: var(--black-accent-paragraph);
	margin: 20px;
}
.projActiveButtons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 20px;
}
.projActiveButtons a {
	display: flex;
	flex-direction: row;
	align-items: center;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: box-shadow, transform;
}
.projActiveButtons a:hover {
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
	transform: scale(0.97);
}
.backButton {
	width: 125px;
	height: 50px;
	background: var(--white-gray);
	border-radius: 15px;
	margin-left: 20px;
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;
	color: white;
}
.backButton img {
	width: 20px;
	margin: 0 10px;
}
.linkTo {
	width: 125px;
	height: 50px;
	background: var(--theme-purple);
	border-radius: 15px;
	margin: 0 20px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: white;
}
.linkTo img {
	width: 30px;
	margin: 0 10px;
}

/*************************************************************************
*************************************************************************/

.contactBlock {
	width: 65%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 66px;
}
.contactGrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	gap: 30px 30px;
	grid-template-areas:
		". . . ."
		". . . ."
		". . . .";
}
.contactCard {
	width: 270px;
	height: 100px;
	background: var(--white-elevated);
	box-shadow: 2px 2px 50px -5px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 20px;
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: box-shadow, transform, background;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.contactCard .projCardImage svg {
	fill: var(--black-svg);
}
.contactCard:hover {
	box-shadow: 2px 2px 10px var(--black-004);
	transform: scale(0.97);
}
.contactCard:hover {
	background: var(--theme-purple);
	transform: scale(0.95);
}
.contactCard:hover span {
	color: var(--white);
}
.contactCard:hover .projCardImage svg {
	fill: var(--white);
}
.contactCard span {
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	color: var(--black-accent-header);
	margin-left: 15px;
	transition: 0.3s ease;
	transition-property: color;
}
.projCardImage svg {
	fill: var(--black-svg);
	width: 100%;
	height: 100%;
	transition: 0.3s ease;
	transition-property: fill;
}
.contactCard.invisible {
	opacity: 0;
	cursor: default;
}

.copyright {
	margin-top: 46px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.copyright img {
	width: 65px;
	height: 65px;
}
.copyright span {
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	color: var(--black-accent-header);
	margin-top: 10px;
}
.copyright a svg {
	width: 16px;
	height: 16px;
	fill: var(--black-07);
	margin-top: 0.4rem;
}
.copyright a,
.copyright #languageMenu {
	cursor: pointer;
}
.copyright #languageMenu {
	background-color: var(--black-004);
	color: var(--black-07);
	border: none;
	margin-top: 0.2rem;
}
.copyright #languageMenu option {
	background-color: var(--white);
	color: var(--black-07);
}
