@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);

/*

	PROJECT: MakingCG css.v1.0
	Author: MakingCG s.r.o.

	[1] GLOBAL
	[2] TOP
	[3] NAVIGATION
	[4] FOOTER
	[5] COMPONENTS
		[5.1] MEDIA CONTAINER
		[5.2] PROGRESSBAR
		[5.3] POPUP
		[5.4] FORMS
		[5.5] THANK YOU
	[6] PAGES
		[6.1] HOMEPAGE
		[6.2] CONTACT US
		[6.3] GOODS FOR SALE
		[6.4] APPLE WATCH PROMOTION
		[6.5] PRODUCT PAGE
		
*/

/* -------------------------------------------------------------------------------- /
  [1] GLOBAL
/ -------------------------------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	outline: 0;
}
body, html {
	min-width: 320px;
	max-width: 100%;
	background: #fff;
}
h1 .bold {
	font-weight: 400;
}
h2 {
	font-size: 19px;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	max-width: 1000px;
	margin: 35px auto;
}
h5 {
	font-size: 26px;
	font-weight: 500;
	margin: 25px 0;
}
.btn, input[type="submit"] {
	background-color: #ff8a01;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	cursor: pointer;
	padding: 6px 15px;
	border-radius: 4px;
	outline: 0;
	border: 0;
	white-space: nowrap;
	display: inline-block;
	-webkit-transition: 0.2s all ease;
	transition: 0.2s all ease;
}
.button-container {
	text-align: center;
}
a {
	cursor: pointer;
}
#pages > div {
	display: none;
}
#pages div.active {
	display: block;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.media-container img {
   -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
::selection {
  background: #FF8A01;
  color: #fff;
}
::-moz-selection {
  background: #FF8A01;
  color: #fff;
}
.goods-filter, .menu, .pace, nav {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
ul li {
	display: block;
	padding: 10px 0;
	font-weight: 300;
}
.space {
	margin-top: 70px;
}
.in-link {
	text-decoration: underline;
}
.in-link:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}
/* -------------------------------------------------------------------------------- /
  [2] TOP
/ -------------------------------------------------------------------------------- */

.home .makingcg-logo {
	display: none;
}

header {
	padding: 35px 0;
	z-index: 100;
	position: relative;
}
.menu {
	display: inline-block;
	cursor: pointer;
}
.menu-icon {
	display: inline-block;
	vertical-align: middle;
	margin: -21px -15px -15px -15px;
	position: relative;
	padding: 15px;
}
.menu-icon span {
	width: 25px;
	height: 2px;
	background-color: #000;
	margin: 5px auto;
	display: block;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.menu-icon.active span:nth-child(2) {
	opacity: 0;
}
.menu-icon.active span:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(5px, 5px);
	transform: rotate(45deg) translate(5px, 5px);
}
.menu-icon.active span:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(5px, -5px);
	transform: rotate(-45deg) translate(5px, -5px);
}
.makingcg-logo {
	background: url("../../img/system/sprite.svg") -5px 0;
	width: 168px;
	height: 37px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 30px;
}

/* -------------------------------------------------------------------------------- /
  [3] NAVIGATION
/ -------------------------------------------------------------------------------- */

nav {
	width: 325px;
	background-color: rgba(255, 255, 255, 0.95);
	position: fixed;
	top: 0;
	left: -325px;
	padding-top: 107px;
	bottom: 0;
	z-index: 90;
	border-right: 1px solid #f2f2f2;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
	overflow: auto;
}
nav.active {
	left: 0;
}
.navigation li {
	padding: 0;
}
.navigation li a {
	padding: 20px 0 20px 35px;
	font-size: 20px;
	font-weight: 400;
	display: block;
}
.navigation li ul {
	display: none;
}
.navigation li ul li a {
	padding: 20px 0 20px 65px;
	font-size: 16px;
	font-weight: 300;
}
.navigation li a:hover {
	background-color: #F5F5F5;
}
.social-links {
	padding-left: 35px;
	position: absolute;
	bottom: 20px;
}
.social-links li {
	display: inline-block;
}
.i-facebook, .i-twitter {
	background-image: url("../../img/system/sprite.svg");
	width: 35px;
	height: 35px;
	display: block;
	margin-right: 5px;
	opacity: 0.3;
}
.i-facebook:hover, .i-twitter:hover {
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	opacity: 1;
}
.i-facebook {background-position: -46px -42px}
.i-twitter {background-position: -3px -42px}

/* -------------------------------------------------------------------------------- /
  [4] FOOTER
/ -------------------------------------------------------------------------------- */
.home footer, .contact-us footer, footer {
	text-align: center;
	position: absolute;
	bottom: 35px;
	left: 0;
	right: 0;
}
footer span {
	font-weight: 300;
	font-size: 16px;
	color: #969696;
}
.goods-for-sale footer,
.apple-watch-app-video-promotion-for-free footer {
	bottom: 15px;
	position: relative;
	bottom: 0;
	margin: 25px 0;
}

/* -------------------------------------------------------------------------------- /
  [5] COMPONENTS
  [5.1] MEDIA CONTAINER
/ -------------------------------------------------------------------------------- */

.media-container {
	text-align: center;
	margin-bottom: 60px;
}
.media-container img {
	max-width: 100%;
}

/* -------------------------------------------------------------------------------- /
	[5.2] PROGRESSBAR
/ -------------------------------------------------------------------------------- */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: #FF8A01;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/* -------------------------------------------------------------------------------- /
	[5.3] POPUP
/ -------------------------------------------------------------------------------- */

.popup {
	background-color: rgba(255, 255, 255, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	display: none;
}
.popup-content {
	position: absolute !important;
	top: 50%;
	margin: 0 auto !important;
	left: 0;
	right: 0;
	z-index: 20;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: 25px;
	width: 530px;
}
.popup-content {
	background: #FFF;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
	border-radius: 5px;
	padding: 35px;
	text-align: center;
}
.popup .popup-title {
	font-size: 26px;
	font-weight: 500;
}
.popup .popup-description {
	font-size: 16px;
	font-weight: 300;
	padding-top: 5px;
}
.popup .inform {
	font-size: 12px;
	color: #B3B3B3;
	font-weight: 300;
}
.subscribe-email form div, .subscribe-email form div {
	display: table-cell;
	vertical-align: middle;
}
.subscribe-email form div:first-child {
	width: 100%;
	padding-right: 8px;
}
.close-popup {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.close-popup span {
	width: 18px;
	height: 2px;
	background-color: #C5C5C5;
	display: inline-block;
	margin-right: 15px;
}
.close-popup span:first-child {
	-webkit-transform: rotate(45deg) translateX(16px);
}
.close-popup span:last-child {
	-webkit-transform: rotate(-45deg) translateX(16px);
}

/* -------------------------------------------------------------------------------- /
	[5.4] FORMS
/ -------------------------------------------------------------------------------- */

input {
	border: 0;
	padding: 5px 12px;
	width: 100%;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.04);
}
::-webkit-input-placeholder {
   font-size: 14px;
   color: #cccccc;
   font-weight: 300;
}
::-moz-input-placeholder {
   font-size: 14px;
   color: #cccccc;
   font-weight: 300;
}
::-ms-input-placeholder {
   font-size: 14px;
   color: #cccccc;
   font-weight: 300;
}
form {
	width: 100%;
	display: table;
	padding: 30px 0 10px 0;
}

/* -------------------------------------------------------------------------------- /
	[5.5] THANK YOU
/ -------------------------------------------------------------------------------- */

.become-fan {
	position: fixed;
	bottom: 35px;
	left: 35px;
	z-index: 19;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
	background: #fff;
	padding: 12px 22px;
	border-radius: 5px;
	display: none;
}
.become-fan span {
	display: block;
}
.become-fan .thanks {
	font-size: 18px;
	font-weight: 500;
}
.become-fan .become {
	font-size: 14px;
	font-weight: 400;
	color: #545454;
}
.fb, .tw {
	width: 45px;
	height: 45px;
	display: inline-block;
	background: url("../../img/system/social.png");
}
.fb {
	margin: 0 0 0 16px;
	background-position: -8px -7px;
}
.tw {
	margin: 0 0 0 10px;
	background-position: -65px -7px;
}
.become-fan > div {
	display: table-cell;
	vertical-align: middle;
}

/* -------------------------------------------------------------------------------- /
  [6] PAGES
  [6.1] HOMEPAGE
/ -------------------------------------------------------------------------------- */
.center-homepage .hide {
	display: none;
}
h1 {
	font-size: 56px;
	font-weight: 300;
	line-height: 1.05;
	text-align: center;
}
.homepage-link {
	font-size: 18px;
	font-weight: 300;
	text-align: center;
	margin-top: 30px;
}
.homepage-link a {
	color: #969696;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
}
.homepage-link a:hover {
	color: #000;
}
.homepage-link li {
	display: inline-block;
	padding: 3px 30px;
	border-left: 1px solid #E6E6E6;
}
.homepage-link li:first-child {
	border-left: 0;
}
.center-homepage, .center-contactus {
	position: absolute !important;
	top: 50%;
	margin: 0 auto !important;
	left: 0;
	right: 0;
	z-index: 20;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: 25px;
}
.header-logo {
	background: url("../../img/system/sprite.svg");
	background-size: 1060px;
	width: 540px;
	height: 110px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -30px;
}

/* -------------------------------------------------------------------------------- /
  [6.2] CONTACT US
/ -------------------------------------------------------------------------------- */
.email {
	text-align: center;
	margin: 55px 0 55px 0;
}
.email b {
	font-size: 20px;
	font-weight: 500;
}
.email span {
	font-size: 16px;
	font-weight: 300;
	margin-top: 7px;
	display: block;
}
.company-info {
	text-align: center;
	line-height: 1.4;
	opacity: 0.45;
	-webkit-transition: 0.4s all ease;
	transition: 0.4s all ease;
	margin-top: 100px;
}
.company-info:hover {
	opacity: 1;
}
.company-info p, .company-info b {
	font-size: 14px;
}
.company-info p {
	font-weight: 300;
}

/* -------------------------------------------------------------------------------- /
  [6.3] GOODS FOR SALE
/ -------------------------------------------------------------------------------- */

.goods-filter li {
	font-size: 18px;
	display: inline-block;
	cursor: pointer;
}
.goods-filter li span {
	padding: 15px 20px;
	display: inline-block;
}
.goods-filter li.active {
	color: #FF8A01;
	font-weight: 700;
}

/* Goods */

.goods li {
	width: 25%;
	display: inline-block;
	margin-top: 40px;
}
.goods li .safe-area {
	width: 255px;
	border: 1px solid #ededed;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	height: 320px;
	transition: 0.3s all ease;
	margin: 0 auto;
}
.goods-information {
	padding: 25px 15px 15px 15px;
	background-color: rgba(255, 255, 255, 0.95);
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: 0.4s all ease;
	transition: 0.4s all ease;
}
.goods li .safe-area:hover .goods-information {
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
}
.goods li .safe-area:hover .goods-information.larger {
	-webkit-transform: translateY(-135px);
	transform: translateY(-135px);
}
.goods li .safe-area:hover {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
}
.goods {
	text-align: center;
}
.goods h3 {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.4;
}
.goods h4 {
	font-size: 14px;
	font-weight: 300;
	color: #717171;
	margin-top: 15px;
	line-height: 1.3;
}
.goods .product-type {
	font-size: 12px;
	font-weight: 400;
	color: #A7A7A7;
	margin-top: 17px;
	display: block;
}
.goods .price {
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
	color: #FF8A01;
	display: block;
	font-size: 16px;
	text-transform: uppercase;
}
.goods .more-info {
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
	display: block;
	font-size: 16px;
	text-transform: uppercase;
}
.goods h3:hover, .goods .price:hover, .goods .more-info:hover {
	text-decoration: underline;
}
.goods-filter {
	text-align: center;
}
.safe-area img {
	max-width: 100%;
}
/* -------------------------------------------------------------------------------- /
  [6.4] APPLE WATCH PROMOTION
/ -------------------------------------------------------------------------------- */

.watch-promotion {
	margin: 0 auto;
	display: block;
}

/* -------------------------------------------------------------------------------- /
[6.5] PRODUCT PAGE
/ -------------------------------------------------------------------------------- */

.product-title {
	font-size: 32px;
	text-align: left;
	display: inline-block;
}
.template-label {
	color: #ADADAD;
	font-size: 14px;
	margin: 5px 0 0 0;
	font-weight: 400;
	text-align: left;
	display: block;
}
.page-return {
	background: url("../../img/system/sprite.svg") -4px -83px;
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	float: left;
	margin: 4px 10px 30px 0;
}
.buy-item {
	text-align: right;
}
.buy-for {
	margin-right: 10px;
	font-size: 16px;
	display: inline-block;
}
.container-fluid.video {
	margin-top: 30px;
	display: block;
	text-align: center;
}
iframe {
	display: inline-block;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.13);
}
.video-wrapper {
	margin: 40px 0;
}
.parallax-content {
	background-position: center;
	width: 100%;
}
.apple-watch-free {
	background-image: url("../../img/content/apple-watch-free.jpg");
}
.apple-pack {
	background-image: url("../../img/content/apple-pack.jpg");
}
.apple-watch-3d-pack {
	background-image: url("../../img/content/apple-watch-3d-pack.jpg");
}
.iphone-6 {
	background-image: url("../../img/content/iphone-6-flat-box.jpg");
}
.android-pack {
	background-image: url("../../img/content/android-pack.jpg");
}
.ipad-flat-box {
	background-image: url("../../img/content/ipad-flat-box.jpg");
}
.technical-info {
	font-size: 20px;
	margin-bottom: 20px;
	display: block;
}
.template-main-info {
	margin: 45px 0;
	display: block;
}

iframe .html5-video-player {
	background-color: #fff !important;
}

/* Toggle */

ul.toggle {
	margin: 45px 0;
}
ul.toggle li {
	padding: 18px 0;
	border-bottom: 1px solid #E2E2E2;
}
ul.toggle li:last-child {
	border-bottom: none;
}
ul.toggle li h3 {
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}
ul.toggle li p {
	display: none;
	font-size: 16px;
	line-height: 1.5;
	margin: 20px 0 0 30px;
}
ul.toggle li.active p {
	display: block;
}
.chevron-down {
	background: url("../../img/system/sprite.svg") -56px -90px;
	width: 15px;
	height: 15px;
	display: inline-block;
	vertical-align: middle;
	float: left;
	margin: 4px 15px 10px 0;
	-webkit-transform: rotate(-90deg);
	-webkit-transition: 0.2s all ease;
}
.active .chevron-down {
	-webkit-transform: rotate(0deg);
}