/* Color Default */
.color-primary {
	color: #2c4fff;
}
/* Reset Css */
*,
*:focus,
*:active {
    outline: none !important
}

a, button {
	cursor: pointer;
	transition: all 300ms;
	-moz-transition: all 300ms;
	-webkit-transition: all 300ms;
	-ms-transition: all 300ms;
}

ul,
ol {
	padding-left: 0;
	list-style: none;
	margin: 0;
}
/* Style Guide */
body {
	color: #1B1B1B;
	font-size: 14px;
	font-family: "Roboto";
	line-height: 1.5714;
	letter-spacing: 0.07em;
}

a {
	color: #1B1B1B;
}
a:hover,
a:focus {
	color: #2c4fff;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: "Oswald";
	letter-spacing: 0.055em;
	font-weight: 400;
}

h1, .h1 {
	font-size: 32px;
}

h2, .h2 {
	font-size: 34px;
}

h3, .h3 {
	font-size: 22px;
}

h4, .h4 {
	font-size: 20px;
}

h5, .h5 {
	font-size: 18px;
}

h6, .h6 {
	font-size: 16px;
}

.playfair-display {
	font-family: "Playfair Display";
	line-height: 1.46;
}

/* Button */
.btn {
	font-size: 14px;
	line-height: 2.2;
	padding: 4px 25px;
	border-radius: 4px;
	box-shadow: none !important;
	min-width: 140px;
}
.btn .icon {
	margin-right: 14px;
	vertical-align: middle;
}
.btn-full {
	width: 100%;
}
.btn-xl {
	padding: 7px 25px;
	font-size: 20px;
	min-width: 160px;
}
.btn-xs {
	padding: 1px 15px;
	font-size: 12px;
	min-width: 90px;
}
.btn-radius {
	border-radius: 40px;
}
.btn-primary {
	background-color: #304FFE;
	color: #fff;
	border: 1px solid #304FFE;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: #000000;
	color: #fff;
	border: 1px solid #000000;
}
.btn-secondary {
	background-color: #fff;
	color: #000000;
	border: 1px solid #000000;
}
.btn-secondary:focus,
.btn-secondary:hover {
	background-color: #304FFE;
	color: #fff;
	border: 1px solid #304FFE;
}
.btn-dark {
	background-color: #000000;
	color: #fff;
	border: 1px solid #000000;
}
.btn-dark:focus,
.btn-dark:hover {
	background-color: #1d2124;
	color: #fff;
	border: 1px solid #1d2124;
}
.btn-light {
	background-color: #fff;
	color: #000000;
	border: 1px solid #fff;
}
.btn-light:focus,
.btn-light:hover {
	background-color: #1d2124;
	color: #fff;
	border: 1px solid #1d2124;
}
.btn-default {
	background-color: #fff;
	color: #000000;
	border: 1px solid #1d2124;
}
.btn-default:focus,
.btn-default:hover {
	background-color: #1d2124;
	color: #fff;
	border: 1px solid #1d2124;
}
.btn-submit {
	background-color: #3ebf63;
	color: #fff;
	border: 1px solid #3ebf63;
}
.btn-submit:focus,
.btn-submit:hover {
	background-color: #35a656;
	color: #fff;
	border: 1px solid #35a656;
}
.link-demo {
	padding: 60px 0;
	text-align: center;
}
.link-demo h2 {
	font-weight: 300;
	margin-bottom: 40px;
}
.link-demo .col-6 {
	margin-bottom: 30px;
}
.link-demo .col-6 > a:first-child {
	display: block;
	box-shadow: 0px 1px 6px 0px rgba(51, 51, 51, 0.2);
}
.link-demo .col-6 > a:first-child:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	left: 15px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	transition: all 300ms;
	-moz-transition: all 300ms;
	-webkit-transition: all 300ms;
	-ms-transition: all 300ms;
}
.link-demo .col-6:hover > a:first-child:after {
	opacity: 0.6;
	visibility: visible;
}
.link-demo .col-6 .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	opacity: 0;
	visibility: hidden;
	z-index: 2;
}
.link-demo .col-6:hover .btn {
	opacity: 1;
	visibility: visible;
}
.demo-image,
.note-for-user {
	position: relative;
}
.demo-image > img,
.note-for-user > img {
	min-width: 100%;
}
.note-for-user .content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	font-size: 40px;
    line-height: 1.2;
}
.demo-image .content {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 40px;
    line-height: 1.2;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.demo-image .content .playfair-display,
.note-for-user .content .playfair-display {
	margin-bottom: 15px;
}
@media (max-width: 767.98px) {
	.demo-image .content {
		left: 0;
		right: 0;
		top: 50%;
		text-align: center;
		padding: 0 30px;
		font-size: 40px;
		line-height: 1.2;
		transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-o-transform: translateY(-50%);
	}
}
@media (max-width: 575.98px) {
	.note-for-user .content .playfair-display {
		font-size: 18px;
	}
	.demo-image .content {
		font-size: 18px;
	}
}
header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
header .logo {
	margin: 0;
	padding: 25px 0;
}
header .logo h1 {
	margin: 0;
}
header .link .h5 {
	font-size: 16px;
	display: block;
	padding: 0 20px;
	margin: 0;
}
header .link li:last-child {
	padding-left: 50px;
}
@media (max-width: 767px){
	header .logo h1 {
		font-size: 22px;
	}
	header {
		position: static;
	}
	header .container {
		max-width: unset;
	}
	header .link .h5 {
		font-size: 14px;
		padding: 0 0 0 15px;
	}
	header .link li:last-child {
		display: none;
	}
}