body {
	font-family: 'Sarabun', sans-serif
}

.transition {
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.text-shadow {
	text-shadow: 3px 3px 3px rgba(0, 0, 0, .5)
}

.text-shadow-sm {
	text-shadow: 2px 2px 2px rgba(0, 0, 0, .5)
}

.zoom-in,
.zoom-in-rotate,
.zoom-out,
.zoom-out-rotate {
	overflow: hidden
}

.zoom-in img {
	transform: scale(1);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-in:hover img {
	transform: scale(1.15);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-out img {
	transform: scale(1.15);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-out:hover img {
	transform: scale(1);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.rotate:hover img {
	transform: rotate(-3deg);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-in-rotate img {
	transform: scale(1) rotate(0deg);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-in-rotate:hover img {
	transform: scale(1.15) rotate(-3deg);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-out-rotate img {
	transform: scale(1.25) rotate(0deg);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.zoom-out-rotate:hover img {
	transform: scale(1.1) rotate(-3deg);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.contrast img {
	filter: contrast(100%);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.contrast:hover img {
	filter: contrast(130%);
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.shadow-effect {
	box-shadow: 4px 4px 10px rgba(0, 0, 0, .15);
	transform: translate(0, 0);
	z-index: 1;
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.shadow-effect:hover {
	box-shadow: 10px 10px 15px rgba(0, 0, 0, .25);
	transform: translate(-3px, -3px);
	z-index: 2;
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1);
	border-color: transparent !important
}

a {
	-webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
	transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

a:hover {
	text-decoration: none
}

.navbar-brand {
	font-family: 'Sarabun', sans-serif;
	font-size: 2rem;
	font-style: italic;
	font-weight: bold
}

.quote:before {
	content: '\201f';
	position: absolute;
	top: 0;
	left: 8px;
	font-size: 7rem;
	font-family: sans-serif;
	color: rgba(0, 0, 0, .15)
}

.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none
}

.navbar .navbar-toggler-icon {
	width: 24px;
	height: 18px;
	background-image: none;
	position: relative;
	border-bottom: 2px solid #fff;
	transition: all 300ms linear
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
	width: 24px;
	position: absolute;
	height: 2px;
	background-color: #fff;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
	transition: all 300ms linear
}

.navbar .navbar-toggler-icon:after {
	top: 8px
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg)
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg)
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent
}

.nav-link {
	position: relative;
	padding: 5px 10px !important;
	display: inline-block;
	color: #ddd !important
}

.nav-link:hover {
	color: #fff !important
}

.nav-item {
	position: relative;
	transition: all 200ms linear
}

.nav-item .dropdown-menu {
	transform: translate3d(0, 10px, 0);
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	display: block;
	padding: 0;
	margin: 0;
	transition: all 200ms linear
}

.nav-item.show .dropdown-menu {
	opacity: 1;
	visibility: visible;
	max-height: 999px;
	transform: translate3d(0, 0, 0)
}

.dropdown-menu {
	padding: 10px !important;
	margin: 0;
	border: none;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, .15);
	transition: all 200ms linear
}

.dropdown-toggle::after {
	display: none
}

.dropdown-item {
	padding: 3px 15px;
	transition: all 200ms linear
}

.dropdown-item:hover,
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(0, 0, 0, .6)
}

.ityped-cursor {
	opacity: 1;
	-webkit-animation: blink .3s infinite;
	-moz-animation: blink .3s infinite;
	animation: blink .3s infinite;
	animation-direction: alternate
}

@keyframes blink {
	100% {
		opacity: 0
	}
}

@-webkit-keyframes blink {
	100% {
		opacity: 0
	}
}

@-moz-keyframes blink {
	100% {
		opacity: 0
	}
}

.skill {
	height: 160px
}

.skill>svg {
	height: 100%;
	display: block
}

.skill .progressbar-text {
	font-size: 1.5rem
}

.notfound{
	font-size: 10vw;
	font-weight: bold;
}

@media (max-width:991px) {
	h1 {
		font-size: 38px
	}

	.nav-item:after {
		display: none
	}

	.nav-item::before {
		position: absolute;
		display: block;
		top: 17px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #fff
	}

	.dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 12px;
		left: 1px;
		width: 1px;
		height: 11px;
		content: "";
		border: none;
		background-color: #fff;
		transition: all 200ms linear
	}

	.dropdown-toggle[aria-expanded="true"]::after {
		transform: rotate(90deg);
		opacity: 0
	}

	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear
	}

	.dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
		margin-top: 0 !important;
		margin-bottom: 10px !important
	}

	.nav-link {
		padding-left: 1.5rem !important
	}

	.dropdown-item {
		color: #999;
		padding-left: 2rem;
		transition: all 200ms linear
	}

	.dropdown-item:hover,
	.dropdown-item:focus {
		color: #fff;
		background-color: rgba(0, 0, 0, 0)
	}
}