@font-face {
  font-family: 'Roboto Light';
  src: url("../fonts/roboto-light-webfont.eot");
  src: url("../fonts/roboto-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-light-webfont.woff") format("woff"), url("../fonts/roboto-light-webfont.ttf") format("truetype"), url("../fonts/roboto-light-webfont.svg#robotolight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Regular';
  src: url("../fonts/roboto-regular-webfont.eot");
  src: url("../fonts/roboto-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-regular-webfont.woff") format("woff"), url("../fonts/roboto-regular-webfont.ttf") format("truetype"), url("../fonts/roboto-regular-webfont.svg#robotoregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Medium';
  src: url("../fonts/roboto-medium-webfont.eot");
  src: url("../fonts/roboto-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-medium-webfont.woff") format("woff"), url("../fonts/roboto-medium-webfont.ttf") format("truetype"), url("../fonts/roboto-medium-webfont.svg#robotomedium") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Bold';
  src: url("../fonts/roboto-bold-webfont.eot");
  src: url("../fonts/roboto-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-bold-webfont.woff") format("woff"), url("../fonts/roboto-bold-webfont.ttf") format("truetype"), url("../fonts/roboto-bold-webfont.svg#robotobold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Black';
  src: url("../fonts/roboto-black-webfont.eot");
  src: url("../fonts/roboto-black-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-black-webfont.woff") format("woff"), url("../fonts/roboto-black-webfont.ttf") format("truetype"), url("../fonts/roboto-black-webfont.svg#robotoblack") format("svg");
  font-weight: normal;
  font-style: normal;
}

.display-block {
  display: block;
}

.overlay-link {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  display: block;
  top: 0;
  left: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Regular", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  background: #fff;
  min-width: 320px;
  min-height: 100%;
}

.main-btn {
  display: inline-block;
  background: #d13a37;
  color: #fff;
  font-size: 14px;
  outline: 0;
  border: 0;
  cursor: pointer;
  border-radius: 4px;
  padding: 8px 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  outline: 0;
}

.main-btn:hover, .main-btn:focus {
  text-decoration: none;
  color: #fff;
}

.main-btn:hover {
  background: #b4312f;
}

.section-title, h1 {
  text-align: center;
  font-size: 50px;
  font-family: "Roboto Bold", Arial, sans-serif;
  margin: 0 0 10px;
}

@media (max-width: 1536px) {
  .section-title, h1 {
    font-size: 42px;
  }
}

@media (max-width: 1366px) {
  .section-title, h1 {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .section-title, h1 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .section-title, h1 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section-title, h1 {
    font-size: 24px;
  }
}

@media (max-width: 567px) {
  .section-title, h1 {
    font-size: 22px;
    font-family: "Roboto Medium", Arial, sans-serif;
  }
}

@media (max-width: 480px) {
  .section-title, h1 {
    font-size: 21px;
  }
}

.header {
  background-color: #fff;
}

.header-top {
  background: url(../img/header-top-bg.png) repeat center;
  padding: 3px 0;
}

.header-top .main-nav {
  float: left;
}

.header-top .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-top .main-nav ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0 9px;
  margin-right: 19px;
}

.header-top .main-nav ul li:first-of-type {
  padding-left: 0;
}

.header-top .main-nav ul li a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 7px 0 9px;
  font-size: 12.5px;
  color: #fff;
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  transition: 0.25s all linear;
}

.header-top .main-nav ul li a:before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  background: #3bbaeb;
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  transition: 0.25s all linear;
}

.header-top .main-nav ul li a:hover, .header-top .main-nav ul li a:focus {
  text-decoration: none;
  outline: 0;
}

.header-top .main-nav ul li a:hover {
  color: #b3b3b3;
}

.header-top .main-nav ul li a:hover:before {
  left: 0;
  right: 0;
  width: 100%;
}

.header-top .main-nav ul li.active a {
  color: #b3b3b3;
}

.header-top .main-nav ul li.active a:before {
  left: 0;
  right: 0;
  width: 100%;
}

.header-top .header-lang {
  width: 70px;
  position: relative;
  float: right;
  margin-top: 5px;
  margin-left: 15px;
  z-index: 10;
}

.header-top .header-lang .dropdown-toggle {
  background-color: transparent;
  border: none;
  position: relative;
  color: #fff;
  font-size: 13px;
  width: 100%;
  height: 100%;
  outline: 0;
}

.header-top .header-lang .dropdown-toggle:before, .header-top .header-lang .dropdown-toggle:after {
  position: absolute;
  z-index: 1;
}

.header-top .header-lang .dropdown-toggle:before {
  content: '\f0ac';
  font-family: FontAwesome;
  top: 1px;
  left: 3px;
  font-size: 14px;
}

.header-top .header-lang .dropdown-toggle:after {
  content: '\f107';
  font-family: FontAwesome;
  font-size: 16px;
  top: -1px;
  right: 5px;
}

.header-top .header-lang .dropdown-menu {
  min-width: auto;
  padding: 0;
  overflow: hidden;
  top: 30px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 0;
  box-shadow: none;
  border: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header-top .header-lang .dropdown-menu li a {
  text-align: center;
  font-size: 14px;
  padding: 4px 0;
}

.header-top .header-lang .dropdown-menu li a:hover {
  background-color: #555;
  color: #fff;
}

.header-top .login-block {
  position: relative;
  color: #fff;
  float: right;
  margin-top: 5px;
  margin-left: 10px;
}

.header-top .login-block i {
  font-style: normal;
  font-size: 16px;
  position: relative;
  font-family: "Roboto Light", Arial, sans-serif;
}

.header-top .enter-link {
  color: #fff;
  display: inline-block;
  vertical-align: top;
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  position: relative;
}

.header-top .enter-link:before {
  font-family: FontAwesome;
}

.header-top .enter-link.cabinet-link {
  padding-left: 25px;
  padding-top: 2px;
}

.header-top .enter-link.cabinet-link:before {
  content: '';
  display: block;
  background: url(../img/user-icon.png) no-repeat center;
  font-size: 38px;
  color: #333;
  position: absolute;
  top: -6px;
  left: -5px;
  width: 32px;
  height: 35px;
  text-align: center;
}

.header-top .enter-link.signout-link {
  padding-top: 2px;
  padding-right: 25px;
}

.header-top .enter-link.signout-link:after {
  content: '';
  display: block;
  background: url(../img/signout-icon.png) no-repeat center;
  font-size: 18px;
  width: 17px;
  height: 15px;
  position: absolute;
  top: 4px;
  right: 0;
}

.header-top .enter-link.login-link {
  padding-top: 2px;
  padding-left: 25px;
  margin-right: 3px;
  height: 20px;
}

.header-top .enter-link.login-link:before {
  content: '';
  display: block;
  width: 19px;
  height: 17px;
  font-size: 20px;
  background: url(../img/signin-icon.png) no-repeat center;
  position: absolute;
  top: 3px;
  left: 0;
}

.header-top .enter-link.reg-link {
  padding-top: 2px;
  padding-left: 25px;
  margin-left: 5px;
  height: 20px;
}

.header-top .enter-link.reg-link:before {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../img/user-icon.png) no-repeat center;
  font-size: 20px;
  position: absolute;
  top: 2px;
  left: 2px;
}

.header-top .nav-toggle {
  float: left;
  outline: 0;
  border: 0;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 37px;
  padding: 5px 8px 0 8px;
  border-radius: 2px;
  background: #000;
  position: relative;
  display: none;
  overflow: hidden;
}

.header-top .nav-toggle span {
  height: 3px;
  background: #fff;
  display: block;
  margin: 0 auto 5px;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}

.header-top .nav-toggle span:first-child {
  margin-top: 0;
}

.header-top .nav-toggle.active {
  opacity: 0;
}

.header-top .close-toggle {
  position: absolute;
  top: -1px;
  right: 1px;
  width: 40px;
  height: 37px;
  border: 0;
  outline: 0;
  padding: 5px 8px 0 8px;
  background: #000;
  cursor: pointer;
  display: none;
}

.header-top .close-toggle span {
  height: 3px;
  background: #fff;
  display: block;
  margin: 0 auto 5px;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}

.header-top .close-toggle span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 4px;
  left: 0;
}

.header-top .close-toggle span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -4px;
  left: 0px;
}

.header-top .header-social {
  float: right;
  margin-top: 4px;
}

.header-top .header-social .facebook-link {
  display: block;
  position: relative;
  color: #fff;
  width: 10px;
  height: 25px;
}

.header-top .header-social .facebook-link:before {
  content: '\f09a';
  font-family: FontAwesome;
  position: absolute;
  font-size: 18px;
  top: 0;
  left: 0;
}

.header-content {
  padding: 30px 0;
  padding: 24px 0 13px;
}

.header-content .container {
  position: relative;
}

.header-content .tel-dropdown {
  float: left;
}

.header-content .tel-item,
.header-content .other-contacts {
  display: inline-block;
  vertical-align: top;
}

.header-content .tel-item {
  margin-right: 50px;
}

.header-content .tel-item .item-one,
.header-content .tel-item .item-two {
  padding-left: 25px;
  position: relative;
  color: #393b44;
}

.header-content .tel-item .item-one a,
.header-content .tel-item .item-two a {
  color: inherit;
}

.header-content .tel-item .item-one:before,
.header-content .tel-item .item-two:before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
}

.header-content .tel-item .item-one:before {
  background: url(../img/kyivstar-icon.png) no-repeat center;
}

.header-content .tel-item .item-two:before {
  background: url(../img/vodafone-icon.png) no-repeat center;
}

.header-content .other-contacts {
  margin-right: 15px;
}

.header-content .other-contacts .item-three,
.header-content .other-contacts .mail-item {
  padding-left: 25px;
  position: relative;
  color: #34363e;
}

.header-content .other-contacts .item-three a,
.header-content .other-contacts .mail-item a {
  color: inherit;
}

.header-content .other-contacts .item-three:before,
.header-content .other-contacts .mail-item:before {
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  color: #555;
}

.header-content .other-contacts .item-three:before {
  content: '\f098';
  left: 2px;
}

.header-content .other-contacts .mail-item:before {
  content: '\f1d8';
}

.header-content .logo {
  display: block;
  width: 220px;
  height: 100px;
  background: url(../img/logo.png) no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  top: -48px;
  margin: auto;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.header-content .search-block {
  position: absolute;
  right: 5px;
  top: 4px;
}

.header-content .searchbox {
  position: relative;
  min-width: 40px;
  width: 0;
  height: 50px;
  float: right;
  overflow: hidden;
  z-index: 100;
  padding: 0;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.header-content .searchbox .fa-search {
  position: absolute;
  top: 11px;
  left: 12px;
}

.header-content .searchbox-input {
  top: 0;
  right: 0;
  border: 0;
  outline: 0;
  background: #eee;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0px 35px 0px 10px;
  font-size: 14px;
  color: #202020;
}

.header-content .searchbox-input::-webkit-input-placeholder {
  color: #202020;
}

.header-content .searchbox-input::-moz-placeholder {
  color: #202020;
}

.header-content .searchbox-input:-moz-placeholder {
  color: #202020;
}

.header-content .searchbox-input:-ms-input-placeholder {
  color: #202020;
}

.header-content .searchbox-icon,
.header-content .searchbox-submit {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  padding: 0;
  margin: 0;
  border: 0;
  border-left: 1px dotted #999;
  outline: 0;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  color: #000;
  background: #fff;
  border-radius: 0;
}

.header-content .searchbox-open {
  width: 270px;
}

.header-content .basket-block {
  position: relative;
  padding-left: 55px;
  float: right;
  margin-top: 5px;
  margin-right: 44px;
}

.header-content .basket-block:before {
  content: '\f07a';
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  color: #2b2a29;
  font-size: 36px;
  line-height: 1;
}

.header-content .basket-block .prod-num,
.header-content .basket-block .prod-sum {
  margin: 0;
  font-size: 13px;
}

.header-content .basket-block .prod-num i,
.header-content .basket-block .prod-sum i {
  font-style: normal;
  color: #2b2a29;
}

.header-content .basket-block .prod-num span,
.header-content .basket-block .prod-sum span {
  color: #070707;
}

.header-content .basket-block.prod-exist:after {
  content: '\f00c';
  font-family: FontAwesome;
  display: block;
  border-radius: 100%;
  color: #fff;
  background: #31a8e6;
  font-size: 11px;
  width: 17px;
  height: 17px;
  text-align: center;
  line-height: 17px;
  position: absolute;
  top: -1px;
  left: 22px;
}

.header-content .tel-toggle {
  border-radius: 100%;
  width: 30px;
  height: 30px;
  border: 0;
  outline: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  position: relative;
  margin-left: 5px;
  margin-top: 5px;
  display: none;
}

.header-content .tel-toggle:before {
  content: '\f095';
  font-family: FontAwesome;
  position: absolute;
  top: 4px;
  left: 8px;
}

.header-bottom {
  background: url(../img/header-bottom-bg.png) repeat-x center;
  border-top: 1px solid #2b2e30;
  border-bottom: 1px solid #2b2e30;
}

.header-bottom .nav-col {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-bottom .nav-col.active .menu-toggle {
  background-color: #d84642;
}

.header-bottom .nav-col:before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: #3bbaeb;
  -webkit-transition: 0.15s all linear;
  -moz-transition: 0.15s all linear;
  transition: 0.15s all linear;
}

.header-bottom .nav-col:hover, .header-bottom .nav-col:focus {
  text-decoration: none;
  outline: 0;
}

.header-bottom .nav-col:hover {
  background: rgba(0, 0, 0, 0.3);
}

.header-bottom .nav-col:hover:before {
  left: 0;
  right: 0;
  width: 100%;
}

// .header-bottom .nav-col.active:before {
//   left: 0;
//   right: 0;
//   width: 100%;
// }


// .header-bottom .nav-col:first-child .menu-toggle {
//   background-color: #d84642;
// }

.header-bottom .nav-col .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  list-style: none;
  z-index: 1000;
  height: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.header-bottom .nav-col .dropdown li a {
  display: block;
  color: #fff;
  padding: 8px 35px 8px 20px;
  font-size: 13px;
  background: url(../img/header-bottom-bg.png) repeat center;
  border-top: 1px solid #4a4d56;
  border-bottom: 1px solid #25282f;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  position: relative;
}

.header-bottom .nav-col .dropdown li a:after {
  content: '\f105';
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 15px;
  height: 20px;
  margin-top: -8px;
  line-height: 1;
  font-size: 16px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.header-bottom .nav-col .dropdown li a:hover, .header-bottom .nav-col .dropdown li a:focus {
  text-decoration: none;
}

.header-bottom .nav-col .dropdown li a:hover {
  color: #66bbee;
}

.header-bottom .nav-col .dropdown li a:hover:after {
  right: 10px;
}

.header-bottom .nav-col .menu-toggle {
  display: block;
  color: #fff;
  height: 50px;
  cursor: pointer;
  border: 0;
  background: transparent;
  border-left: 1px solid #16496a;
  border-right: 1px solid #0b293c;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  outline: 0;
  color: #fff;
  font-size: 15px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 0;
  text-align: center;
}

.header-bottom .nav-col .menu-toggle:hover, .header-bottom .nav-col .menu-toggle:active, .header-bottom .nav-col .menu-toggle:focus {
  text-decoration: none;
}

.header-bottom .nav-col .icon {
  width: 40px;
  height: 35px;
  margin: 0;
  margin-right: 20px;
  line-height: 48px;
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
}

.header-bottom .nav-col .text {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
}

.header-bottom .nav-col:nth-child(1) .icon {
  background: url(../img/gps-icon.png) no-repeat center;
}

.header-bottom .nav-col:nth-child(2) .icon {
  background: url(../img/nav-icon-2.png) no-repeat center;
}

.header-bottom .nav-col:nth-child(3) .icon {
  background: url(../img/nav-icon-3.png) no-repeat center;
}

.header-bottom .cat-toggle {
  position: relative;
  padding: 0 38px 0 0;
  height: 40px;
  width: 100px;
  float: right;
  border: 0;
  color: #fff;
  outline: none;
  background: transparent;
  line-height: 40px;
  display: none;
}

.header-bottom .cat-toggle span {
  position: absolute;
  width: 23px;
  height: 4px;
  background: #fff;
  right: 0;
}

.header-bottom .cat-toggle span:nth-child(1) {
  top: 9px;
}

.header-bottom .cat-toggle span:nth-child(2) {
  top: 17px;
}

.header-bottom .cat-toggle span:nth-child(3) {
  top: 25px;
}

.header-bottom .cat-toggle span:before {
  content: '';
  display: block;
  width: 5px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.header-bottom .cat-toggle.active span:before {
  left: -9px;
}

.header-bottom .col-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #16496a;
  border-left: 1px solid #0a2638;
}

@media (max-width: 1199px) {
  .header-top .main-nav ul li {
    padding: 0 5px;
  }
  .header-top .main-nav ul li a {
    font-size: 12px;
  }
  .header-content {
    padding: 20px 0 15px;
  }
  .header-content .logo {
    background-size: contain;
  }
  .header-content .tel-item {
    margin-right: 15px;
  }
  .header-bottom .nav-col .dropdown li a {
    padding: 8px 25px 8px 10px;
  }
  .header-bottom .nav-col .menu-toggle {
    font-size: 13px;
    padding: 0;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .header-bottom .nav-col:hover .dropdown {
    opacity: 1;
    height: auto;
  }
}

@media (max-width: 991px) {
  .header-top {
    position: relative;
  }
  .header-top .nav-toggle,
  .header-top .close-toggle {
    display: block;
  }
  .header-top .main-nav {
    float: none;
    position: absolute;
    width: 350px;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    padding: 40px 10px 10px 30px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
    z-index: 10000;
  }
  .header-top .main-nav.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .header-top .main-nav ul li {
    display: block;
    padding: 0;
    margin: 0 0 10px;
  }
  .header-top .main-nav ul li a {
    display: block;
    font-size: 14px;
  }
  .header-top .main-nav ul li a:hover {
    padding-left: 10px;
  }
  .header-top .main-nav ul li a:hover:before {
    display: none;
  }
  .header-top .header-lang {
    margin-top: 7px;
  }
  .header-top .login-block {
    margin-top: 7px;
    margin-left: 5px;
  }
  .header-top .login-block .enter-link.cabinet-link, .header-top .login-block .enter-link.signout-link, .header-top .login-block .enter-link.login-link, .header-top .login-block .enter-link.reg-link {
    height: 22px;
  }
  .header-top .login-block .enter-link.cabinet-link span, .header-top .login-block .enter-link.signout-link span, .header-top .login-block .enter-link.login-link span, .header-top .login-block .enter-link.reg-link span {
    display: none;
  }
  .header-top .lang-block {
    margin-top: 2px;
  }
  .header-content .logo {
    top: -50px;
    width: 140px;
    height: 75px;
    background-size: contain;
  }
  .header-content .tel-item {
    margin-right: 5px;
  }
  .header-content .tel-item .item-one,
  .header-content .tel-item .item-two {
    font-size: 12px;
    padding-left: 20px;
    margin-bottom: 8px;
  }
  .header-content .tel-item .item-one:before,
  .header-content .tel-item .item-two:before {
    width: 15px;
    height: 15px;
    background-size: contain;
  }
  .header-content .other-contacts .item-three,
  .header-content .other-contacts .mail-item {
    font-size: 13px;
    padding-left: 20px;
    margin-bottom: 4px;
  }
  .header-bottom {
    position: relative;
  }
  .header-bottom .cat-toggle {
    display: block;
  }
  .header-bottom .container .col-wrap {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
    z-index: 1000;
  }
  .header-bottom .container .col-wrap.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .header-bottom .nav-col {
    float: none;
    width: 100% !important;
    border: 0;
    border-top: 1px solid #16496a;
    border-bottom: 1px solid #0b293c;
  }
  .header-bottom .nav-col:first-child .menu-toggle {
    background: #d84642;
  }
  .header-bottom .nav-col:first-child .menu-toggle:hover {
    background: #d84642;
  }
  .header-bottom .nav-col:before {
    display: none;
  }
  .header-bottom .nav-col p {
    font-size: 14px;
  }
  .header-bottom .nav-col .icon {
    width: 32px;
    height: 32px;
    background-size: contain !important;
  }
  .header-bottom .nav-col .menu-toggle {
    font-size: 12px;
    height: auto;
    padding: 5px 10px;
    border: 0;
    background: url(../img/header-bottom-bg.png) repeat-x center;
    outline: none;
  }
  .header-bottom .nav-col .menu-toggle:hover {
    background: url(../img/header-bottom-bg.png) repeat-x center;
  }
  .header-bottom .nav-col .menu-toggle .text {
    line-height: 38px;
  }
  .header-bottom .nav-col .menu-toggle .icon {
    line-height: 38px;
  }
  .header-bottom .nav-col .dropdown {
    position: static;
    height: auto;
    background: #000;
    opacity: 1;
    display: none;
    margin: 0;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .header-bottom .nav-col .dropdown li a {
    background: #171616;
    border: 0;
    border-bottom: 1px solid #25282f;
    text-align: center;
  }
  .header-bottom .nav-col .dropdown.active {
    display: block;
  }
  .header-bottom .nav-col:nth-child(1) .dropdown {
    width: 100%;
  }
  .header-bottom .nav-col:nth-child(2) .dropdown {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header-content {
    padding: 10px 0;
  }
  .header-content .search-block {
    top: 1px;
  }
  .header-content .logo {
    top: -40px;
  }
  .header-content .tel-toggle {
    display: inline-block;
  }
  .header-content .tel-dropdown {
    position: absolute;
    top: 45px;
    left: 15px;
    z-index: 10000;
    background: #fff;
    border-radius: 5px;
    padding: 20px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: none;
  }
  .header-content .tel-dropdown.active {
    display: block;
  }
  .header-content .tel-item {
    display: block;
  }
  .header-content .tel-item .item-one,
  .header-content .tel-item .item-two {
    margin-bottom: 12px;
  }
  .header-content .other-contacts {
    display: block;
  }
  .header-content .other-contacts .item-three {
    margin-bottom: 10px;
  }
  .header-content .other-contacts .mail-item {
    margin-bottom: 0;
  }
  .header-content .basket-block {
    height: 36px;
    margin-right: 50px;
    margin-top: 3px;
  }
  .header-content .basket-block .prod-num i {
    display: none;
  }
  .header-content .basket-block .prod-num span {
    font-family: "Roboto Bold", Arial, sans-serif;
    font-size: 15px;
    position: absolute;
    top: -2px;
    left: 45px;
    width: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-content .basket-block .prod-sum {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-top .lang-block {
    float: left;
  }
  .header-top .lang-block .jq-selectbox__select {
    padding: 0 30px 0 10px;
  }
  .header-top .lang-block .jq-selectbox__select:before {
    display: none;
  }
  .header-top .header-lang {
    float: left;
    margin-top: 8px;
  }
  .header-content .logo {
    width: 120px;
    top: -30px;
  }
  .header-content .basket-block {
    margin-right: 25px;
  }
  .header-content .basket-block:before {
    font-size: 30px;
  }
  .header-content .basket-block .prod-num span {
    left: 32px;
  }
  .header-content .basket-block.prod-exist:after {
    font-size: 7px;
    width: 13px;
    height: 13px;
    line-height: 13px;
    top: 0px;
    left: 18px;
  }
}

.slider-wrappper {
  position: relative;
}

.slider-wrappper .monitor-img {
  width: 670px;
  height: 440px;
  position: absolute;
  bottom: -120px;
  right: 20%;
  z-index: 105;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.main-slider.slick-initialized .item {
  display: block;
}

.main-slider:after {
  content: '';
  display: block;
  width: 100%;
  height: 180px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/main-slider-after.png) no-repeat bottom center;
  background-size: cover;
  z-index: 10;
  pointer-events: none;
}

.main-slider .item {
  outline: 0;
  display: none;
  height: 540px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.main-slider .item:first-child {
  display: block;
}

.main-slider .overlay-block {
  position: absolute;
  top: 60px;
  right: 0;
  background: rgba(23, 22, 22, 0.8);
  color: #fff;
  width: 70%;
  padding: 25px 30px;
  z-index: 100;
}

.main-slider .overlay-block .title {
  font-size: 34px;
  font-family: "Roboto Bold", Arial, sans-serif;
  margin: 0 190px 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-slider .overlay-block .sub-title {
  font-size: 22px;
  color: #b9c1d3;
  margin: 0 190px 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-slider .overlay-block p {
  margin: 0 190px 20px 0;
}

.main-slider .overlay-block .main-btn {
  height: 45px;
  padding: 0 55px;
  line-height: 45px;
  position: relative;
  z-index: 10000;
  outline: none;
}

.main-slider .overlay-block .main-btn:hover {
  color: #fff;
}

.main-slider .slick-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  list-style: none;
  display: block;
  margin: auto;
  text-align: center;
  padding: 0;
  z-index: 100;
}

.main-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  overflow: hidden;
}

.main-slider .slick-dots li.slick-active button {
  background: #31a8e6;
}

.main-slider .slick-dots li button {
  display: block;
  font-size: 0;
  height: 100%;
  width: 100%;
  background: #dce0e3;
  border: 0;
  outline: 0;
}

@media (max-width: 1440px) {
  .main-slider .overlay-block {
    width: 70%;
  }
}

@media (max-width: 1366px) {
  .main-slider .item {
    height: 500px;
  }
}

@media (max-width: 1199px) {
  .main-slider .overlay-block {
    width: 80%;
    padding: 20px 30px 20px 20px;
  }
  .main-slider .overlay-block .title {
    font-size: 24px;
  }
  .main-slider .overlay-block .sub-title {
    font-size: 21px;
  }
  .main-slider .overlay-block p {
    font-size: 13px;
  }
  .main-slider .overlay-block .main-btn {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
  }
  .main-slider .item {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .main-slider .item {
    height: 400px;
  }
  .main-slider .overlay-block {
    width: auto;
    left: 0;
    right: 0;
    top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 15px;
  }
  .main-slider .overlay-block .title {
    margin: 0 0 5px;
    font-size: 20px;
  }
  .main-slider .overlay-block .sub-title {
    margin: 0 0 10px;
    font-size: 16px;
  }
  .main-slider .overlay-block p {
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .main-slider .item {
    height: 550px;
  }
}

@media (max-width: 568px) {
  .main-slider:after {
    bottom: -15px;
  }
  .main-slider .item {
    height: 300px;
  }
  .main-slider .overlay-block {
    top: 20px;
    padding: 10px 15px;
  }
  .main-slider .overlay-block .title {
    font-size: 18px;
    line-height: 1;
  }
  .main-slider .overlay-block .sub-title {
    font-size: 15px;
  }
  .main-slider .overlay-block p {
    font-size: 13px;
    margin: 0 0 10px;
  }
  .main-slider .overlay-block .main-btn {
    font-size: 13px;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
  }
  .main-slider .slick-dots {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .main-slider:after {
    display: none;
  }
  .main-slider .item {
    height: 550px;
  }
  .main-slider .overlay-block {
    top: 50%;
    margin-right: 10px;
    margin-left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .main-slider .overlay-block p {
    max-height: 70px;
    overflow: hidden;
  }
  .main-slider .slick-dots {
    bottom: 5px;
  }
}

.about {
  padding: 20px 0 60px;
  background-color: #f7f7f7;
}

.about .back-link {
  position: relative;
  padding-left: 15px;
  margin: 0 0 20px;
  display: inline-block;
  color: #000;
}

.about .back-link:before {
  content: '\f104';
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.about .back-link:hover:before {
  left: -5px;
}

.about h1, .about .section-title {
  color: #4b515e;
  margin: 0 0 15px;
}

.about .content {
  margin: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 40px 60px;
  background-color: #fff;
}

.about .content > p {
  max-width: 540px;
  margin: 0 auto 40px;
  text-align: center;
  color: #000;
  font-size: 15px;
}

.about .advantages-title {
  font-size: 18px;
  color: #000;
  margin: 0 0 20px;
}

.about .advantages-block .list-title {
  color: #343434;
  font-size: 16px;
  margin: 0 0 10px;
}

.about .advantages-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .advantages-block ul li {
  position: relative;
  padding-left: 70px;
  margin: 0 0 30px;
}

.about .advantages-block ul li:before {
  font-family: 'Pe-icon-7-stroke';
  position: absolute;
  left: 0;
  top: 10px;
  color: #36b1e9;
  font-size: 60px;
  line-height: 1;
}

.about .advantages-block ul li:nth-child(1):before {
  content: '\e66b';
}

.about .advantages-block ul li:nth-child(2):before {
  content: '\e642';
}

.about .advantages-block ul li:nth-child(3):before {
  content: '\e6a1';
}

.about .advantages-block ul li p {
  color: #7d7d7d;
  font-size: 15px;
}

.about .advantages-block ul li p span {
  font-size: 18px;
  color: #000;
}

.about .text-block .title {
  margin: 20px 0;
  font-family: "Roboto Medium", Arial, sans-serif;
  color: #000;
  font-size: 16px;
}

.about .text-block ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.about .text-block ul li {
  position: relative;
  margin: 0 0 8px;
}

.about .text-block ul li:before {
  content: '\f00c';
  font-family: FontAwesome;
  color: #31a8e6;
  margin-right: 5px;
}

.about .team-grid .team-item {
  padding: 0 10px 20px;
}

.about .team-grid a {
  display: block;
  width: 100%;
}

.about .team-grid img {
  display: block;
  width: 100%;
}

.about .license-grid {
  padding: 0 125px;
}

.about .license-item {
  border-bottom: 1px dashed #c2c2c2;
  margin: 0 0 30px;
}

.about .license-item .img-block {
  margin: 0 0 10px;
}

.about .license-item a {
  display: block;
  width: 100%;
  outline: 0;
}

.about .license-item img {
  display: block;
  max-width: 100%;
}

.about .license-item p {
  font-size: 16px;
}

@media (max-width: 991px) {
  .about {
    padding: 10px 0 30px;
  }
  .about .back-link {
    margin: 0 0 10px;
  }
  .about .content {
    padding: 20px;
  }
  .about .content > p {
    margin-bottom: 20px;
  }
  .about .advantages-title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .about .content {
    padding: 15px;
  }
  .about .content > p {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .about .advantages-block ul li {
    padding-left: 55px;
  }
  .about .advantages-block ul li:before {
    font-size: 50px;
    top: 0;
  }
}

.contacts {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.contacts h1 {
  color: #4b515e;
  margin: 0 0 15px;
}

.contacts .content {
  margin: 0 0 40px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 30px 0 60px;
  background-color: #fff;
}

.contacts .content > p {
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  font-family: "Roboto Light", Arial, sans-serif;
  text-align: center;
  max-width: 420px;
  margin: 0 auto 30px;
}

.contacts .contact-item {
  float: left;
  width: 33.33%;
  text-align: center;
  border-right: 1px solid #dadada;
  padding: 10px 0;
}

.contacts .contact-item:last-of-type {
  border-right: 0;
}

.contacts .contact-item .icon-block {
  display: block;
  width: 50px;
  margin: 0 auto 20px;
  color: #4cb3e9;
}

.contacts .contact-item .icon-block span {
  font-size: 25px;
}

.contacts .contact-item p {
  margin: 0 0 5px;
  font-size: 16px;
  color: #656564;
  text-align: center;
}

.contacts .contact-item a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
}

.contacts .map-block {
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.contacts .map-block .left-block,
.contacts .map-block .form-block {
  float: left;
}

.contacts .map-block .left-block {
  width: 70%;
  height: 480px;
  position: relative;
}

.contacts .map-block .form-block {
  width: 30%;
  height: 480px;
  background: #fff;
}

.contacts .map-block .form-block .title {
  color: #616976;
  font-size: 16px;
  padding: 25px 30px;
  border-bottom: 1px solid #e1e8ee;
  margin-bottom: 20px;
}

.contacts .map-block .form-block form {
  padding: 0 29px;
}

.contacts .map-block .form-block .form-control {
  margin: 0 0 20px;
  box-shadow: none;
  border: 2px solid #e1e8ee;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  color: #000;
}

.contacts .map-block .form-block .form-control::-webkit-input-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .form-control::-moz-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .form-control:-moz-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .form-control:-ms-input-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .form-control:focus {
  border: 2px solid #31a8e6;
}

.contacts .map-block .form-block .textarea-control {
  margin: 0 0 20px;
  box-shadow: none;
  border: 2px solid #e1e8ee;
  resize: none;
  display: block;
  width: 100%;
  outline: none;
  border-radius: 5px;
  height: 95px;
  padding: 8px 12px;
  color: #000;
}

.contacts .map-block .form-block .textarea-control::-webkit-input-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .textarea-control::-moz-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .textarea-control:-moz-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .textarea-control:-ms-input-placeholder {
  color: #bfc6cc;
}

.contacts .map-block .form-block .textarea-control:focus {
  border: 2px solid #31a8e6;
}

.contacts .map-block .form-block .main-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
}

.contacts .map-block #map {
  width: 100%;
  height: 100%;
}

.contacts .default-modal .modal-body {
  padding: 40px 15px 35px;
}

.contacts .default-modal .modal-body .form-row {
  margin-bottom: 20px;
}

.contacts .default-modal .modal-footer {
  padding: 25px 0 30px;
}

.index-contacts {
  background: #f4f4f4;
  padding: 45px 0 90px;
}

.index-contacts .main-title {
  margin-bottom: 45px;
}

.index-contacts .map-block {
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.index-contacts .map-block .left-block,
.index-contacts .map-block .form-block {
  float: left;
}

.index-contacts .map-block .left-block {
  width: 70%;
  height: 480px;
  position: relative;
}

.index-contacts .map-block .form-block {
  width: 30%;
  height: 480px;
  background: #fff;
}

.index-contacts .map-block .form-block .title {
  color: #616976;
  font-size: 16px;
  padding: 25px 30px;
  border-bottom: 1px solid #e1e8ee;
  margin-bottom: 20px;
}

.index-contacts .map-block .form-block form {
  padding: 0 29px;
}

.index-contacts .map-block .form-block .form-control {
  margin: 0 0 20px;
  box-shadow: none;
  border: 2px solid #e1e8ee;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  color: #000;
}

.index-contacts .map-block .form-block .form-control::-webkit-input-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .form-control::-moz-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .form-control:-moz-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .form-control:-ms-input-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .form-control:focus {
  border: 2px solid #31a8e6;
}

.index-contacts .map-block .form-block .textarea-control {
  margin: 0 0 20px;
  box-shadow: none;
  border: 2px solid #e1e8ee;
  resize: none;
  display: block;
  width: 100%;
  outline: none;
  border-radius: 5px;
  height: 95px;
  padding: 8px 12px;
  color: #000;
}

.index-contacts .map-block .form-block .textarea-control::-webkit-input-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .textarea-control::-moz-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .textarea-control:-moz-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .textarea-control:-ms-input-placeholder {
  color: #bfc6cc;
}

.index-contacts .map-block .form-block .textarea-control:focus {
  border: 2px solid #31a8e6;
}

.index-contacts .map-block .form-block .main-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
}

.index-contacts .map-block #map {
  width: 100%;
  height: 100%;
}

.index-contacts .default-modal .modal-body {
  padding: 40px 15px 35px;
}

.index-contacts .default-modal .modal-body .form-row {
  margin-bottom: 20px;
}

.index-contacts .default-modal .modal-footer {
  padding: 25px 0 30px;
}

@media (max-width: 1199px) {
  .contacts .map-block .left-block {
    width: 60%;
  }
  .contacts .map-block .form-block {
    width: 40%;
  }
  .index-contacts {
    padding: 30px 0 50px;
  }
  .index-contacts .main-title {
    margin: 0 0 30px;
  }
  .index-contacts .map-block .left-block {
    width: 60%;
  }
  .index-contacts .map-block .form-block {
    width: 40%;
  }
}

@media (max-width: 991px) {
  .contacts {
    padding: 20px 0 30px;
  }
  .contacts .container > p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .contacts .content {
    margin-bottom: 25px;
    padding: 15px 0;
  }
  .contacts .content > p {
    margin: 0 auto 20px;
  }
  .contacts .contact-item {
    padding: 10px;
  }
  .contacts .contact-item p {
    font-size: 14px;
  }
  .contacts .map-block .left-block {
    width: 50%;
  }
  .contacts .map-block .form-block {
    width: 50%;
  }
  .index-contacts {
    padding: 20px 0 30px;
  }
  .index-contacts .main-title {
    margin: 0 0 20px;
  }
  .index-contacts .map-block .left-block {
    width: 50%;
  }
  .index-contacts .map-block .form-block {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .contacts h1 {
    font-size: 22px;
  }
  .contacts .content {
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  .contacts .content > p {
    margin: 0 auto 10px;
    font-size: 14px;
  }
  .contacts .contact-item {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #dadada;
  }
  .contacts .contact-item .icon-block {
    margin-bottom: 8px;
  }
  .contacts .contact-item:last-of-type {
    border-bottom: 0;
  }
  .contacts .map-block .left-block {
    width: 100%;
  }
  .contacts .map-block .form-block {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .contacts .map-block .form-block .title {
    text-align: center;
    padding: 20px 0;
  }
  .contacts .map-block .form-block form {
    padding: 0 15px;
  }
  .index-contacts .map-block .left-block {
    width: 100%;
    height: 300px;
  }
  .index-contacts .map-block .form-block {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .index-contacts .map-block .form-block .title {
    text-align: center;
    padding: 20px 0;
  }
  .index-contacts .map-block .form-block form {
    padding: 0 15px;
  }
}

.profit {
  position: relative;
  #z-index: 100;
  padding: 200px 0 60px;
  color: #4e555d;
  background-image: url(../img/profit-before.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  margin-top: -165px;
}

.profit p {
  font-size: 15px;
}

.profit .sub-title {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 40px;
}

.profit .container > p {
  text-align: justify;
  text-align-last: center;
  font-family: "Roboto Light", Arial, sans-serif;
}

.profit .profit-grid {
  margin: 30px 0 0;
}

.profit .profit-item {
  position: relative;
  padding-left: 80px;
}

.profit .profit-item .icon-block {
  position: absolute;
  left: 0;
  top: 5px;
  color: #36b1e9;
}

.profit .profit-item .icon-block i {
  font-size: 60px;
}

.profit .profit-item .text-block h3 {
  font-size: 16px;
  color: #343434;
}

.profit .profit-item .text-block p {
  font-family: "Roboto Light", Arial, sans-serif;
}

.profit .profit-item .text-block p span {
  font-size: 18px;
  color: #000;
}

@media (max-width: 1800px) {
  .profit {
    margin-top: -150px;
  }
}

@media (max-width: 1536px) {
  .profit {
    margin-top: -130px;
    padding: 180px 0 60px;
  }
}

@media (max-width: 1440px) {
  .profit {
    margin-top: -121px;
    padding: 160px 0 60px;
  }
}

@media (max-width: 1280px) {
  .profit {
    margin-top: -104px;
    padding: 150px 0 60px;
  }
}

@media (max-width: 1199px) {
  .profit {
    padding: 130px 0 40px;
  }
  .profit .profit-item {
    padding-left: 60px;
  }
  .profit .profit-item .icon-block {
    top: -3px;
  }
  .profit .profit-item .icon-block i {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .profit {
    margin-top: -83px;
    padding: 110px 0 40px;
  }
  .profit .profit-item {
    padding-left: 50px;
  }
  .profit .profit-item .icon-block i {
    font-size: 42px;
  }
  .profit .profit-item .text-block h3 {
    font-size: 15px;
    margin: 0 0 5px;
  }
  .profit .profit-item .text-block p {
    font-size: 13px;
  }
  .profit .profit-item .text-block p span {
    font-size: 16px;
  }
  .profit .sub-title {
    margin: 0 auto 20px;
  }
  .profit p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .profit {
    margin-top: -65px;
    padding: 90px 0 40px;
  }
  .profit .profit-grid {
    margin-top: 15px;
  }
  .profit .profit-item {
    padding: 0;
    text-align: center;
  }
  .profit .profit-item .icon-block {
    position: static;
    display: inline-block;
    margin: 0 0 5px;
  }
  .profit .profit-item .text-block p {
    font-size: 14px;
  }
  .profit .profit-item .text-block p span {
    font-size: 15px;
  }
}

@media (max-width: 568px) {
  .profit {
    margin-top: -50px;
    padding: 80px 0 40px;
  }
}

@media (max-width: 480px) {
  .profit {
    margin-top: -40px;
    padding: 60px 0 40px;
  }
}

@media (max-width: 420px) {
  .profit {
    margin-top: -36px;
  }
}

@media (max-width: 375px) {
  .profit {
    margin-top: -32px;
  }
}

.modal {
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.default-modal .modal-header {
  background: #ecf0f1;
  border-radius: 5px 5px 0 0;
  padding: 20px 15px;
}

.default-modal .modal-body {
  padding: 20px 25px;
}

.default-modal .modal-body p {
  margin: 0 0 20px;
}

.default-modal .lg-body {
  padding: 35px 15px;
  text-align: center;
}

.default-modal .modal-title {
  text-align: center;
  padding: 0 20px;
  color: #2f2f2f;
  font-family: "Roboto Medium", Arial, sans-serif;
  font-size: 18px;
}

.default-modal .form-row {
  margin: 0 0 20px;
}

.default-modal .form-control {
  padding: 0 15px !important;
  height: 40px;
  line-height: 40px;
  box-shadow: none;
}

.default-modal .textarea-block textarea {
  width: 100%;
  padding: 0 15px !important;
  height: 40px;
  line-height: 40px;
  box-shadow: none;
  resize: none;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.default-modal .textarea-block textarea::-webkit-input-placeholder {
  color: #999;
}

.default-modal .textarea-block textarea::-moz-placeholder {
  color: #999;
}

.default-modal .textarea-block textarea:-moz-placeholder {
  color: #999;
}

.default-modal .textarea-block textarea:-ms-input-placeholder {
  color: #999;
}

.default-modal .textarea-block textarea:focus {
  border: 1px solid #66afe9;
}

.default-modal .main-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 35px;
}

.default-modal .modal-footer {
  text-align: right;
  background: #ecf0f1;
  border-radius: 0 0 5px 5px;
  padding: 20px 25px;
}

.default-modal .modal-footer .main-btn {
  width: auto;
  padding: 0 45px;
}

.preorder-modal .modal-body {
  padding: 20px 15px 15px;
}

.close {
  outline: none;
  opacity: 0.8;
}

.full-section-1 {
  background: url(../img/full-slide-1.jpg) no-repeat center;
  background-size: cover;
}

.full-section-2 {
  background: url(../img/full-slide-2.jpg) no-repeat center;
  background-size: cover;
}

.full-section-3 {
  background: url(../img/full-slide-3.jpg) no-repeat center;
  background-size: cover;
}

.index-clients {
  background: #f4f5f9 url(../img/clients-bg.png) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}

.index-clients .section-title {
  color: #26547c;
}

.index-clients .sub-title {
  text-align: center;
  font-size: 16px;
  margin: 0 0 25px;
}

.clients-slider .item {
  outline: 0;
  height: 100px;
  box-shadow: 0 1px 3px rgba(31, 31, 31, 0.09);
  background-color: #fff;
  margin: 0 15px;
}

.clients-slider .item img {
  display: block;
  max-width: 198px;
  max-height: 98px;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.clients-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  border: 2px solid #e5e7ec;
  border-radius: 2px;
  background-color: #f9f9f9;
  color: #ababab;
  width: 34px;
  height: 34px;
  font-size: 16px;
  outline: 0;
}

.clients-slider .slick-arrow.prev-arrow {
  left: -30px;
}

.clients-slider .slick-arrow.next-arrow {
  right: -30px;
}

.clients {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.clients h1 {
  color: #4b515e;
  margin: 0 0 15px;
}

.clients .content {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 30px 50px 60px;
  background-color: #fff;
}

.clients .content > p {
  color: #4b515e;
  font-size: 15px;
  font-family: "Roboto Light", Arial, sans-serif;
  text-align: center;
  max-width: 420px;
  margin: 0 auto 30px;
}

.clients .clients-row {
  border-left: 1px solid #a6a6a6;
  border-top: 1px solid #a6a6a6;
}

.clients .client-item {
  float: left;
  width: 20%;
  border-right: 1px solid #a6a6a6;
  border-bottom: 1px solid #a6a6a6;
  height: 130px;
}

.clients .client-item img {
  display: block;
  max-width: 200px;
  max-height: 130px;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1280px) {
  .clients-slider {
    padding: 0 30px;
  }
  .clients-slider .slick-arrow.prev-arrow {
    left: 0;
  }
  .clients-slider .slick-arrow.next-arrow {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .clients .client-item {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .index-clients {
    padding: 50px 0;
  }
  .index-clients .sub-title {
    font-size: 15px;
  }
  .clients {
    padding: 30px 0;
  }
  .clients h1 {
    margin: 0 0 10px;
  }
  .clients .content {
    padding: 20px;
  }
  .clients .content > p {
    margin: 0 auto 20px;
  }
  .clients .client-item {
    width: 33.33%;
  }
}

@media (max-width: 767px) {
  .index-clients .sub-title {
    font-size: 14px;
  }
  .clients {
    padding: 20px 0;
  }
  .clients .content {
    padding: 20px 15px;
  }
  .clients .client-item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .clients .client-item {
    width: 100%;
  }
}

.choice {
  background: url(../img/choice-bg.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
  padding: 50px 0 0;
}

.choice .section-title {
  color: #fff;
  font-size: 35px;
}

.choice .section-title span {
  text-transform: uppercase;
}

.choice .container {
  position: relative;
  height: 640px;
}

.choice .container:after {
  content: '';
  width: 1140px;
  height: 560px;
  border: 1px dotted #fff;
  border-bottom: 0;
  border-radius: 600px 600px 0 0;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.choice .monitor-img {
  width: 550px;
  height: 330px;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.choice .choice-row {
  margin: 0 auto 20px;
}

.choice .choice-row::after {
  clear: both;
  content: "";
  display: table;
}

.choice .choice-row .choice-item {
  position: relative;
  z-index: 5;
}

.choice .choice-row .choice-item .icon-block {
  width: 58px;
  height: 58px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.25);
  background-position: center;
  background-repeat: no-repeat;
}

.choice .choice-row .choice-item .text-block {
  position: absolute;
  color: #fff;
  width: 200px;
}

.choice .choice-row.first-row {
  width: 350px;
  position: relative;
  padding-top: 70px;
  margin: 0 auto 10px;
}

.choice .choice-row.first-row .choice-item:nth-of-type(1) {
  margin: auto;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
}

.choice .choice-row.first-row .choice-item:nth-of-type(1) .text-block-one {
  position: absolute;
  top: -40px;
  width: 220px;
  left: -82px;
  margin: auto;
  color: #fff;
  text-align: center;
}

.choice .choice-row.first-row .choice-item:nth-of-type(1) .text-block-two {
  position: absolute;
  bottom: -80px;
  width: 200px;
  left: -70px;
  margin: auto;
  color: #fff;
  text-align: center;
}

.choice .choice-row.first-row .choice-item:nth-of-type(2) {
  float: left;
}

.choice .choice-row.first-row .choice-item:nth-of-type(2) .text-block {
  width: 200px;
  left: -215px;
  top: 0;
  text-align: right;
}

.choice .choice-row.first-row .choice-item:nth-of-type(3) {
  float: right;
}

.choice .choice-row.first-row .choice-item:nth-of-type(3) .text-block {
  width: 200px;
  right: -215px;
  top: 0;
}

.choice .choice-row.second-row {
  width: 680px;
  margin: 0 auto 50px;
}

.choice .choice-row.second-row .choice-item:nth-of-type(1) {
  float: left;
}

.choice .choice-row.second-row .choice-item:nth-of-type(1) .text-block {
  right: -215px;
  top: 5px;
}

.choice .choice-row.second-row .choice-item:nth-of-type(2) {
  float: right;
}

.choice .choice-row.second-row .choice-item:nth-of-type(2) .text-block {
  left: -215px;
  top: 5px;
  text-align: right;
}

.choice .choice-row.third-row {
  width: 930px;
  margin: 0 auto 60px;
}

.choice .choice-row.third-row .choice-item:nth-of-type(1) {
  float: left;
}

.choice .choice-row.third-row .choice-item:nth-of-type(1) .text-block {
  left: -215px;
  top: 5px;
  text-align: right;
}

.choice .choice-row.third-row .choice-item:nth-of-type(2) {
  float: right;
}

.choice .choice-row.third-row .choice-item:nth-of-type(2) .text-block {
  right: -215px;
  top: 5px;
}

.choice .choice-row.fourth-row {
  width: 1085px;
  margin: 0 auto 75px;
}

.choice .choice-row.fourth-row .choice-item:nth-of-type(1) {
  float: left;
}

.choice .choice-row.fourth-row .choice-item:nth-of-type(1) .text-block {
  right: -215px;
  top: 5px;
}

.choice .choice-row.fourth-row .choice-item:nth-of-type(2) {
  float: right;
}

.choice .choice-row.fourth-row .choice-item:nth-of-type(2) .text-block {
  left: -215px;
  top: 5px;
  text-align: right;
}

.choice .choice-row.fifth-row {
  width: 100%;
}

.choice .choice-row.fifth-row .choice-item:nth-of-type(1) {
  float: left;
  margin-left: -15px;
}

.choice .choice-row.fifth-row .choice-item:nth-of-type(1) .text-block {
  left: -215px;
  top: 5px;
  text-align: right;
}

.choice .choice-row.fifth-row .choice-item:nth-of-type(2) {
  float: right;
  margin-right: -15px;
}

.choice .choice-row.fifth-row .choice-item:nth-of-type(2) .text-block {
  right: -215px;
  top: 5px;
}

@media (max-width: 1440px) {
  .choice .choice-row.third-row .choice-item:nth-of-type(1) .text-block {
    right: -215px;
    text-align: left;
    left: auto;
    top: 20px;
  }
  .choice .choice-row.third-row .choice-item:nth-of-type(2) .text-block {
    left: -215px;
    text-align: right;
    right: auto;
    top: 20px;
  }
  .choice .choice-row.fifth-row .choice-item:nth-of-type(1) .text-block {
    right: -215px;
    text-align: left;
    left: auto;
    top: 20px;
  }
  .choice .choice-row.fifth-row .choice-item:nth-of-type(2) .text-block {
    left: -215px;
    text-align: right;
    right: auto;
    top: 20px;
  }
}

@media (max-width: 1199px) {
  .choice {
    padding: 35px 0 0;
  }
  .choice .section-title {
    font-size: 28px;
    margin: 0 0 20px;
  }
  .choice .container:after {
    width: 940px;
  }
  .choice .choice-row.second-row {
    width: 605px;
  }
  .choice .choice-row.third-row {
    width: 820px;
  }
  .choice .choice-row.fourth-row {
    width: 940px;
  }
  .choice .choice-row.fifth-row .choice-item:nth-of-type(1) {
    left: -15px;
  }
  .choice .choice-row.fifth-row .choice-item:nth-of-type(2) {
    right: -15px;
  }
}

@media (max-width: 991px) {
  .choice {
    padding: 35px 0;
  }
  .choice .section-title {
    font-size: 24px;
  }
  .choice .monitor-img {
    display: none;
  }
  .choice .container {
    text-align: center;
    height: auto;
  }
  .choice .container:after {
    display: none;
  }
  .choice .choice-row {
    width: 100% !important;
    margin: 0 0 20px !important;
  }
  .choice .choice-row.first-row {
    padding-top: 190px;
  }
  .choice .choice-row.first-row .choice-item:nth-of-type(1) {
    top: 50px;
    margin: 0 auto !important;
  }
  .choice .choice-row.first-row .choice-item:nth-of-type(1) .icon-block {
    margin: 0 auto 0;
  }
  .choice .choice-row.first-row .choice-item:nth-of-type(1) .text-block-one {
    top: -37px;
  }
  .choice .choice-row.first-row .choice-item:nth-of-type(1) .text-block-two {
    bottom: auto;
    top: 72px;
  }
  .choice .choice-row .choice-item {
    display: inline-block;
    float: none !important;
    width: 200px;
    margin: 0 20px !important;
    position: static;
  }
  .choice .choice-row .choice-item .icon-block {
    margin: 0 auto 10px;
  }
  .choice .choice-row .choice-item .text-block {
    position: static;
    text-align: center !important;
    width: 100% !important;
  }
  .choice .choice-row .choice-item .text-block br {
    display: none;
  }
}

@media (max-width: 767px) {
  .choice .choice-row .choice-item {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .choice .section-title {
    font-size: 21px;
  }
  .choice .choice-row {
    margin: 0 !important;
  }
  .choice .choice-row .choice-item {
    width: 100%;
    margin: 0 0 15px !important;
  }
  .choice .choice-row .choice-item .iocn-block {
    margin: 0 auto 5px;
  }
}

.cost-savings {
  background: url(../img/save-cost-bg.jpg) no-repeat center;
  background-size: cover;
}

.cost-savings .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}

.cost-savings .container > .modal-btn {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 385px;
  padding: 13px 0;
  text-align: center;
}

.cost-savings .order-btn {
  display: block;
  width: 385px;
  margin: 0 auto;
  background-color: #d84642;
  border-radius: 5px;
  border: 0;
  color: #fff;
  outline: 0;
  padding: 0;
  height: 48px;
  line-height: 48px;
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  z-index: 10;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  text-align: center;
}

.cost-savings .order-btn:hover {
  background-color: #b7322e;
}

.cost-savings .section-title {
  color: #4b515e;
}

.cost-savings .sub-title {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 500px;
}

.cost-savings .sub-title p {
  text-transform: uppercase;
}

.cost-savings .table-wrap {
  background-color: rgba(16, 125, 198, 0.9);
  padding: 35px;
  color: #fff;
  position: relative;
}

.cost-savings .table-wrap:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: -18px;
  left: 30px;
  border-top: 18px solid rgba(16, 125, 198, 0.9);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.cost-savings .table-wrap p {
  font-size: 15px;
}

.cost-savings .table-wrap table {
  width: 100%;
  font-size: 16px;
  margin: 0 0 15px;
}

.cost-savings .table-wrap table tr:nth-child(odd) td {
  background-color: rgba(236, 240, 241, 0.3);
}

.cost-savings .table-wrap table tr td:first-of-type {
  padding-left: 20px;
}

.cost-savings .table-wrap table tr td:last-of-type {
  text-align: right;
  padding-right: 5px;
}

.cost-savings .table-wrap table th {
  font-weight: normal;
  border-bottom: 2px solid #ecf0f1;
  padding: 6px 0;
}

.cost-savings .table-wrap table th:first-of-type {
  padding-left: 20px;
}

.cost-savings .table-wrap table th:last-of-type {
  text-align: right;
}

.cost-savings .table-wrap table td {
  border-bottom: 2px solid #ecf0f1;
  padding: 8px 0;
}

.cost-savings .table-wrap .total-saving p {
  font-size: 20px;
}

.cost-savings .form-wrap {
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid #efeeeb;
  border-radius: 5px;
  padding: 30px;
}

.cost-savings .form-wrap label {
  font-size: 14px;
  color: #555a64;
  font-weight: normal;
}

.cost-savings .form-wrap .form-row {
  margin: 0 0 15px;
}

.cost-savings .form-wrap .form-row:last-of-type {
  margin: 0 0 30px;
}

.cost-savings .form-wrap .name-input,
.cost-savings .form-wrap .tel-input,
.cost-savings .form-wrap .email-input {
  position: relative;
}

.cost-savings .form-wrap .name-input:after,
.cost-savings .form-wrap .tel-input:after,
.cost-savings .form-wrap .email-input:after {
  font-family: 'Pe-icon-7-stroke';
  position: absolute;
  top: 5px;
  right: 10px;
  color: #80858e;
  font-size: 20px;
}

.cost-savings .form-wrap .name-input:after {
  content: '\e605';
}

.cost-savings .form-wrap .tel-input:after {
  content: '\e627';
}

.cost-savings .form-wrap .email-input:after {
  content: '\e63b';
}

.cost-savings .form-wrap .form-control {
  box-shadow: none;
  height: 38px;
  border: 1px solid #e3e3e3;
  background-color: transparent;
  padding-right: 40px;
}

.cost-savings .form-wrap .form-control:focus {
  border: 1px solid #2387ca;
}

.cost-savings .form-wrap .main-btn {
  width: 100%;
  background-color: #d13a37;
  height: 40px;
}

.cost-savings .form-wrap .main-btn:hover {
  opacity: 0.8;
}

.cost-savings .form-wrap h3 {
  text-align: center;
  font-size: 23px;
  color: #5c6573;
  font-family: "Roboto Medium", Arial, sans-serif;
  margin: 0 0 10px;
}

.cost-savings .form-wrap p {
  text-align: center;
  font-size: 16px;
  color: #78808b;
}

@media (max-width: 1366px) {
  .cost-savings .container {
    padding-top: 80px;
  }
}

@media (max-width: 1199px) {
  .cost-savings .container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .cost-savings .form-wrap {
    padding: 15px;
  }
  .cost-savings .form-wrap p {
    font-size: 14px;
  }
  .cost-savings .form-wrap h3 {
    font-size: 21px;
  }
  .cost-savings .table-wrap {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .cost-savings .container {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .cost-savings .sub-title {
    margin: 0 auto 30px;
  }
  .cost-savings .table-wrap {
    margin: 0 0 15px;
    padding: 15px;
  }
  .cost-savings .table-wrap p {
    font-size: 14px;
  }
  .cost-savings .table-wrap:after {
    display: none;
  }
  .cost-savings .table-wrap table tr td, .cost-savings .table-wrap table tr th {
    font-size: 14px;
  }
  .cost-savings .table-wrap .total-saving p {
    font-size: 16px;
  }
  .cost-savings .form-wrap {
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .cost-savings .table-wrap table tr td:first-of-type, .cost-savings .table-wrap table tr th:first-of-type {
    padding-left: 5px;
  }
  .cost-savings .table-wrap table tr td:last-of-type, .cost-savings .table-wrap table tr th:last-of-type {
    width: 120px;
  }
  .cost-savings .table-wrap table tr td {
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .cost-savings .table-wrap {
    padding: 15px 10px;
  }
  .cost-savings .table-wrap > p {
    text-align: center;
  }
  .cost-savings .table-wrap table tr td, .cost-savings .table-wrap table tr th {
    font-size: 13px;
  }
  .cost-savings .table-wrap .total-saving p {
    font-size: 16px;
  }
  .cost-savings .table-wrap .total-saving .pull-left,
  .cost-savings .table-wrap .total-saving .pull-right {
    float: none !important;
    width: 100%;
    text-align: center;
  }
  .cost-savings .order-btn {
    width: 100%;
    font-size: 13px;
  }
}

.services {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.services h1 {
  color: #4b515e;
  margin: 0 0 15px;
}

.services .content {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 40px;
  background-color: #fff;
}

.services .content > p {
  color: #000;
  font-size: 15px;
  font-family: "Roboto Light", Arial, sans-serif;
  text-align: center;
  max-width: 420px;
  margin: 0 auto 30px;
}

.services .nav-tabs {
  border-bottom: 0;
}

.services .nav-tabs li {
  width: 25%;
  border: 0;
}

.services .nav-tabs li a {
  color: #fff;
  border-radius: 0;
  text-align: center;
  border: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  padding: 10px 15px;
}

.services .nav-tabs li a:after {
  content: '';
  width: 0;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.services .nav-tabs li a span {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  margin-right: 10px;
  position: relative;
  z-index: 5;
}

.services .nav-tabs li a span:before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
}

.services .nav-tabs li p {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 5;
}

.services .nav-tabs li.active {
  margin: 0;
}

.services .nav-tabs li.active a {
  color: #fff;
  border: 0;
}

.services .nav-tabs li.active a:after {
  width: auto;
  left: 0;
  right: 0;
}

.services .nav-tabs li:nth-child(1) a {
  background: #26547c;
}

.services .nav-tabs li:nth-child(1) a span:before {
  background: url(../img/tab-icon-1.png) no-repeat center;
}

.services .nav-tabs li:nth-child(1).active a:after {
  background: #17354f;
}

.services .nav-tabs li:nth-child(2) a {
  background: #31a8e6;
}

.services .nav-tabs li:nth-child(2) a span:before {
  background: url(../img/tab-icon-2.png) no-repeat center;
}

.services .nav-tabs li:nth-child(2).active a:after {
  background: #317497;
}

.services .nav-tabs li:nth-child(3) a {
  background: #585871;
}

.services .nav-tabs li:nth-child(3) a span:before {
  background: url(../img/tab-icon-3.png) no-repeat center;
}

.services .nav-tabs li:nth-child(3).active a:after {
  background: #292940;
}

.services .nav-tabs li:nth-child(4) a {
  background: #7690c9;
}

.services .nav-tabs li:nth-child(4) a span:before {
  background: url(../img/nav-icon-1.png) no-repeat center;
}

.services .nav-tabs li:nth-child(4).active a:after {
  background: #5b72a2;
}

.services .tab-pane {
  padding: 20px 0;
}

.services .tab-pane .main-btn {
  position: relative;
  margin: 20px 0 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.services .tab-title {
  text-transform: uppercase;
  color: #000;
  margin: 20px 0;
}

.index-services {
  padding: 50px 0 80px;
  background: #fff;
}

.index-services p {
  text-align: center;
}

.index-services .container > p {
  margin-bottom: 20px;
}

.index-services .services-item {
  position: relative;
  bottom: 0;
  float: left;
  width: 25%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  height: 290px;
  margin-top: 90px;
  padding: 75px 20px 0;
  overflow: hidden;
}

.index-services .services-item:first-of-type {
  background: #26547c;
}

.index-services .services-item:first-of-type .icon-block {
  background: url(../img/service-1.png) no-repeat center;
}

.index-services .services-item:first-of-type .learn-more {
  background: #13436c;
}

.index-services .services-item:nth-child(2) {
  background: #31a8e6;
}

.index-services .services-item:nth-child(2) .icon-block {
  background: url(../img/service-2.png) no-repeat center;
}

.index-services .services-item:nth-child(2) .learn-more {
  background: #1583bc;
}

.index-services .services-item:nth-child(3) {
  background: #585871;
}

.index-services .services-item:nth-child(3) .icon-block {
  background: url(../img/service-3.png) no-repeat center;
}

.index-services .services-item:nth-child(3) .learn-more {
  background: #3c3c50;
}

.index-services .services-item:last-of-type {
  background: #7690c9;
}

.index-services .services-item:last-of-type .icon-block {
  background: url(../img/service-4.png) no-repeat center;
}

.index-services .services-item:last-of-type .learn-more {
  background: #4a67a6;
}

.index-services .services-item .icon-block {
  display: block;
  margin: 0 auto 30px;
  width: 80px;
  height: 80px;
}

.index-services .services-item .title {
  text-align: center;
  font-family: "Roboto Medium", Arial, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.index-services .services-item .hidden-cont {
  position: absolute;
  width: 100%;
  height: 190px;
  bottom: -100%;
  left: 0;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  padding: 0 20px;
}

.index-services .services-item .hidden-cont p {
  max-height: 115px;
  overflow: hidden;
}

.index-services .services-item .learn-more {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  line-height: 50px;
}

.index-services .services-item:hover {
  height: 380px;
  padding-top: 25px;
  margin-top: 0;
}

.index-services .services-item:hover .hidden-cont {
  bottom: 0;
}

@media (max-width: 1199px) {
  .services .content {
    padding: 20px;
  }
  .services .nav-tabs li a {
    font-size: 13px;
    padding: 10px 8px 0;
    line-height: 1;
  }
  .services .nav-tabs li a p {
    margin-top: -8px;
  }
  .services .nav-tabs li a span {
    margin-right: 5px;
  }
  .services .nav-tabs li a span:before {
    width: 30px;
    height: 30px;
    background-size: 100% !important;
  }
  .index-services {
    padding: 50px 0 50px;
  }
  .index-services .services-item {
    height: 260px;
    margin-top: 60px;
    padding: 50px 10px 0;
  }
  .index-services .services-item .icon-block {
    margin: 0 auto 15px;
  }
  .index-services .services-item .hidden-cont {
    height: 150px;
  }
  .index-services .services-item .hidden-cont p {
    font-size: 13px;
    max-height: 90px;
  }
  .index-services .services-item:hover {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .services {
    padding: 25px 0;
  }
  .services .content {
    padding: 15px;
  }
  .services .content > p {
    margin-bottom: 25px;
  }
  .services .nav-tabs li a {
    font-size: 13px;
    padding: 10px 5px 0;
    line-height: 1;
    height: 80px;
  }
  .services .nav-tabs li a p {
    margin-top: -8px;
  }
  .services .nav-tabs li a span {
    margin-right: 5px;
    display: block;
  }
  .services .nav-tabs li a span:before {
    width: 30px;
    height: 30px;
    background-size: 100% !important;
  }
  .index-services {
    padding: 30px 0 40px;
  }
  .index-services .services-item {
    height: 240px;
    margin-top: 0;
    padding: 50px 10px 0;
  }
  .index-services .services-item .icon-block {
    margin: 0 auto 15px;
  }
  .index-services .services-item .hidden-cont {
    display: none !important;
  }
  .index-services .services-item:hover {
    height: auto;
    margin-top: 0;
    padding: 50px 10px 0;
    height: 240px;
  }
  .index-services .services-item:hover .hidden-cont {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .services .tab-pane {
    padding: 10px 0;
  }
  .services .nav-tabs li a {
    height: 85px;
  }
  .services .nav-tabs li a span {
    margin-bottom: 3px;
  }
  .index-services .services-item {
    height: 200px;
  }
  .index-services .services-item .icon-block {
    width: 50px;
    height: 50px;
    background-size: 100% !important;
  }
  .index-services .services-item .title {
    font-size: 13px;
  }
  .index-services .services-item:hover {
    height: 200px;
  }
}

@media (max-width: 680px) {
  .services .nav-tabs li {
    float: none;
    width: 100%;
  }
  .services .nav-tabs li:first-of-type a {
    border-radius: 5px 5px 0 0;
  }
  .services .nav-tabs li:last-of-type a {
    border-radius: 0 0 5px 5px;
  }
  .services .nav-tabs li a {
    height: auto;
    padding-bottom: 10px;
  }
  .index-services {
    padding: 20px 0 30px;
  }
  .index-services .services-item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .index-services {
    padding: 20px 0 30px;
  }
  .index-services .services-item {
    width: 100%;
  }
}

.basket {
  padding: 45px 0;
  background-color: #f7f7f7;
}

.basket h1 {
  color: #4b515e;
}

.basket.order-basket {
  padding-top: 0;
  margin-top: -20px;
  background-color: #fff;
}

.basket.order-basket .basket-item .img-block {
  width: 85px;
  height: 85px;
  border: 2px solid #d7d7d7;
}

.basket.order-basket .basket-item .img-block img {
  max-width: 81px;
  max-height: 81px;
}

.basket.order-basket .basket-item .text-block {
  margin-right: 15px;
  width: 170px;
}

.basket.order-basket .basket-item .text-block .title {
  font-family: "Roboto Bold", Arial, sans-serif;
  font-size: 15px;
}

.basket.order-basket .basket-item .text-block p {
  font-size: 13px;
}

.basket.order-basket .basket-item .calc-block {
  margin: 0 5px;
}

.basket.order-basket .basket-item .product-sum,
.basket.order-basket .basket-item .product-cost {
  font-size: 14px;
  width: 110px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.basket.order-basket .basket-item .product-sum span,
.basket.order-basket .basket-item .product-cost span {
  font-family: "Roboto Bold", Arial, sans-serif;
}

.basket.order-basket .hidden-title {
  color: #222;
  text-align: center;
  font-size: 24px;
  display: none;
}

.basket.order-basket .basket-bottom .continue-shop {
  font-size: 13px;
  padding-left: 23px;
  margin-top: 13px;
}

.basket.order-basket .basket-bottom .continue-shop:before {
  top: -2px;
  width: 20px;
  height: 20px;
  font-size: 16px;
  line-height: 17px;
}

.basket.order-basket .basket-bottom .total-sum .text {
  font-size: 14px;
}

.basket.order-basket .basket-bottom .total-sum p {
  font-size: 16px;
}

.basket.order-basket .basket-bottom .total-sum p span {
  font-size: 18px;
  font-family: "Roboto Medium", Arial, sans-serif;
}

.basket.order-basket .basket-bottom .main-btn {
  font-size: 14px;
}

.basket.order-basket .default-modal .modal-body {
  padding: 30px 15px 30px;
}

.basket.order-basket .default-modal .modal-body .form-row {
  margin-bottom: 20px;
}

.basket.order-basket .default-modal .modal-footer {
  padding: 25px 0 30px;
}

.basket .content {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.basket-item {
  border-bottom: 1px solid #d7d7d7;
  padding: 20px 0;
  padding-right: 35px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.basket-item .text-block {
  margin-right: 50px;
  width: 220px;
}

.basket-item .calc-wrap {
  text-align: center;
}

.basket-item .img-block {
  width: 115px;
  height: 100px;
  margin-right: 20px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #c8c8c8;
}

.basket-item .img-block:hover {
  opacity: 0.7;
}

.basket-item .img-block a {
  display: block;
  height: 100%;
}

.basket-item .img-block img {
  display: block;
  margin: auto;
  max-width: 110px;
  max-height: 90px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.basket-item .title {
  font-size: 18px;
  color: #303030;
  margin: 0 0 5px;
  max-width: 220px;
}

.basket-item .title a {
  color: inherit;
}

.basket-item p {
  color: #303030;
  font-size: 13px;
}

.basket-item .product-sum,
.basket-item .product-cost {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-size: 18px;
  text-align: center;
  width: 150px;
}

.basket-item .close-btn {
  width: 30px;
  height: 30px;
  background: #d7d7d7 url(../img/close-icon.png) no-repeat 9px 8px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -15px;
  outline: none;
  border: 0;
  font-size: 16px;
  text-align: center;
  border-radius: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.basket-item .close-btn:hover, .basket-item .close-btn:focus {
  background-color: #e20f00;
}

.basket-item .calc-block {
  display: inline-block;
  vertical-align: middle;
  width: 110px;
  height: 39px;
  border: 2px solid #d7d7d7;
  position: relative;
  overflow: hidden;
  margin: 0 50px;
  border-radius: 30px;
}

.basket-item .calc-block .amount-control {
  display: block;
  margin: auto;
  height: 35px;
  width: 45px;
  text-align: center;
  color: #808080;
  font-size: 16px;
  line-height: 38px;
  border: 0;
  padding: 0 5px;
  border-left: 2px solid #d7d7d7;
  border-right: 2px solid #d7d7d7;
  outline: 0;
  background: #fff;
  font-family: "Roboto Bold", Arial, sans-serif;
}

.basket-item .calc-block .increase-btn,
.basket-item .calc-block .decrease-btn {
  position: absolute;
  top: 0;
  height: 50%;
  width: 50%;
  padding: 0;
  background: #ccc;
  border: 0;
  outline: none;
  width: 30px;
  height: 35px;
  background: #f9f9f9;
}

.basket-item .calc-block .increase-btn:before, .basket-item .calc-block .increase-btn:after,
.basket-item .calc-block .decrease-btn:before,
.basket-item .calc-block .decrease-btn:after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.basket-item .calc-block .increase-btn:hover:before, .basket-item .calc-block .increase-btn:hover:after,
.basket-item .calc-block .decrease-btn:hover:before,
.basket-item .calc-block .decrease-btn:hover:after {
  background: #111;
}

.basket-item .calc-block .increase-btn {
  right: 0;
}

.basket-item .calc-block .increase-btn:before, .basket-item .calc-block .increase-btn:after {
  content: '';
  background: #aaa;
  position: absolute;
}

.basket-item .calc-block .increase-btn:before {
  top: 16px;
  left: 8px;
  width: 13px;
  height: 3px;
}

.basket-item .calc-block .increase-btn:after {
  top: 11px;
  left: 13px;
  width: 3px;
  height: 13px;
}

.basket-item .calc-block .decrease-btn {
  left: 0;
}

.basket-item .calc-block .decrease-btn:after {
  content: '';
  width: 13px;
  height: 3px;
  background: #aaa;
  position: absolute;
  top: 17px;
  left: 11px;
}

.basket-bottom {
  padding: 25px 0 0;
}

.basket-bottom .continue-shop {
  color: #aaa;
  display: inline-block;
  position: relative;
  margin-top: 10px;
  padding-left: 35px;
  color: #646464;
  font-size: 16px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.basket-bottom .continue-shop:hover {
  text-decoration: none;
  color: #000;
}

.basket-bottom .continue-shop:hover:before {
  left: -5px;
  color: #000;
  border: 1px solid #000;
}

.basket-bottom .continue-shop:focus {
  text-decoration: none;
}

.basket-bottom .continue-shop:before {
  content: '\f104';
  font-family: FontAwesome;
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #aaa;
  border-radius: 100%;
  text-align: center;
  color: #aaa;
  padding-right: 1px;
  font-size: 26px;
  line-height: 28px;
  position: absolute;
  left: 0;
  top: -4px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.basket-bottom .main-btn {
  width: 100%;
  height: 40px;
  padding: 0 5px;
  font-size: 17px;
  font-family: "Roboto Regular", Arial, sans-serif;
  line-height: 40px;
}

.basket-bottom .main-btn:hover {
  color: #fff;
  background: #7690c9;
}

.basket-bottom .total-sum {
  text-align: right;
  margin-top: 11px;
}

.basket-bottom .total-sum .text {
  display: inline-block;
  vertical-align: bottom;
  font-size: 17px;
  color: #808080;
  margin: 0 5px 0 0;
}

.basket-bottom .total-sum p {
  display: inline-block;
  vertical-align: bottom;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}

.basket-bottom .total-sum p span {
  font-size: 24px;
}

.basket-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.empty-basket {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 200px;
}

.empty-basket .icon-block {
  display: inline-block;
  margin: 0 0 15px;
  width: 100px;
  height: 100px;
}

.empty-basket .icon-block:before {
  content: '\f07a';
  font-family: FontAwesome;
  font-size: 100px;
  line-height: 1;
  color: #202020;
}

.empty-basket .title {
  text-align: center;
  font-size: 30px;
  margin: 0 0 10px;
}

.empty-basket a {
  color: #31a8e6;
  font-size: 18px;
  position: relative;
}

.empty-basket a:before {
  content: '\f104';
  font-family: FontAwesome;
  position: absolute;
  left: -20px;
  top: 2px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.empty-basket a:hover, .empty-basket a:focus {
  text-decoration: none;
}

.empty-basket a:hover {
  color: #000;
}

.empty-basket a:hover:before {
  left: -25px;
}

.preorder-modal .modal-header {
  background: #ecf0f1;
  border-radius: 6px 6px 0 0;
  padding: 25px 15px;
}

.preorder-modal .modal-footer {
  background: #ecf0f1;
  border-radius: 0 0 6px 6px;
  padding: 25px 15px;
}

.preorder-modal .modal-title {
  text-align: center;
  font-family: "Roboto Black", Arial, sans-serif;
}

.preorder-modal .product-cost {
  margin: 0 !important;
}

.preorder-modal .basket {
  padding: 0;
}

.preorder-modal .basket .basket-item .text-block {
  width: 250px;
}

.preorder-modal .basket .basket-item .calc-block {
  margin: 0 5px;
}

.preorder-modal .basket-bottom {
  padding: 0;
}

.preorder-modal .basket-bottom .continue-shop {
  font-size: 14px;
}

.preorder-modal .basket-bottom .continue-shop:before {
  top: -6px;
}

@media (max-width: 1199px) {
  .basket.order-basket .basket-item {
    display: block;
  }
  .basket.order-basket .basket-item::after {
    clear: both;
    content: "";
    display: table;
  }
  .basket.order-basket .basket-item .img-block {
    float: left;
    margin-right: 15px;
  }
  .basket.order-basket .basket-item .text-block {
    width: auto;
    margin: -3px 0 20px 0;
  }
  .basket.order-basket .basket-item .text-block .title {
    max-width: 100%;
  }
  .basket.order-basket .basket-item .calc-wrap {
    margin: auto;
  }
  .basket.order-basket .basket-bottom .continue-shop {
    font-size: 14px;
  }
  .basket.order-basket .basket-bottom .total-sum .text {
    font-size: 14px;
    margin-bottom: 1px;
    position: relative;
    top: 2px;
  }
  .basket.order-basket .basket-bottom .total-sum p {
    font-size: 14px;
  }
  .basket.order-basket .basket-bottom .total-sum p span {
    font-family: "Roboto Black", Arial, sans-serif;
    font-size: 15px;
  }
  .basket.order-basket .basket-bottom .continue-shop {
    font-size: 13px;
    padding-left: 30px;
    margin-top: 5px;
  }
  .basket.order-basket .basket-bottom .continue-shop:before {
    top: 5px;
  }
  .basket-item .text-block {
    margin-right: 20px;
  }
  .basket-item .calc-block {
    margin: 0 10px;
  }
}

@media (max-width: 991px) {
  .basket {
    padding-top: 30px;
  }
  .basket .main-title {
    margin-bottom: 30px;
  }
  .basket.order-basket {
    margin-top: -10px;
  }
  .basket.order-basket .basket-item {
    padding-bottom: 0;
  }
  .basket.order-basket .basket-item .img-block {
    width: 90px;
    height: 85px;
    margin: 0;
  }
  .basket.order-basket .basket-item .img-block img {
    max-width: 90px;
    max-height: 85px;
  }
  .basket.order-basket .basket-item .text-block {
    margin-left: 100px;
  }
  .basket.order-basket .basket-item .text-block .title {
    font-size: 16px;
    font-family: "Roboto Black", Arial, sans-serif;
  }
  .basket.order-basket .basket-item .calc-block {
    display: block;
    margin: 10px auto;
  }
  .basket.order-basket .basket-item .calc-wrap {
    position: relative;
    top: -20px;
  }
  .basket.order-basket .basket-item .product-cost,
  .basket.order-basket .basket-item .product-sum {
    clear: both;
    display: block;
    width: 100%;
  }
  .basket.order-basket .basket-bottom .continue-shop {
    font-size: 13px;
    padding-left: 30px;
    margin-top: 5px;
  }
  .basket.order-basket .basket-bottom .continue-shop:before {
    top: -2px;
  }
  .basket-item {
    display: block;
  }
  .basket-item::after {
    clear: both;
    content: "";
    display: table;
  }
  .basket-item .img-block {
    float: left;
  }
  .basket-item .text-block {
    width: auto;
    margin: -3px 0 20px 125px;
  }
  .basket-item .text-block .title {
    max-width: 100%;
  }
  .basket-item .calc-wrap {
    margin: auto;
  }
  .basket-bottom .total-sum {
    margin: 0 0 20px;
  }
  .empty-basket {
    padding: 80px 0 150px;
  }
  .empty-basket .title {
    font-size: 26px;
  }
  .preorder-modal .modal-footer {
    text-align: left;
    padding: 15px;
  }
  .preorder-modal .modal-header {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .basket {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .basket .main-title {
    margin-bottom: 5px;
  }
  .basket.order-basket {
    padding-bottom: 0;
  }
  .basket.order-basket .hidden-title {
    display: block;
  }
  .basket-item .img-block {
    width: 90px;
    height: 85px;
    margin: 0;
  }
  .basket-item .img-block img {
    max-width: 90px;
    max-height: 85px;
  }
  .basket-item .text-block {
    margin-left: 100px;
  }
  .basket-item .text-block .title {
    font-size: 16px;
    font-family: "Roboto Black", Arial, sans-serif;
  }
  .basket-item .calc-block {
    display: block;
    margin: 10px auto;
  }
  .basket-item .calc-wrap {
    position: relative;
    top: -15px;
  }
  .basket-item .product-cost,
  .basket-item .product-sum {
    clear: both;
    display: block;
    width: 100%;
  }
  .basket-bottom {
    padding: 10px 0 25px;
  }
  .empty-basket {
    padding: 50px 0 100px;
  }
  .empty-basket .title {
    font-size: 21px;
  }
  .empty-basket .icon-block {
    width: 80px;
    height: 80px;
  }
  .empty-basket .icon-block:before {
    font-size: 80px;
  }
  .empty-basket a {
    font-size: 16px;
  }
  .empty-basket a:before {
    top: -1px;
  }
}

@media (max-width: 568px) {
  .basket-bottom .continue-shop {
    margin-bottom: 20px;
    display: block;
    text-align: center;
    padding-left: 0;
  }
  .basket-bottom .continue-shop:before {
    position: relative;
    margin-top: 10px;
    left: -10px;
    top: 2px;
  }
  .basket-bottom .continue-shop:hover:before {
    left: -15px;
  }
  .basket-bottom .total-sum {
    text-align: center;
  }
  .basket-bottom .total-sum .text {
    font-size: 15px;
  }
  .basket-bottom .total-sum p {
    font-size: 16px;
    font-family: "Roboto Bold", Arial, sans-serif;
  }
  .basket-bottom .total-sum p span {
    font-size: 18px;
  }
  .preorder-modal .modal-footer {
    padding: 0 15px 15px;
  }
  .preorder-modal .basket-bottom .continue-shop {
    margin: 10px 0 15px;
  }
  .preorder-modal .basket-bottom .continue-shop:before {
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 4px;
  }
}

@media (max-width: 480px) {
  .basket.order-basket .basket-item {
    padding-bottom: 30px;
  }
  .basket .empty-basket {
    padding: 50px 0 80px;
  }
  .basket .empty-basket .title {
    font-size: 18px;
  }
  .basket .empty-basket .icon-block {
    width: 50px;
    height: 50px;
  }
  .basket .empty-basket .icon-block:before {
    font-size: 50px;
  }
  .basket .empty-basket a {
    font-size: 14px;
  }
  .basket .empty-basket a:before {
    top: 0;
  }
  .basket .content {
    padding: 15px;
  }
  .basket .basket-item {
    padding-bottom: 30px;
  }
  .basket .basket-item .calc-wrap {
    top: 15px !important;
  }
}

.cabinet {
  padding: 45px 0 80px;
  background-color: #f7f7f7;
}

.cabinet h1 {
  font-size: 32px;
  margin: 0 0 35px;
  color: #4b515e;
}

.cabinet .main-title {
  margin: 0 0 45px;
}

.cabinet .content {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.cabinet .nav-tabs {
  border-bottom: 2px solid #d7dcde;
}

.cabinet .nav-tabs li {
  margin-bottom: -2px;
}

.cabinet .nav-tabs li.active a {
  border: 2px solid #d7dcde;
  border-bottom-color: transparent;
}

.cabinet .nav-tabs li a {
  color: #292929;
  position: relative;
  padding: 10px 15px 10px 35px;
}

.cabinet .nav-tabs li a span {
  position: absolute;
  top: 8px;
  left: 10px;
  color: #040404;
  font-size: 22px;
  margin: 0 5px 0 0;
}

.cabinet .tab-content {
  padding: 50px 15px 30px;
}

.cabinet .form-block {
  width: 400px;
}

.cabinet .form-block .title {
  color: #393939;
  font-size: 16px;
  padding: 0 0 10px;
  border-bottom: 1px solid #cdcdcd;
  margin: 0 0 20px;
}

.cabinet .form-block.left-block {
  float: right;
  margin-right: 20px;
}

.cabinet .form-block.right-block {
  float: left;
  margin-left: 20px;
}

.cabinet .form-block .form-row {
  margin: 0 0 20px;
}

.cabinet .form-block .form-row label {
  display: block;
  width: 100%;
  color: #141414;
  font-weight: normal;
}

.cabinet .form-block .form-row.control-one, .cabinet .form-block .form-row.control-two, .cabinet .form-block .form-row.control-three, .cabinet .form-block .form-row.control-four, .cabinet .form-block .form-row.control-five, .cabinet .form-block .form-row.control-six, .cabinet .form-block .form-row.control-pass {
  position: relative;
}

.cabinet .form-block .form-row.control-one:before, .cabinet .form-block .form-row.control-two:before, .cabinet .form-block .form-row.control-three:before, .cabinet .form-block .form-row.control-four:before, .cabinet .form-block .form-row.control-five:before, .cabinet .form-block .form-row.control-six:before, .cabinet .form-block .form-row.control-pass:before {
  display: block;
  font-family: 'Pe-icon-7-stroke';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 20px;
}

.cabinet .form-block .form-row.control-one:before {
  content: '\e6a9';
}

.cabinet .form-block .form-row.control-two:before {
  content: '\e639';
}

.cabinet .form-block .form-row.control-three:before {
  content: '\e670';
}

.cabinet .form-block .form-row.control-four:before {
  content: '\e638';
}

.cabinet .form-block .form-row.control-five:before {
  content: '\e654';
}

.cabinet .form-block .form-row.control-six:before {
  content: '\e6b0';
}

.cabinet .form-block .form-row.control-pass:before {
  content: '\e607';
}

.cabinet .form-block .form-row .form-control {
  box-shadow: none;
  border: 1px solid #e3e3e3;
  background: #f8f8f8;
  height: 45px;
  line-height: 45px;
  margin-top: 7px;
  color: #111;
  padding: 0 12px 0 45px;
}

.cabinet .form-block .form-row .form-control::-webkit-input-placeholder {
  color: #888;
}

.cabinet .form-block .form-row .form-control::-moz-placeholder {
  color: #888;
}

.cabinet .form-block .form-row .form-control:-moz-placeholder {
  color: #888;
}

.cabinet .form-block .form-row .form-control:-ms-input-placeholder {
  color: #888;
}

.cabinet .form-block .form-row .form-control:focus {
  border: 1px solid #31a8e6;
}

.cabinet .form-block .main-btn {
  padding: 9px 45px;
  height: 45px;
}

.cabinet .history-item {
  margin: 0 0 30px;
  border-bottom: 1px solid #cdcdcd;
  padding: 0 0 30px;
}

.cabinet .history-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.cabinet .history-item .date {
  font-size: 18px;
  color: #31a8e6;
  margin: 0 0 15px;
  font-family: "Roboto Bold", Arial, sans-serif;
}

.cabinet .history-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.cabinet .history-item ul li {
  border-bottom: 2px dotted #3b3b3b;
  margin: 0 0 10px;
}

.cabinet .history-item ul li::after {
  clear: both;
  content: "";
  display: table;
}

.cabinet .history-item ul li .descr {
  float: left;
  position: relative;
  z-index: 5;
  padding: 0 5px 0 0;
  bottom: -6px;
  background: #fff;
  font-family: "Roboto Medium", Arial, sans-serif;
}

.cabinet .history-item ul li .descr p {
  margin: 0;
}

.cabinet .history-item ul li .cost {
  float: right;
  position: relative;
  z-index: 5;
  padding: 0 0 0 5px;
  bottom: -6px;
  background: #fff;
  font-family: "Roboto Medium", Arial, sans-serif;
}

.cabinet .history-item ul li .cost p {
  margin: 0;
}

.cabinet .history-item .item-status {
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  padding: 5px;
  text-align: center;
  min-width: 160px;
}

.cabinet .history-item .item-status.canceled {
  background: #b51f0b;
}

.cabinet .history-item .item-status.processed {
  background: #159800;
}

.cabinet .history-item .item-status.expecting {
  background: #ff8a00;
}

.cabinet .history-item .item-sum {
  float: right;
}

.cabinet .history-item .item-sum p {
  font-family: "Roboto Medium", Arial, sans-serif;
}

.cabinet .history-item .item-sum p span {
  margin-left: 5px;
  font-size: 18px;
  font-family: "Roboto Bold", Arial, sans-serif;
}

@media (max-width: 1199px) {
  .cabinet {
    padding: 30px 0;
  }
  .cabinet .tab-content {
    padding: 30px 0;
  }
  .cabinet h1 {
    font-size: 28px;
  }
  .cabinet .tab-pane {
    padding: 0 15px;
  }
  .cabinet .form-block {
    width: 100%;
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  .cabinet h1 {
    font-size: 24px;
  }
  .cabinet .tab-content {
    padding: 30px 0 30px;
  }
  .cabinet .tab-content .form-block.left-block, .cabinet .tab-content .form-block.right-block {
    float: none;
    margin: 0;
  }
  .cabinet .tab-content .history-panel {
    padding: 10px 15px 15px !important;
  }
  .cabinet .main-title {
    margin: 0 0 20px;
  }
  .cabinet .content {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .cabinet {
    padding: 25px 0;
  }
  .cabinet h1 {
    margin: 0 0 20px;
    font-size: 21px;
  }
  .cabinet .tab-content {
    padding: 30px 0 0;
  }
  .cabinet .tab-content .form-block .title {
    text-align: center;
  }
  .cabinet .tab-content .form-block.left-block {
    margin-bottom: 30px !important;
  }
  .cabinet .tab-content .form-block .main-btn {
    margin-top: 5px;
    width: 100%;
  }
  .cabinet .history-item ul li {
    position: relative;
  }
  .cabinet .history-item ul li .descr {
    max-width: 160px;
    font-size: 13px;
  }
  .cabinet .history-item ul li .cost {
    position: absolute;
    right: 0;
  }
}

@media (max-width: 480px) {
  .cabinet .tab-pane {
    padding: 0;
  }
  .cabinet .content {
    padding: 15px;
  }
  .cabinet .history-item {
    position: relative;
    padding-bottom: 60px;
  }
  .cabinet .history-item ul {
    margin-bottom: 25px;
  }
  .cabinet .history-item ul li .descr {
    font-size: 12px;
  }
  .cabinet .history-item ul li .cost {
    font-size: 12px;
  }
  .cabinet .history-item .item-sum {
    float: none;
    text-align: right;
  }
  .cabinet .history-item .item-status {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    min-width: auto;
    width: 180px;
  }
  .cabinet .history-item:last-of-type {
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}

.login {
  padding: 25px 0 60px;
  background-color: #f7f7f7;
}

.login .content {
  padding: 70px 30px 80px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.login .section-title {
  margin-bottom: 25px;
  font-size: 32px;
  color: #4b515e;
}

.autorization-block,
.registration-block {
  position: relative;
  padding-top: 80px;
}

.autorization-block > .title,
.registration-block > .title {
  font-size: 20px;
  margin: 0 0 5px;
  color: #222;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.autorization-block > p,
.registration-block > p {
  font-size: 16px;
  color: #222;
  margin: 0 0 30px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
}

.autorization-block .form-row,
.registration-block .form-row {
  margin: 0 0 20px;
}

.autorization-block .form-control,
.registration-block .form-control {
  margin: 5px 0 0;
  box-shadow: none;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  color: #000;
  height: 45px;
  line-height: 45px;
}

.autorization-block .form-control:focus,
.registration-block .form-control:focus {
  border: 1px solid #31a8e6;
}

.autorization-block .form-control::-webkit-input-placeholder,
.registration-block .form-control::-webkit-input-placeholder {
  color: #555;
}

.autorization-block .form-control::-moz-placeholder,
.registration-block .form-control::-moz-placeholder {
  color: #555;
}

.autorization-block .form-control:-moz-placeholder,
.registration-block .form-control:-moz-placeholder {
  color: #555;
}

.autorization-block .form-control:-ms-input-placeholder,
.registration-block .form-control:-ms-input-placeholder {
  color: #555;
}

.autorization-block .main-btn,
.registration-block .main-btn {
  width: 100%;
  height: 45px;
}

.autorization-block .save-info,
.registration-block .save-info {
  text-align: left;
  margin-bottom: 18px;
}

.autorization-block .save-info input,
.registration-block .save-info input {
  opacity: 0;
}

.autorization-block .save-info label,
.registration-block .save-info label {
  font-size: 13px;
  color: #555;
  position: relative;
  cursor: pointer;
  margin-left: 21px;
}

.autorization-block .save-info label:before,
.registration-block .save-info label:before {
  content: '';
  position: absolute;
  left: -38px;
  top: -4px;
  width: 25px;
  height: 25px;
  background-color: #f8f8f8;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

.autorization-block .save-info input:checked + label::after,
.registration-block .save-info input:checked + label::after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 16px;
  color: #31a8e6;
  position: absolute;
  left: -33px;
  top: -3px;
}

.autorization-block {
  padding-left: 50px;
  padding-right: 65px;
}

.autorization-block:before {
  content: '';
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e3e3e3;
}

.autorization-block:after {
  content: attr(before-value);
  position: absolute;
  right: -23px;
  top: 40%;
  width: 46px;
  height: 46px;
  border: 1px solid #e3e3e3;
  background-color: #fff;
  border-radius: 100%;
  font-style: italic;
  font-size: 15px;
  line-height: 42px;
  color: #888;
  text-align: center;
}

.autorization-block .forgot-pass {
  font-size: 13px;
  border: none;
  outline: none;
  background: transparent;
  color: #3c3c3c;
  display: block;
  margin: 30px auto 0;
  text-decoration: underline;
}

.autorization-block .form-control {
  padding-left: 40px;
}

.autorization-block .control-one,
.autorization-block .control-two {
  position: relative;
}

.autorization-block .control-one:before,
.autorization-block .control-two:before {
  font-family: 'Pe-icon-7-stroke';
  display: block;
  position: absolute;
  font-size: 20px;
}

.autorization-block .control-one:before {
  content: '\e639';
  top: 9px;
  left: 10px;
}

.autorization-block .control-two:before {
  content: '\e607';
  top: 8px;
  left: 10px;
}

.autorization-block .default-modal .modal-body {
  padding: 30px 15px 30px;
}

.autorization-block .default-modal .modal-body .form-row {
  margin-bottom: 20px;
}

.autorization-block .default-modal .modal-body .main-btn {
  width: auto;
  float: right;
}

.registration-block {
  padding-left: 65px;
  padding-right: 50px;
}

.registration-block .form-control {
  padding-left: 40px;
}

.registration-block .notice-badge {
  display: block;
  color: #888;
  font-size: 11px;
  margin: 3px 0 0 2px;
}

.registration-block .control-one,
.registration-block .control-two,
.registration-block .control-three {
  position: relative;
}

.registration-block .control-one:before,
.registration-block .control-two:before,
.registration-block .control-three:before {
  font-family: 'Pe-icon-7-stroke';
  display: block;
  position: absolute;
  font-size: 20px;
}

.registration-block .control-one {
  margin-bottom: 15px;
}

.registration-block .control-one:before {
  content: '\e6a9';
  top: 9px;
  left: 15px;
}

.registration-block .control-two:before {
  content: '\e639';
  top: 9px;
  left: 10px;
}

.registration-block .control-three:before {
  content: '\e670';
  top: 9px;
  left: 10px;
}

.registration-block .default-modal .modal-body {
  padding: 30px 15px 30px;
}

.registration-block .default-modal .modal-body .form-row {
  margin-bottom: 20px;
}

.registration-block .default-modal .modal-footer {
  padding: 25px 0 30px;
}

.recover-modal .modal-title {
  text-align: center;
}

.recover-modal .main-btn {
  width: auto;
}

.recover-modal .form-control {
  margin: 0 0 20px;
}

.recover-modal .main-btn {
  height: auto;
}

.recover-modal .modal-footer {
  border: 0;
  background: #ecf0f1;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 991px) {
  .login {
    padding: 30px 0;
  }
  .login .content {
    padding: 15px 30px 20px;
  }
  .login .section-title {
    font-size: 24px;
  }
  .registration-block {
    border-right: 0;
    padding-left: 40px;
    padding-right: 20px;
  }
  .autorization-block {
    border-left: 0;
    padding-left: 20px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .login .content {
    padding: 15px 15px 20px;
  }
  .registration-block {
    border: 0;
    padding-left: 15px;
    padding-top: 30px;
    padding-right: 15px;
  }
  .registration-block .title {
    position: static;
    margin: 0 0 15px;
  }
  .autorization-block {
    border: 0;
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e3e3;
    padding-left: 15px;
    padding-right: 15px;
  }
  .autorization-block:before {
    display: none;
  }
  .autorization-block:after {
    right: 0;
    left: 0;
    top: auto;
    bottom: -20px;
    margin: auto;
  }
}

.search-result {
  padding: 45px 0 60px;
  background-color: #f7f7f7;
}

.search-result .content {
  padding: 30px 30px 50px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.search-result .search-title {
  font-size: 16px;
  color: #303030;
  margin: 0 0 30px;
}

.search-result .search-title span {
  color: #1b7fb3;
}

.search-result .not-found {
  min-height: 500px;
  padding: 30px 30px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.search-result .not-found .icon-block {
  width: 210px;
  height: 160px;
  margin: 0 auto 20px;
  background: url(../img/not-found-icon.png) no-repeat center;
}

.search-result .not-found p {
  text-align: center;
  font-size: 19px;
  color: #555;
}

.search-result .not-found-title {
  font-size: 26px;
  color: #272727;
  text-align: center;
}

@media (max-width: 991px) {
  .search-result {
    padding: 30px 0;
  }
  .search-result .search-title {
    font-size: 15px;
  }
  .search-result .not-found-title {
    font-size: 22px;
  }
  .search-result .not-found {
    min-height: 400px;
  }
  .search-result .not-found p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .search-result .not-found-title {
    font-size: 18px;
  }
  .search-result .content {
    padding: 15px;
  }
  .search-result .not-found {
    min-height: 350px;
  }
  .search-result .not-found p {
    font-size: 15px;
  }
}

@media (max-width: 568px) {
  .search-result {
    padding: 20px 0;
  }
  .search-result .search-title {
    margin-bottom: 20px;
    font-size: 13.5px;
  }
  .search-result .product-wrap {
    width: 100%;
  }
  .search-result .product-wrap .product-item {
    margin-bottom: 15px;
  }
}

.installation {
  position: relative;
  z-index: 100;
  padding: 420px 0 150px;
  color: #4e555d;
  background-image: url(../img/profit-before.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  margin-top: -165px;
}

.installation .img-wrap {
  position: relative;
}

.installation .laptop-img {
  width: 1100px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: -70px;
  top: -150px;
}

.installation .screen-info {
  width: 743px;
  margin: 77px auto 0;
  background-color: #f3f3f3;
  padding: 20px 10px;
}

.installation .screen-info .num {
  position: absolute;
  left: -12px;
  top: -8px;
  line-height: 1;
  font-size: 145px;
  color: #fff;
  text-shadow: 0px 0px 5px black;
}

.installation .screen-info .img-block {
  height: 120px;
  margin: 0 0 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.installation .screen-info .img-block .icon {
  display: block;
  margin: auto;
  width: 66px;
  height: 66px;
  border: 2px solid #565a67;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.installation .screen-item {
  float: left;
  width: 33.33%;
  padding: 0 10px;
  position: relative;
  margin: 0 0 10px;
  height: 185px;
}

.installation .screen-item .title {
  text-transform: uppercase;
  color: #575766;
  font-family: "Roboto Medium", Arial, sans-serif;
}

.installation .screen-item p {
  margin: 0;
  font-size: 13px;
}

.installation .section-title {
  color: #4b4e5e;
  text-align: left;
  line-height: 1.1;
  margin: 0 0 25px;
}

.installation p {
  margin: 0 0 30px;
  font-size: 15px;
}

.available {
  color: #fff;
  background: url(../img/available-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}

.available .available-badge {
  color: #8899ac;
  text-transform: uppercase;
  font-family: "Roboto Bold", Arial, sans-serif;
  font-size: 16px;
  display: block;
  margin: 0 0 30px;
}

.available .section-title {
  text-align: left;
  font-size: 36px;
  font-family: "Roboto Medium", Arial, sans-serif;
  position: relative;
  margin: 0 0 70px;
  line-height: 1.4;
}

.available .section-title span {
  text-transform: uppercase;
}

.available .section-title:after {
  content: '';
  width: 110px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -35px;
  left: 0;
}

.available p {
  font-size: 15px;
  line-height: 1.6;
}

.available .main-btn {
  margin: 40px 0 0;
  padding: 13px 45px;
  text-transform: uppercase;
  font-size: 13px;
}

.available .img-wrap {
  position: relative;
}

.available .tablet-img {
  width: 900px;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 10;
  top: -50px;
  left: 0;
}

.solutions {
  background: url(../img/solution-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0 100px;
}

.solutions .section-title {
  text-align: left;
  color: #4b4e5e;
  font-size: 50px;
  margin: 0 0 20px;
}

.solutions .title-block {
  padding-left: 300px;
  position: relative;
  margin: 0 0 80px;
}

.solutions .title-block p {
  color: #575f6f;
  font-size: 16px;
}

.solutions .title-block .car-img {
  width: 450px;
  height: 330px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -220px;
  top: -135px;
}

.solutions .solution-item {
  position: relative;
  margin: 0 0 30px;
}

.solutions .solution-item .text-block {
  box-shadow: 0 0 4px rgba(46, 46, 46, 0.1);
  padding: 16px 35px 20px;
  background-color: #fff;
  height: 185px;
}

.solutions .solution-item .text-block .title {
  font-size: 24px;
  color: #585b6c;
  font-family: "Roboto Bold", Arial, sans-serif;
  margin: 0 0 30px;
  position: relative;
}

.solutions .solution-item .text-block .title:after {
  content: '';
  width: 60px;
  height: 1px;
  background-color: #919eae;
  position: absolute;
  bottom: -13px;
}

.solutions .solution-item .text-block .title a {
  color: inherit;
}

.solutions .solution-item .text-block p {
  max-height: 45px;
  overflow: hidden;
  font-size: 14px!important;
}

.solutions .solution-item .text-block .link-more {
  color: #616975;
  text-decoration: underline;
}

.solutions .solution-item .text-block .link-more:hover {
  text-decoration: none;
}

.solutions .solution-item .img-block {
  position: absolute;
  width: 300px;
  height: 185px;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.solutions .solution-item.align-left {
  padding: 0 200px 0 300px;
}

.solutions .solution-item.align-left .img-block {
  left: 0;
}

.solutions .solution-item.align-left .text-block {
  text-align: left;
}

.solutions .solution-item.align-left .text-block .title:after {
  left: 0;
}

.solutions .solution-item.align-right {
  padding: 0 300px 0 200px;
}

.solutions .solution-item.align-right .img-block {
  right: 0;
}

.solutions .solution-item.align-right .text-block {
  text-align: right;
}

.solutions .solution-item.align-right .text-block .title:after {
  right: 0;
}

.solutions .solution-order {
  margin: 100px 0 0 345px;
  padding: 47px 0 46px 175px;
  width: 1500px;
  background: url(../img/solution-order-bg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  color: #fff;
}

.solutions .solution-order .car-img {
  width: 520px;
  height: 230px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -400px;
  top: -5px;
}

.solutions .solution-order .form-block {
  max-width: 600px;
}

.solutions .solution-order .form-block p {
  max-width: 520px;
  margin: 0 0 20px;
}

.solutions .solution-order .form-block .form-row {
  position: relative;
  margin: 0 0 20px;
  display: inline-block;
  width: 330px;
  margin: 0 15px 0 0;
}

.solutions .solution-order .form-block .form-row:after {
  content: '\e627';
  font-family: 'Pe-icon-7-stroke';
  position: absolute;
  top: 32px;
  right: 10px;
  color: #fff;
  font-size: 20px;
}

.solutions .solution-order .form-block .form-row label {
  display: block;
  width: 100%;
  font-weight: normal;
  display: inline-block;
}

.solutions .solution-order .form-block .form-row label span {
  display: block;
  margin: 0 0 8px;
}

.solutions .solution-order .form-block .form-row .form-control {
  border: 1px solid #1c272f;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 30px 0 12px;
  height: 41px;
  line-height: 41px;
  box-shadow: none;
  color: #000;
}

.solutions .solution-order .form-block .form-row .form-control:focus {
  border: 1px solid #36b1e9;
}

.solutions .solution-order .form-block .main-btn {
  padding: 11px 25px;
  display: inline-block;
}

.equipment {
  background: url(../img/equipment-bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 80px 0 40px;
}

.equipment .section-title {
  font-size: 40px;
  margin: 0 0 30px;
}

.equipment .container > p {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.equipment .container > .main-btn {
  display: block;
  width: 230px;
  margin: 0 auto;
  padding: 13px 0;
}

.equipment .equipment-slider {
  margin: 0 0 10px;
}

.equipment .equipment-slider .item {
  margin: 0 15px;
  padding-bottom: 3px;
}

.equipment .equipment-slider .slick-arrow {
  position: absolute;
  top: -55px;
  border: 2px solid #d7d7d7;
  width: 40px;
  height: 40px;
  background: #f9f9f9;
  color: #ababab;
  outline: 0;
  z-index: 10;
  text-align: center;
  font-size: 30px;
  padding: 2px 0 0;
}

.equipment .equipment-slider .slick-arrow span {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}

.equipment .equipment-slider .slick-arrow.next-arrow {
  border-radius: 0 4px 4px 0;
  border-left: 0;
  right: 15px;
}

.equipment .equipment-slider .slick-arrow.prev-arrow {
  border-radius: 4px 0 0 4px;
  right: 55px;
  border-right: 1px solid #d7d7d7;
}

.equipment .equipment-slider .product-item {
  margin: 0 0 20px;
}

.space-section {
  background-attachment: fixed;
  background-origin: initial;
  background-clip: initial;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: 300px;
}

.space-section .container {
  height: 100%;
}

.space-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.space-section .equipment-price {
  margin: 0 0 70px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}

.space-section .equipment-price .price-item {
  float: left;
  width: 33.33%;
  border-right: 1px solid #e8e8e8;
}

.space-section .equipment-price .price-item:last-of-type {
  border-right: 0;
}

.space-section .equipment-price .item-inner {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.space-section .equipment-price .cost-diapason p {
  font-size: 18px;
  text-shadow: 0px 0px 30px black;
}

.space-section .equipment-price .cost-diapason span {
  font-family: "Playfair Display";
  font-size: 36px;
  line-height: 1;
  text-shadow: 0px 0px 30px black;
}

.space-section .equipment-price .more-link {
  color: #fff;
  font-size: 18px;
  text-shadow: 0px 0px 30px black;
}

.space-section .equipment-price .more-link:hover {
  color: #f25450;
}

.transport-profit {
  padding: 100px 0;
}

.transport-profit .section-title {
  color: #4b515e;
  line-height: 1.1;
  margin: 0 0 20px;
  position: relative;
}

.transport-profit .section-title:before, .transport-profit .section-title:after {
  content: '';
  position: absolute;
}

.transport-profit .section-title:before {
  width: 160px;
  height: 110px;
  background: url(../img/profit-arr-1.png) no-repeat center;
  bottom: -55px;
  left: 15%;
}

.transport-profit .section-title:after {
  width: 80px;
  height: 70px;
  background: url(../img/profit-arr-2.png) no-repeat center;
  bottom: 10px;
  right: 20%;
}

.transport-profit .container > p {
  color: #575f6f;
  font-size: 16px;
  text-align: center;
  max-width: 360px;
  margin: 0 auto 50px;
}

.transport-profit .profit-col:nth-of-type(2) {
  padding-top: 50px;
}

.transport-profit .profit-item {
  position: relative;
  padding-left: 70px;
  margin: 0 0 45px;
}

.transport-profit .profit-item .icon-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.transport-profit .profit-item .text-block {
  border-left: 1px solid #e5e5e5;
  padding-left: 30px;
}

.transport-profit .profit-item .title {
  margin: 0 0 15px;
  color: #123d5a;
  font-size: 16px;
}

.transport-profit .profit-item p {
  color: #585c68;
}

@media (max-width: 1800px) {
  .installation {
    margin-top: -150px;
  }
}

@media (max-width: 1700px) {
  .installation {
    padding: 350px 0 180px;
  }
  .installation .text-wrap {
    padding-left: 100px;
  }
  .installation .laptop-img {
    right: -200px;
    top: -74px;
  }
  .installation .section-title {
    font-size: 42px;
  }
  .available .tablet-img {
    width: 800px;
    height: 600px;
    top: 20px;
  }
}

@media (max-width: 1536px) {
  .installation {
    margin-top: -130px;
    padding: 300px 0 180px;
  }
  .slider-wrappper .monitor-img {
    width: 570px;
    height: 340px;
    bottom: -80px;
    right: 10%;
  }
}

@media (max-width: 1440px) {
  .installation {
    margin-top: -121px;
    padding: 300px 0 220px;
  }
  .installation .text-wrap {
    padding-left: 210px;
  }
  .installation .text-wrap p {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .installation .laptop-img {
    right: -310px;
    top: -110px;
  }
  .installation .section-title {
    font-size: 32px;
  }
  .available .tablet-img {
    width: 800px;
    height: 600px;
    top: 0;
    left: -160px;
  }
}

@media (max-width: 1366px) {
  .slider-wrappper .monitor-img {
    width: 370px;
    height: 240px;
    bottom: -50px;
    right: 5%;
  }
  .solutions {
    padding: 50px 0 80px;
  }
  .solutions .title-block {
    margin: 0 0 60px;
  }
  .solutions .title-block .car-img {
    width: 400px;
    height: 300px;
    left: -160px;
    top: -100px;
  }
  .solutions .section-title {
    font-size: 42px;
  }
  .equipment {
    padding: 40px 0;
  }
  .equipment .section-title {
    font-size: 36px;
  }
  .transport-profit {
    padding: 70px 0;
  }
}

@media (max-width: 1280px) {
  .installation {
    margin-top: -104px;
  }
}

@media (max-width: 1199px) {
  .installation {
    padding: 170px 0 30px;
  }
  .installation .laptop-img {
    position: relative;
    border-top: 1px solid transparent;
    margin: 0 auto;
    left: 50%;
    top: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .installation .text-wrap {
    padding-left: 0;
    text-align: center;
  }
  .installation .text-wrap .section-title {
    text-align: center;
  }
  .installation .text-wrap p {
    font-size: 15px;
    margin: 0 0 15px;
  }
  .available {
    padding: 50px 0;
  }
  .available .section-title {
    font-size: 32px;
    margin: 0 0 40px;
  }
  .available .section-title:after {
    bottom: -22px;
  }
  .available p {
    max-width: 500px;
  }
  .available .tablet-img {
    width: 700px;
    height: 500px;
    top: 60px;
    left: -105px;
  }
  .solutions {
    padding: 40px 0 0;
  }
  .solutions .title-block {
    margin: 0 0 50px;
    padding-left: 250px;
  }
  .solutions .section-title {
    font-size: 32px;
  }
  .solutions .solution-order {
    width: 100%;
    margin: 30px 0 0;
    padding: 45px 15px;
  }
  .solutions .solution-order .car-img {
    display: none;
  }
  .solutions .solution-order .form-block {
    width: 900px;
    margin: auto;
  }
  .solutions .solution-order .form-block p {
    max-width: none;
  }
  .equipment {
    padding: 35px 0;
  }
  .equipment .section-title {
    font-size: 28px;
    margin: 0 0 20px;
  }
  .transport-profit {
    padding: 45px 0 20px;
  }
  .transport-profit .section-title:before {
    bottom: -20px;
    left: 10%;
  }
  .transport-profit .profit-item {
    padding-left: 60px;
  }
  .transport-profit .profit-item .text-block {
    padding-left: 15px;
  }
  .transport-profit .profit-item .title {
    font-size: 15px;
  }
  .transport-profit .profit-col:nth-of-type(2) {
    padding-top: 30px;
  }
}

@media (max-width: 991px) {
  .installation {
    margin-top: -83px;
    padding: 115px 0 30px;
  }
  .installation .section-title {
    font-size: 28px;
  }
  .installation .laptop-img {
    position: relative;
    border-top: 1px solid transparent;
    left: auto;
    right: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    background: #fff !important;
    width: 100%;
    height: auto;
  }
  .installation .laptop-img .screen-info {
    width: 100%;
    background-color: #fff;
    margin: 0;
    padding: 0;
  }
  .installation .laptop-img .screen-info .num {
    text-shadow: 0px 0px 25px black;
  }
  .installation .laptop-img .screen-item {
    margin: 0 0 30px;
  }
  .installation .text-wrap {
    margin: 0 0 40px;
  }
  .space-section .equipment-price .price-item .cost-diapason span {
    font-size: 24px;
  }
  .space-section .equipment-price .more-link {
    font-size: 14px;
  }
  .monitor-img {
    display: none;
  }
  .available {
    padding: 30px 0;
  }
  .available .tablet-img {
    display: none;
  }
  .available .available-badge {
    text-align: center;
    margin: 0 0 15px;
  }
  .available .section-title {
    text-align: center;
    font-size: 28px;
  }
  .available .section-title br {
    display: none;
  }
  .available .section-title:after {
    right: 0;
    margin: auto;
  }
  .available p {
    max-width: 100%;
  }
  .available .main-btn {
    display: block;
    width: 260px;
    margin: 30px auto 0;
  }
  .solutions .solution-item.align-left {
    padding: 0 0 0 300px;
  }
  .solutions .solution-item.align-right {
    padding: 0 300px 0 0;
  }
  .solutions .solution-item .text-block {
    padding: 16px 20px 18px;
  }
  .solutions .solution-item .text-block .title {
    font-size: 21px;
  }
  .solutions .section-title {
    font-size: 28px;
  }
  .solutions .title-block {
    margin: 0 0 40px;
    padding-left: 200px;
  }
  .solutions .title-block .car-img {
    width: 300px;
    height: 200px;
    left: -100px;
    top: -50px;
  }
  .solutions .solution-order .form-block {
    width: 100%;
  }
  .equipment .section-title {
    font-size: 24px;
  }
  .transport-profit {
    padding: 35px 0 10px;
  }
  .transport-profit .profit-item {
    margin: 0 0 25px;
  }
  .transport-profit .container > p {
    margin: 0 auto 30px;
  }
  .transport-profit .section-title:before {
    bottom: -25px;
    left: -20px;
  }
  .transport-profit .section-title:after {
    bottom: 20px;
    right: -5px;
  }
  .transport-profit .profit-col:nth-of-type(2) {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .installation {
    margin-top: -65px;
  }
  .installation .section-title {
    font-size: 24px;
  }
  .installation .laptop-img .screen-item {
    width: 50%;
  }
  .space-section .equipment-price .price-item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    text-align: center;
  }
  .space-section .equipment-price .price-item:last-of-type {
    border-bottom: 1px solid transparent;
  }
  .space-section .equipment-price .price-item .item-inner {
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .space-section .equipment-price .price-item .cost-diapason span {
    font-size: 24px;
  }
  .space-section .equipment-price .more-link {
    font-size: 14px;
  }
  .available .section-title {
    font-size: 21px;
  }
  .solutions {
    padding: 30px 0 0;
  }
  .solutions .solution-item {
    margin: 0 0 20px;
  }
  .solutions .solution-item .img-block {
    position: static;
    width: 350px;
    height: 235px;
    margin: 0 auto;
  }
  .solutions .solution-item.align-left {
    padding: 0;
  }
  .solutions .solution-item.align-right {
    padding: 0;
  }
  .solutions .solution-item .text-block {
    width: 350px;
    margin: 0 auto;
    height: auto;
  }
  .solutions .solution-item .text-block p {
    max-height: none;
  }
  .solutions .title-block {
    margin: 0 0 20px;
    padding-left: 0;
    text-align: center;
  }
  .solutions .title-block .car-img {
    display: none;
  }
  .solutions .title-block p {
    font-size: 14px;
  }
  .solutions .section-title {
    text-align: center;
    font-size: 24px;
    margin: 0 0 10px;
  }
  .solutions .section-title br {
    display: none;
  }
  .solutions .solution-order .form-block .form-row {
    width: 100%;
    margin: 0 0 10px;
  }
  .solutions .solution-order .form-block .main-btn {
    width: 100%;
  }
  .transport-profit .section-title:after, .transport-profit .section-title:before {
    display: none;
  }
  .equipment .equipment-slider .product-item .img-block img {
    max-width: 225px;
  }
}

@media (max-width: 568px) {
  .installation {
    margin-top: -50px;
    padding: 90px 0 10px;
  }
  .equipment {
    padding: 35px 0;
  }
  .equipment .equipment-slider .item {
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .installation {
    margin-top: -40px;
    padding: 70px 0 10px;
  }
  .installation .section-title {
    font-size: 21px;
  }
  .installation .laptop-img .screen-item {
    width: 100%;
    height: auto;
  }
  .solutions .solution-item {
    margin: 0 0 20px;
  }
  .solutions .solution-item .img-block {
    width: 100%;
    height: 250px;
  }
  .solutions .solution-item .text-block {
    width: 100%;
  }
  .solutions .section-title {
    font-size: 21px;
  }
}

@media (max-width: 420px) {
  .profit {
    margin-top: -36px;
  }
}

@media (max-width: 375px) {
  .profit {
    margin-top: -32px;
  }
  .solutions .solution-item .img-block {
    height: 200px;
  }
}

.filtering {
  padding: 30px 0;
}

.filtering .show-products {
  float: left;
}

.filtering .show-products span {
  color: #808080;
  margin: 8px 5px 0 0;
  display: inline-block;
  vertical-align: top;
}

.filtering .show-products ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
}

.filtering .show-products ul::after {
  clear: both;
  content: "";
  display: table;
}

.filtering .show-products ul li {
  float: left;
  width: 40px;
  height: 34px;
  text-align: center;
  border-right: 1px solid #d7d7d7;
}

.filtering .show-products ul li.active {
  color: #2c2f37;
  font-family: "Roboto Medium", Arial, sans-serif;
  font-size: 13px;
  cursor: auto;
  padding-top: 8px;
  border-bottom: 2px solid #35afe8;
}

.filtering .show-products ul li:last-child {
  border-right: 0;
}

.filtering .show-products ul li a {
  padding-top: 8px;
  color: #808080;
  font-size: 13px;
  display: block;
  font-family: "Roboto Medium", Arial, sans-serif;
  text-align: center;
}

.filtering .show-products ul li a:hover {
  text-decoration: none;
  color: #35afe8;
}

.filtering .show-products ul li a:focus {
  text-decoration: none;
}

.filtering .filter-head {
  background: url(../img/filter-bg.png) repeat top;
  border-radius: 4px;
  padding: 5px 5px 5px;
  margin: 0 0 10px;
  color: #fff;
}

.filtering .breadcrumbs {
  margin: 0 0 30px;
  padding: 3px;
}

.filtering .breadcrumbs li {
  margin: 0 0 3px;
}

.filtering .range-block {
  display: inline-block;
  vertical-align: top;
  width: 320px;
  color: #fff;
  margin-right: 20px;
}

.filtering .text-wrap .cost1 {
  float: left;
}

.filtering .text-wrap .cost2 {
  float: right;
}

.filtering .price-nums {
  width: 100%;
}

.filtering .ui-widget-header {
  background: #35afe8;
}

.filtering .ui-slider {
  background: rgba(255, 255, 255, 0.4);
  height: 5px;
  border: 0;
}

.filtering .ui-corner-all,
.filtering .ui-corner-bottom,
.filtering .ui-corner-right,
.filtering .ui-corner-br {
  border-radius: 0;
}

.filtering .ui-slider-handle {
  background: #35afe8;
  border-radius: 100%;
  outline: 0;
  border: 3px solid #fff;
  top: -6px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.filtering .available-check {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
  margin-top: 47px;
}

.filtering .available-check input {
  opacity: 0;
}

.filtering .available-check label {
  font-size: 13px;
  color: #fff;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  margin-left: 21px;
}

.filtering .available-check label:before {
  content: '';
  position: absolute;
  left: -38px;
  top: -4px;
  width: 25px;
  height: 25px;
  background-color: #f8f8f8;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

.filtering .available-check input:checked + label::after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 16px;
  color: #fff;
  background: #35afe8;
  border: 1px solid #35afe8;
  position: absolute;
  width: 25px;
  height: 25px;
  left: -38px;
  top: -4px;
  border-radius: 4px;
  text-align: center;
}

.filtering .select-block {
  display: inline-block;
  vertical-align: top;
  width: 200px;
}

.filtering .select-block .filter-title {
  margin-bottom: 18px;
}

.filtering .select-block .jq-selectbox {
  width: 100%;
}

.filtering .select-block .jq-selectbox__select {
  height: 42px;
  display: block;
  color: #5e6977;
  border: 2px solid #e1e8ee;
  box-shadow: none;
  background: transparent;
  padding-top: 3px;
}

.filtering .select-block .jq-selectbox__select .jq-selectbox__select-text {
  line-height: 34px;
  font-size: 13px;
  text-shadow: none;
  color: #fff;
}

.filtering .select-block .jq-selectbox__trigger {
  background: transparent;
  box-shadow: none;
  border: 0;
}

.filtering .select-block .jq-selectbox__trigger .jq-selectbox__trigger-arrow {
  border-top: 5px solid #fff;
  top: 18px;
}

.filtering .select-block .jq-selectbox__dropdown {
  border: 0;
  z-index: 150;
}

.filtering .select-block .jq-selectbox__dropdown ul li {
  font-size: 13px;
  padding: 8px 10px;
}

.filtering .select-block .jq-selectbox__dropdown ul li.selected {
  background-color: #35afe8;
  color: #fff;
}

.filtering .select-block .jq-selectbox__dropdown ul li:first-child {
  border-radius: 4px 4px 0 0;
}

.filtering .select-block .jq-selectbox__dropdown ul li:last-child {
  border-radius: 0 0 4px 4px;
}

.filtering .select-block .jq-selectbox__dropdown ul li:hover {
  background-color: #35afe8;
  color: #fff;
}

.filtering .product-item {
  margin-bottom: 30px;
}

.filtering .filter-footer {
  position: relative;
  margin: 30px 0;
}

.filtering .filter-footer .view-more {
  display: block;
  margin: auto;
  color: #333745;
  border: 0;
  outline: 0;
  padding: 0;
  max-width: 150px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-family: "Lato Bold", Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
}

.filtering .filter-footer .view-more .fa-refresh {
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.filtering .filter-footer .view-more:hover, .filtering .filter-footer .view-more:focus {
  text-decoration: none;
}

.filtering .filter-footer .view-more:hover .fa-refresh {
  transform: rotate(360deg);
}

.catalog-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-nav > li.active > span {
  padding: 8px 35px 8px 15px;
  color: #fff;
  display: block;
  font-size: 13px;
  background: url(../img/dropdown-bg.png) repeat center;
  border-top: 1px solid #4a4d56;
  border-bottom: 1px solid #25282f;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  position: relative;
}

.catalog-nav > li.active > span:after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 15px;
  height: 20px;
  margin-top: -8px;
  line-height: 1;
  font-size: 16px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.catalog-nav > li > a {
  display: block;
  color: #fff;
  padding: 8px 35px 8px 20px;
  font-size: 13px;
  background: url(../img/dropdown-bg.png) repeat center;
  border-top: 1px solid #4a4d56;
  border-bottom: 1px solid #25282f;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  position: relative;
}

.catalog-nav > li > a:after {
  content: '\f105';
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 15px;
  height: 20px;
  margin-top: -8px;
  line-height: 1;
  font-size: 16px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.catalog-nav > li > a:hover, .catalog-nav > li > a:focus {
  text-decoration: none;
}

.catalog-nav > li > a:hover {
  color: #66bbee;
}

.catalog-nav > li > a:hover:after {
  right: 10px;
}

.catalog-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-dropdown > li > a {
  display: block;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #dedede;
  color: #181716;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  padding: 8px 10px 8px 20px;
  font-size: 13px;
}

.catalog-dropdown > li > a:hover {
  background: url(../img/nav-hover-bg.png) repeat center;
  color: #fff;
}

.catalog-dropdown > li > a:hover, .catalog-dropdown > li > a:focus {
  text-decoration: none;
}

.catalog-dropdown > li > span {
  display: block;
  background: #ddd;
  border: 0;
  border-bottom: 1px solid #dedede;
  color: #181716;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  padding: 8px 10px 8px 20px;
  font-size: 12px;
  position: relative;
}

.catalog-dropdown > li > span:after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  color: #000;
  top: 50%;
  right: 15px;
  height: 20px;
  margin-top: -8px;
  line-height: 1;
  font-size: 16px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.inner-catalog-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-catalog-dropdown > li.active {
  background: #ddd;
}

.inner-catalog-dropdown > li > a {
  background: #eee;
  display: block;
  padding: 8px 10px 8px 30px;
  font-size: 13px;
  border-bottom: 1px solid #dedede;
  font-size: 12px;
  color: #000;
  font-family: "Roboto Medium", Arial, sans-serif;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.inner-catalog-dropdown > li > a:hover, .inner-catalog-dropdown > li > a:focus {
  text-decoration: none;
  padding-left: 35px;
}

.nav-filter {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fff;
}

.nav-filter .filter-header {
  background: url(../img/filter-bg.png) repeat center;
  font-size: 14px;
  color: #fff;
  position: relative;
  padding: 8px 35px 10px 50px;
}

.nav-filter .filter-header:before {
  content: '\f0b0';
  font-family: FontAwesome;
  position: absolute;
  top: 6px;
  left: 18px;
  font-size: 16px;
}

.nav-filter .filter-header:after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  top: 4px;
  right: 18px;
  font-size: 20px;
}

.nav-filter .inner-block {
  padding: 20px;
}

.nav-filter .title {
  font-size: 13px;
  color: #3e3e3e;
  font-family: "Roboto Bold", Arial, sans-serif;
  margin: 0 0 15px;
  padding: 0 0 5px;
  border-bottom: 1px solid #d7d7d7;
}

.nav-filter .check-row {
  margin: 0 0 5px;
  position: relative;
  padding-left: 20px;
}

.nav-filter .check-row input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-filter .check-row label {
  font-size: 13px;
  color: #000;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
}

.nav-filter .check-row label:before {
  content: '';
  position: absolute;
  left: -25px;
  top: 2px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 2px solid #aaa;
  border-radius: 4px;
}

.nav-filter .check-row input:checked + label::after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 10px;
  color: #31a8e6;
  background: #fff;
  border: 2px solid #31a8e6;
  position: absolute;
  width: 15px;
  height: 15px;
  left: -25px;
  top: 2px;
  border-radius: 4px;
  text-align: left;
  line-height: 11px;
}

.nav-filter .check-row input:checked + label {
  font-family: "Roboto Medium", Arial, sans-serif;
}

.nav-filter .check-row input:disabled + label {
  color: #999;
  cursor: auto;
}

.nav-filter .check-row input:disabled + label:before {
  border: 2px solid #ddd;
}

.nav-filter .reset-btn {
  border: 0;
  outline: 0;
  display: block;
  width: 100%;
  background: #31a8e6;
  position: relative;
  font-size: 13px;
  height: 35px;
  line-height: 35px;
  padding: 0 30px;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
  margin: 25px 0 0;
}

.nav-filter .reset-btn:hover {
  background: #26547c;
}

.nav-filter .reset-btn:before {
  content: '\f00d';
  font-family: FontAwesome;
  margin-right: 10px;
  font-size: 16px;
  line-height: 35px;
}

.nav-filter .filter-fixed-height {
  height: 320px;
  padding-right: 12px;
  overflow-y: scroll;
}

.nicescroll-rails {
  background: #ebeff0;
  width: 6px !important;
  border: 0;
}

.nicescroll-rails div {
  border: 0 !important;
}

@media (max-width: 1199px) {
  .filtering .show-products {
    float: none;
  }
  .filtering .show-products span {
    display: block;
    margin: -3px 0 10px;
  }
  .filtering .filter-head {
    padding: 15px;
  }
  .filtering .filter-head::after {
    clear: both;
    content: "";
    display: table;
  }
  .filtering .range-block {
    margin-bottom: 20px;
  }
  .filtering .select-block {
    width: 100%;
  }
  .filtering .select-block .filter-title {
    margin-bottom: 8px;
  }
  .filtering .breadcrumbs {
    margin-top: -5px;
  }
}

@media (max-width: 991px) {
  .filtering .show-products span {
    display: inline-block;
    margin: 6px 10px 0 0;
  }
  .filtering .catalog-nav {
    margin-bottom: 20px;
  }
  .filtering .breadcrumbs {
    margin: 15px 0;
  }
  .filtering .filter-footer .view-more {
    left: auto;
  }
}

@media (max-width: 767px) {
  .filtering .range-block {
    width: 100%;
    margin: 0 0 25px;
  }
  .filtering .available-check {
    margin: 0 20px 15px 0;
  }
}

@media (max-width: 568px) {
  .filtering .product-wrap {
    width: 100%;
  }
  .filtering .filter-footer {
    margin: 0;
    padding-bottom: 30px;
  }
  .filtering .filter-footer .view-more {
    top: auto;
    bottom: 0;
    left: 0;
  }
}

.order {
  padding: 45px 0 50px;
  background-color: #f7f7f7;
}

.order .content {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.order .section-title {
  font-size: 32px;
  color: #4b515e;
  margin: 0 0 40px;
}

.order .order-basket {
  background-color: #fff;
}

.order .main-title {
  margin: 0 0 45px;
}

.order .nav-tabs {
  border-bottom: 2px solid #d7dcde;
}

.order .nav-tabs li {
  margin-bottom: -2px;
}

.order .nav-tabs li.active a {
  border: 2px solid #d7dcde;
  border-bottom-color: transparent;
  color: #000;
}

.order .nav-tabs li a {
  text-align: center;
  padding: 11px 10px 12px;
  border: 1px solid transparent;
  font-size: 13px;
  color: #2f2f2f;
  font-family: "Roboto Bold", Arial, sans-serif;
}

.order .tab-pane {
  padding: 0 0 50px;
}

.order .order-autorization {
  position: relative;
  margin-top: 30px;
}

.order .order-autorization > .title {
  font-size: 20px;
  margin: 0 0 5px;
  color: #222;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.order .order-autorization > p {
  font-size: 16px;
  color: #222;
  margin: 0 0 30px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
}

.order .order-autorization .form-row {
  margin: 0 0 20px;
}

.order .order-autorization .form-control {
  margin: 5px 0 0;
  box-shadow: none;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  color: #000;
  height: 45px;
  line-height: 45px;
  padding-left: 40px;
}

.order .order-autorization .form-control:focus {
  border: 1px solid #31a8e6;
}

.order .order-autorization .form-control::-webkit-input-placeholder {
  color: #555;
}

.order .order-autorization .form-control::-moz-placeholder {
  color: #555;
}

.order .order-autorization .form-control:-moz-placeholder {
  color: #555;
}

.order .order-autorization .form-control:-ms-input-placeholder {
  color: #555;
}

.order .order-autorization .control-one,
.order .order-autorization .control-two {
  position: relative;
}

.order .order-autorization .control-one:before,
.order .order-autorization .control-two:before {
  font-family: 'Pe-icon-7-stroke';
  display: block;
  position: absolute;
  font-size: 20px;
}

.order .order-autorization .control-one:before {
  content: '\e639';
  top: 10px;
  left: 10px;
}

.order .order-autorization .control-two:before {
  content: '\e607';
  top: 10px;
  left: 10px;
}

.order .order-autorization .main-btn {
  height: 45px;
  width: 100%;
}

.order .order-autorization .forgot-pass {
  font-size: 13px;
  border: none;
  outline: none;
  background: transparent;
  color: #3c3c3c;
  display: block;
  margin: 30px auto 0;
  text-decoration: underline;
}

.order .order-autorization .default-modal .modal-body {
  padding: 30px 15px 30px;
}

.order .order-autorization .default-modal .modal-body .form-row {
  margin-bottom: 20px;
}

.order .order-autorization .default-modal .modal-body .main-btn {
  width: auto;
  float: right;
}

.order .tab-badge {
  color: #31a8e6;
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

.order .tab-badge:before {
  content: '\f05a';
  font-family: FontAwesome;
  margin-right: 10px;
}

.order .pay-more-info {
  color: #31a8e6;
  position: relative;
  display: inline-block;
  margin: 5px 0 10px;
  padding-left: 25px;
}

.order .pay-more-info:before {
  content: '\f05a';
  font-family: FontAwesome;
  margin-right: 10px;
  position: absolute;
  left: 3px;
  top: 0;
  color: #31a8e6;
}

.order .order-registration {
  position: relative;
}

.order .order-registration > .title {
  font-size: 20px;
  margin: 0 0 5px;
  color: #222;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.order .order-registration > p {
  font-size: 16px;
  color: #222;
  margin: 0 0 30px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
}

.order .order-registration .form-row {
  margin: 0 0 20px;
}

.order .order-registration .form-control {
  margin: 5px 0 0;
  box-shadow: none;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  color: #000;
  height: 45px;
  line-height: 45px;
  padding-left: 40px;
}

.order .order-registration .form-control:focus {
  border: 1px solid #31a8e6;
}

.order .order-registration .form-control::-webkit-input-placeholder {
  color: #555;
}

.order .order-registration .form-control::-moz-placeholder {
  color: #555;
}

.order .order-registration .form-control:-moz-placeholder {
  color: #555;
}

.order .order-registration .form-control:-ms-input-placeholder {
  color: #555;
}

.order .order-registration .control-one,
.order .order-registration .control-two,
.order .order-registration .control-three,
.order .order-registration .control-four,
.order .order-registration .control-five,
.order .order-registration .control-six {
  position: relative;
}

.order .order-registration .control-one:before,
.order .order-registration .control-two:before,
.order .order-registration .control-three:before,
.order .order-registration .control-four:before,
.order .order-registration .control-five:before,
.order .order-registration .control-six:before {
  font-family: 'Pe-icon-7-stroke';
  display: block;
  position: absolute;
  font-size: 20px;
}

.order .order-registration .control-one:before {
  content: '\e6a9';
  top: 10px;
  left: 15px;
}

.order .order-registration .control-two:before {
  content: '\e639';
  top: 10px;
  left: 10px;
}

.order .order-registration .control-three:before {
  content: '\e670';
  top: 10px;
  left: 10px;
}

.order .order-registration .control-four:before {
  content: '\e670';
  top: 10px;
  left: 10px;
}

.order .order-registration .control-five:before {
  content: '\e638';
  top: 10px;
  left: 10px;
}

.order .order-registration .control-six:before {
  content: '\e654';
  top: 10px;
  left: 10px;
}

.order .order-registration .main-btn {
  width: 100%;
  height: 45px;
}

.order .order-registration .delivery-operator {
  width: 100%;
  margin: 0 0 15px;
  position: relative;
}

.order .order-registration .delivery-operator:before {
  content: '\e673';
  font-family: 'Pe-icon-7-stroke';
  top: 15px;
  left: 10px;
  display: block;
  position: absolute;
  font-size: 20px;
  z-index: 100;
}

.order .order-registration .delivery-operator .jq-selectbox__select {
  box-shadow: none;
  margin: 5px 0 0;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  color: #555;
  height: 45px;
  font-size: 13px;
  padding: 6px 10px 0 40px;
}

.order .order-registration .delivery-operator .jq-selectbox__trigger {
  border-left: 1px solid transparent;
}

.order .order-registration .delivery-operator .jq-selectbox__trigger-arrow {
  top: 19px;
}

.order .order-registration .delivery-operator .jq-selectbox__dropdown {
  top: 50px !important;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.order .order-registration .delivery-operator .jq-selectbox__dropdown li {
  padding: 10px 10px;
  font-size: 14px;
}

.order .order-registration .delivery-operator .jq-selectbox__dropdown li.selected, .order .order-registration .delivery-operator .jq-selectbox__dropdown li:hover {
  background: #31a8e6;
  color: #fff;
}

.order .info-title {
  font-family: "Roboto Medium", Arial, sans-serif;
  color: #595959;
  font-size: 17px;
  position: relative;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 3px;
  margin: 0 0 15px;
}

.order .info-title:before {
  content: '\f05a';
  color: #31a8e6;
  font-size: 14px;
  font-family: FontAwesome;
  margin-right: 10px;
}

.order .drop-title {
  font-size: 15px;
  color: #050505;
  margin: 0 0 15px;
}

.order .textrea-row {
  position: relative;
  margin: 0 0 20px;
}

.order .textrea-row textarea {
  margin: 5px 0 0;
  box-shadow: none;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  color: #000;
  padding: 10px 15px 15px 40px;
  resize: none;
  height: 180px;
  outline: none;
  width: 100%;
  display: block;
  border-radius: 4px;
}

.order .textrea-row textarea::-webkit-input-placeholder {
  color: #555;
}

.order .textrea-row textarea::-moz-placeholder {
  color: #555;
}

.order .textrea-row textarea:-moz-placeholder {
  color: #555;
}

.order .textrea-row textarea:-ms-input-placeholder {
  color: #555;
}

.order .textrea-row textarea:focus {
  border: 1px solid #31a8e6;
}

.order .textrea-row:before {
  content: '\e66d';
  font-family: 'Pe-icon-7-stroke';
  color: #767676;
  font-size: 24px;
  display: block;
  position: absolute;
  top: 8px;
  left: 10px;
}

.order .info-badge {
  font-size: 11px;
  color: #555;
  width: 20%;
  display: block;
  clear: both;
  cursor: pointer;
}

.order .info-badge:first-of-type {
  margin-bottom: 10px;
}

.order .info-badge:last-of-type {
  margin-bottom: 10px;
}

.order .info-badge:before {
  content: '\f05a';
  font-family: FontAwesome;
  font-size: 13.68px;
  color: #31a8e6;
  margin-right: 5px;
}

.order .save-info {
  text-align: left;
  margin-bottom: 18px;
}

.order .save-info input {
  opacity: 0;
}

.order .save-info label {
  font-size: 13px;
  color: #555;
  position: relative;
  cursor: pointer;
  margin-left: 21px;
}

.order .save-info label:before {
  content: '';
  position: absolute;
  left: -38px;
  top: -4px;
  width: 25px;
  height: 25px;
  background-color: #f8f8f8;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

.order .save-info input:checked + label::after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 16px;
  color: #31a8e6;
  position: absolute;
  left: -33px;
  top: -3px;
}

.order .default-modal .main-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 40px;
}

.delivery-payment {
  text-align: left;
  margin-bottom: 15px;
}

.delivery-payment .hidden-radio {
  opacity: 0;
}

.delivery-payment label {
  font-size: 14px;
  color: #2d2d2d;
  position: relative;
  cursor: pointer;
  margin-left: 12px;
  margin-bottom: 10px;
}

.delivery-payment label:before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #c9c9c9;
  position: absolute;
  left: -26px;
  top: 1px;
}

.delivery-payment input:checked + label::before {
  border: 4px solid #31a8e6;
  background: #fff;
}

.delivery-type {
  float: left;
  margin-bottom: 10px;
}

.delivery-type label {
  font-size: 13.4px;
  display: block;
  color: #333;
  margin-right: 50px;
}

.delivery-type label input {
  opacity: 0;
}

.delivery-type label:before {
  content: '';
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 100%;
  background: #c9c9c9;
  margin-right: -6px;
}

.delivery-type label.checked:before {
  content: '';
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50px;
  border: 4px solid #31a8e6;
  background: #fff;
  margin-right: -6px;
}

.delivery-place1,
.delivery-place2,
.delivery-place3,
.delivery-place4 {
  display: none;
  clear: both;
  padding-top: 10px;
}

@media (max-width: 1199px) {
  .order .nav-tabs {
    border: 0;
  }
  .order .nav-tabs li {
    float: none;
    margin: 10px 0;
  }
  .order .nav-tabs li a {
    border: 2px solid #d7dcde !important;
    border-radius: 4px;
  }
  .order .nav-tabs li.active a {
    background: #eee;
    border: 2px solid #d7dcde !important;
  }
  .order .section-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .order .content {
    padding: 15px;
  }
  .order .content .section-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-family: "Roboto Medium", Arial, sans-serif;
  }
}

@media (max-width: 767px) {
  .order {
    padding: 30px 0;
  }
  .order .content .section-title {
    margin: 0 0 10px;
    font-size: 21px;
  }
}

.product {
  padding: 45px 0 60px;
  background-color: #f7f7f7;
}

.product .breadcrumbs {
  margin-top: 0;
}

.product .content {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.product .product-top .left-block,
.product .product-top .right-block {
  float: left;
  width: 50%;
}

.product .product-top .right-block {
  position: relative;
  padding-left: 15px;
}

.product .product-top .right-block .title {
  color: #303030;
  font-size: 24px;
  padding-right: 130px;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 8px;
  margin: 0 0 20px;
}

.product .product-top .left-block {
  padding-right: 15px;
}

.product .product-top .img-block {
  max-width: 377px;
  height: 350px;
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  margin: auto;
}

.product .product-top .img-block img {
  display: block;
  width: 100%;
  max-width: 370px;
  max-height: 348px;
  position: relative;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product .product-top .product-available,
.product .product-top .not-available {
  position: absolute;
  top: 6px;
  right: 0;
  color: #4d4d4d;
  font-size: 12px;
}

.product .product-top .product-available:before,
.product .product-top .not-available:before {
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
}

.product .product-top .product-available:before {
  content: '\f046';
  color: #31a8e6;
}

.product .product-top .not-available:before {
  content: '\f00d';
  color: #fb515d;
}

.product .product-top .term {
  color: #4d4d4d;
  font-size: 13px;
  margin: 0 0 20px;
}

.product .product-top .term p {
  margin: 0;
}

.product .product-top .product-cost,
.product .product-top .product-old-cost {
  display: inline-block;
  vertical-align: bottom;
}

.product .product-top .cost-block {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 15px;
  padding-top: 10px;
}

.product .product-top .product-cost {
  color: #7b7b7b;
  font-size: 15px;
  margin-right: 10px;
}

.product .product-top .product-cost p {
  margin: 0;
}

.product .product-top .product-cost span {
  color: #303030;
  font-size: 21px;
  line-height: 1;
}

.product .product-top .product-old-cost {
  color: #7b7b7b;
  position: relative;
  font-size: 16px;
}

.product .product-top .product-old-cost:before {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background: #7b7b7b;
  position: absolute;
  top: 10px;
  left: 0;
}

.product .product-top .product-old-cost p {
  margin: 0;
}

.product .product-top .shop-btn {
  background: #31a8e6;
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 5px;
  position: relative;
  padding: 0 20px 0 60px;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.product .product-top .shop-btn:hover {
  background: #26547c;
}

.product .product-top .shop-btn:before {
  content: '\f07a';
  font-family: FontAwesome;
  position: absolute;
  top: 2px;
  left: 13px;
  font-size: 18px;
}

.product .product-top .shop-btn:after {
  content: '';
  height: 30px;
  width: 1px;
  display: block;
  position: absolute;
  top: 6px;
  left: 47px;
  background: #fff;
}

.product .product-top .shop-btn .default-text {
  display: inline;
}

.product .product-top .shop-btn .change-text {
  display: none;
}

.product .product-top .shop-btn.added {
  background: #26547c;
}

.product .product-top .shop-btn.added:before {
  content: '\f00c';
  top: 0;
}

.product .product-top .shop-btn.added .default-text {
  display: none;
}

.product .product-top .shop-btn.added .change-text {
  display: inline;
}

.product .reviews-block {
  border-top: 1px solid #ebebed;
  border-bottom: 1px solid #ebebed;
  padding: 10px 0;
  margin: 15px 0;
}

.product .reviews-block::after {
  clear: both;
  content: "";
  display: table;
}

.product .reviews-block .rating-block {
  float: left;
}

.product .reviews-block .rating-block .product-rating {
  display: inline-block;
  vertical-align: top;
  color: #f6b63a;
  font-size: 15px;
  margin-right: 10px;
}

.product .reviews-block .rating-block .raiting-amount {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 13px;
  color: #808080;
  cursor: pointer;
}

.product .reviews-block .rating-block .raiting-amount:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid #aaa;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 7px;
  left: 0;
}

.product .details-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product .details-list li {
  margin: 0 0 8px;
  font-size: 13px;
}

.product .details-list li p {
  margin: 0;
}

.product .tab-pane {
  padding: 30px 0;
}

.product .tab-pane:nth-child(2) {
  padding-bottom: 0;
}

.product .tab-pane .tab-title {
  color: #5d6874;
  margin: 0 0 15px;
}

.product .tab-pane table {
  margin: 20px 0 0;
  width: 100%;
}

.product .tab-pane table tr:nth-child(odd) td {
  background: #eee;
}

.product .tab-pane table tr td:first-of-type {
  padding-left: 10px;
  padding-right: 15px;
}

.product .tab-pane table td {
  padding: 8px 0;
}

.product .tab-pane table .char {
  color: #4b5b6a;
  font-family: "Roboto Medium", Arial, sans-serif;
  font-size: 15px;
  min-width: 200px;
  padding-left: 15px;
}

.product .tab-pane table .value {
  color: #444;
  text-align: right;
  padding-right: 15px;
}

.product .nav-tabs {
  border-bottom: 1px solid #c1c1c1;
}

.product .nav-tabs li {
  padding: 0 15px;
}

.product .nav-tabs li:first-of-type {
  padding-left: 0;
}

.product .nav-tabs li.active {
  margin: 0;
}

.product .nav-tabs li.active a {
  border: 1px solid transparent;
  color: #2c2e36;
}

.product .nav-tabs li.active a:after {
  left: 0;
  right: 0;
  width: 100%;
}

.product .nav-tabs li a {
  color: #888;
  padding: 10px 0;
}

.product .nav-tabs li a:hover {
  background: transparent;
  border: 1px solid transparent;
}

.product .nav-tabs li a:after {
  content: '';
  width: 0;
  height: 3px;
  background: #5e6977;
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -3px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.product .feedback-block {
  margin: 0;
}

.product .feedback-block .form-block {
  padding-top: 10px;
}

.product .feedback-block .form-block .title {
  font-size: 16px;
  font-family: "Roboto Bold", Arial, sans-serif;
  color: #333;
  margin: 10px 0 30px;
}

.product .feedback-block .form-block .form-row {
  margin: 0 0 20px;
}

.product .feedback-block .form-block .form-row::after {
  clear: both;
  content: "";
  display: table;
}

.product .feedback-block .form-block .form-row .form-col:first-of-type {
  padding-right: 15px;
}

.product .feedback-block .form-block .form-col,
.product .feedback-block .form-block .raiting-col {
  float: left;
  width: 50%;
  position: relative;
}

.product .feedback-block .form-block .form-col label {
  display: block;
  color: #696969;
  font-weight: normal;
}

.product .feedback-block .form-block .raiting-col {
  padding-left: 70px;
  padding-top: 30px;
  /* hover previous stars in list */
}

.product .feedback-block .form-block .raiting-col span {
  color: #696969;
  position: absolute;
  left: 0;
  top: 35px;
}

.product .feedback-block .form-block .raiting-col .rating {
  border: none;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  margin-right: 10px;
}

.product .feedback-block .form-block .raiting-col .rating > input {
  display: none;
}

.product .feedback-block .form-block .raiting-col .rating > label:before {
  margin: 0 2px;
  font-size: 21px;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
  font-weight: normal;
}

.product .feedback-block .form-block .raiting-col .rating > .half:before {
  content: "\f089";
  position: absolute;
}

.product .feedback-block .form-block .raiting-col .rating > label {
  color: #bbb;
  float: right;
}

.product .feedback-block .form-block .raiting-col .rating > input:checked ~ label,
.product .feedback-block .form-block .raiting-col .rating:not(:checked) > label:hover,
.product .feedback-block .form-block .raiting-col .rating:not(:checked) > label:hover ~ label {
  color: #f6b63a;
}

.product .feedback-block .form-block .raiting-col .rating > input:checked + label:hover,
.product .feedback-block .form-block .raiting-col .rating > input:checked ~ label:hover,
.product .feedback-block .form-block .raiting-col .rating > label:hover ~ input:checked ~ label,
.product .feedback-block .form-block .raiting-col .rating > input:checked ~ label:hover ~ label {
  color: #f6b63a;
}

.product .feedback-block .form-block .form-control {
  border: 2px solid #e1e8ee;
  box-shadow: none;
  border-radius: 4px;
  height: 45px;
  line-height: 45px;
}

.product .feedback-block .form-block .form-control:focus {
  border: 2px solid #31a8e6;
}

.product .feedback-block .form-block .textarea {
  margin: 0 0 20px;
}

.product .feedback-block .form-block .textarea textarea {
  width: 100%;
  height: 100px;
  border: 2px solid #e1e8ee;
  border-radius: 4px;
  resize: none;
  padding: 15px;
  outline: none;
}

.product .feedback-block .form-block .textarea textarea:focus {
  border: 2px solid #31a8e6;
}

.product .feedback-block .form-block .textarea textarea::-webkit-input-placeholder {
  color: #696969;
}

.product .feedback-block .form-block .textarea textarea::-moz-placeholder {
  color: #696969;
}

.product .feedback-block .form-block .textarea textarea:-moz-placeholder {
  color: #696969;
}

.product .feedback-block .form-block .textarea textarea:-ms-input-placeholder {
  color: #696969;
}

.product .feedback-block .form-block .main-btn {
  height: 43px;
  padding: 0 25px;
  line-height: 43px;
}

.product .feedback-block .comments-block {
  position: relative;
}

.product .feedback-block .comments-block .comment-item {
  margin: 0 0 30px;
}

.product .feedback-block .comments-block .comment-item .title {
  color: #333;
  font-size: 16px;
  font-family: "Roboto Medium", Arial, sans-serif;
  margin: 0 0 8px;
}

.product .feedback-block .comments-block .comment-item .product-rating {
  color: #f6b63a;
  font-size: 16px;
  margin: 0 0 10px;
}

.product .feedback-block .comments-block .comment-item .date {
  color: #999;
  font-size: 13px;
}

.product .feedback-block .comments-block .see-all-comment {
  position: absolute;
  right: 20px;
  bottom: -20px;
  color: #3f3f3f;
  font-family: "Roboto Bold", Arial, sans-serif;
}

.product .feedback-block .default-modal .modal-body {
  padding: 45px 15px 40px;
}

.product .feedback-block .default-modal .modal-body p {
  text-align: center;
}

.product .feedback-block .default-modal .modal-footer {
  padding: 25px 0 30px;
}

@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product .content {
    margin: 30px 0 0;
  }
  .product .feedback-block .comments-block .see-all-comment {
    bottom: -25px;
    right: 5px;
  }
}

@media (max-width: 767px) {
  .product {
    padding: 20px 0;
  }
  .product .content {
    padding: 20px;
    margin: 20px 0 0;
  }
  .product .product-top .left-block,
  .product .product-top .right-block {
    width: 100%;
    padding: 0;
  }
  .product .product-top .right-block {
    padding-top: 25px;
  }
  .product .product-top .right-block .title {
    font-size: 21px;
    padding: 0 0 10px;
  }
  .product .product-top .available,
  .product .product-top .not-available {
    top: 0;
  }
}

@media (max-width: 568px) {
  .product .tab-pane {
    padding: 20px 0 0;
  }
  .product .tab-pane table .char,
  .product .tab-pane table .value {
    font-size: 13px;
    text-align: left;
  }
  .product .tab-pane table .char {
    font-family: "Roboto Bold", Arial, sans-serif;
    min-width: 100px;
  }
  .product .product-top .cost-block {
    display: block;
    text-align: center;
  }
  .product .product-top .cost-block .product-cost {
    margin: 0;
  }
  .product .product-top .shop-btn {
    width: 150px;
    display: block;
    margin: 20px auto;
  }
  .product .content {
    padding: 15px;
  }
  .product .feedback-block {
    margin: 0;
  }
  .product .feedback-block .form-block .form-row {
    margin: 0;
  }
  .product .feedback-block .form-block .form-row .form-col {
    width: 100%;
    margin: 0 0 10px;
  }
  .product .feedback-block .form-block .form-row .form-col:first-of-type {
    padding: 0;
  }
  .product .feedback-block .form-block .raiting-col {
    padding-top: 0;
    margin-bottom: 5px;
    width: 100%;
  }
  .product .feedback-block .form-block .raiting-col span {
    top: 5px;
  }
  .product .feedback-block .comments-block .see-all-comment {
    bottom: -30px;
  }
  .product .feedback-block .main-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product .product-top .left-block .img-block {
    height: auto;
    max-width: none;
  }
  .product .product-top .left-block .img-block img {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    max-height: none;
    max-width: none;
    top: auto;
  }
  .product .nav-tabs {
    padding-bottom: 5px;
  }
  .product .nav-tabs li {
    float: none;
    padding: 0;
    margin: 0 0 10px;
  }
  .product .nav-tabs li.active {
    margin: 0 0 10px;
  }
  .product .nav-tabs li.active a {
    background: #eee;
    border-radius: 5px 5px 0 0;
  }
  .product .nav-tabs li a {
    background: #eee;
    border-radius: 5px;
    text-align: center;
  }
  .product .nav-tabs li a:after {
    height: 2px;
    bottom: -2px;
  }
  .product .nav-tabs li a:hover {
    background: #eee;
  }
}

.product-item {
  border: 1px solid #efefef;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  background: #fff;
  margin-bottom: 30px;
}

.product-item .img-block {
  position: relative;
  width: 100%;
  height: 230px;
  margin: 0 auto 25px;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
}

.product-item .img-block a {
  display: block;
  height: 100%;
  outline: none;
  border-radius: 10px 10px 0 0;
}

.product-item .img-block a img {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 260px;
  max-height: 228px;
  margin: auto;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px 10px 0 0;
}

.product-item .badge-new {
  display: block;
  position: absolute;
  font-size: 12px;
  text-transform: uppercase;
  top: 15px;
  right: -4px;
  color: #fff;
  z-index: 10;
  padding: 5px 15px 5px 10px;
  background: #7690c9;
  font-family: "Roboto Bold", Arial, sans-serif;
  border-radius: 0 0 3px 0;
}

.product-item .badge-new:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-top: 13px solid #7690c9;
  border-bottom: 13px solid #7690c9;
  position: absolute;
  top: 0;
  left: -8px;
  z-index: 100;
}

.product-item .badge-new:after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 3px solid #667aa5;
  border-right: 3px solid transparent;
}

.product-item .price-block {
  position: relative;
  padding: 5px 15px;
}

.product-item .price-block .main-btn {
  position: absolute;
  top: -4px;
  right: 15px;
  padding: 0 13px;
  height: 35px;
  line-height: 35px;
  border-radius: 3px;
  font-size: 13px;
}

.product-item .price-block .main-btn.added {
  font-size: 0;
  background: #26547c;
  min-width: 87px;
}

.product-item .price-block .main-btn.added:before {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-item .price-block .cost {
  font-size: 15px;
  color: #7b7b7b;
  line-height: 1;
  margin: 0;
}

.product-item .price-block .cost span {
  color: #303030;
  font-size: 16px;
}

.product-item .title {
  padding: 0 10px 0 15px;
  margin: 0 0 20px;
  color: #303030;
  font-size: 17px;
}

.product-item .title span {
  text-transform: uppercase;
}

.product-item .title a {
  color: inherit;
  width: 200px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item:hover {
  border: 1px solid #31a8e6;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .product-item .img-block {
    height: 200px;
  }
  .product-item .img-block a img {
    max-height: 200px;
  }
  .product-item .price p {
    margin: 0;
  }
  .product-item .price span {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .product-item .img-block {
    height: 200px;
  }
  .product-item .img-block img {
    max-height: 200px;
  }
  .product-item .price p {
    margin: 0;
  }
  .product-item .price span {
    font-size: 16px;
  }
}

.control-page .main-slider .item {
  background-position: center top;
}

.control-page .main-slider .item .overlay-text {
  float: right;
}

.control-page .installation {
  padding: 320px 0 150px;
}

.control-page .installation .laptop-img {
  top: -55px;
}

.control-page .installation .laptop-img .laptop-screen {
  width: 743px;
  height: 430px;
  margin: 77px auto 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.control-page .available {
  background-position: bottom right, center;
  background-repeat: no-repeat;
  background-size: auto, cover;
  padding: 100px 0;
}

.control-page .solutions .solution-order {
  padding: 28px 0 45px 175px;
}

.control-page .solutions .solution-order .car-img {
  width: 450px;
  height: 380px;
  left: -337px;
  top: -142px;
}

.control-page .solutions .solution-order .form-block p {
  max-width: 700px;
}

.control-page .equipment .section-title span {
  text-transform: uppercase;
}

.control-page .equipment .container > p {
  margin: 0 auto 30px;
}

.control-page .control-profit {
  padding: 100px 0;
}

.control-page .control-profit .section-title {
  color: #4b515e;
  line-height: 1.1;
  margin: 0 0 20px;
  position: relative;
}

.control-page .control-profit .section-title:before, .control-page .control-profit .section-title:after {
  content: '';
  position: absolute;
}

.control-page .control-profit .section-title:before {
  width: 160px;
  height: 110px;
  background: url(../img/profit-arr-1.png) no-repeat center;
  bottom: 0;
  left: 17%;
}

.control-page .control-profit .section-title:after {
  width: 80px;
  height: 70px;
  background: url(../img/profit-arr-2.png) no-repeat center;
  bottom: -25px;
  right: 18%;
}

.control-page .control-profit .container > p {
  color: #575f6f;
  font-size: 16px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 50px;
}

.control-page .control-profit .control-profit-left,
.control-page .control-profit .control-profit-right {
  position: relative;
  padding-left: 80px;
}

.control-page .control-profit .control-profit-left .icon-block,
.control-page .control-profit .control-profit-right .icon-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.control-page .control-profit .control-profit-left .text-block,
.control-page .control-profit .control-profit-right .text-block {
  border-left: 1px solid #e5e5e5;
  padding-left: 30px;
}

.control-page .control-profit .control-profit-left .text-block .title,
.control-page .control-profit .control-profit-right .text-block .title {
  color: #123d5a;
  font-size: 18px;
  margin: 0 0 15px;
}

.control-page .control-profit .control-profit-left .text-block p,
.control-page .control-profit .control-profit-right .text-block p {
  font-size: 16px;
  color: #1e1f24;
}

.control-page .control-profit .control-profit-left ul,
.control-page .control-profit .control-profit-right ul {
  padding: 0;
  list-style: none;
  margin: 20px 0 0 -2px;
}

.control-page .control-profit .control-profit-left ul li,
.control-page .control-profit .control-profit-right ul li {
  position: relative;
  margin: 0 0 8px;
  color: #585c68;
  font-size: 15px;
  padding-left: 30px;
}

.control-page .control-profit .control-profit-left ul li:before,
.control-page .control-profit .control-profit-right ul li:before {
  content: '';
  margin-right: 28px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #d13a37;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 0;
}

@media (max-width: 1800px) {
  .control-page .installation .laptop-img {
    right: -70px;
  }
}

@media (max-width: 1700px) {
  .control-page .main-slider .item .overlay-text {
    margin-right: 80px;
  }
}

@media (max-width: 1536px) {
  .control-page .main-slider .item .overlay-text {
    margin-right: 120px;
  }
  .control-page .installation {
    padding: 250px 0 180px;
  }
}

@media (max-width: 1440px) {
  .control-page .main-slider .item .overlay-text {
    margin-right: 150px;
  }
  .control-page .installation {
    padding: 220px 0 200px;
  }
  .control-page .available {
    padding: 80px 0;
    background-size: 30%, cover;
  }
}

@media (max-width: 1366px) {
  .control-page .main-slider .item .overlay-text {
    margin-right: 200px;
  }
  .control-page .control-profit {
    padding: 70px 0;
  }
}

@media (max-width: 1280px) {
  .control-page .main-slider .item .overlay-text {
    margin-right: 250px;
  }
}

@media (max-width: 1199px) {
  .control-page .main-slider .item .overlay-text {
    top: 40%;
    max-width: 600px;
    margin: 0 auto;
    float: none;
    text-align: center;
  }
  .control-page .main-slider .item .overlay-text .title {
    font-size: 26px;
  }
  .control-page .main-slider .item .overlay-text .title br {
    display: none;
  }
  .control-page .installation {
    padding: 200px 0 20px;
  }
  .control-page .installation .laptop-img {
    right: 0;
    left: auto;
  }
  .control-page .available {
    padding: 70px 0;
    background-size: 40%, cover;
  }
  .control-page .solutions .solution-order {
    padding: 30px 15px;
  }
  .control-page .solutions .solution-order .form-block {
    max-width: 1000px;
  }
  .control-page .control-profit {
    padding: 45px 0;
  }
  .control-page .control-profit .section-title:before {
    bottom: -20px;
    left: 10%;
  }
}

@media (max-width: 991px) {
  .control-page .main-slider .item .overlay-text {
    max-width: 350px;
  }
  .control-page .main-slider .item .overlay-text .title {
    font-size: 22px;
  }
  .control-page .installation {
    padding: 120px 0 30px;
  }
  .control-page .installation .img-wrap {
    display: none;
  }
  .control-page .installation p {
    margin: 0 0 15px;
  }
  .control-page .installation .section-title {
    text-align: center;
  }
  .control-page .available {
    padding: 50px 0;
    background-image: url(../img/available-bg.jpg) !important;
    background-size: cover;
  }
  .control-page .solutions .solution-order .form-block {
    max-width: 700px;
  }
  .control-page .control-profit {
    padding: 35px 0;
  }
  .control-page .control-profit .section-title:before {
    bottom: -25px;
    left: -20px;
  }
  .control-page .control-profit .section-title:after {
    bottom: 20px;
    right: -5px;
  }
  .control-page .control-profit .control-profit-left,
  .control-page .control-profit .control-profit-right {
    padding-left: 65px;
  }
  .control-page .control-profit .control-profit-left .text-block,
  .control-page .control-profit .control-profit-right .text-block {
    padding-left: 20px;
  }
  .control-page .control-profit .control-profit-left .text-block .title,
  .control-page .control-profit .control-profit-right .text-block .title {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .control-page .control-profit .control-profit-left .text-block p,
  .control-page .control-profit .control-profit-right .text-block p {
    font-size: 14px;
  }
  .control-page .control-profit .control-profit-left ul,
  .control-page .control-profit .control-profit-right ul {
    margin-left: -65px;
  }
  .control-page .control-profit .control-profit-left {
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .control-page .main-slider .item .overlay-text {
    max-width: 100%;
  }
  .control-page .main-slider .item .overlay-text .title {
    font-size: 21px;
  }
  .control-page .installation {
    padding: 90px 0 30px;
  }
  .control-page .available {
    padding: 30px 0;
  }
  .control-page .control-profit .section-title:after, .control-page .control-profit .section-title:before {
    display: none;
  }
}

@media (max-width: 480px) {
  .control-page .installation {
    padding: 70px 0 20px;
  }
}

.delivery-pay {
  padding: 45px 0 50px;
  background-color: #f7f7f7;
}

.delivery-pay .content {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.delivery-pay .content > p:first-of-type {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 30px;
  font-family: "Roboto Light", Arial, sans-serif;
  font-size: 15px;
}

.delivery-pay .section-title {
  font-size: 32px;
  margin: 0 0 20px;
  color: #4b515e;
}

.delivery-pay p {
  text-align: justify;
  margin: 0 0 15px;
}

.delivery-pay .pay-block {
  padding: 20px 0 0;
}

.delivery-pay .pay-block .img-block {
  float: left;
  margin-right: 20px;
  margin-bottom: 50px;
}

.delivery-pay .pay-block .check-text {
  margin-top: -5px;
}

.delivery-pay .pay-block .check-text p:before {
  content: '\f00c';
  font-family: FontAwesome;
  border-radius: 100%;
  background: #31a8e6;
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
}

.delivery-pay .pay-block .info-text p:before {
  content: '\f129';
  font-family: FontAwesome;
  border-radius: 100%;
  background: #31a8e6;
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
}

.delivery-pay .pay-block p {
  text-align: left;
}

.delivery-pay .delivery-block {
  padding: 20px 0 20px;
}

.delivery-pay .delivery-block .img-block {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.delivery-pay .delivery-block p {
  text-align: left;
}

.delivery-pay .delivery-block .info-text {
  margin: 20px 0 0;
  font-size: 12px;
}

.delivery-pay .delivery-block .info-text p:before {
  content: '\f129';
  font-family: FontAwesome;
  border-radius: 100%;
  background: #bf001b;
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
}

@media (max-width: 1199px) {
  .delivery-pay {
    padding: 30px 0;
  }
  .delivery-pay .content {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .delivery-pay .content {
    padding: 15px;
  }
  .delivery-pay .content > p:first-of-type {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .delivery-pay .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .delivery-pay .pay-block .img-block,
  .delivery-pay .delivery-block .img-block {
    margin-bottom: 10px;
  }
  .delivery-pay .section-title {
    font-size: 24px;
  }
}

.breadcrumbs {
  padding: 0;
  margin: 0;
  list-style: none;
  margin: 10px 0;
}

.breadcrumbs li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-right: 15px;
  margin-bottom: 10px;
  font-size: 13px;
}

.breadcrumbs li:after {
  content: '\f105';
  font-family: FontAwesome;
  position: absolute;
  top: 1px;
  right: 3px;
  color: #939393;
}

.breadcrumbs li.active {
  color: #3c3c3c;
}

.breadcrumbs li.active:after {
  display: none;
}

.breadcrumbs li a {
  display: block;
  color: #939393;
  font-size: 13px;
}

.inner-article {
  color: #41464d;
  padding: 30px 0 0;
  margin: 0 0 50px;
}

.inner-article .back-link {
  position: relative;
  padding-left: 15px;
  margin: 0 0 20px;
  display: inline-block;
  color: #000;
}

.inner-article .back-link:before {
  content: '\f104';
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.inner-article .back-link:hover:before {
  left: -5px;
}

.inner-article .container > img {
  max-width: 500px;
  margin: 0 20px 0 0;
  display: block;
}

.inner-article .lg-img {
  margin: 0 0 35px;
}

.inner-article .lg-img img {
  display: block;
  width: 100%;
}

.inner-article h1 {
  color: #4b515e;
  margin: 0 0 15px;
}

.inner-article .sub-title {
  text-align: center;
  margin: 0 0 30px;
}

.inner-article .title {
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Roboto Medium", Arial, sans-serif;
  margin: 15px 0;
}

.inner-article p {
  text-align: justify;
  margin: 0 0 20px;
}

.article-page .cost-savings {
  background: url(../img/cost-save-1.png) no-repeat center bottom;
  background-size: contain;
}

@media (max-width: 1199px) {
  .inner-article h1 {
    margin: 0 0 10px;
  }
  .inner-article .sub-title {
    margin: 0 0 20px;
  }
  .inner-article .lg-img {
    margin: 0 0 20px;
  }
}

@media (max-width: 991px) {
  .inner-article .title {
    font-size: 15px;
  }
  .inner-article .container > img {
    float: none !important;
    max-width: 100%;
    margin: 20px auto;
  }
}

.footer {
  background: url(../img/footer-bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  font-size: 15px;
}

.footer .footer-content {
  padding: 45px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .logo-col p {
  max-width: 450px;
}

.footer .nav-col h4 {
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer .nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .nav-col li {
  margin: 0 0 10px;
}

.footer .nav-col a {
  color: #fff;
  display: inline-block;
}

.footer .footer-logo {
  margin: 0 0 15px;
  display: inline-block;
  width: 190px;
  height: 30px;
  background: url(../img/footer-logo.png) no-repeat center;
}

.footer-bottom {
  padding: 25px 0;
}

.footer-bottom .container {
  position: relative;
}

.footer-bottom .copyright {
  float: left;
  margin: 0;
}

.footer-bottom .developer {
  float: right;
  color: #fff;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.footer-bottom .developer:hover {
  color: #888;
}

.footer-bottom .scroll-top {
  display: block;
  width: 100px;
  text-align: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: #fff;
  line-height: 1;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.footer-bottom .scroll-top:before {
  content: '\f176';
  font-family: FontAwesome;
  color: #9d9ea5;
  font-size: 20px;
  margin-right: 6px;
  position: relative;
}

.footer-bottom .scroll-top:hover, .footer-bottom .scroll-top:focus {
  text-decoration: none;
}

.footer-bottom .scroll-top:hover {
  color: #9d9da4;
}

.footer-bottom .scroll-top:hover:before {
  top: -5px;
}

@media (max-width: 1199px) {
  .footer .nav-col h4 {
    font-size: 16px;
  }
  .footer .nav-col li {
    margin: 0 0 6px;
  }
  .footer .nav-col a {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .footer .logo-col {
    margin-bottom: 20px;
  }
  .footer .logo-col p {
    max-width: 100%;
  }
  .footer-bottom .developer,
  .footer-bottom .copyright,
  .footer-bottom .scroll-top {
    font-size: 13px;
  }
  .footer-bottom .scroll-top {
    top: -3px;
  }
}

@media (max-width: 768px) {
  .footer .nav-col {
    display: none;
  }
  .footer .footer-content {
    padding: 30px 0;
  }
  .footer .logo-col p {
    font-size: 14px;
  }
  .footer .footer-logo {
    display: block;
    margin: 0 auto 15px;
  }
}

@media (max-width: 540px) {
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .scroll-top {
    top: -35px;
  }
  .footer-bottom .copyright {
    float: none;
    width: 100%;
    text-align: center;
    margin: 0 0 10px;
  }
  .footer-bottom .developer {
    float: none;
    display: inline-block;
  }
}


#wrapper {
  overflow: hidden;
}

.not-found-404 {
  padding: 45px 0 60px;
}

.not-found-404 .content {
  min-height: 500px;
  padding: 30px 30px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.not-found-404 .nums {
  font-size: 180px;
  line-height: 1;
  margin: 0 0 20px;
  font-family: "Roboto Black", Arial, sans-serif;
  color: #4ba8e5;
}

.not-found-404 .sub-text {
  font-size: 30px;
  font-family: "Roboto Medium", Arial, sans-serif;
  color: #555;
}

.not-found-404 .return-link {
  position: relative;
  color: #4ba8e5;
  font-size: 16px;
}

.not-found-404 .return-link:before {
  content: '\f104';
  font-family: FontAwesome;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.not-found-404 .return-link:hover:before {
  margin-right: 15px;
}

.not-found-404 .return-link:hover, .not-found-404 .return-link:focus {
  text-decoration: none;
}

.overlay-links {
  position: absolute;
  top: 280px;
  right: 0;
  z-index: 100;
}

.overlay-links a, .overlay-links button {
  display: block;
  padding: 13px 5px 13px 45px;
  background: #2f313a;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
  border-radius: 4px 0 0 4px;
  margin-bottom: 1px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  right: 0;
  width: 255px;
  font-size: 16px;
  background-color: #0c2a3d;
  white-space: nowrap;
  border: 0;
  outline: 0;
  text-align: left;
}

.overlay-links a:before, .overlay-links button:before {
  content: '';
  width: 23px;
  height: 23px;
  display: block;
  position: absolute;
  top: 14px;
  left: 15px;
}

.overlay-links a:first-of-type, .overlay-links button:first-of-type {
  top: 0;
}

.overlay-links a:first-of-type:before, .overlay-links button:first-of-type:before {
  background: url(../img/service-1.png) no-repeat center;
  background-size: cover;
}

.overlay-links a:nth-child(2), .overlay-links button:nth-child(2) {
  top: 49px;
}

.overlay-links a:nth-child(2):before, .overlay-links button:nth-child(2):before {
  background: url(../img/service-2.png) no-repeat center;
  background-size: cover;
}

.overlay-links a:nth-child(3), .overlay-links button:nth-child(3) {
  top: 98px;
}

.overlay-links a:nth-child(3):before, .overlay-links button:nth-child(3):before {
  background: url(../img/service-3.png) no-repeat center;
  background-size: cover;
}

.overlay-links a:nth-child(4), .overlay-links button:nth-child(4) {
  top: 147px;
}

.overlay-links a:nth-child(4):before, .overlay-links button:nth-child(4):before {
  background: url(../img/service-icon.png) no-repeat center;
  background-size: cover;
}

.overlay-links a:hover, .overlay-links a:focus, .overlay-links button:hover, .overlay-links button:focus {
  text-decoration: none;
}

.overlay-links a:hover, .overlay-links button:hover {
  width: 275px;
  background: #d84642;
}

#page-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

#page-container .section-container {
  position: relative;
  height: 100vh;
  transition: 0.25s;
  transform: translateY(0);
}

#page-container .section-container .slideBlock {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100% !important;
}

#page-container .section-container .activeSlide {
  z-index: 1;
  top: 0;
}

#page-container .phoneBlock {
  position: absolute;
  width: 300px;
  height: 600px;
  top: calc(50% - 300px);
  left: calc(50% - 150px);
  overflow: hidden;
  background: url(../img/phone-bg.png) no-repeat center;
}

#page-container .phoneBlock .phoneBlock-inner {
  height: 448px;
  width: 253px;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  border: 1px solid #000;
}

#page-container .phoneBlock .minScroll {
  position: absolute;
  left: 0;
  top: 100%;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#page-container .phoneBlock .minScroll.active {
  top: 0;
  z-index: 9;
}

#page-container .page-dots {
  position: absolute;
  top: 50%;
  right: 80px;
}

#page-container .page-dots button {
  border-radius: 100%;
  width: 8px;
  height: 8px;
  padding: 0;
  outline: 0;
  background-color: rgba(51, 55, 67, 0.8);
  display: block;
  border: 0;
  margin: 10px auto;
  outline: 0;
  position: relative;
}

#page-container .page-dots button:after {
  content: '';
  border-radius: 100%;
  position: absolute;
  left: -3px;
  right: -3px;
  top: -3px;
  bottom: -3px;
  border: 1px solid #fff;
  display: none;
}

#page-container .page-dots button.active {
  background-color: #fff;
}

#page-container .page-dots button.active:after {
  display: block;
}

#page-container .section-title {
  color: #fff;
  font-family: "Roboto Medium", Arial, sans-serif;
  font-size: 35px;
  margin: 0 0 60px;
}

#page-container .section-title span {
  text-transform: uppercase;
}

#page-container .num-item {
  width: 200px;
  text-align: center;
  margin: 0 0 40px;
}

#page-container .num-item p {
  font-size: 21px;
}

#page-container .item-nums {
  margin: 0 0 40px;
  position: relative;
}

#page-container .item-nums:after {
  content: '';
  width: 32px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: auto;
}

#page-container .item-nums p {
  font-size: 50px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin: 0;
}

#page-container .text-side {
  padding-left: 200px;
}

#page-container .text-side .title {
  font-size: 21px;
  margin: 0 0 20px;
  font-family: "Roboto Medium", Arial, sans-serif;
  text-transform: uppercase;
}

#page-container .text-side .title a {
  color: inherit;
}

#page-container .text-side .list-wrap {
  padding-left: 80px;
  position: relative;
}

#page-container .text-side .list-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 51px;
}

#page-container .text-side .list-wrap.first-list:before {
  background: url(../img/map-icon.png) no-repeat center;
}

#page-container .text-side .list-wrap.second-list:before {
  background: url(../img/chauffeur-icon.png) no-repeat center;
}

#page-container .text-side .list-wrap.third-list:before {
  background: url(../img/padlock-icon.png) no-repeat center;
}

#page-container .text-side ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

#page-container .text-side ul li {
  font-size: 16px;
  position: relative;
  margin: 0 0 8px;
}

#page-container .text-side ul li a {
  color: #fff;
}

#page-container .text-side ul li:before {
  content: '\f178';
  font-family: FontAwesome;
  margin-right: 8px;
}

#page-container .text-side p {
  font-size: 16px;
}

#page-container .text-side .form-wrap {
  margin-top: 50px;
}

#page-container .text-side .form-wrap .form-row {
  position: relative;
  margin: 0 20px 20px 0;
}

#page-container .text-side .form-wrap .form-row:after {
  content: '\e627';
  font-family: 'Pe-icon-7-stroke';
  position: absolute;
  top: 30px;
  right: 10px;
  color: #fff;
  font-size: 20px;
}

#page-container .text-side .form-wrap .form-row label {
  display: block;
  width: 100%;
  font-weight: normal;
}

#page-container .text-side .form-wrap .form-row label span {
  display: block;
  margin: 0 0 8px;
}

#page-container .text-side .form-wrap .form-row .form-control {
  border: 1px solid #1c272f;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 30px 0 12px;
  height: 36px;
  line-height: 36px;
  box-shadow: none;
  color: #000;
}

#page-container .text-side .form-wrap .form-row .form-control:focus {
  border: 1px solid #36b1e9;
}

#page-container .text-side .main-btn {
  background-color: #d84642;
  padding: 10px 30px;
}

#page-container .text-side .main-btn:hover {
  background-color: #ad2b27;
}

.full-page1,
.full-page2,
.full-page3 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 0 0;
  color: #fff;
}

.full-page2 {
  background: url(../img/full-slide-2.jpg) no-repeat center;
  background-size: cover;
}

.full-page3 {
  background: url(../img/full-slide-3.jpg) no-repeat center;
  background-size: cover;
}

.success-order,
.success-message {
  padding: 45px 0 60px;
  background-color: #f7f7f7;
}

.success-order .content,
.success-message .content {
  min-height: 500px;
  padding: 30px 30px 50px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.success-order .content .title,
.success-message .content .title {
  text-align: center;
  font-size: 70px;
  font-family: "Roboto Medium", Arial, sans-serif;
  line-height: 1;
  margin: 0 0 25px;
  color: #555;
}

.success-order .content p,
.success-message .content p {
  font-size: 19px;
  text-align: center;
}

@media (max-width: 1440px) {
  #page-container .section-title {
    font-size: 26px;
    margin: 0 0 25px;
    line-height: 1.2;
  }
  #page-container .page-dots {
    right: 50px;
  }
  #page-container .phoneBlock {
    width: 280px;
    height: 500px;
    background-size: contain;
    padding-left: 2px;
    top: calc(50% - 200px);
  }
  #page-container .phoneBlock .phoneBlock-inner {
    width: 216px;
    right: auto;
    left: 33px;
    top: 56px;
    height: 382px;
  }
  #page-container .num-item {
    margin: 0 0 30px;
  }
  #page-container .item-nums p {
    font-size: 45px;
  }
  #page-container .text-side {
    padding-right: 20px;
  }
  #page-container .text-side .title {
    margin: 0 0 10px;
  }
  #page-container .text-side ul li {
    margin: 0 0 4px;
  }
  #page-container .text-side .form-wrap {
    margin: 30px 0 0;
  }
  #page-container .text-side .form-wrap .form-row {
    margin: 0 45px 20px 0;
  }
}

@media (max-width: 1199px) {
  .overlay-links a, .overlay-links button {
    font-size: 13px;
    width: 220px;
  }
  .overlay-links a:nth-child(2), .overlay-links button:nth-child(2) {
    top: 45px;
  }
  .overlay-links a:nth-child(3), .overlay-links button:nth-child(3) {
    top: 90px;
  }
  .overlay-links a:nth-child(4), .overlay-links button:nth-child(4) {
    top: 135px;
  }
  .overlay-links a:hover, .overlay-links button:hover {
    width: 230px;
  }
  .success-order,
  .success-message {
    padding: 40px 0;
  }
  .success-order .content .title,
  .success-message .content .title {
    font-size: 60px;
  }
  .success-order .content p,
  .success-message .content p {
    font-size: 18px;
  }
  #page-container {
    height: auto;
    overflow: visible;
  }
  #page-container .section-title {
    font-size: 26px;
  }
  #page-container .page-dots {
    display: none;
  }
  #page-container .phoneBlock {
    display: none;
  }
  #page-container .section-container {
    height: auto;
  }
  #page-container .section-container .slideBlock {
    position: static;
    height: auto !important;
    padding: 30px 0;
  }
  #page-container .num-item {
    float: left;
    width: 33.33%;
  }
  #page-container .num-item p {
    font-size: 16px;
    text-shadow: 0px 1px 25px black;
  }
  #page-container .num-item .item-nums p {
    font-size: 32px;
    text-shadow: 0px 1px 25px black;
  }
  #page-container .text-side {
    padding: 0;
  }
  #page-container .text-side .title {
    text-shadow: 0px 1px 25px black;
  }
  #page-container .text-side .title br {
    display: none;
  }
  #page-container .text-side ul li {
    text-shadow: 0px 1px 25px black;
  }
  #page-container .text-side .form-wrap .form-row {
    display: inline-block;
    width: 300px;
    margin-right: 15px;
  }
  #page-container .text-side .form-wrap .form-row:after {
    top: 32px;
  }
  #page-container .text-side .form-wrap .form-row .form-control {
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .overlay-links {
    top: 245px;
  }
  .overlay-links a, .overlay-links button {
    width: 195px;
    padding: 13px 5px 13px 13px;
  }
  .overlay-links a:hover, .overlay-links button:hover {
    width: 205px;
  }
  .overlay-links a:before, .overlay-links button:before {
    display: none;
  }
  .success-order,
  .success-message {
    padding: 30px 0;
  }
  .success-order .content,
  .success-message .content {
    min-height: 400px;
  }
  .success-order .content .title,
  .success-message .content .title {
    font-size: 50px;
  }
  .success-order .content p,
  .success-message .content p {
    font-size: 16px;
  }
  .not-found-404 {
    padding: 30px 0;
  }
  .not-found-404 .content {
    min-height: 400px;
  }
  .not-found-404 .nums {
    font-size: 100px;
  }
  .not-found-404 .sub-text {
    font-size: 21px;
  }
  .not-found-404 a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .overlay-links {
    display: none;
  }
  .success-order,
  .success-message {
    padding: 30px 0;
  }
  .success-order .content,
  .success-message .content {
    min-height: 400px;
    padding: 15px 15px 30px;
  }
  .success-order .content .title,
  .success-message .content .title {
    font-size: 30px;
  }
  .success-order .content p,
  .success-message .content p {
    font-size: 15px;
  }
  .not-found-404 {
    padding: 20px 0;
  }
  .not-found-404 .content {
    min-height: 350px;
  }
  .not-found-404 .nums {
    font-size: 80px;
  }
  .not-found-404 .sub-text {
    font-size: 16px;
  }
  .not-found-404 .return-link {
    font-size: 13px;
  }
  #page-container .section-title {
    font-size: 21px;
  }
  #page-container .num-item p {
    font-size: 14px;
  }
  #page-container .section-container .slideBlock {
    padding: 20px 0;
  }
  #page-container .text-side p {
    font-size: 14px;
  }
  #page-container .text-side ul li {
    font-size: 14px;
  }
  #page-container .text-side .title {
    font-size: 18px;
  }
  #page-container .text-side .form-wrap {
    margin: 20px 0 0;
  }
  #page-container .text-side .form-wrap .form-row {
    width: 100%;
    margin: 0 0 15px;
  }
  #page-container .text-side .main-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .not-found-404 {
    padding: 20px 0;
  }
  .not-found-404 .content {
    padding: 30px 10px 50px;
  }
  .not-found-404 .nums {
    font-size: 80px;
  }
  .not-found-404 .sub-text {
    font-size: 14px;
  }
  .not-found-404 .return-link {
    font-size: 12px;
  }
}

.pagination-block {
  max-width: 500px;
  margin: 20px auto 0;
  border-top: 1px solid #b5b5b5;
  position: relative;
  padding: 50px 0;
}

.pagination-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
}

.pagination-block ul li {
  display: inline-block;
  margin: 0 4px;
  color: #212121;
  font-size: 16px;
}

.pagination-block ul li.active {
  cursor: auto;
  font-family: "Roboto Medium", Arial, sans-serif;
  text-decoration: underline;
}

.pagination-block ul li a {
  color: #212121;
  font-size: 16px;
}

.pagination-block .prev-link,
.pagination-block .next-link {
  color: #b5b5b5;
  font-size: 16px;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.pagination-block .prev-link:before,
.pagination-block .next-link:before {
  font-family: FontAwesome;
  position: absolute;
  top: 2px;
  line-height: 1;
  font-size: 20px;
}

.pagination-block .prev-link:hover,
.pagination-block .next-link:hover {
  color: #212121;
}

.pagination-block .prev-link {
  float: left;
  padding-left: 30px;
}

.pagination-block .prev-link:before {
  content: '\f177';
  left: 0;
}

.pagination-block .prev-link:hover:before {
  left: -5px;
}

.pagination-block .next-link {
  float: right;
  padding-right: 30px;
}

.pagination-block .next-link:before {
  content: '\f178';
  right: 0;
}

.pagination-block .next-link:hover:before {
  right: -5px;
}

@media (max-width: 991px) {
  .pagination-block {
    padding: 25px 0;
  }
  .pagination-block ul {
    top: 25px;
  }
}

@media (max-width: 767px) {
  .pagination-block {
    padding: 15px 0 5px;
  }
  .pagination-block ul {
    top: 15px;
  }
  .pagination-block .next-link,
  .pagination-block .prev-link {
    height: 22px;
  }
  .pagination-block .next-link span,
  .pagination-block .prev-link span {
    display: none;
  }
}
#scroll-top {
  position: fixed;
  display: block;
  right: 20px;
  bottom: -100px;
  width: 38px;
  height: 38px;
  background-color: #26547c;
  z-index: 999;
  -webkit-transition: 0.8s cubic-bezier(1, -0.25, 0, 1.43);
  -o-transition: 0.8s cubic-bezier(1, -0.25, 0, 1.43);
  transition: 0.8s cubic-bezier(1, -0.25, 0, 1.43);
  cursor: pointer;
  border: 0;
  outline: 0;
  color: #fff;
  text-align: center;
  padding: 0;
  border-radius: 100%;
  overflow: hidden;
}

#scroll-top:before {
  content: '\f106';
  font-family: FontAwesome;
  line-height: 35px;
  position: absolute;
  top: 0;
  width: 20px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 28px;
}

#scroll-top.visible {
    bottom: 20px;
}

.index-page #scroll-top {display: none;}

/* new styles */



