:root {
	color-scheme: light dark;
	--glass-layer-background-color: rgba(255, 255, 255, 0.6);
	--glass-layer-text-primary-color: rgb(44, 44, 46);
	/*HIG Dark Gray(5)*/
	--glass-navi-background-color: rgba(255, 255, 255, 0.8);
	--glass-navi-text-notFocus-color: rgb(108, 108, 112);
	/*HIG Gray -Increased contrast (light)*/
	--glass-navi-text-focus-color: rgb(0, 122, 255);
	/*HIG Blue (Light)*/
	--glass-hover-button-shape-color: rgba(0, 0, 0, 0.1);
	--upper-content-background-color: white;
	--upper-content-hover-background-blue: rgb(203, 223, 244);
	--upper-content-hover-background-color: rgb(229, 229, 229);
	/*10% black*/
	--upper-content-text-primary-color: rgb(44, 44, 46);
	/*HIG Dark Gray(5)*/
	--upper-content-pageHeader-shadow: 0 0 0.15em rgba(99, 99, 102, 0.4);
	--upper-content-separator-color: #eee;
	--upper-content-layer-shadow: 0 0 0.5em rgba(99, 99, 102, 0.1);
	--lightbox-hover-shadow-color: rgba(0, 0, 0, 0.6);
	--middle-grey-color: rgb(142, 142, 147);
	/*HIG Gray*/
	--radius-inside-box-img: 6px;
	--radius-box-edge: 12px;
	--body-background-color: linear-gradient(135deg, rgb(34, 192, 255), rgb(35, 128, 242), rgba(48, 65, 246, 0.5), rgba(24, 55, 192, 0), rgba(255, 196, 46, 0.2), rgba(255, 196, 46, 0.8)), linear-gradient(45deg, rgb(68, 150, 245), rgb(182, 108, 255));
	--body-background-mask-color: rgba(255, 255, 255, 0.6);
	--body-index-header-background-color: rgba(255, 255, 255, 0.85);
	--dynamice-backgournd-dot1-color: hsl(230, 100%, 60%);
	--dynamice-backgournd-dot2-color: hsl(200, 90%, 56%);
	--dynamice-backgournd-dot3-color: hsl(260, 100%, 76%);
}

@font-face {
	font-family: regularFont;
	src: url(fonts/SF-Pro-Text-Regular.otf);
}

@font-face {
	font-family: semiBoldFont;
	src: url(fonts/SF-Pro-Text-Bold.otf);
}

body {
	font-family: regularFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	overflow-y: scroll;
}

.fontWeightSemiBold {
	font-family: semiBoldFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bgMask {
	z-index: 1;
	width: 100%;
	height: 100%;
	background: var(--body-background-mask-color);
	position: fixed;
}

body:before {
	content: ' ';
	position: fixed;
	z-index: -2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(50, 55, 65);
	background-image: var(--body-background-color);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.content {
	box-shadow: 0 0 1em rgba(99, 99, 102, 0.1), 0 0 0.1em white inset;
	/* border: 1px solid rgba(255,255,255,0.8); */
}

@media (prefers-color-scheme: dark) {
	:root {
		--glass-layer-background-color: rgb(22, 22, 23, 0.8);
		/*HIG Dark Gray(5) half to 0*/
		--glass-layer-text-primary-color: white;
		--glass-navi-background-color: rgba(0, 0, 0, 0.7);
		--glass-navi-text-notFocus-color: rgb(174, 174, 178);
		/*HIG Light Gray(2)*/
		--glass-navi-text-focus-color: rgb(32, 148, 255);
		/*watchOS Blue (Dark) */
		--glass-hover-button-shape-color: rgba(255, 255, 255, 0.1);
		--upper-content-background-color: rgb(44, 44, 46);
		/*HIG Dark Gray(5)*/
		--upper-content-hover-background-blue: rgb(47, 67, 88);
		--upper-content-hover-background-color: rgb(66, 66, 67);
		/*10% white*/
		--upper-content-text-primary-color: white;
		--upper-content-pageHeader-shadow: 0 0 0.15em rgba(0, 0, 0, 1);
		--upper-content-separator-color: #4d4d4d;
		--upper-content-layer-shadow: 0 0 0.5em rgba(0, 0, 0, 0.4);
		--lightbox-hover-shadow-color: rgba(0, 0, 0, 1);
		--middle-grey-color: rgb(142, 142, 147);
		/*HIG Gray*/
		--body-background-color: linear-gradient(135deg, rgb(0, 92, 118), rgb(0, 64, 128), rgba(18, 40, 162, 0.5), rgba(10, 24, 104, 0), rgba(82, 158, 0, 0.2), rgba(69, 134, 0, 0.8)), linear-gradient(45deg, rgb(65, 22, 122), rgb(5, 78, 78));
		--body-background-mask-color: rgba(22, 22, 23, 0.6);
		--body-index-header-background-color: rgba(0, 0, 0, 0.55);
		--dynamice-backgournd-dot1-color: hsl(200, 100%, 32%);
		--dynamice-backgournd-dot2-color: hsl(240, 50%, 50%);
		--dynamice-backgournd-dot3-color: hsl(160, 100%, 24%);
	}

	.content {
		box-shadow: 0 0 0.1em rgb(66, 66, 67) inset;
	}
}

a {
	text-decoration: none;
	margin: 0;
}

a img {
	border: 0;
}

ul {
	padding-left: 1em;
}

/*================================== Header ===================================*/

#header {
	background-color: var(--glass-navi-background-color);
	-webkit-backdrop-filter: saturate(180%) blur(24px);
	backdrop-filter: saturate(180%) blur(24px);
	position: fixed;
	width: 100%;
	z-index: 3;
	line-height: 44px;
	height: 44px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

#homeBtn {
	position: absolute;
	display: inline-block;
	text-align: center;
	top: 0;
	left: calc(50% - 574px);
	color: var(--glass-navi-text-notFocus-color);
	transition: all 0.3s;
}

#homeBtn:hover {
	color: var(--upper-content-text-primary-color);
}

.currentIndex {
	color: var(--upper-content-text-primary-color) !important;
}

#version {
	position: absolute;
	display: inline-block;
	top: 1px;
	left: calc(50% - 474px);
	font-size: 12px;
	color: var(--middle-grey-color);
	transition: all 0.3s;
}

#main {
	margin-left: auto;
	margin-right: auto;
	padding: 80px 0 0;
}

#cover {
	z-index: 2;
	position: relative;
	top: 80px;
	color: rgb(250, 250, 250);
}

.coverTitle {
	font-size: 36px;
	line-height: 1.6em;
	color: white;
	text-shadow: 0px 3px 9px rgba(0, 0, 0, 0.3);
}

.photoCover {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 90px;
	border-radius: 50%;
	border: 4px solid rgb(250, 250, 250);
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.photoIntroduction {
	margin: 30px 36px 0;
	width: 0;
	border-radius: 50%;
	border: 4px solid rgb(250, 250, 250);
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

#intro a {
	z-index: 2;
	position: relative;
	display: inline-block;
	margin: 88px auto 0;
	padding: 16px 40px;
	color: white;
	/* border: 2px solid white; */
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);

}

#intro a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#intro a:active {
	background-color: rgba(255, 255, 255, 0.4);
}

.hoverShapeShownBtn {
	border-radius: var(--radius-inside-box-img);
	transition: 0.3s;
}

.svgIntroChevron {
	fill: white;
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}

/*============================= Navigation ==============================*/

#navi {
	z-index: 3;
	position: fixed;
	display: inline-block;
	top: 0;
	right: calc(50% - 590px);
	transition: all 0.3s;
}

#navi ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}

#navi li {
	float: left;
	height: 44px;
}

#navi a {
	display: inline-block;
	margin: 0 20px;
	line-height: 44px;
	color: var(--glass-navi-text-notFocus-color);
	transition: all 0.3s;
}

#navi a:hover {
	color: var(--upper-content-text-primary-color);
}

.currentPage {
	color: var(--upper-content-text-primary-color) !important;
}

.currentPageIndicator {
	background-color: var(--upper-content-text-primary-color);
	width: 18px;
	height: 3px;
	border-radius: 3px;
	margin: -10px auto 0;
}

/*========================  content ========================*/

.content {
	z-index: 2;
	position: relative;
	background-color: var(--glass-layer-background-color);
	width: 1080px;
	padding: 36px;
	margin: 0 auto 36px;
	color: var(--upper-content-text-primary-color);
	line-height: 147%;
	font-size: 16px;
	border-radius: 18px;
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	transition: all 0.3s;
}

.content li {
	margin: 0 0 0.2em 0.6em;
}

.pageHeader {
	font-size: 36px;
	margin: 6px 0 30px;
	color: var(--upper-content-background-color);
	text-shadow: var(--upper-content-pageHeader-shadow);
	letter-spacing: -1px;
}

.pageShowcaseHeader {
	font-size: 14px;
	margin: 0 0 30px;
}

.largeText {
	font-size: 20px;
}

.smallText {
	font-size: 14px;
}

.textDarkerGreyColor {
	color: var(--glass-navi-text-notFocus-color);
}
.textGreyColor {
	color: var(--middle-grey-color);
}

.textOnGlassColor {
	color: var(--glass-layer-text-primary-color);
}

.introduction {
	display: flex;
	justify-content: center;
	margin: 48px auto;
}

.introductionText {
	width: 552px;
}

.summary {
	max-width: 666px;
	width: 88%;
	margin: 1em auto;
}

.summary li {
	margin: 0 0 0.8em 0;
}

.contentSeparator {
	width: 94%;
	max-width: 700px;
	height: 1px;
	background-color: var(--upper-content-separator-color);
	margin: 1em auto;
}

.sectionHeader {
	font-size: 30px;
	line-height: 1.2em;
	/* letter-spacing: -0.02em; */

}

.sectionHeaderInBoxMargin {
	margin: 0.4em 10px;
}

.sectionHeaderShowcaseMargin {
	margin: 0 10px 0;
}

.sectionHeaderShowcaseMiddleMargin {
	margin: 0 0 0.6em;
}

.workTitle {
	display: inline-block;
	font-size: 20px;
	line-height: 28px;
}

.workTitleMargin {
	margin: 0.4em 0;
}

.skillsChart {
	margin: 0 auto;
	width: 94%;
	max-width: 700px;
}

.skillsChart td {
	text-align: left;
	padding: 3px;
}

.skillsChart td:first-child {
	width: 32%;
	min-width: 180px;
	text-align: right;
}

.skillsBar {
	display: inline-block;
	height: 5px;
	border-radius: 3px;
	background-image: linear-gradient(90deg, hsl(36, 100%, 50%), hsl(48, 100%, 60%));
	animation: hue 16s infinite linear;
}

@keyframes hue {
	from {
		filter: hue-rotate(0deg);
	}

	to {
		filter: hue-rotate(-360deg);
	}
}

.box {
	padding: 10px;
	margin-bottom: 1em;
	border-radius: var(--radius-box-edge);
	background-color: var(--upper-content-background-color);
	box-shadow: var(--upper-content-layer-shadow);
}

.box img {
	border-radius: var(--radius-inside-box-img);
}

.prjDescriptionIndex {
	padding: 0 7%;
}

.prjDescription {
	padding: 0 4%;
}

.prjBulletPoint {
	padding: 0 6%;
	margin-top: 0.4em;
}

.prjBulletPoint li {
	margin: 0 0 0.2em 0.6em;
}

.jobSummary {
	display: flex;
}

.jobDescription {
	margin: 0 14% 0 226px;
}

.companyLogo {
	flex-basis: 126px;
	text-align: center;
	height: 80px;
	background-color: white;
	line-height: 80px;
	margin: 8px 36px 0 64px;
}

.uniLogo {
	flex-basis: 80px;
	flex-shrink: 0;
	text-align: center;
	background-color: white;
	line-height: 80px;
	height: 80px;
	margin: 8px 54px 8px 92px;
}

.uniIconPadding {
	display: flex;
}

.secondaryDescription {
	color: var(--middle-grey-color);
	display: inline-block;
	margin: 0.4em 0 0.2em;
}

.languageLayout {
	display: flex;
	flex-wrap: wrap;
}

.languageLayout div {
	width: 246px;
	padding: 10px 0 16px 72px;
}

.projectShowcaseSummary {
	display: flex;
	flex-wrap: nowrap;
}

.projectShowcaseThumbnail {
	width: 53%;
	margin: 10px 0 2px 10px;
}

.projectShowcaseSummary div:nth-of-type(2) {
	width: 47%;
	display: flex;
	align-items: center;
}

.showBox {
	display: inline-block;
	text-align: center;
	margin: 1%;
}

.NoMarginTop {
	margin-top: 0;
}

.NoMarginBottom {
	margin-bottom: 0;
}

.littleMarginTop {
	margin-top: 0.3em;
}

.littleMarginBottom {
	margin-bottom: 0.3em;
}

.AdditionalMarginTop {
	margin-top: 1.8em;
}

.AdditionalMarginBottom {
	margin-bottom: 1.8em;
}

.AdditionalPaddingTop {
	padding-top: 20px;
}

.AdditionalPaddingBottom {
	padding-bottom: 20px;
}


.lightBox {
	display: inline-block;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

.lightBox:hover {
	box-shadow: 0 2px 10px var(--lightbox-hover-shadow-color);
}

.iconAllSize {
	width: 96%;
	max-width: 720px;
}

.fullSize {
	width: 100%;
}

.elasticAll {
	width: 98%;
	/* there is 1% image margin */
}

.elasticPrjShowcase {
	width: 96%;
	/* change in 533 */
}


.elasticShow2 {
	width: 47.2%;
}

.elasticShow3 {
	width: 30.5%;
}

.elasticShow4And2 {
	width: 22.6%;
}

.elasticWeb1 {
	width: 32.5%;
}

.elasticWeb3D {
	width: 62%;
}

.elasticIcon1 {
	width: 32.9%;
}

.elasticIcon2 {
	width: 26%;
}

.elasticCSS1 {
	width: 71.1%;
}

.elasticCSS2 {
	width: 23.8%;
}

/*======================= Work Exp =========================*/

.elasticEricsson {
	width: 60%;
}

.elasticRIB {
	width: 80%;
}

.elasticHSBC {
	width: 80%;
}

.elasticVtron {
	width: 80%;
}

.elasticIDP {
	width: 38%;
}

.elasticDigitLegend {
	width: 60%;
}

.elasticMonash {
	width: 80%;
	max-width: 152px;
}

.elasticBNU {
	width: 80%;
	max-width: 86px;
}

.updateTime {
	font-size: 12px;
	color: var(--middle-grey-color);
	margin-top: 0;
}

.copyRight {
	font-size: 12px;
	color: var(--middle-grey-color);
	margin: 24px auto 0;
	line-height: 180%;
}

/*========================= Contact ===========================*/

.AboutSection {
	display: flex;
	flex-direction: row-reverse;
	/* width: 100%; */
}

.AboutSectionPhoto {
	display: flex;
	flex-direction: column;
	flex: 38%;
	text-align: right;
}

.AboutSectionText {
	flex: 62%;
}

.AboutSectionText p {
	margin-left: 20px;
	margin-right: 28px;
}

.photoContact {
	width: 88%;
	margin: 10px 0 0;
}

.localtionLabel {
	padding-left: 8px;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.localMap {
	background-image: url("img/contact/earth.jpg");
	height: 900px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.widerDescription {
	padding: 0 2%;
}


.contactLinksWidth {
	width: 300px;
	margin-left: 20px;
}

.mailIcon {
	fill: var(--glass-layer-text-primary-color);
	width: 18px;
	padding: 0 0 1px;
	vertical-align: middle;
}

.mailIconIntroduction {
	fill: var(--glass-layer-text-primary-color);
	width: 22px;
	padding: 0 0 3px;
	vertical-align: middle;
}

.mailLabelPosition {
	position: relative;
	top: -1px;
	padding-left: 4px;
}

.linkedinIcon {
	fill: var(--glass-layer-text-primary-color);
	width: 20px;
	padding: 0 2px 0 0;
	vertical-align: text-bottom;
}

.wechatIcon {
	fill: var(--glass-layer-text-primary-color);
	width: 23px;
	padding: 0 0 1px 1px;
	vertical-align: text-bottom;
}

.wechatIconIntroduction {
	fill: var(--glass-layer-text-primary-color);
	width: 28px;
	padding: 0 0 2px 2px;
	vertical-align: middle;
}

.contactBtnLabel {
	display: inline-block;
	line-height: 150%;
	color: var(--glass-layer-text-primary-color);
	background-color: var(--upper-content-background-color);
	box-shadow: var(--upper-content-layer-shadow);
	padding: 10px 14px;
	margin: 0 12px 16px 0;
}

.contactBtnIntroductionPosition {
	display: flex;
}

.contactBtnIntroduction {
	display: inline-block;
	color: var(--glass-layer-text-primary-color);
	background-color: var(--upper-content-background-color);
	box-shadow: var(--upper-content-layer-shadow);
	width: 56px;
	height: 56px;
	line-height: 56px;
	vertical-align: middle;
	margin: 0 1.2em 0 0;
	border-radius: 50%;
	transition: 0.3s;

}

.contactBtnLabel:hover,
.contactBtnIntroduction:hover {
	background-color: var(--upper-content-hover-background-color);
}

.contactBtnLabel:active,
.contactBtnIntroduction:active {
	background-color: var(--upper-content-background-color);
}

.launchIcon {
	vertical-align: middle;
	fill: var(--upper-content-text-primary-color);
	padding-left: 2px;
}

.QRcodeIcon {
	vertical-align: text-bottom;
	fill: var(--upper-content-text-primary-color);
	padding-right: 4px;
}

.downloadMsg {
	margin-bottom: 0.2em;
}

#projectShowcaseBackBtn {
	position: relative;
	left: 4px;
}

.contentBtn {
	color: var(--glass-navi-text-focus-color);
	fill: var(--glass-navi-text-focus-color);
	padding: 0.8em;
}

.contentBtn span {
	line-height: 52px;
}

.contentBtn:hover,
.contentBtn:active {
	background-color: var(--upper-content-hover-background-blue);
}

.svgChevron {
	vertical-align: middle;
	width: 0.6em;
	position: relative;
	top: -1px;
}

.svgOnBtnRight {
	padding-left: 0.4em;
}

.svgOnBtnLeft {
	padding-right: 0.4em;
}

.svgDownload {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin: -2px 0.2em 0 0;
}

.imageOnGlassBorder {
	border: 6px solid var(--upper-content-background-color);
	border-radius: var(--radius-inside-box-img);
}


.workLocation {
	color: var(--middle-grey-color);
	padding-left: 0.5em;
}


/*===================== align centre Class ===========================*/

.textCentre {
	text-align: center;
}

.verticalCentre {
	vertical-align: middle;
}

.verticalTop {
	vertical-align: top;
}

.hideOverflow {
	overflow: hidden;
}

/*===================== Fade in Class ===========================*/

.divFadeIn1 {
	animation: aniDivFadeIn1 2s linear;
}

@keyframes aniDivFadeIn1 {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

.divFadeIn2 {
	animation: aniDivFadeIn2 2s linear;
}

@keyframes aniDivFadeIn2 {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 0;
	}

	60% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

.divFadeIn3 {
	animation: aniDivFadeIn3 2s linear;
}

@keyframes aniDivFadeIn3 {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

/*===================== Dynamic Background Class ===========================*/

.dynamicBackground {
	position: fixed;
	z-index: 1;
	top: 0px;
	left: calc(50% - 240px);
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	filter: blur(36px);
	-webkit-filter: blur(36px);
}

.dot1 {
	width: 320px;
	height: 240px;
	border-radius: 50%;
	background: var(--dynamice-backgournd-dot1-color);
	opacity: 0;
	position: relative;
	animation: ani1 18s linear infinite;
	animation-delay: 1s;
}

@keyframes ani1 {
	0% {
		opacity: 0;
		top: 40px;
		left: 240px;
	}

	10% {
		opacity: 0.5;
	}

	80% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
		top: 160px;
		left: 0px;
	}
}

.dot2 {
	width: 320px;
	height: 240px;
	border-radius: 50%;
	background: var(--dynamice-backgournd-dot2-color);
	position: relative;
	opacity: 0;
	animation: ani2 18s linear infinite;
	animation-delay: 3s;
}

@keyframes ani2 {
	0% {
		opacity: 0;
		top: -100px;
		left: -80px;
	}

	10% {
		opacity: 0.4;
	}

	80% {
		opacity: 0.4;
	}

	100% {
		opacity: 0;
		top: 180px;
		left: 120px;
	}
}

.dot3 {
	width: 320px;
	height: 240px;
	border-radius: 50%;
	background: var(--dynamice-backgournd-dot3-color);
	position: relative;
	opacity: 0;
	animation: ani3 18s linear infinite;
	animation-delay: 6s;
}

@keyframes ani3 {
	0% {
		opacity: 0;
		top: -160px;
		left: 160px;
	}

	10% {
		opacity: 0.6;
	}

	80% {
		opacity: 0.6;
	}

	100% {
		opacity: 0;
		top: -380px;
		left: 280px;
	}
}


@media screen and (max-width: 1180px) {
	#homeBtn {
		left: max(calc(50% - 482px), 2%);
	}

	#version {
		left: max(calc(50% - 382px), calc(2% + 100px));
	}

	#navi {
		right: max(calc(50% - 500px), 0px);
	}

	.content {
		width: 88%;
		max-width: 900px;
	}

	.projectShowcaseThumbnail {
		width: 66%;
	}

	.projectShowcaseSummary div:nth-of-type(2) {
		width: 34%;
	}

	.prjDescriptionIndex {
		padding: 0 4%;
	}

	.jobDescription {
		margin: 0 5% 0 152px;
	}

	.companyLogo {
		margin: 8px 16px 0 10px;
	}

	.uniLogo {
		margin: 8px 40px 8px 32px;
	}

	.languageLayout div {
		padding: 10px 10px 16px 24px;
	}

	.photoContact {
		width: 90%;
	}

	.AboutSectionText p {
		margin-left: 0;
		margin-right: 0;
	}

	.contactLinksWidth {
		margin-left: 0;
	}

	.localMap {
		height: 748px;
	}
}

@media screen and (max-width: 996px) {
	#navi {
		right: 0;
	}

	.languageLayout div {
		width: 224px;
		padding: 10px 10px 16px 12px;
	}

	.languageLayout div:nth-of-type(2) {
		width: 236px;
	}

	.languageLayout div:nth-of-type(3) {
		width: 246px;
	}

	.elasticShow4And2 {
		width: 47.2%;
	}
}

@media screen and (max-width:820px) {
	#header {
		line-height: 34px;
		height: 34px;
	}

	#homeBtn {
		font-size: 14px;
		left: 12px;
	}

	#version {
		left: auto;
		right: 10px;
		top: 0;
	}

	#navi {
		top: auto;
		right: auto;
		bottom: 0;
		padding: 0;
		width: 100%;
		height: 52px;
		font-size: 16px;
		letter-spacing: 0;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
		line-height: 52px;
	}

	#navi li {
		width: 33.333%;
		height: 52px;

		background-color: var(--glass-navi-background-color);
		-webkit-backdrop-filter: saturate(180%) blur(24px);
		backdrop-filter: saturate(180%) blur(24px);
	}

	#navi a {
		text-shadow: 0 0 5px var(--glass-navi-background-color);
		line-height: 52px;
		border-bottom: none;
		margin: 0;
	}

	.currentPage {
		color: var(--glass-navi-text-focus-color) !important;
	}

	.currentPageIndicator {
		background-color: var(--glass-navi-text-focus-color) !important;
		margin: -13px auto 0;
	}

	#main {
		/* width: 100%; */
		padding: 2em 0 0;
	}

	.content {
		width: 94%;
		padding: 30px 3% 80px;
		border-radius: 0;
		margin-bottom: 0;
	}

	.projectShowcaseSummary {
		flex-wrap: wrap;
	}

	.projectShowcaseThumbnail {
		width: 100%;
		margin: 10px 10px 0 10px;
	}

	.projectShowcaseSummary div:nth-of-type(2) {
		width: 100%;
	}
}

@media screen and (max-width: 699px) {
	.companyLogo {
		flex-basis: 116px;
	}

	.uniLogo {
		flex-basis: 72px;
		margin: 8px 10px 8px 4px;
	}

	.languageLayout div:nth-of-type(2) {
		width: 208px;
	}

	.AboutSection {
		flex-direction: column;
	}

	.AboutSectionPhoto {
		flex-direction: row;
	}

	.photoContact {
		margin: 10px 10px 0;
	}

	.contactLinksWidth {
		width: auto;
	}

	.jobDescription {
		margin: 0 4%;
	}
}

@media screen and (max-width: 533px) {
	#intro a {
		margin: 200px auto 0;
	}

	.largeText {
		font-size: 16px;
	}

	.smallText {
		font-size: 12px;
	}

	.introduction {
		flex-direction: column;
		margin: 48px auto 32px;

	}

	.introductionText {
		width: 90%;
		margin: 0 auto;
	}

	.skillsChart {
		width: 98%;
	}

	.skillsChart td {
		padding: 2px;
	}

	.skillsChart td:first-child {
		min-width: 160px;
		text-align: right;
	}

	.content {
		font-size: 14px;
		padding: 20px 3% 80px;
	}

	#navi {
		font-size: 14px;
	}

	.currentPageIndicator {
		margin: -14px auto 0;
	}

	.pageHeader {
		font-size: 30px;
		margin: 4px 0 20px;
	}

	.sectionHeader {
		font-size: 24px;
	}

	.headerContent {
		font-size: 12px;
		line-height: 36px;
		height: 36px;
	}

	.coverTitle {
		font-size: 20px;
	}

	.svgDownload {
		width: 18px;
		height: 18px;
	}

	.prjDescription {
		padding: 0 2%;
	}

	.prjBulletPoint {
		padding: 0 4%;
	}

	.jobDescription {
		margin: 0 2%;
	}

	ul {
		padding-left: 4px;
	}

	.languageLayout div:nth-of-type(1) {
		width: 194px;
	}

	.languageLayout div:nth-of-type(2) {
		width: 160px;
	}

	.workTitle {
		font-size: 16px;
		line-height: 24px;
	}

	.localMap {
		height: 600px;
	}

	.companyLogo {
		flex-basis: 80px;
		height: 70px;
		line-height: 70px;
		margin: 6px 8px 0 0;
	}

	.uniLogo {
		flex-basis: 48px;
		min-width: 48px;
		line-height: 64px;
		height: 64px;
		margin: 10px 6px 0 0;
	}

	td {
		min-width: 60px;
	}

	.copyRight {
		margin: 12px auto 0;
	}

	#projectShowcaseBackBtn {
		top: -6px;
		left: 0;
	}

	.elasticPrjShowcase {
		width: 99%;
		/* change in 533 */
	}

	.mailIcon {
		width: 16px;
	}

	.linkedinIcon {
		width: 18px;
	}

	.wechatIcon {
		width: 21px;
	}

	.contactBtnLabel {
		font-size: 14px;
	}

	.contactBtnIntroductionPosition div {
		flex: 1;
		text-align: center;
	}

	.contactBtnIntroduction {
		margin: 1em auto 0;
	}
}