/* Browse Happy prompt */
.browsehappy {
    margin:0;
    background: #e60003;
    color: #FFF;
    padding: 40px 0;
	text-align:center;
}
.browsehappy a {
	color:#000;
}
.browsehappy a:hover {
	color:#FBA3A4;
}

:root {
	--main-color: #393738;
	--color-red: #cd1835;
	--color-darkred: #800216;
	--color-lightred: #f19caa;
	--color-black: #000;
	--color-darkgray: #393738;
	--color-topico: #57585a;
	--color-lightgray: #e1e1e1;
	--color-lightyellow: #f3ef95;
}

/* GENERAL STYLING */
html {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
	line-height:120%;
	font-weight:300;
	color:var(--main-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	font-weight:300;
	line-height: 120%;
	padding:0 0 20px;
	display:block;
}
h1 {
	font-size:2.222rem;
	line-height:2.444rem;
}
h2 {
	font-size:1.556rem;
	line-height:1.667rem;
}
h4 {
	font-size:1.333rem;
	line-height:1.444rem;
}
h5 {
	font-size:1rem;
	line-height:1.111rem;
}
h6 {
	font-size:0.8889rem;
	line-height:1rem;
}
hr {
	background-color:#e0e0e0;
	height:1px;
	display:block;
	margin:20px 0;
	border:0px none;
}
a {
	color:var(--color-red);
}
a:visited {
	color:var(--color-darkred);
}
a:hover {
	color:var(--color-black);
}
a[href^="tel"] {
	color:var(--main-color);
	text-decoration:none;
}
nav ul,
nav ol,
.form ul,
.prod_box {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	font-size:0;
}
nav a {
	text-decoration:none;
}

/* GENRAL */
.pagewrap {
    max-width: 1440px;
	margin:0 auto;
}
.topheader_box {
	position:relative;
    margin-top: 65px;
	background-color:var(--color-red);
	border-bottom:1px solid #fff;
	-webkit-box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all ease-in-out 0.175s;
    -o-transition: all ease-in-out 0.175s;
    -moz-transition: all ease-in-out 0.175s;
    transition: all ease-in-out 0.175s;
	z-index:3;
}
.topheader_box:hover {
	background-color:#fff;
	-webkit-transition: all ease-in-out 0.175s;
	-o-transition: all ease-in-out 0.175s;
	-moz-transition: all ease-in-out 0.175s;
	transition: all ease-in-out 0.175s;
}
.content_box {
    padding-top: 80px;
}
.content {
	padding-bottom: 40px;
}

/* form */
[type=text],
[type=email],
[type=password],
[type=tel],
[type=number],
[type=search],
select,
textarea {
	border:1px solid var(--main-color);
	background-color:#fff;
	display:block;
	width:100%;
	font-size:1rem;
	vertical-align:middle;
}
[type=text], 
[type=email],
[type=password],
[type=tel],
[type=number],
[type=search],
select {
	padding:0 10px;
	line-height:40px;
}
textarea {
	padding:20px;
}
[type=text]:hover,
[type=email]:hover,
[type=password]:hover,
[type=tel]:hover,
[type=number]:hover,
[type=search]:hover,
textarea:hover,
select:hover {
	background-color:var(--color-lightgray);
}
[type=text]:focus,
[type=email]:focus,
[type=password]:focus, 
[type=tel]:focus,
[type=number]:focus,
[type=search]:focus,
textarea:focus,
select:focus {
	background-color:var(--color-lightyellow);
	outline: none;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder {
	color:var(--main-color);
}
input:valid,
textarea:valid {
	
}
input:invalid,
textarea:invalid {
	
}
input.invalid,
select.invalid,
textarea.invalid {
	background-color:var(--color-lightred);
	border:1px solid red;
}
button,
.s_btn {
	background-color:var(--color-red);
	color:#fff;
	margin:0;
	padding:10px;
	font-size:1.111rem;
	text-decoration:none;
	white-space:nowrap;
	vertical-align:middle;
	text-align:center;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	transition: all 150ms linear;
}
a.s_btn {
	color:#fff;
}
button:hover,
.s_btn:hover {
	background-color:var(--color-darkgray);
	text-decoration: none;
	-webkit-transition: all 250ms linear;
	-o-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;
}

/* top box */
#site_logo {
	position:relative;
	width:200px;
	height:200px;
    margin: -60px 40px -60px 0;
	display:block;
    border: 5px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	background-image:url(../images/artur_vader.jpg);
	-webkit-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
	background-repeat:no-repeat;
	background-position:center;
}

/* top_box__content */
.topico_box {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
}
.topico_box > li {
	margin-left:10px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
	position:relative;
	color:var(--color-topico);
}
.topico_box > li:first-child {
	margin-left:0;
}
.topico_item a {
	display:block;
	position:relative;
	width:40px;
	height:40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--color-topico);
	background-position:center;
	background-repeat:no-repeat;
	-webkit-background-size:auto 100%;
	-o-background-size:auto 100%;
	background-size:auto 100%;
	-webkit-transition: all ease-in-out 0.175s;
	-o-transition: all ease-in-out 0.175s;
	-moz-transition: all ease-in-out 0.175s;
	transition: all ease-in-out 0.175s;
}
.topico_item:hover a {
    background-color: #cd1835;
}
.item_phone a {
	background-image:url(../images/phone.svg);
}
.item_mail a {
	background-image:url(../images/mail.svg);
}
.item_skype a {
	background-image:url(../images/skype.svg);
}
.item_facebook a {
	background-image:url(../images/facebook.svg);
}
.item_facebook:hover a {
	background-color: #4267b2;
}
.topico_item a::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
	visibility:hidden;
	opacity: 0;
    top:-webkit-calc(100% + 6px);
    top:-moz-calc(100% + 6px);
    top:calc(100% + 6px);
    right: 15px;
    border-width: 0 5px 8px 5px;
    border-style: solid;
    border-color: var(--color-topico) transparent;  
	z-index:4;  
}
.topico_item a::after {
	color:#fff;
	display:block;
	font-size:14px;
	line-height:10px;
	position:absolute;
	visibility:hidden;
	opacity: 0;
	padding:10px;
	z-index:3;
	top:-webkit-calc(100% + 14px);
	top:-moz-calc(100% + 14px);
	top:calc(100% + 14px);
	right:0;
	white-space:nowrap;
	content: attr(data-label);
	background-color:var(--color-topico);
	-webkit-border-radius:5px;
	border-radius:5px;
}
.topico_item a:hover::before,
.topico_item a:hover::after {
	visibility: visible;
	opacity: 1;
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.topico_item a:hover::before {
	top:100%;
}
.topico_item a:hover::after {
	top:-webkit-calc(100% + 8px);
	top:-moz-calc(100% + 8px);
	top:calc(100% + 8px);
}

/* menu_topbox */
.menu_topbox {
    position: relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
    font-family: 'Roboto Condensed', sans-serif;
	-webkit-transition: all ease-in-out 0.175s;
	-o-transition: all ease-in-out 0.175s;
	-moz-transition: all ease-in-out 0.175s;
	transition: all ease-in-out 0.175s;
}
.menu_top {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
	margin-right:auto;
}
.menu_top > li {
	margin:0 10px;
}
.menu_top > li:first-child,
.menu_top > li:last-child {
	margin:0;
}
li.portfolio_box {
    margin-left: 40px;
}
.menu_top > li > a,
.menu_top > li > span {
	color:#fff;
	display:block;
	line-height:2.778rem;
    font-size:1.333rem;
	text-transform:uppercase;
	-webkit-transition: all ease-in-out 0.175s;
	-o-transition: all ease-in-out 0.175s;
	-moz-transition: all ease-in-out 0.175s;
	transition: all ease-in-out 0.175s;
}
.menu_top > li.portfolio_box > span {
    color: var(--color-lightred);
}
.topheader_box:hover .menu_top > li > a,
.menu_top > li.menu_top__on > a {
	color:var(--main-color);
}
.topheader_box:hover .menu_top > li:hover > a,
.topheader_box:hover .menu_top > li.menu_top__on > a {
	color:var(--color-red);
}
.menu_top > li > a:hover {
	color:var(--color-darkgray);
}

/* menu_top__ico */
.menu_top__ico {
	position: absolute;
	right:0;
	top:20px;
	height:40px;
	width:40px;
	overflow: hidden;
	white-space: nowrap;
	color: transparent;
}
.menu_top__ico span {
	position: absolute;
	height: 4px;
	width: 40px;
	top: 50%;
	margin-top: -2px;
	left: 50%;
	right:0;
	margin-left: -20px;
	background-color:var(--color-darkgray);
}
.menu_top__ico span::before,
.menu_top__ico span::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left:0;
	background-color:var(--color-darkgray);
}
.menu_top__ico span::before {
	top:-12px;
}
.menu_top__ico span::after {
	top:12px;
}
.menu_top__ico:hover span,
.menu_top__ico:hover span::before,
.menu_top__ico:hover span::after {
	background-color:var(--color-red);
}
.menu_top > ul > li.menu_top__close {
	display:none;
}

/* prod_box */
.prod_box {
	display: grid;
	grid-gap: 40px;
	grid-row-gap: 60px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-auto-rows: 10px;
}
.prod_box__item {
	display:block;
	font-size: 1rem;
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.prod_box__link:hover {
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-ms-transform: scale(1.02);
	-o-transform: scale(1.02);
	transform: scale(1.02);
	-webkit-box-shadow: 0px 5px 20px 0px rgba(205, 24, 53, 0.3);
	box-shadow: 0px 5px 20px 0px rgba(205, 24, 53, 0.3);
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.prod_box__link,
.prod_box__item__text {
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.prod_box__link:hover .prod_box__item__text {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.prod_box__item a {
	display: block;
	text-decoration: none;
	color:var(--main-color);
}
.prod_box__but {
	display: none;
}
.prod_box__item h4,
.prod_box__item span {
	display: block;
}
.prod_box__item h4 {
	margin-top: 10px;
	padding-bottom: 10px;
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.prod_box__item span {
	color: #A1A1A1;
	padding-bottom: 10px;
	-webkit-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.prod_box__item input {
	display: none;
	height: 0;
	width: 0;
	visibility: hidden;
}
.prod_box__item label:not(.prod_box__bigpic) {
	position: relative;
	display: block;
}
.prod_box__bigpic {
	display: none;
	position: fixed;
	overflow-y: scroll;
	top:0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100vw;
	min-height: 100vh;
	height: 100%;
	padding: 65px 80px 80px;
	text-align: center;
	z-index: 55;
	background-color: rgba(0,0,0,0.5);
}
.prod_box__bigpic img {
	display: inline-block;
	width: auto;
	max-width: 1380px;
	height: auto;
}
.prod_box__item input:checked ~ .prod_box__bigpic {
	display: block;
}

/* Clearfix */
.clearfix::before,
.clearfix::after,
.color_box:before,
.color_box::after {
    content: " ";
    display: table;
}
.clearfix::after,
.color_box::after {
    clear: both;
}
.clearfix,
.color_box {
    *zoom: 1;
}
