@font-face {
	font-family: Anakotmai;
	font-weight: 300;
	src: url(../font/anakotmai-light.eot);
	src: url(../font/anakotmai-light.woff) format("woff"),
	url(../font/anakotmai-light.otf) format("woff2");
}
@font-face {
	font-family: Anakotmai;
	font-weight: 500;
	src: url(../font/anakotmai-medium.eot);
	src: url(../font/anakotmai-medium.woff) format("woff"),
	url(../font/anakotmai-medium.otf) format("woff2");
}
@font-face {
	font-family: Anakotmai;
	font-weight: 700;
	src: url(../font/anakotmai-bold.eot);
	src: url(../font/anakotmai-bold.woff) format("woff"),
	url(../font/anakotmai-bold.otf) format("woff2");
}

/* General */
html, body {
	font: 300 16px/1.5 Anakotmai;
	color: #4a4a4a;
}
img {
	max-width: 100%;
}

/* Typo */
h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}
.text-primary {
	color: #2c476a !important;
}
.text-secondary {
	color: #f5a623 !important;
}

/* Form */
.form-control {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #f5a623;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	font-weight: 300;
	position: relative;
	z-index: 1;
}
label {
	font-weight: 300;
}
.form-group {
	position: relative;
}
.placeholder {
	cursor: text;
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	line-height: 42px;
	color: #2c476a;
	font-weight: 300;
}
.placeholder span {
	color: #f5a623;
	font-weight: 300;
}
.form-control:invalid + .placeholder {
	display: inline-block;
}
.form-control:valid + .placeholder {
	display: none;
}
.custom-control-input:checked~.custom-control-label::before {
	border-color: #f5a623;
	background-color: #f5a623;
}
.custom-control-label::before {
	border-color: #f5a623;
}
.custom-radio {
	margin-bottom: 5px;
}
.custom-control-label {
	cursor: pointer;
}
label.error {
	color: red;
	margin: 0;
}
#file-name {
	display: block;
	font-weight: 400;
}

/* Navbar */
.navbar {
	padding: .3rem 1rem;
}
.nav-link {
	font-weight: 500;
	font-size: 18px;
	position: relative;
}
.nav-link:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	height: 5px;
	z-index: 10;
	-webkit-box-shadow: 0 2px 5px -1px rgba(245, 166, 35, 0.9);
	-moz-box-shadow: 0 2px 5px -1px rgba(245, 166, 35, 0.9);
	box-shadow: 0 2px 5px -1px rgba(245, 166, 35, 0.9);
	background-color: #f5a623;
	bottom: -8px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .25s all;
	-moz-transition: .25s all;
	transition: .25s all;
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	transform: translateY(15px);
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: #2c476a;
}
.navbar-light .navbar-nav .active>.nav-link:after,
.navbar-light .navbar-nav .nav-link.active:after,
.navbar-light .navbar-nav .nav-link.show:after,
.navbar-light .navbar-nav .show>.nav-link:after,
.navbar-light .navbar-nav .nav-link:focus:after,
.navbar-light .navbar-nav .nav-link:hover:after {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}
.navbar-light {
	-webkit-box-shadow: 0 3px 9px -1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 9px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 9px -1px rgba(0, 0, 0, 0.2);
	background-color: #ffffff !important;
}

/* Button */
a, .btn {
	cursor: pointer;
}
.btn {
	font-size: 15px;
	font-weight: 500;
	border-radius: 30px;
	padding: 6px 20px;
}
.btn-secondary {
	border: none;
	background-image: -webkit-linear-gradient(245deg, #fad961, #f76b1c);
	background-image: -moz-linear-gradient(245deg, #fad961, #f76b1c);
	background-image: linear-gradient(245deg, #fad961, #f76b1c);
}
.btn-outline-primary {
	border-color: #4a90e2;
	color: #4a4a4a;
}
.btn-outline-secondary {
	border-color: #f5a623;
	color: #4a4a4a;
	font-weight: 300;
}


/* Modal */
.modal-header {
	-webkit-box-shadow: 0 20px 40px -20px #2c476a;
	-moz-box-shadow: 0 20px 40px -20px #2c476a;
	box-shadow: 0 20px 40px -20px #2c476a;
	background-color: #2c476a;
	color: #fff;
	text-align: center;
	position: relative;
	border: none;
	border-radius: 0;
	padding: 1.5rem 1rem;
}
.modal-content {
	border: none;
	border-radius: 0;
}
.modal-title {
	width: 100%;
}
.modal-header .close {
	position: absolute;
	right: -14px;
	top: -14px;
	background-color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	padding: 0;
	display: block;
	margin: 0;
	opacity: 1;
	-webkit-box-shadow: 0 12px 21px -7px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 12px 21px -7px rgba(0, 0, 0, 0.5);
	box-shadow: 0 12px 21px -7px rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.modal-body {
	border: none;
	padding: 2rem;
}
.service-item {
	margin-bottom: 20px;
}
.service-item:after {
	content: "";
	display: block;
	clear: both;
}
.service-item .service-image {
	float: left;
	width: 240px;
}
.service-item .service-text {
	margin-left: 260px;
}
.service-text h4 {
	color: #2c476a;
	margin: 0;
}
.service-text span {
	display: block;
	margin: 0 0 10px;
	color: #9b9b9b;
}
#workModal label {
	margin: 0;
}
#workModal p {
	font-weight: 400;
}
#workModal .btn {
	display: block;
	padding: 8px 20px;
	font-size: 16px;
}
#workModal .modal-header img {
	width: 100%;
}
.gallery {
	font-size: 0;
	margin: 25px 0;
}
.gallery div {
	display: inline-block;
	width: calc(16.666667% - 5px);
	-webkit-box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.15);
	margin-right: 6px;
	background-color: #fff;
	vertical-align: top;
}
.gallery div > a {
	height: 60px;
}
.gallery a > img {
	width: 100%;
	height: 100%;
}
.gallery > div:nth-child(6n) {
	margin-right: 0;
}
#notificationModal .modal-header {
	background-color: transparent;
	padding: 0;
}
#notificationModal img {
	display: block;
	margin: 0 auto 10px;
}
#notificationModal p {
	margin: 0;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}


/* Section */
section {
	position: relative;
}
section.banner {
	z-index: 2;
}
section.banner .logo {
	position: absolute;
	width: 160px;
	left: 50%;
	margin-left: -80px;
	top: 50%;
	margin-top: -150px;
}
.banner-mobile {
	display: none;
}
section.service {
	z-index: 3;
	background-image: url(../img/background/bg-service.png);
	background-repeat: no-repeat;
	background-size: auto auto;
	background-position: center bottom 142px;
	padding-bottom: 60px;
}
.service-list {
	padding: 0;
	list-style: none;
	margin: -80px 0 0;
}
#timeline:after,
#work-timeline:after,
.work-grid:after,
section:after,
.service-list:after {
	clear: both;
	content: "";
	display: block;
}
.service-list > li {
	float: left;
	width: 25%;
	text-align: center;
}
.service-list > li > img {
	width: 250px;
}
.service-list > li > h2 {
	font-size: 24px;
	color: #2c476a;
	margin: 0 0 5px;
}
.service-list > li > p {
	font-size: 16px;
	font-weight: 500;
	color: #9b9b9b;
	margin: 0 0 10px;
}
.service-list > li > .btn {
	padding: 4px 12px;
}
section.about {
	padding: 60px 0;
	background-image: url(../img/background/bg-section-about.svg), url(../img/background/bg-section-other.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top center, bottom center;
}
.about-hero {
	width: 500px;
	max-width: 100%;
	margin-bottom: 150px;
}
.about-hero h2 {
	font-size: 36px;
	color: #2c476a;
}
.about-hero p {
	font-size: 18px;
    line-height: 1.8;
}
.about-hero .quote {
	position: relative;
	font-size: 24px;
	color: #f5a623;
	padding: 0 50px;
	line-height: 1.8;
	margin: 25px auto;
	text-align: center;
	width: 500px;
	max-width: 100%;
}
.about-hero .quote:before {
	content: "";
	display: block;
	width: 40px;
	height: 35px;
	background-image: url(../img/icon/ico-quote-left.svg);
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.about-hero .quote:after {
	content: "";
	display: block;
	width: 40px;
	height: 35px;
	background-image: url(../img/icon/ico-quote-right.svg);
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	bottom: 0;
}
.section-header {
	text-align: center;
	color: #2c476a;
	font-size: 36px;
}
.work-card {
	position: relative;
}
.work-card img {
	display: block;
	width: 100%;
}
.work-card .work-header {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 0;
	color: #fff;
}
.work-card .work-header h3 {
	margin: 0 0 5px;
}
.work-card .work-header p {
	margin: 0;
}
.work-card .shadow-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	left: 0;
	top: 0;
}
.work-card .shadow {
	position: absolute;
	left: 0;
	bottom: -100%;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
	background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
	-webkit-transition: .25s all;
	-moz-transition: .25s all;
	transition: .25s all;
}
.work-card:hover .shadow {
	bottom: 0;
}
.work-card .shadow .btn {
	position: absolute;
	width: 125px;
	left: 50%;
	top: 50%;
	margin-left: -62.5px;
	margin-top: -18px;
}
.other-work .section-header {
	margin-bottom: 60px;
}
section.hire-step {
	padding: 60px 0;
	background-image: -webkit-linear-gradient(100deg, #414141, #000000);
	background-image: -moz-linear-gradient(100deg, #414141, #000000);
	background-image: linear-gradient(100deg, #414141, #000000);
	color: #fff;
}
section.hire-step .section-header {
	margin-bottom: 50px;
	color: #fff;
}
section.hire-step ul {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
section.hire-step ul:after {
	content: "";
	display: block;
	position: absolute;
	height: 3px;
	width: 900px;
	background-color: #808080;
	top: 50px;
	left: 100px;
}
section.hire-step ul > li {
	float: left;
	width: 25%;
	text-align: center;
	padding: 0 15px;
	position: relative;
	z-index: 2;
}
section.hire-step ul > li img {
	width: 120px;
}
section.hire-step ul > li h4 {
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
}
section.work-step {
	padding: 60px 0;
	background-image: url(../img/background/bg-section-step.svg);
	background-size: cover;
	background-position: center center;
}
.customer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
.customer-list > li {
	display: inline;
	width: 16.666666%;
}
section.contact {
	padding: 50px 0;
	background-image: url(../img/background/bg-section-contact.jpg);
	background-size: cover;
	background-position: center center;
	color: #fff;
}
section.contact .section-header {
	margin-bottom: 40px;
	color: #fff;
}
section.contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
section.contact ul > li {
	display: block;
	margin-bottom: 20px;
	font-size: 20px;
}
section.contact ul > li .icon-holder {
	width: 40px;
	display: inline-block;
	margin-right: 15px;
	text-align: center;
}
section.contact ul > li img {
	width: 28px;
}
section.contact ul > li a {
	color: #fff;
}
.contact-box {
	background-color: #fff;
	padding: 30px 40px;
	-webkit-box-shadow: 0 12px 21px -7px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 12px 21px -7px rgba(0, 0, 0, 0.5);
	box-shadow: 0 12px 21px -7px rgba(0, 0, 0, 0.5);
	color: #2c476a;
}
.contact-box button[type=submit] {
	font-size: 18px;
	padding: 8px 0;
}


/* Timeline */
#timeline {
	position: relative;
}
#timeline .timeline-line {
	z-index: 1;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	border-left: 1px solid #2c476a;
}
#timeline .timeline-line:before,
#timeline .timeline-line:after {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	position: absolute;
	left: -6px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #f5a623;
}
#timeline .timeline-line:after {
	bottom: 0;
}
#timeline .work-card {
	display: block;
	position: relative;
	margin: 0 auto 50px;
	width: calc(50% - 110px);
}
#timeline .work-card .work-header {
	padding: 30px 0;
}
#timeline .work-card:before {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	position: absolute;
	z-index: 2;
	right: -116px;
	top: 50%;
	margin-top: -5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #f5a623;
}
#timeline .work-card:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	right: -110px;
	top: 50%;
	width: 110px;
	border-top: 1px dashed #f5a623;
}
#timeline .work-card:nth-child(even):before {
	left: -116px;
}
#timeline .work-card:nth-child(even):after {
	left: -110px;
}
#timeline .work-card:nth-child(2) {
	margin-top: 215px;
}
#timeline .work-card:nth-child(odd) {
	float: left;
}
#timeline .work-card:nth-child(even) {
	float: right;
}

/* Timeline */
#work-timeline {
	position: relative;
	width: 720px;
	margin: 0 auto;
}
#work-timeline .timeline-line {
	z-index: 1;
	content: "";
	position: absolute;
	top: 120px;
	bottom: 180px;
	left: 50%;
	border-left: 1px solid #4a4a4a;
}
#work-timeline .step-card {
	display: block;
	position: relative;
	margin: 0 auto 50px;
	width: 250px;
	text-align: center;
}
#work-timeline .step-card img {
	position: relative;
	z-index: 3;
	width: 220px;
}
#work-timeline .step-card .step-order {
	display: block;
	width: 36px;
	height: 36px;
	position: absolute;
	z-index: 3;
	right: -128px;
	top: 50%;
	margin-top: -18px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #f5a623;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
	-webkit-box-shadow: 0 2px 6px 0 #f5a623;
	-moz-box-shadow: 0 2px 6px 0 #f5a623;
	box-shadow: 0 2px 6px 0 #f5a623;
}
#work-timeline .step-card h4 {
	font-size: 20px;
	margin: 0;
}
#work-timeline .step-card:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	right: -110px;
	top: 50%;
	width: 160px;
	border-top: 1px dashed #f5a623;
}
#work-timeline .step-card:nth-child(even) .step-order {
	left: -128px;
}
#work-timeline .step-card:nth-child(even):after {
	left: -110px;
}
#work-timeline .step-card:nth-child(2) {
	margin-top: 140px;
}
#work-timeline .step-card:nth-child(odd) {
	float: left;
}
#work-timeline .step-card:nth-child(even) {
	float: right;
}

/* Work Grid */
.work-grid .work-card {
	float: left;
	width: calc(50% - 10px);
	margin-right: 20px;
	margin-bottom: 20px;
}
.work-grid .grid-group {
	float: left;
	width: calc(50% - 10px);
}
.work-grid .grid-left {
	margin-right: 20px;
}
.work-grid .grid-group .work-card:nth-child(2n) {
	margin-right: 0;
}
.work-grid .grid-left {

}
.work-grid .grid-right {
	margin-top: 90px;
}
.work-grid .work-card .work-header {
	padding: 10px 0;
}
.work-grid .work-card .work-header h3 {
	font-size: 18px;
	margin: 0 0 0;
}
.work-grid .work-card .work-header p {
	font-size: 12px;
	margin: 0;
}


/* Footer */
footer {
	background-color: #000;
	padding: 15px 0;
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-weight: 300;
}

.grecaptcha-badge {
	visibility: hidden;
}


/* Resposive */
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 0;
		padding-left: 0;
		margin-left: 0.75rem;
		margin-right: 0.75rem;
	}
}
@media (max-width: 1199px) {
	section.hire-step ul:after {
		width: 700px;
	}
	#timeline .work-card .work-header {
		padding: 10px 0;
	}
	section.banner .logo {
		width: 120px;
		margin-left: -60px;
		margin-top: -120px;
	}
}
@media (max-width: 991px) {
	.navbar-toggler {
		width: 44px;
		height: 44px;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
		padding-left: 0;
		padding-right: 0;
	}
	.navbar-toggler .icon-bar {
		background-color: #fff;
		margin-left: auto;
		margin-right: auto;
	}
	.navbar-light .navbar-toggler {
		background-color: #f5a623;
	}
	.navbar-toggler .icon-bar {
		display: block;
		width: 22px;
		height: 2px;
		border-radius: 1px;
		-webkit-transition: all .25s;
		-moz-transition: all .25s;
		transition: all .25s;
	}
	.navbar-toggler .icon-bar+.icon-bar {
		margin-top: 4px;
	}
	.navbar-toggler:not(.collapsed) .first-bar {
		transform: translateY(6px) rotate(45deg);
	}
	.navbar-toggler:not(.collapsed) .second-bar {
		visibility: hidden;
		opacity: 0;
	}
	.navbar-toggler:not(.collapsed) .third-bar {
		transform: translateY(-6px) rotate(-45deg);
	}
	.navbar-toggler .first-bar {
		transform: translateY(0px) rotate(0deg);
	}
	.navbar-toggler .second-bar {
		visibility: visible;
		opacity: 1;
	}
	.navbar-toggler .third-bar {
		transform: translateY(0px) rotate(0deg);
	}
	section.hire-step ul:after {
		width: 500px;
	}
	#timeline .work-card {
		width: calc(50% - 50px);
	}
	#timeline .work-card:before {
		right: -56px;
	}
	#timeline .work-card:after {
		width: 55px;
		right: -55px;
	}
	#timeline .work-card:nth-child(even):before {
		left: -56px;
	}
	#timeline .work-card:nth-child(even):after {
		left: -54px;
	}
	section.contact ul {
		margin-bottom: 40px;
	}
	.work-grid .grid-group {
		width: calc(50% - 10px);
		margin: 0;
	}
	.work-grid .grid-left {
		margin-right: 20px;
	}
	.work-grid .work-card {
		width: 100%;
		margin: 0 0 20px;
	}
	.nav-link:after {
		bottom: 0;
		width: 60px;
	}
	.service-item .service-image {
		float: none;
		display: block;
		margin: 0 auto 10px;
	}
	.service-item .service-text {
		margin-left: 0;
		margin-bottom: 30px;
	}
	.service-item .service-text h4,
	.service-item .service-text span {
		text-align: center;
	}
	section.about {
		background-size: 1200px auto;
	}
	#timeline .work-card:nth-child(2) {
		margin-top: 120px;
	}
	.other-work .section-header {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.section-header {
		margin-bottom: 30px;
	}
	.service-list > li {
		width: 100%;
		margin-bottom: 50px;
	}
	#timeline .work-card {
		width: 100%;
		margin-bottom: 20px;
	}
	#timeline .work-card:nth-child(2) {
		margin-top: 0;
	}
	#timeline .work-card:before,
	#timeline .work-card:after,
	#timeline .timeline-line {
		display: none;
	}
	.work-grid .grid-group {
		width: 100%;
		margin: 0;
	}
	.work-grid .work-card {
		width: 100%;
		margin: 0 0 20px;
	}
	section.hire-step ul > li {
		width: 100%;
		margin-bottom: 20px;
	}
	section.hire-step ul:after {
		display: none;
	}
	#work-timeline {
		width: 100%;
		margin-bottom: 30px;
	}
	#work-timeline .step-card,
	#work-timeline .step-card:nth-child(odd),
	#work-timeline .step-card:nth-child(even) {
		float: none;
		display: block;
		margin: 0 auto 30px;
	}
	#work-timeline .step-card:nth-child(2) {
		margin-top: 0;
	}
	#work-timeline .step-card:nth-child(even):after,
	#work-timeline .step-card:after {
		left: -30px;
	}
	#work-timeline .step-card:nth-child(even) .step-order,
	#work-timeline .step-card .step-order {
		left: -41px;
	}
	#work-timeline .timeline-line {
		left: 25px;
		bottom: 120px;
		border-color: #aaa;
	}
	.customer-list > li {
		display: inline-block;
		width: 50%;
	}
	.contact-box {
		padding: 25px;
	}
	section.service {
		background-size: 100% auto;
		background-position: center top 80px;
		padding-bottom: 0;
	}
	.service-list > li > h2 {
		margin-top: -20px;
	}
	section.about {
		padding: 40px 0;
	}
	.about-hero {
		margin-bottom: 50px;
	}
	.about-hero .quote {
		padding: 0 35px;
	}
	.about-hero .quote:before,
	.about-hero .quote:after {
		width: 30px;
		height: 26px;
	}
	.other-work {
		padding: 30px 0;
	}
	.modal-body {
		padding: 1rem;
	}
	.banner-pc {
		display: none;
	}
	.banner-mobile {
		display: block;
	}
}