@font-face {
	font-family: 'Regular';
	src:	url('fonts/UnityRegular.eot');
	src:	url('fonts/UnityRegular.eot?#iefix') format('embedded-opentype'),
			url('fonts/UnityRegular.woff2') format('woff2'),
			url('fonts/UnityRegular.woff') format('woff'),
			url('fonts/UnityRegular.ttf') format('truetype');
}
@font-face {
	font-family: 'Bold';
	src:	url('fonts/UnityBold.eot');
	src:	url('fonts/UnityBold.eot?#iefix') format('embedded-opentype'),
			url('fonts/UnityBold.woff2') format('woff2'),
			url('fonts/UnityBold.woff') format('woff'),
			url('fonts/UnityBold.ttf') format('truetype');
}

html {
	background-color: #fff;
	background-image: linear-gradient(to top, #ccc, #fff 30%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #000;
	height: 100%;
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

*:focus {
	outline: none!important;
}


body {
	font-family: 'Regular';
	font-size: 18px;
	line-height: 1.4;	
	margin: 150px auto 0 auto;
	overflow-y: auto;
}

#logo {
	background: #000;
	position: fixed;
	width: 100%;
	height: 80px;
	top: 0;
	left: 0;
	border-bottom: 9px solid #ff0000;
	box-shadow: 0 9px 0 0 #000;
	z-index: 1;
} 

#logo img {
	display: block;
	position: absolute;
	bottom: -14px;
	left: -150px;
	width: 150px;
	transition: 0.75s;
}

#under-construction img {
	width: 300px;
	max-width: 90%;
}

body.unity #logo img {
	left: calc(50% - 75px);
}

main {
	opacity: 0;
	width: calc(100% - 60px);
	max-width: 1200px;	
	margin: 0 auto;
	transform: translateY(100px);
	transition: 0.75s;
}

body.unity main {
	transform: translateY(0);
	opacity: 1;
}

p {
	padding: 20px 0;
}

#logo {
	padding: 0;
}

h1, h2, b {
	font-family: 'Bold';
}

h1 {
	margin: 40px 0;
	font-size: 48px;
	line-height: 1.2;
    letter-spacing: -0.5px;	
}
.lead {
	margin: 40px auto;
	font-size: 24px;
	padding: 20px;
	background: rgba(0,0,0,0.08);
	max-width: 900px;
}

h2 {
	margin: 40px 0;
	font-size: 35px;
	border-bottom: 5px solid #ff0000;
	min-height: 70px;
}

h3 {
	margin: 10px auto 40px auto;
	font-size: 20px;
	padding: 20px;
	background: rgba(0,0,0,0.16);
	border-radius: 0 0 60px 60px
}

h3 b {
	font-size: 22px;
}



.button {
	text-decoration: none;
	font-family: 'Bold';
	font-size: 24px;
	padding: 15px 20px;
	background: #ff0000;
	color: #fff;
	border-radius: 30px;
	cursor: pointer;
	box-shadow: 0 0 0 0 #ff0000;
	transition: background 0.1s;
}
.button:hover {
	transition: background 0.1s, box-shadow 0.5s;
	background: #e30000;
	box-shadow: 0 0 0 15px transparent;
}
.button.contact {
	background: #555;
	box-shadow: 0 0 0 0 #555;
	font-size: 18px;
    padding: 10px 20px;
	margin-top: 15px;
}
.button.contact:hover {
	background: #333;
	box-shadow: 0 0 0 15px transparent;
}

.button:active,
.button.contact:active {
	background: #000;
}

.cols {
	margin: 50px 0 0 0;
	display: flow-root;
}
.cols .col {
    display: table;
	float: left;
    vertical-align: top;
    padding: 30px;
	position: relative;
}


.cols .col-3 {
	width: calc(100% / 3 - 60px);
}
.cols .col-4 {
	width: calc(100% / 4 - 60px);
}

@media (max-width: 900px){
	
	.cols .col-3 {
		width: calc(100% - 60px);
	}
	.cols .col-4 {
		width: calc(100% / 2 - 60px);
	}
}
@media (max-width: 500px){
	
	.cols .col-4 {
		width: calc(100% - 60px);
	}
}
.cols .col img {
	transition: transform 0.2s;
	max-width: 100%;
}
.cols .col:hover img {
	transform: scale(1.1);
}

.cols .col img.icon {
	height: 150px;
	max-width: 90%;
}


.cols .col img.icon.big {
	height: 200px;
}
.cols .col .price {
    position: absolute;
    width: 110px;
    left: calc(50% - 50px);
    text-align: center;
    bottom: 30px;
    font-size: 24px;
    font-family: 'Bold';
    padding: 10px 0;
    background: #ff0000;
    color: #fff;
    border-radius: 30px;
}

hr {
	border: none;
    margin: 30px 0;
    border-bottom: 5px solid rgba(0,0,0,0.08);
}


#order-table {
	width: 100%;
}

#order-table th,
#order-table td {
	text-align: center;
	padding: 10px 15px;
	border-bottom: 1px solid rgba(0,0,0,0.16);
}
#order-table th:first-child,
#order-table tbody td:first-child {
	text-align: left;
}
#order-table tfoot td:first-child {
	text-align: right;
}

#order-table thead th {
	font-family: 'Bold';
	background: rgba(0,0,0,0.16);
	font-size: 15px;
}
#order-table td {
	transition: 0.1s;
}
#order-table td:last-child {
	font-family: 'Bold';
}
#order-table td input,
#popup-order input,
#popup-order textarea {
	width: calc(100% - 30px);
    display: block;
    padding: 5px 15px;
    border: 1px solid rgba(0,0,0,0.24);
    outline: none;
	font-size: 18px;
	font-family: 'Bold';
	text-align: center;
	transition: 0.1s;
}
#order-table td input:hover,
#popup-order input:hover,
#popup-order textarea:hover {
	border-color: rgba(0,0,0,0.5);
}
#order-table td input:focus,
#popup-order input:focus,
#popup-order textarea:focus {
	border-color: #000;
}

#order-table tbody tr:hover td {
	background: rgba(0,0,0,0.08);
}
#order-table tbody tr:hover td:hover {
	background: rgba(0,0,0,0.12);
}

#order-table tfoot td {
	font-family: 'Bold';
	color: #fff;
	background: #000;
}

footer {
	background: #000;
	color: #fff;
	padding: 30px;
	box-shadow: 0 100px 0 0 #000;
}
footer p {
	padding: 5px 0;
}
footer a {
	color: #ff0000;
	font-family: 'Bold';
	text-decoration: none;
	border-bottom: 1px solid;
	transition: 0.1s;
}
footer a:hover {
	color: #e30000;
	border-color: #e30000;
}
footer a:active {
	transition: 0.05s;
	color: #fff;
	border-color: #fff;
}



#popup-order {
	position: fixed;
    background: #ddd;
    padding: 30px;
    top: 97px;
    left: 0;
    width: calc(100% - 60px);
    height: calc(100% - 60px - 97px);
    overflow-y: auto;
}

#popup-order-close {
	padding: 0;
    font-size: 40px;
    font-family: 'Regular';
    position: fixed;
    top: 110px;
    right: 40px;
    line-height: 46px;
    width: 50px;
    height: 50px;
    text-align: center;	
}

#popup-order p {
	max-width: 900px;
    margin: 0 auto;	
	padding: 10px 0;
}

#popup-order input,
#popup-order textarea {
	width: 100%;
	max-width: 870px;
	margin: 10px auto;
	padding: 10px 15px;
	text-align: left;
}

#popup-order textarea {
	resize: vertical;
	min-height: 100px;
}

#popup-order input.alert {
	box-shadow: 0 3px 0 0 #ff0000;
    color: #ff0000;
}

#popup-order span.alert {
	color: #e30000;
}

#submit-order-list table {
	margin: 10px auto;
	background: #fff;
	width: 100%;
	border: 1px solid rgba(0,0,0,0.24);
	max-width: 900px;
}
#submit-order-list table th {
	background: #eee;
	font-family: 'Bold';
	font-size: 16px;
}
#submit-order-list table th,
#submit-order-list table td {
	padding: 8px 15px;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.24);
	text-align: center;
}

#submit-order-list table th:first-child,
#submit-order-list table tbody td:first-child {
	text-align: left;
}

#submit-order-list table tfoot td {
	background: #eee;
	border-bottom: none;
}
#submit-order-list table tfoot td {
	font-family: 'Bold';
}
#submit-order-list table tfoot td.right {
	text-align: right;
}

.send {

    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    background: #009515;
    color: #fff;
}
.send#send-error {
	position: fixed;
    top: 97px;
	background: #e30000;
	border-bottom: 10px solid #fff;	
}

.send#send-ok {
	border-radius: 0 0 30px 30px;
	padding: 20px 30px;
	margin: 0 auto 30px auto;
	width: max-content;
}

img#pack {
	max-width: calc(100% + 100px);
    margin-left: -50px;
    margin-bottom: -86px;
    z-index: 1;
    position: relative;
}



.dark1 {
	background: rgba(0,0,0,0.08);
}
.dark2 {
	background: rgba(0,0,0,0.16);
}
.dark3 {
	background: rgba(0,0,0,0.24);
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.uppercase {
	text-transform: uppercase;
}
.block {
	display: block;
}
.table {
	display: table;
}
._center {
	margin-left: auto;
	margin-right: auto;
}
.clear {
	clear: both;
}
.small {
	font-size: smaller;
}