html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}
table, tr, td, th, thead {
  border-collapse: collapse;
}
html {
  height: 100%;
}
body {
  height: 100%;
  min-width: 960px;
  background-color: #ffffff;
}
body, td {
  font-family: 'Open Sans', Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #555555;
}
p {
  margin-bottom: 10px;
}
h1 {
  color: #000000;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 32px;
  margin: 15px 0 25px 0;
  text-align: center;
  font-weight: normal;
}
h2 {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 10px 0 10px 0;
  font-size: 24px;
  color: #004a97;
  font-weight: normal;
}
h3 {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 15px;
}
a {
  color: #12478c;
  text-decoration: underline;
}
a:hover {
/*  text-decoration: underline;*/
}
a:focus {
/*  outline: 1px dotted;*/
}
h1 a, h2 a, h3 a {
  text-decoration: none;
}
h1 a {
  margin-left: 10px;
}
ul li {
  list-style-position: inside;
  margin-left: 25px;
}
img, a img {
  border: none;
}
input, textarea, button, option, select {
  margin: 0;
  padding: 0;
}
hr {
  color: #eee;
  margin: 15px 0 25px 0;
}
.clear {
  clear: both;
}
.clear50 {
  clear: both;
  height: 50px;
}
.red {
  color: #c20000;
}
.blue {
  color: #12478c;
}
/* LAYOUT */
#site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
/*  height: 289px;*/
}
footer {
/*  width: 100%;*/
  background-color: #313131;
  border-top: 2px solid #c5c5c5;
  padding: 20px 0;
}
main {
  flex: 1;
}
.wrap {
  margin: 0 auto;
  width: 1024px;
  position: relative;
}
/* HEADER */
.about-menu {
  height: 38px;
  background: #333;
}
.about-menu ul {
  display: block;
  list-style: none;
}
.about-menu ul li {
  display: block;
  margin: 0 15px 0 0;
  padding: 5px 0;
  float: left;
}
.about-menu ul li a {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: none;
}
.about-menu ul li a:hover {
  text-decoration: underline;
}
.about-menu ul li a.cart {
  padding-left: 30px;
  background: transparent url('/images/cart.png') left center no-repeat;
}
/* CAROUSEL */
.carouselHolder {
  width: 100%;
  height: 300px;
  position: relative;
  background-color: #333;
  border-bottom: 1px solid #bbb;
}
.carouselHolder .carPrev,
.carouselHolder .carNext {
  position: absolute;
  top: 93px;
  width: 68px;
  height: 64px;
  z-index: 100;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.carouselHolder:hover .carPrev,
.carouselHolder:hover .carNext {
  visibility: visible;
  opacity: 1;
}
.carouselHolder .carPrev span,
.carouselHolder .carNext span {
  display: none;
}
.carouselHolder .carPrev {
  background: rgba(0, 0, 0, 0.2) url("/images/arrow_left_big.png") no-repeat top left;
  left: 20px;
}
.carouselHolder .carNext {
  background: rgba(0, 0, 0, 0.2) url("/images/arrow_right_big.png") no-repeat top right;
  right: 20px;
}
#carousel {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  position: relative;
}
div.frame {
  width: 100%;
  height: 300px;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
}
div:after.frame {
  content: "";
  height: 0;
  display: block;
  clear: both;
}

/* PRODUCTS MENU */
.product-menu {
  position: absolute;
  bottom: 50px;
  width: 100%;
  height: 75px;
  background-color: rgba(255,255,255,0.85);
}
.horizontal {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
/*  justify-content: center;*/
}
#main_menu {
  display: block;
  height: 74px;
  padding: 0 15px 0 5px;
  list-style: none;
}
#main_menu li {
  display: block;
  margin: 0;
  padding: 0 10px;
  height: 75px;
  float: left;
  position: relative;
  line-height: 75px;
  cursor: hand;
  cursor: pointer;
}
#main_menu li.f {
  margin-left: 30px;
}
#main_menu li,
#main_menu li a {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal !important;
  font-size: 20px;
  color: #555555;
  text-decoration: none;
}
#main_menu li a {
  display: block;
  width: 100%;
  height: 100%;
}
#main_menu li:hover {
  background-color: #fff;
}
#main_menu li ul {
  list-style: none;
  width: 325px;
  position: absolute;
  top: 75px!important;
  left: 0!important;
  z-index: 150;
  background-color: #fff;
  border-bottom: 1px solid #999999;
}
#main_menu li ul li {
  display: block;
  width: 325px;
  float: none;
  height: auto;
  margin: 0;
  padding: 0;
}
#main_menu li ul li a {
  display: block;
  width: 295px;
  margin: 0;
  padding: 10px 20px 15px 15px;
}
#main_menu li ul li,
#main_menu li ul li a {
  font-size: 16px;
  line-height: 18px;
  color: #555555;
  text-decoration: none;
}
#main_menu li ul li:hover {
  background-color: #e6e6e6;
  -webkit-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}
#main_menu li ul li ul {
  left: 325px!important;
  top: 0!important;
}
#main_menu a {
  transition: font-size .1s ease;
}
/* INDEX */
.indexCatsWrap {
  margin: 4px 0 0 0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.indexCatsWrap .rotator {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease;
}
.indexCatsWrap .indexCat {
  flex: 0 0 247px;
  display: flex;
  flex-direction: column;
}
.indexCat a.catImg {
  display: block;
  height: 247px;
  margin: 0 12px 5px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.indexCat div.anim {
  position: relative;
  overflow: hidden;
  height: 38px;
  margin: 0 12px 0 0;
  background: #333333;
}
.indexCatsWrap:nth-child(3n) .indexCat .catImg {
  margin: 0 0 12px 0;
}
.indexCat a.cat {
  display: block;
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}
.indexCat span.anim {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #C10D13;
  z-index: 1;

  -webkit-transition: width 0.2s ease-out;
  -ms-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.indexCat:hover span.anim {
  width: 100%;
}



#site-title {
  display: block;
  float: left;
  width: 280px;
  height: 74px;
  margin: 0 0 0 10px;
  background: transparent url('/images/fincom-logo.png') no-repeat left center;
  background-size: contain;
  transition: width .1s ease;
}
#site-title span {
  display: none;
}
.contacts-title {
  display: block;
  float: right;
  width: 150px;
  margin: 0 10px 0 0;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 34px;
  line-height: 34px;
  text-decoration: none;
  color: #002640;
  padding: 7px 0;
  text-align: center;
}
.contacts-title div {
  font-size: 14px;
  line-height: 18px;
}

div.orders {
  display: block;
  margin: 0 auto;
}
div.orders a {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal !important;
  line-height: 74px;
  color: #555555;
  padding-left: 30px;
  background: transparent url('/images/shoppingcart.png') left center no-repeat;
}
div.searchbox {
  display: block;
  padding: 24px 0;
  cursor: pointer;
}
form.searchform {
  display: flex;
  flex-direction: row;
}
form.searchform input[type=text] {
  display: inline-block;
  width: 10px;
  height: 18px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 18px 0 0 18px;
  border: 1px solid #aaa;
  border-width: 1px 0 1px 1px;
  color: #555555;
  font-size: 16px;
  transition: width .1s ease;
  cursor: pointer;
  outline-width: 0;
}

form.searchform input[type=submit] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 0 18px 18px 0;
  border: 1px solid #aaa;
  border-width: 1px 1px 1px 0;
  background: #fff url('/images/search.png') 50% 50% no-repeat;
  background-size: 18px 18px;
  cursor: pointer;
  outline-width: 0;
}



#page {
}
#page-c {
  position: relative;
}
#page-c .title {
  width: 55%;
  margin: 25px auto;
  text-align: justify;
  background: transparent url('/images/logo-large.png') left center no-repeat;
  padding-left: 100px;
}
#page-c .title h1 {
  color: #0e314b;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 28px;
  margin-bottom: 5px;
}
#page-c .item {
  width: 480px;
  padding: 15px;
  float: left;
  text-align: justify;
  text-justify: inter-word;
}
#page-c .item .hr {
  padding: 10px 0;
  margin: 0 40px;
  border-bottom: 1px solid #ddd;
}
#page-c .item a {
  display: block;
  text-align: center;
  color: #343434;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 32px;
  text-decoration: none;
  margin-bottom: 15px;
}

#page-c .lc {
  width: 700px;
  height: 100%;
/*  padding-right: 320px;*/
  padding-bottom: 20px;
  float: left;
}
#page-c .rc {
/*  position: absolute;
  top: 0;
  right: 0;
*/  width: 260px;
  height: 100%;
/*  margin-left: 15px;*/
  float: right;
}
#page .wide {
  margin-left: 15px;
  height: 100%;
  padding-bottom: 20px;
}

#footer-contents {
  position: relative;
  width: 1024px;
  height: auto !important;
/*  height: 60px;*/
/*  min-height: 60px;*/
  margin: 0 auto;

}
#footer-contents .nav {
  width: 24%;
  float: left;
  margin-right: 5px;
}
#footer-contents .title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#footer-contents ul li {
  list-style-type: none;
  margin: 0 0 2px 0;
  padding: 0;
}

#footer-contents div.info,
#footer-contents a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  opacity: .5;
}
a.mail {
  display: block;
  margin-top: 10px;
  opacity: 1;
}
#footer-contents a:hover {
  opacity: 1;
  transition: opacity .5s;
}

/* HOMEPAGE */

.content {
  padding: 0 30px 0 15px;
  margin-bottom: 10px;
}
.content .clc {
  width: 290px;
  margin-right: 10px;
  float: left;
}
.content .crc {
  width: 290px;
  float: left;
}

#page-c .rc h2 {
  margin: 0 10px 10px 10px;
  text-align: right;
  padding: 0 0 6px 0;
  line-height: 32px;
  font-size: 18px;
  font-weight: normal;
  color: #004a97;
  border-bottom: 1px solid #004a97;
}

#footer-contacts {
  float: right;
  margin: 15px 25px 0 0;
  padding: 10px;
  text-align: right;
  font-size: 11px;
  color: #ffffff;
}
.inv {
  font-size: 1px;
}
.products {
  padding: 0 15px 10px 15px;
  width: 618px;
  overflow: hidden;
}
.products .img {
  position: relative;
  float: right;
  margin-left: 10px;
}
.products .img .badge {
  position: absolute;
  z-index: 10;
  left: -5px;
  top: -7px;
}
.products .img .badge div {
  width: 35px;
  height: 35px;
  float: left;
}
.products .img .new span,
.products .img .top span {
  display: none;
}
.products .img img {
  margin: 0 15px 10px 0;
  padding: 7px;
  background-color: #fff;
  -moz-box-shadow: 1px 1px 5px #999;
  -webkit-box-shadow: 1px 1px 5px #999;
  box-shadow: 1px 1px 5px #999;
}
.products h1 {
  margin: 5px 0;
  border: none;
  color: #004a97;
}
.products h1 span {
  float: right;
  color: #da251d;
}
.products .body {
  margin: 5px 0 10px 0;
  overflow: hidden;
}
.products .shd {
  margin: 0 0 10px 0;
}
.hr {
  padding: 0 10px;
  margin: 25px 0;
  border-bottom: 1px dashed #999;
}
.hr2 {
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px dashed #ccc;
}
.breadcrumb {
  margin: 14px 10px 10px 0;
  padding: 10px 0 15px 15px;
  border-bottom: 1px solid #004a97;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.no-products {
  width: 550px;
  margin: 55px auto;
  text-align: center;
  font-size: 14px;
  padding: 0 15px 10px 15px;
}
.page-subcategories {
  padding: 0 15px 10px 15px;
  list-style: none;
}
.page-subcategories li {
  margin: 0 0 10px 0;
}
.page-subcategories li,
.page-subcategories li a {
  font-size: 14px;
}
.page-subcategories li a img {
  margin-right: 5px;
}
.page {
  margin-top: 20px;
  padding: 0 15px 120px 15px;
}
.news-item {
  padding: 0 10px 0 20px;
  margin: 15px 0 15px 0;
}
.news-item h1 {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
  color: #004a97;
  border-width: 0;
}

.news-item a {
  color: #004a97;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.news-item .text {
  font-size: 12px;
  text-align: justify;
  text-justify: inter-word;
}

.item-imgs {
  display: block;
  width: 225px;
  float: left;
  margin: 0 20px 10px 0;
}
.item-imgs.r {
  margin-right: 0;
}
.item-imgs .image {
  width: 205px;
  height: 205px;
  text-align: center;
  padding: 10px;
  background-color: #fff;
  -moz-box-shadow: 1px 1px 2px #999;
  -webkit-box-shadow: 1px 2px 1px #999;
  box-shadow: 1px 1px 2px #999;
}
.item-imgs .image img {
  max-width: 205px;
  max-height: 205px;
}

.item-imgs h2,
.item-imgs h2 a {
  display: block;
  color: #000000;
  font-size: 13px;
  margin: 10px 0 5px 0;
}

a.about span {
  display: none;
}
input, textarea {
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  line-height: normal;
}
.enquiry {
  padding: 5px 20px;
}
.enquiry label {
  text-align: right;
  display: block;
  font-size: 13px;
}
.enquiry input[type="text"],
.enquiry textarea {
  width: 220px;
  font-size: 12px;
  padding: 5px;
  margin-bottom: 10px;
}
.enquiry sup {
  color: #c20000;
}
.enquiry .error {
  color: #c20000;
  font-size: 11px;
}
.enquiry .captcha {
  text-align: right;
}
.enquiry .captcha img {
  margin: 10px 0;
}
.enquiry .captcha label {
  font-size: 11px;
}
.enquiry .captcha input {
  width: 75px;
}
.enquiry input[type="submit"] {
  float: right;
  margin-bottom: 15px;
  padding: 5px 10px;
}
.item {
  padding: 0 15px 10px 15px;
}
.item .img {
  position: relative;
  float: right;
  margin-left: 10px;
}
.item .img img {
  margin: 0 15px 10px 0;
  padding: 7px;
  background-color: #fff;
  -moz-box-shadow: 1px 1px 5px #999;
  -webkit-box-shadow: 1px 1px 5px #999;
  box-shadow: 1px 1px 5px #999;
}
.item h2 {
  font-size: 16px;
  font-weight: normal;
  color: #004a97;
  border-bottom: 1px solid #a7b4d4;
}
.item h1 {
  margin: 5px 0 15px 0;
}
.item h1 span {
  float: right;
  color: #da251d;
}

.dv {
  margin-bottom: 15px;
}











table.topoffer td {
  text-align: center;
  width: 33%;
}

.promoItem {
  padding: 0 10px;
  margin-bottom: 15px;
}

.promoItem img {
  margin-bottom: 10px;
}
.promoItem h3 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 22px;
  line-height: normal;
  color: #0e314b;
  margin-bottom: 10px;
}

.promoItem p {
  text-align: left;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 40px;
}

.promoItem .price {
  text-align: left;
  margin-bottom: 10px;
}

.topPrice {
  color: #c20000;
}

.promoItem .hr {
  padding: 10px 0;
  margin: 0 40px;
  border-bottom: 1px solid #ddd;
}

.mainAnn {
  width: 225px;
  margin: 0 10px 25px 10px;
  float: left;
  color: #2a5ea7;
  text-align: center;
}

.mainAnn img {
  
}





ul.items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  clear: both;
}
ul.items li {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 32%;
  
  float: left;
  padding: 10px;
  margin: 0 2% 40px 0;
  box-shadow: 0px 0px 0 0px rgba(0,0,0,0.5);
  transition: box-shadow .1s ease;
  transition: transform .1s ease;

  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  
  cursor: pointer;
}
ul.items li:nth-child(3n) {
  margin-right: 0;
}

ul.items li div.main-image {
  display: inline-block;
  overflow: hidden;
  margin-bottom: 10px;
  padding: 10px 15px;
}
ul.items li div.main-image img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: transform .4s ease;
}

ul.items li h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}
ul.items li div.description {
  flex-grow: 1;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
  padding: 0 15px;
}
ul.items li a.details {
  display: inline-block;
  padding: 3px 10px;
  color: #12478c;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px 5px 0 0;
}

ul.items li:hover a.details {
  color: #ffffff;
  background-color: #12478c;
}

ul.items li div.price {
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 0 15px;
  color: #c20000;
}
ul.items li div.price > * {

}
ul.items li div.price .whole {
  font-size: 32px;
  font-style: italic;
  color: #c20000;
  padding: 0 5px;
}
ul.items li div.price .decimal {
  font-size: 16px;
  font-style: italic;
  color: #c20000;
  vertical-align: super;
  padding: 0 0 0 5px;
}
span.disc {
  display: inline-block;
  margin-right: 5px;
  color: #c20000;
}
ul.items div.new,
ul.items div.promo {
  position: absolute;
  top: 0;
  z-index: 100;
  padding: 3px 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}
ul.items div.new {
  right: 0;
  border-radius: 0 5px 0 5px;
  background-color: #2B55AB;
}
ul.items div.promo {
  left: 0;
  border-radius: 5px 0 5px 0;
  background-color: #FF9505;
}

.promoBox {
  position: relative;
  background: #eee;
  padding: 20px 0;
  margin: 20px 0 50px 0;
}
.promoCarL,
.promoCarR {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 64px;
  z-index: 100;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.promoBox:hover .promoCarL,
.promoBox:hover .promoCarR {
  visibility: visible;
  opacity: 1;
}
.catsBox:hover .promoCarL,
.catsBox:hover .promoCarR {
  visibility: visible;
  opacity: 1;
}
.promoCarL span,
.promoCarR span {
  display: none;
}
.promoCarL {
  background: rgba(0, 0, 0, 0.2) url("/images/arrow_left_big.png") no-repeat top left;
  left: -80px;
}
.promoCarR {
  background: rgba(0, 0, 0, 0.2) url("/images/arrow_right_big.png") no-repeat top right;
  right: -80px;
}

h1.promoHead {
  margin: 10px 0 35px 0;
  font-family: 'Open Sans', Tahoma, sans-serif;
  font-size: 28px;
  font-weight: bold;
}

.promoCar {
  overflow-x: hidden;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.promoCar .rotator {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition: transform 0.5s ease;
}
.promoCar .itm {
  flex: 0 0 280px;
  position: relative;
  padding: 10px;
  margin: 0 15px 0 0;
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.promoCar .itm div.main-image {
  display: inline-block;
  overflow: hidden;
  margin-bottom: 10px;
  padding: 10px 15px;
}
.promoCar .itm div.main-image img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.promoCar .itm h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}
.promoCar .itm div.description {
  flex-grow: 1;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
  padding: 0 15px;
}
.promoCar a.details {
  display: inline-block;
  padding: 3px 10px;
  color: #12478c;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px 5px 0 0;
}
.promoCar div:hover.itm a.details {
  color: #ffffff;
  background-color: #12478c;
}
.promoCar div.price {
  font-size: 24px;
  font-weight: bold;
  padding: 0 0 0 15px;
  color: #c20000;
}
.promoCar div.price .whole {
  font-size: 32px;
  font-style: italic;
  color: #c20000;
  padding: 0 5px;
}
.promoCar div.price .decimal {
  font-size: 16px;
  font-style: italic;
  vertical-align: super;
  color: #c20000;
  padding: 0 0 0 5px;
}
.promoCar div.new {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 3px 10px;
  border-radius: 0 5px 0 5px;
  color: #ffffff;
  background-color: #2B55AB;
  font-size: 14px;
  font-weight: bold;
}
a.promoAll {
  display: block;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 75px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #C10D13;
  text-decoration: none;
}

.pathHeader {
  margin: 10px 0 10px 0;
  font-size: 16px;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;

}
.pathHeader a {
  color: #000000;
}
.pathHeader a:hover {
  color: #12478c;
}

.filters {
  margin: 10px 0 20px 0;
  padding: 10px 10px 20px 10px;
  border-bottom: 1px dashed #999;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  
  font-size: 14px;
  color: #000;
}
.filters div {
  width: 35%;
}
.filters select {
  font-size: 14px;
  border: 1px solid #999;
  border-radius: 10px;
  padding: 1px 10px;
}
.filters input[type=checkbox] {
  border-color: #000;
}

h1.cat {
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 28px;
}

div.catpager {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
div.catpager div {
  flex-grow: 1;
  text-align: center;
}
div.catpager div.nums {
  flex-grow: 4;
}
div.catpager a {
  color: #000000;
  text-decoration: none;
}
div.catpager a:hover {
  color: #c20000;
}
div.catpager a.num {
}
div.catpager .disabled {
  color: #9a9a9a;
}
div.catpager .selected {
  color: #c20000;
  font-weight: bold;
}



ul.subcats {
  list-style: none;
  margin: 0 0 20px 0;
  clear: both;

  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;

}
ul.subcats.centjst {
  
}
ul.subcats li {
  width: 33%;

  box-sizing: border-box;
  display: block;
  padding: 10px;
  margin: 0;
}
ul.subcats li.jst {
  padding: 15px;
  flex-basis: 32%;
}
ul.subcats li:nth-child(3n) {
  margin: 0;
}
ul.subcats li a {
  display: block;
  margin: 0 0 10px 0;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
}
ul.subcats li a:hover {
  text-decoration: underline;
}
ul.subcats li a.cat {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
ul.subcats span.disc {
  margin: 0 5px 0 10px;
}
div.miniImg {
  width: 55px;
  margin: 0 10px 10px 0;
  float: left;
}
div.miniImg img {
  width: 50%;
}
div.product {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 10px;
}
div.product > div {
  flex-grow: 1;
}
div.product div.new {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 100;
  padding: 3px 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  background-color: #2B55AB;
}
div.product div.description {
  margin-bottom: 20px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 20px;
}
a.brochure {
  display: inline-block;
  padding: 5px 0 5px 40px;
  margin: 10px 25px 20px 35px;
  background: transparent url('/images/download.png') left center no-repeat;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 24px;
  color: #555555;
}

div.product div.price {
  display: inline-block;
  padding: 5px 0 5px 40px;
  margin: 0 55px 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #c20000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 20px;
}
div.product div.price strong {
  font-size: 28px;
}
div.gallery {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  width: auto;
  padding: 0 20px;
}
div.gallery > div {
  border: 1px solid #ebeaea;
  padding: 10px;
  margin: 0 10px 5px 0;
}

div.galleryImg {
  cursor: pointer;
  opacity: 1;
}
div.galleryImg:hover {
  opacity: 0.8;
}
div.docBody {
}
div.docBody * {
  font-family: 'Open Sans Condensed', sans-serif!important;
  font-size: 18px!important;
  color: #666!important;
}
div.docBody table, div.docBody td {
  border: 1px solid #ebeaea!important;
  border-collapse: collapse!important;
  background: none!important;
}
div.docBody table {
  width: 100%!important;
}
div.docBody td {
  padding: 10px;
}




.descrSection {
  padding: 10px 15px 10px 15px;
  margin: 0 0 10px 0;
  border-bottom: 1px dashed #999;
  font-family: 'Open Sans Condensed', sans-serif!important;
  font-size: 24px;
  line-height: normal;
  color: #000000;
  text-transform: uppercase;
}

.articleList {
  padding: 15px 50px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;

  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

h1.blog {
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 30px;
  padding: 20px 55px;
}
.articleWrap {
  margin: 0 auto;
  width: 1024px;
  position: relative;
}
.article {
  padding: 10px;
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 24px;
}
.article td {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 24px;
}
.article h2 {
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 20px;
  padding: 0;
  margin: 0 0 15px 0;
}
.article ul {
  list-style: none;
  margin: 10px 0;
}
.article li::before {
  content: "\26AC";
  color: #c20000;
  display: inline-block;
  width: 1em;
}
.article p {
  margin: 10px 0;
}
.articleBody {
  max-width: 770px;
}
.moreArticles {
  min-width: 250px;
  margin: 0 0 20px 20px;
  padding: 0 0 20px 20px;
  border-left: 1px solid #ebeaea;
  font-size: 20px;
}
.moreArticles h2 {
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 20px;
  padding: 0;
  margin: 0 0 15px 0;
}
.moreArticles a {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 20px;
}

@media only screen and (max-width: 900px) {
  .articleWrap {
    width: 800px;
  }
}
@media only screen and (min-width: 1440px) {
  .articleWrap {
    width: 1224px;
  }
}

.blogList {
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blogList div.art {
  width: 30%;
  position: relative;
  margin-bottom: 25px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
  transition: box-shadow .4s ease;
  
  cursor: pointer;
}
.blogList div.imgCont {
  display: inline-block;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 5px 5px 0 0;
}
.blogList div.art img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.blogList div.art a.mainLnk {
  display: block;
  padding: 0 25px;
  margin-bottom: 55px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #333;
  font-size: 20px;
  text-decoration: none;
}
.blogList div.art:hover {
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.blogList div.art:hover img {
  transform: scale(1.3);
  transform-origin: 50% 50%;
}
.blogList div.art .artDate {
  padding: 0 25px;
  font-size: 12px;
}

.blogList div.art div.details {
  display: block;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.blogList div.art div.details a {
  display: inline-block;
  padding: 3px 10px;
  color: #c20000;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.blogList div.art:hover div.details a {
  color: #ffffff;
  background-color: #c20000;
}
.enqFormBtn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 3px 10px;
  color: #ffffff;
  background-color: #c20000;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.enqForm {
  padding: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 24px;
}
.enqForm > div {
  flex-grow: 1;
  padding: 10px;
}
.enqForm label {
  display: block;
  margin-bottom: 10px;
}
.enqForm input, 
.enqForm textarea {
  display: block;
  margin-top: 5px;
  width: 80%;
  border: 1px solid #aaa;
  padding: 5px 10px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
}
.enqSubmit {
  width: 80%;
  text-align: right;
}
.enqForm input[type="submit"] {
  display: inline-block;
  width: auto;
  padding: 3px 25px;
  margin-right: 0;
  border: none;
  color: #ffffff;
  background-color: #c20000;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.enqSent {
  margin: 25px 0 45px 0;
  text-align: center;
  color: #c20000;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 28px;
}

.optionsTable {
  width: 100%;
  margin-bottom: 15px;
}
.optionsTable th,
.optionsTable td {
  padding: 5px;
  position: relative;
}
.optionsTable th {
  text-align: left;
}
.optionsTable div.promo {
  position: absolute;
  top: 0;
  margin: 5px;
  left: -85px;
  z-index: 100;
  padding: 3px 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  background-color: #FF9505;
}
.optionsTable .price {
  font-weight: bold;
  color: #c20000;
  font-size: 16px;
  font-style: italic;
}
.optionsTable input[type=text] {
  width: 25px;
  padding: 2px 3px;
}
.optionsTable .availability {
  display: inline-block;
  padding: 3px 0;
}
.optionsTable .enquiry {
  display: inline-block;
  padding: 3px 10px;
  color: #ffffff;
  background-color: #12478c;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.order {
  display: flex;
  justify-content: flex-end;
}
.order a {
  display: inline-block;
  padding: 3px 10px;
  color: #ffffff;
  background-color: #12478c;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
a div.small {
  font-size: 12px;
}

.optionsTable.ord {
  border-spacing: 5px;
  border-collapse: separate;
}
.optionsTable.ord td {
  height: 110px;
}
th.cartTitle {
  width: 55%;
  font-size: 18px;
  text-align: center;
}
.cartImage {
  width: 110px;
}
.itemTitle {
  display: block;
  font-size: 22px;
  color: #555555;
  text-decoration: none;
}
a.itemTitle:hover {
  text-decoration: underline;
}
.cartPrice,
input.cartQty {
  font-size: 14px;
  color: #555555;
}
div.buttons {
  display: flex;
  flex-direction: column;
}
div.buttons div {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0 0 15px 0;
}
input.submitBtn,
a.submitBtn {
  width: auto;
  padding: 3px 25px;
  margin: 0;
  border: none;
  color: #ffffff;
  background-color: #12478c;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
input.submitBtn.big {
  font-size: 18px;
  background-color: #c20000;
}
.cart-empty {
  height: 500px;
  font-size: 18px;
}


.project {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.project .image {
  width: 250px;
  margin: 0 15px 10px 0;
  padding: 10px;
  background-color: #fff;
  -moz-box-shadow: 1px 1px 5px #999;
  -webkit-box-shadow: 1px 1px 5px #999;
  box-shadow: 1px 1px 5px #999;
}
.project .image img {
  width: auto;
  height: auto;
  margin: auto;
}