/* === Base Styles — Icon replacements (no custom font needed) === */
[class^=icon]::before, [class*=" icon"]::before {
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconMail:before {
  content: "\e158";
  font-family: "Material Icons";
}

.iconFacebook:before {
  content: "f";
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1em;
}

.iconInstagram:before {
  content: "\e412";
  font-family: "Material Icons";
}

.iconYoutube:before {
  content: "\e063";
  font-family: "Material Icons";
  position: relative;
  top: 1px;
}

.iconLinkedin:before {
  content: "in";
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 0.8em;
  position: relative;
  top: -2px;
}

.iconPinterest:before {
  content: "P";
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.iconTwitter:before {
  content: "X";
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.iconUserPlus:before {
  content: "\e7fe";
  font-family: "Material Icons";
}

.iconPhone:before {
  content: "\e0cd";
  font-family: "Material Icons";
}

.iconSmartPhone:before {
  content: "\e32c";
  font-family: "Material Icons";
}

.iconBurger:before {
  content: "\e5d2";
  font-family: "Material Icons";
}

* {
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  min-width: 375px;
  overflow: hidden;
}

.hidden {
  display: none;
}

.shown {
  display: block;
}

.formElement.inputField {
  position: relative;
  width: 100%;
  height: 30px;
}
.formElement.inputField input[type=text], .formElement.inputField input[type=password], .formElement.inputField select, .formElement.inputField textarea {
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 10px;
  border: none;
  margin: 0 2px 0 2px;
}
.formElement.inputTextArea {
  height: 100px;
}
.formElement.inputTextArea textarea {
  padding-top: 5px;
}
.formElement.checkbox {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid #555;
  background: #fff;
}
.formElement.checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 2;
}
.formElement.checkbox input[type=checkbox] + div {
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  right: 5px;
  z-index: 1;
}
.formElement.checkbox input[type=checkbox]:checked + div {
  background: #000;
}
.formElement.button {
  position: relative;
  width: 100%;
  height: 30px;
}
.formElement.button button {
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 10px;
}

.main {
  grid-area: main;
}

.restorePassword h1 {
  text-align: center;
}
.restorePassword .successType {
  text-align: center;
  font-size: 1.5em;
  padding: 20px 0;
}
.restorePassword .successType table {
  margin: 20px auto;
}
.restorePassword .successType table th {
  text-align: right;
  padding: 0 10px 0 0;
}
.restorePassword .successType table td {
  text-align: left;
}
.restorePassword .errorType {
  text-align: center;
  font-size: 1.5em;
  padding: 20px 0;
}

body {
  font-family: monospace;
  background: #fff;
}

h1 {
  margin: 10px;
  font-weight: normal;
  font-size: 23px;
}

.main {
  margin: 0 10px;
}

.singleBanner {
  background: rgba(252, 239, 60, 0.8);
  padding: 10px;
  margin-bottom: 25px;
}
.singleBanner p {
  margin-top: 10px;
}

.titledBlock {
  position: relative;
  font-size: 17px;
}
.titledBlock .title {
  margin: 10px 0 10px 10px;
  color: #000;
  background: #eee;
  font-size: 20px;
  font-weight: bold;
  min-width: 230px;
  padding: 5px 5px;
  display: inline-block;
}

.widgetMediaObject {
  position: relative;
  font-size: 1em;
}
.widgetMediaObject > div > img, .widgetMediaObject > div > .image {
  width: 100%;
}
.widgetMediaObject.left > img, .widgetMediaObject.left > .image {
  float: left;
  margin-right: 10px;
}
.widgetMediaObject.left > img > img, .widgetMediaObject.left > .image > img {
  width: 100%;
}
.widgetMediaObject.left .title {
  margin: 10px 0 10px 10px;
}
.widgetMediaObject.right > img, .widgetMediaObject.right > .image {
  float: right;
  margin-left: 10px;
}
.widgetMediaObject.right > img > img, .widgetMediaObject.right > .image > img {
  width: 100%;
}
.widgetMediaObject.right .title {
  margin: 10px 10px 10px 0;
}
.widgetMediaObject > * {
  position: relative;
}
.widgetMediaObject:after {
  content: "";
  clear: both;
  display: block;
}
.widgetMediaObject:before {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  left: -100vw;
  right: -100vw;
  top: 0;
  bottom: 0;
}
.widgetMediaObject .title {
  color: #000;
  min-width: 230px;
  padding: 5px 5px;
}
.widgetMediaObject .content {
  padding: 0 20px 20px 20px;
}
.widgetMediaObject .content p {
  padding: 0 0 10px 0;
}

/*# sourceMappingURL=common.css.map */

/* === Header Base (common1) === */
.header {
  font-family: "Montserrat", sans-serif;
  background-color: #dddddd;
  min-width: 375px;
}
.header .topLine {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
}
.header .topLine > div {
  max-width: 1300px;
  margin: 0 auto;
}
.headerBox {
  text-align: center;
  display: block;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.headerBox:after {
  content: "";
  clear: both;
  display: block;
}
.headerLogo {
  clear: both;
  display: block;
  align-self: center;
  justify-self: start;
  position: relative;
  top: 0;
  padding: 5px;
  float: left;
}
.headerLogo img {
  max-width: 240px;
  max-height: 60px;
}
.headerMenu {
  clear: both;
  margin: 0 auto 0 auto;
  text-align: center;
  align-self: center;
  letter-spacing: 2px;
  line-height: 23px;
  text-transform: uppercase;
  user-select: none;
  font-size: 12px;
  padding-bottom: 0;
}
.headerMenu .burgerMenu {
  display: block;
  line-height: 0;
}
.headerMenu .burgerMenu .iconBurger {
  align-content: center;
  background-color: #000;
  font-size: 30px;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  display: inline-block;
  position: relative;
}
.headerMenu .burgerMenu .iconBurger:before {
  color: #fff;
  position: absolute;
  left: 5px;
  top: 5px;
  padding: 0;
  margin: 0;
}
.headerMenu input.burgerMenu:checked + label.burgerMenu + .menu {
  display: block;
}
.headerMenu .menu {
  display: none;
  padding: 10px 0 0 0;
}
.headerMenu .menu > .menuItem {
  margin: 0 0 10px 0;
  position: static;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4666666667);
}
.headerMenu .menu > .menuItem > label, .headerMenu .menu > .menuItem > a {
  text-decoration: none;
  color: #000;
}
.headerMenu .menu > .menuItem > ul {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  margin: 0px 10px;
  width: auto;
  transform: none;
}
.headerMenu .menu > .menuItem > ul ul {
  left: 0px;
  right: 0px;
  width: auto;
}
.headerMenu .menu > .menuSubMenu > input[type=checkbox] + label:before {
  opacity: 0;
}
.headerMenu .menu > .menuSubMenu > input[type=checkbox]:checked + label:before {
  opacity: 1;
}
.headerMenu .menu > .menuSubMenu > label {
  position: relative;
}
.headerMenu .menu > .menuSubMenu > label > .textLabel {
  position: relative;
  z-index: 1;
}
.headerMenu .menu > .menuSubMenu > label:before {
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  bottom: -10px;
  right: -25px;
  left: -15px;
  background: #fff;
  opacity: 0;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
  transition: opacity 1s;
}
.headerMenu .menuSubMenu:after {
  content: "\e5cf";
  font-size: 13px;
  margin-left: 0;
  position: relative;
  top: 2px;
  font-family: "Material Icons";
}
.headerMenu [type=checkbox] {
  display: none;
}
.header .socialHub {
  position: absolute;
  right: 0;
  bottom: -12px;
  z-index: 1;
}

.menu {
  list-style: none;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 5px;
  z-index: 9;
}
.menu > .menuItem {
  display: inline-block;
  position: relative;
}
.menu > .menuSubMenu > ul {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
}
.menu > .menuSubMenu:hover > ul {
  opacity: 1;
  pointer-events: all;
}
.menu .menuItem ul {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background: #fff;
  width: 100%;
  min-width: 200px;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
  border: 1px solid #000;
}
.menu .menuItem input[type=checkbox] {
  opacity: 0;
  pointer-events: none;
}
.menu .menuItem input[type=checkbox] + label + ul {
  opacity: 0;
  pointer-events: none;
}
.menu .menuItem input[type=checkbox]:checked + label + ul {
  opacity: 1;
  pointer-events: all;
}
.menu .menuItem:hover > ul {
  opacity: 1;
  pointer-events: all;
}

/*# sourceMappingURL=common.css.map */

/* === Header Structure (common2) === */
header.header .topLine {
  position: relative;
}

header {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto 10px auto;
  position: relative;
}
header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
header:after {
  content: "";
  display: block;
  clear: both;
}
header .topLine {
  clear: both;
  min-height: 23px;
  font-size: 14px;
  position: relative;
  margin: 0 10px;
}
header .topLine .contacts {
  margin: 0;
  float: right;
  list-style: none;
}
header .topLine .contacts li {
  padding: 3px 0 0 45px;
  float: left;
  margin: 0;
}
header .topLine .contacts li a {
  color: #000; /* @todo: as configurable */
  text-decoration: none;
}
header .topLine .contacts li a.iconPhone:before {
  padding: 0 5px;
}
header .topLine .localeHeader {
  float: right;
  position: relative;
  margin-left: 5px;
}
header .topLine .localeHeader .localeCurrent, header .topLine .localeHeader .localeItem {
  width: 35px;
  height: 23px;
}
header .topLine .localeHeader .localeList {
  top: 23px;
}
header .topLine .localeHeader [data-locale=en] {
  background-position: 0 0;
}
header .topLine .localeHeader [data-locale=ru] {
  background-position: 0 -48px;
}
header .topLine .localeHeader [data-locale=uk] {
  background-position: 0 -24px;
}
header .mainLine {
  background: #a9a9a9; /* @todo: as configurable */
  position: relative;
  padding: 5px;
}
header .mainLine:after {
  content: "";
  display: block;
  clear: both;
}
header .mainLine .logo {
  text-decoration: none;
  float: left;
}
header .mainLine .logo img {
  display: block;
  height: 55px;
}
header .mainLine .logo .tagline {
  font-size: 10px;
  color: #000;
  margin: 0;
  padding: 0;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
header menu {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: initial;
  background: #fff;
  min-height: 40px;
  -webkit-box-shadow: -4px 4px 18px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -4px 4px 18px -7px rgba(0, 0, 0, 0.75);
  box-shadow: -4px 4px 18px -7px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}
header menu input[type=checkbox] {
  display: none;
}
header menu > ul {
  display: inline-block;
  margin: 10px 0 0 0;
  padding: 0;
  text-align: center;
}
header menu > ul > li {
  text-align: left;
}
header menu > ul > li > label, header menu > ul > li > a {
  padding: 5px 10px;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
header menu .menu .menuItem {
  position: static;
  display: block;
  text-align: center;
}
header menu .menu .menuItem > a, header menu .menu .menuItem > label {
  border-left: none;
}
header menu .menu .menuItem > ul {
  position: absolute;
  left: 5px;
  right: 5px;
  width: auto;
  bottom: auto;
  top: auto;
  transform: none;
}
header menu .menu .menuItem > ul ul {
  margin-top: 5px;
  width: auto;
  left: 0px;
  right: 0px;
}
header menu .menu .menuItem:hover > ul {
  opacity: 0;
}
header .socialHub {
  list-style: none;
  font-size: 16px;
  float: right;
  margin-right: 10px;
  position: relative !important;
  margin-top: 6px;
  margin-bottom: 0;
}
header .socialHub .socialHubItem {
  border: 1px solid #000;
  width: 32px;
  height: 32px;
  text-align: center;
  background: #eee;
  display: inline-block;
  position: relative;
}
header .socialHub .socialHubItem a {
  color: #000;
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
}

/*# sourceMappingURL=common.css.map */

/* === Header Colors (common3) === */
.header {
  background: none;
}
.header:before {
  left: -100%;
  right: -100%;
  z-index: 0;
}
.header .topLine .contacts li a {
  color: #fff;
}
.header .mainLine {
  background: #818181;
}

/*# sourceMappingURL=common.css.map */

/* === Footer Base (common4) === */
.footer {
  background: #494949;
  margin-top: 15px;
}
.footer > div {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
}
.footer > div:after {
  content: "";
  display: block;
  clear: both;
}
.footer > div .logo {
  clear: both;
  float: none;
  text-align: center;
  width: 100%;
  display: block;
  padding: 20px 0 0 0;
}
.footer > div .logo img {
  height: 60px;
}
.footer > div .contacts {
  clear: both;
  float: none;
  text-align: center;
  color: #fff;
  padding: 14px;
  height: 35px;
}
.footer > div .contacts a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
.footer > div .copy {
  clear: both;
  float: none;
  text-align: center;
  width: auto;
  color: #fff;
  font-size: 15px;
  padding: 14px;
}
.footer .socialHub {
  position: relative;
  text-align: center;
}
.footer .socialHubItem {
  float: none;
  display: inline-block;
}

/*# sourceMappingURL=common.css.map */

/* === Footer Extended (common5) === */
.footer {
  color: #000; /* @todo: variable */
  background: #ddd; /* @todo: variable */
}
.footer .menuLine {
  text-align: center;
  background: #eee;
}
.footer .menuLine > div {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}
.footer .menuLine:after {
  content: "";
  clear: both;
  display: block;
}
.footer .menuLine .footerLogo {
  display: inline-block;
  clear: both;
  float: none;
  position: relative;
  top: 0;
  padding: 10px 10px 10px 10px;
}
.footer .menuLine .footerLogo .footerLogoLink {
  display: block;
  float: none;
}
.footer .menuLine .footerLogo .footerLogoLink img {
  max-width: 100%;
  max-height: 70px;
  float: left;
}
.footer .menuLine .footerLogo .footerLogoText {
  text-transform: uppercase;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 0 0 5px;
  letter-spacing: 1px;
  float: left;
  text-decoration: none;
}
.footer .menuLine .socialHub {
  list-style: none;
  margin: 0 0 0 10px;
  float: none;
  clear: both;
  display: block;
}
.footer .menuLine .iconPhone {
  text-decoration: none;
  color: #000;
  padding: 0;
  font-size: 14px;
  float: none;
  display: block;
  clear: both;
}
.footer .menuLine .iconPhone:before {
  padding-right: 10px;
  font-size: 20px;
  position: relative;
  margin-top: -2px;
  float: none;
  top: 3px;
}
.footer .menuLine .menu {
  display: block;
  width: 600px;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  position: relative;
  /* Common only */
  padding: 10px 0;
}
.footer .menuLine .menu input[type=checkbox] {
  display: none;
}
.footer .menuLine .menu > li {
  font-size: 15px;
  position: relative;
  /* Common only */
  display: block;
  height: 20px;
  padding-top: 5px;
  /* Common only */
}
.footer .menuLine .menu > li > a:before, .footer .menuLine .menu > li > label:before {
  display: none;
}
.footer .menuLine .menu > li label, .footer .menuLine .menu > li a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.footer .menuLine .menu > li:first-child label:before, .footer .menuLine .menu > li:first-child a:before {
  display: none;
}
.footer .menuLine .menu > li > ul {
  top: 0;
  bottom: auto;
  transform: translateY(-100%);
  left: 0px;
  position: absolute;
  right: 0px;
  width: auto;
  max-width: initial;
}
.footer .menuLine .menu > li > ul li {
  position: relative;
}
.footer .menuLine .menu > li > ul li ul {
  position: absolute;
  bottom: 100%;
  left: -5px;
  width: auto;
  right: -5px;
}
.footer .menuLine .menu > li:last-child label:after {
  display: none;
}
.footer .subLine {
  padding-top: 0;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 14px;
}
.footer .subLine .copy {
  line-height: 18px;
  overflow: hidden;
  float: none;
  text-align: center;
  max-width: none;
  padding: 20px 0 10px 0;
}
.footer .subLine .message {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 5px 10px 5px;
}
.footer .subLine .vendor {
  text-align: center;
}
.footer .subLine .vendor img {
  max-width: 100%;
}
.footer .subLine .vendor a {
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.7px;
  font-weight: bold;
}

/*# sourceMappingURL=common.css.map */

/* === Footer Colors (common6) === */
.footer {
  background: #fbfbfb;
  color: #000;
}
.footer .menuLine {
  background: #fcef3c;
}
.footer > div .copy {
  color: #000;
}

/*# sourceMappingURL=common.css.map */

/* === Body Background (common7) === */
body {
  background: #fbfbfb;
}

/*# sourceMappingURL=common.css.map */

/* === Customer === */
.customerHeader {
  float: right;
  font-size: 13px;
  padding-top: 2px;
}
.customerHeader a {
  color: #000;
  margin-left: 5px;
  padding-top: 1px;
  cursor: pointer;
  text-decoration: underline;
}

/*# sourceMappingURL=customer.css.map */

/* === Locale === */
.localeHeader {
  float: right;
  margin-left: 10px;
  position: relative;
}
.localeHeader:hover .localeList {
  opacity: 1;
  pointer-events: all;
}
.localeHeader .localeCurrent, .localeHeader .localeItem {
  cursor: pointer;
  text-indent: -9999px;
  width: 30px;
  height: 18px;
  position: relative;
}
.localeHeader .localeCurrent a, .localeHeader .localeItem a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.localeHeader .localeList {
  list-style: none;
  position: absolute;
  opacity: 0;
  transition: opacity 1s;
  top: 18px;
  right: 0;
  pointer-events: none;
  box-shadow: 3px 3px 9px #000;
}
.localeHeader [data-locale=en] {
  background: url("../../image/countries.png") 0 0;
  background-size: 100% auto;
}
.localeHeader [data-locale=ru] {
  background: url("../../image/countries.png") 0 -42px;
  background-size: 100% auto;
}
.localeHeader [data-locale=uk] {
  background: url("../../image/countries.png") 0 -21px;
  background-size: 100% auto;
}

/*# sourceMappingURL=locale.css.map */

/* === Social Hub === */
.socialHub {
  list-style: none;
  margin-left: 5px;
}
.socialHubItem {
  float: left;
  background: #eee;
  margin-right: 5px;
}
.socialHubItem > a {
  padding: 0;
  display: block;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  width: 25px;
  height: 25px;
  position: relative;
}
.socialHubItem > a:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.socialHubItem > a > span {
  display: none;
}

/*# sourceMappingURL=style.css.map */

/* === Site Colors (Columbus Schema) === */
/* Columbus Schema */
#header:before {
  background: #633103cc;
  color: #ffffffff;
}
#header .mainLine {
  background: #f8f507ff;
  color: #000000ff;
}
#header .mainLine a {
  color: #000000ff;
}
#header .socialHub .socialHubItem a {
  background: #633103cc;
  color: #ffffffff;
}
#footer .menuLine {
  background: #356303ff;
  color: #ffffffff;
}
#footer .menuLine .menu > li > a:before {
  background: #ffffffff;
}
#footer .menuLine a {
  color: #ffffffff;
}
#footer .socialHub .socialHubItem a {
  background: #633103cc;
  color: #ffffffff;
}
.titledBlock {
  color: #000;
  margin-bottom: 25px;
  position: relative;
  padding: 30px 10px 10px 10px;
}
.titledBlock img {
  max-width: 100%;
}
.titledBlock > div:first-child {
  border: 1px solid #000;
  color: #36294a;
  position: absolute;
  left: 30px;
  top: 0;
  padding: 0;
  min-width: 200px;
  transform: translateY(-50%);
}
.titledBlock > div:first-child > span {
  display: block;
  padding: 10px;
  position: relative;
  background: #eeeeeeee;
}
.titledBlock > div + div {
  display: block;
}
.titledBlock::after {
  clear: both;
  content: "";
  display: block;
}
.titledBlock.doubleTitledBlock > div:first-child {
  border: none;
  background: transparent;
}
.titledBlock.doubleTitledBlock > div:first-child > div {
  display: inline-block;
  border: 1px solid #000;
  color: #36294a;
  position: relative;
  left: 30px;
  top: 0;
  padding: 0;
  min-width: 200px;
}
.titledBlock.doubleTitledBlock > div:first-child > div > span {
  display: block;
  padding: 10px;
  position: relative;
  background: #eeeeeeee;
}

/* === Homepage === */
.page::before {
  content: "";
  position: absolute;
  display: block;
  height: 200px;
  width: 100%;
  background: url(/media/page/boilerovich/images/background.jpg) 0px 0px;
  background-size: 100% auto;
  z-index: -1;
}
.page .main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}
.singleBanner {
  position: relative;
  margin-bottom: 70px;
}
.singleBanner .content {
  position: relative;
  max-width: 500px;
  margin: 50px auto 50px auto;
  padding: 20px;
  background: #ffffffcc;
  z-index: 2;
}
.singleBanner .background {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -28px;
  overflow: hidden;
  z-index: 1;
}
.singleBanner .background img:first-child {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.singleBanner .background img:last-child {
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: none;
}
/* titledBlock */
.titledBlock > div:first-child::before, .titledBlock > div:first-child > div:last-child::before, .doubleTitledBlock > div:first-child::before, .doubleTitledBlock > div:first-child > div:last-child::before {
  content: "";
  background: url(/media/page/boilerovich/images/icons.png) -121px 0px;
  display: block;
  width: 125px;
  height: 89px;
  position: absolute;
  top: -32px;
  right: 5px;
  overflow: hidden;
}
.titledBlock > div:first-child > span, .titledBlock > div:first-child > div:first-child > span, .doubleTitledBlock > div:first-child > span, .doubleTitledBlock > div:first-child > div:first-child > span {
  background: #fdf165ee;
}
.titledBlock {
  margin-bottom: 35px;
}
.titledBlock > div:first-child {
  text-transform: uppercase;
}
.doubleTitledBlock > div:first-child {
  text-transform: uppercase;
}
.doubleTitledBlock > div:first-child::before {
  display: none;
}
.doubleTitledBlock > div:first-child > div:last-child > span {
  background: #ede8abee;
}
/* titledBlock.service */
.titledBlock.service {
  background: #36294a;
  color: #fff;
}
.titledBlock.service div:nth-child(2n) {
  display: block;
}
.titledBlock.service div:nth-child(2n) > ul {
  display: block;
  width: auto;
  margin: 0 10px 10px 10px;
  padding: 10px;
  position: relative;
  list-style: none;
}
.titledBlock.service div:nth-child(2n) > ul::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background: #ffffffee;
}
.titledBlock.service div:nth-child(2n) > ul > * {
  position: relative;
  color: #36294a;
}
.titledBlock.service div:nth-child(2n) > ul > li ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
/* .titledBlock.boilerTypes */
.titledBlock.boilerTypes:before {
  content: "";
  display: block;
  position: absolute;
  left: -100%;
  right: -100%;
  top: 0px;
  bottom: 0px;
  background: #eeeeee;
  z-index: -1;
}
.titledBlock.boilerTypes div:nth-child(2n) img {
  width: 48%;
  margin: 0px 1%;
  float: left;
}
.titledBlock.boilerTypesCheap, .titledBlock.boilerTypesMiddle, .titledBlock.boilerTypesTop {
  background: #36294a;
  color: #fff;
}
.titledBlock.boilerTypesCheap div:nth-child(2n) {
  text-align: center;
}
.titledBlock.boilerTypesCheap div:nth-child(2n) img {
  width: 45%;
  margin: 5px 1%;
}
.titledBlock.boilerTypesMiddle div:nth-child(2n) {
  text-align: center;
}
.titledBlock.boilerTypesMiddle div:nth-child(2n) img {
  width: 45%;
  margin: 5px 1%;
}
.titledBlock.boilerTypesTop div:nth-child(2n) {
  text-align: center;
}
.titledBlock.boilerTypesTop div:nth-child(2n) img {
  width: 45%;
  margin: 5px 1%;
}
.titledBlock.reviews {
  background: #eee;
  color: #000;
}
.titledBlock.reviews .blockPost {
  float: left;
  display: block;
  width: auto;
  padding: 15px;
  background: #ffffff;
  margin: 10px;
  text-align: center;
}
.titledBlock.reviews .blockPost .title {
  margin: 0px;
  font-weight: bold;
  overflow: hidden;
  text-align: left;
  background: transparent;
  padding: 0px;
}
.titledBlock.reviews .blockPost .title > span {
  float: left;
  padding: 10px 0px 0px 0px;
}
.titledBlock.reviews .blockPost .content {
  height: 105px;
  overflow: hidden;
  text-align: left;
}
.titledBlock.reviews .blockPost .socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  float: right;
}
.container.blockBrands table {
  width: 100%;
}
.container.blockBrands img {
  width: 100%;
}
@media (min-width: 640px) {
  .titledBlock.service div:nth-child(2n) {
    display: table;
    width: calc(100% + 20px);
    margin-left: -10px;
    border-spacing: 10px 0px;
    position: relative;
  }
  .titledBlock.service div:nth-child(2n) ul {
    display: table-cell;
    width: 50%;
  }
  .titledBlock.boilerTypes div:nth-child(2n) img {
    width: 18%;
    margin: 0px 3%;
  }
  .titledBlock.boilerTypesCheap div:nth-child(2n) img {
    width: 18%;
    float: left;
  }
  .titledBlock.boilerTypesMiddle div:nth-child(2n) img {
    width: 18%;
    float: left;
  }
  .titledBlock.boilerTypesTop div:nth-child(2n) img {
    width: 18%;
    float: left;
  }
  .titledBlock.reviews .blockPost {
    width: calc(33.3% - 50px);
  }
  .singleBanner .background img:last-child {
    display: block;
  }
}
