* {
  margin: 0;
  padding: 0;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fleft {
  float: left;
}
.fright {
  float: right;
}
.fnone {
  float: none;
}
.clear {
  clear: both;
}
.unvisible {
  display: none;
}
.aleft {
  text-align: left;
}
.acenter {
  text-align: center;
}
.aright {
  text-align: right;
}
.nomargin {
  margin: 0;
}
.nopadding {
  padding: 0;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}
.draggable {
  cursor: move;
}
.notoutline {
  outline: none !important;
}
.notoutline:active,
.notoutline:focus {
  outline: none !important;
}
* {
  outline: none;
}
/*** Base HTML tags Styles ***/
body {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-color: #ffffff;
  font-family: 'SegoeUIRegular', Arial, sans-serif;
  color: #151114;
  font-size: 17px;
}
html {
  min-width: 100%;
  height: 100%;
}
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: 'SegoeUIBold', sans-serif;
}
h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-family: 'SegoeUISemiBold', sans-serif;
}
h1,
.h1 {
  font-size: 32px;
  margin: 45px 0 14px;
}
h2,
.h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
h3,
.h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
h4,
.h4 {
  font-size: 23px;
}
h5,
.h5 {
  font-size: 19px;
}
h6,
.h6 {
  font-size: 17px;
}
strong,
b {
  font-family: 'SegoeUISemiBold', sans-serif;
  font-weight: normal;
}
em,
i {
  font-family: 'SegoeUIItalic', sans-serif;
  font-style: normal;
}
dd,
dt {
  font-weight: 400;
}
p,
ul,
ol {
  margin-bottom: 10px;
}
ul li {
  list-style-type: none;
  list-style-position: inside;
}
a {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #055fbb;
  text-decoration: underline;
}
a:hover {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #c08139;
  text-decoration: none;
}
a:hover:not(.fancybox-close) {
  background: none;
}
input[type='text'] {
  position: relative;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  border-radius: 13px;
  border: 1px solid #b2b2b2;
  -webkit-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  font-size: 16px;
  color: #b2b2b2;
  z-index: 0;
}
/*** Components Styles ***/
.orange-gradient {
  background: #f3aa3c;
  background: -moz-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7c158), color-stop(100%, #ee9220));
  background: -webkit-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -o-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -ms-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: linear-gradient(to bottom, #f7c158 0%, #ee9220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7c158', endColorstr='#ee9220', GradientType=0);
  color: #ffffff;
}
.orange-gradient--hover {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
}
.orange-gradient--active {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  color: #ffffff;
}
.gray-gradient {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  color: #151114;
}
.gray-gradient--hover {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #f9f9f9));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -o-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#f9f9f9', GradientType=0);
  color: #151114;
}
.gray-gradient--active {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  color: #151114;
}
.orange-button {
  border-top: none;
  -webkit-box-shadow: 0 3px 0 0 #b26102;
  -moz-box-shadow: 0 3px 0 0 #b26102;
  box-shadow: 0 3px 0 0 #b26102;
  padding: 0 21px;
  background: #f3aa3c;
  background: -moz-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7c158), color-stop(100%, #ee9220));
  background: -webkit-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -o-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -ms-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: linear-gradient(to bottom, #f7c158 0%, #ee9220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7c158', endColorstr='#ee9220', GradientType=0);
  color: #ffffff;
}
.orange-button:hover {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
}
.orange-button:active {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-top: 3px;
  color: #ffffff;
}
.orange-button:focus {
  color: #ffffff;
}
.gray-button {
  border-top: none;
  border-bottom: 3px #bebebe solid;
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  color: #151114;
}
.gray-button:hover {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #f9f9f9));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -o-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#f9f9f9', GradientType=0);
  color: #151114;
}
.gray-button:active {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  border-top: 2px #f6f6f6 solid;
  padding-top: 3px;
  color: #151114;
}
.gray-button:focus {
  color: #151114;
}
.orange-gradient-link {
  background: #f3aa3c;
  background: -moz-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7c158), color-stop(100%, #ee9220));
  background: -webkit-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -o-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -ms-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: linear-gradient(to bottom, #f7c158 0%, #ee9220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7c158', endColorstr='#ee9220', GradientType=0);
  text-decoration: none;
  color: #ffffff;
}
.orange-gradient-link:hover {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
}
.orange-gradient-link:active,
.orange-gradient-link:focus {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  color: #ffffff;
}
.btn {
  display: inline-block;
  outline: none !important;
  border: none;
  height: 31px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 15px;
}
.btn:active,
.btn:focus {
  outline: none !important;
}
.btn:not(.question) {
  border-top: none;
  -webkit-box-shadow: 0 3px 0 0 #b26102;
  -moz-box-shadow: 0 3px 0 0 #b26102;
  box-shadow: 0 3px 0 0 #b26102;
  padding: 0 21px;
  background: #f3aa3c;
  background: -moz-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7c158), color-stop(100%, #ee9220));
  background: -webkit-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -o-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -ms-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: linear-gradient(to bottom, #f7c158 0%, #ee9220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7c158', endColorstr='#ee9220', GradientType=0);
  color: #ffffff;
}
.btn:not(.question):hover {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
}
.btn:not(.question):active {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-top: 3px;
  color: #ffffff;
}
.btn:not(.question):focus {
  color: #ffffff;
}
.btn.btn-lg {
  height: 47px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  padding: 0 27px;
  font-family: 'SegoeUISemiBold', sans-serif;
  font-size: 19px;
}
.btn.gray {
  border-top: none;
  border-bottom: 3px #bebebe solid;
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  color: #151114;
}
.btn.gray:hover {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #f9f9f9));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -o-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#f9f9f9', GradientType=0);
  color: #151114;
}
.btn.gray:active {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  border-top: 2px #f6f6f6 solid;
  padding-top: 3px;
  color: #151114;
}
.btn.gray:focus {
  color: #151114;
}
.btn.question {
  position: relative;
  padding: 0 40px 0 16px;
}
.btn.question:after {
  width: 16px;
  height: 16px;
  content: url('../images/quest-icon.png') no-repeat;
  position: absolute;
  top: 8px;
  right: 16px;
}
.dotted-link.blue {
  border-bottom: 1px dotted #055fbb;
  text-decoration: none;
  color: #055fbb;
}
.dotted-link.blue:hover {
  border-color: #c08139;
  color: #c08139;
}
.see-all {
  margin-top: 5px;
  font-size: 17px;
  display: inline-block;
  float: left;
  margin-right: 15px;
}
.see-all a {
  width: 12px;
  height: 10px;
  padding-bottom: 3px;
  padding-left: 21px;
}
.see-all a.quest {
  position: relative;
}
.see-all a.quest:hover:before {
  background-position: -30px 0;
}
.see-all a.quest:before {
  width: 15px;
  height: 12px;
  background: url('../images/all-quest-icon.png') -15px 0 no-repeat;
  position: absolute;
  top: 6px;
  left: 0;
  content: '';
}
.see-all a.doings {
  background: url('../images/all-doings-icon.png') left center no-repeat;
}
.map-image {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 1px #dadada solid;
  padding: 2px;
}
/*** Twitter Bootstrap Element Styles ***/
.container-fluid {
  max-width: 1200px;
}
.modal-backdrop {
  z-index: 400;
}
.modal {
  z-index: 500;
}
.modal-dialog {
  margin-top: 145px;
}
.modal-header {
  border: none;
  padding: 45px 45px 10px;
}
.modal-header .close {
  position: absolute;
  top: 5px;
  right: 5px;
  margin: 0;
  height: 25px;
  color: #a4aeb8;
  opacity: 1;
  filter: alpha(opacity=100);
}
.modal-header .close:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modal-header .close span {
  font-size: 40px;
  font-weight: 300;
  line-height: 18px;
}
.modal-body {
  padding: 10px 45px 45px;
}
.modal-body .form-group.form-group-101,
.modal-body .form-group.form-group-105,
.modal-body .form-group.form-group-106,
.modal-body .form-group.form-group-107 {
  display: none;
}
/*** Base Elements Styles ***/
.search-form .form-group {
  position: relative;
}
.search-form button[type='submit'] {
  top: 0;
  right: 2px;
  width: 28px;
  height: 28px;
  border: none;
  background-color: transparent;
  pointer-events: visible;
  font-size: 14px;
  line-height: 28px;
  color: #b2b2b2;
}
.thumb img {
  min-width: 100%;
  max-width: 100%;
}
/*** Section Lists Styles ***/
.section--list.with-left-thumb .list-item .thumb {
  float: left;
  width: 38%;
}
.section--list.with-left-thumb .list-item .thumb img {
  border: 1px #b0b0b0 solid;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.section--list.with-left-thumb .list-item .text {
  float: left;
  width: 60%;
  font-size: 17px;
  margin-left: 2%;
}
.section--list.with-left-thumb .list-item .text p {
  margin: 0;
}
.section--list.with-left-thumb .list-item .text p.title {
  font-size: 19px;
  font-family: 'SegoeUISemiBold', sans-serif;
  margin-bottom: 7px;
}
.section--list.with-left-thumb .list-item .text p.date {
  background: url('../images/date-icon.png') no-repeat left center;
  padding-left: 24px;
  color: #7b7b7b;
  margin-top: 10px;
  font-size: 15px;
}
.section--list.with-left-thumb .list-item .thumb-useful {
  float: left;
  margin-right: 20px;
}
.section--list.with-left-thumb .list-item .text-useful {
  margin-bottom: 50px;
}
.section--list.with-left-thumb .list-item .text-useful p {
  margin: 5px 0 0;
  font-size: 17px;
}
.section--list.with-left-thumb .list-item .text-useful p a {
  font-size: 19px;
  font-family: 'SegoeUISemiBold', sans-serif;
}
.section--list.with-top-thumb .list-item {
  margin-bottom: 40px;
  border: 1px #b0b0b0 solid;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.section--list.with-top-thumb .list-item .text {
  padding: 10px 15px 20px;
}
.section--list.table.compact > .compact {
  display: block;
}
.section--list.table.compact > .compact > .list-item {
  display: none;
}
.section--list.table.compact > .compact > .list-item.ru {
  display: block;
}
.section--list.table.compact > .compact h5 {
  display: inline-block;
  position: relative;
  margin-top: 0;
}
.section--list.table.compact > .compact h5.filial ul {
  left: 100px;
  right: auto;
  width: 500px;
}
.section--list.table.compact > .compact h5.filial ul li {
  float: left;
  width: 244px;
}
.section--list.table.compact > .compact h5.filial ul li:nth-child(2n) {
  margin-right: 0;
  clear: right;
}
.section--list.table.compact > .compact h5.filial ul li:nth-child(2n-1) {
  margin-right: 10px;
  clear: left;
}
.section--list.table.compact > .compact h5.filial ul li a {
  white-space: inherit;
}
.section--list.table.compact > .compact .dropdown-toggle {
  border-bottom: 1px dotted #055fbb;
  text-decoration: none;
}
.section--list.table.compact > .compact .dropdown-toggle:before {
  margin-right: 4px;
}
.section--list.table.compact > .compact .dropdown-toggle#ru:before {
  content: url('../images/flag-icon-ru.png');
}
.section--list.table.compact > .compact .dropdown-toggle#kz:before {
  content: url('../images/flag-icon-kz.png');
}
.section--list.table.compact > .compact .dropdown-menu {
  right: -50px;
  left: auto;
  min-width: inherit;
}
.section--list.table.compact > .compact .dropdown-menu > li > a {
  font-size: 16px;
}
.section--list.table.compact #map {
  display: block;
}
.section--list.table.extended > .extended {
  display: block;
}
.section--list.table > .compact,
.section--list.table > .extended {
  display: none;
  margin-bottom: 25px;
}
.section--list.table > .compact .empty,
.section--list.table > .extended .empty {
  width: 100%;
  height: 50px;
}
.section--list.table h3 {
  margin-bottom: 20px;
}
.section--list.table h5 {
  margin-bottom: 22px;
}
.section--list.table h6 {
  margin: 0;
  line-height: 30px;
}
.section--list.faq .btn {
  border-top: none;
  border-bottom: 3px #bebebe solid;
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  color: #151114;
  position: relative;
  padding: 0 40px 0 16px;
}
.section--list.faq .btn:hover {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #f9f9f9));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -o-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#f9f9f9', GradientType=0);
  color: #151114;
}
.section--list.faq .btn:active {
  background: #f6f6f6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%);
  background: linear-gradient(to bottom, #f9f9f9 0%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f2f2f2', GradientType=0);
  border-top: 2px #f6f6f6 solid;
  padding-top: 3px;
  color: #151114;
}
.section--list.faq .btn:focus {
  color: #151114;
}
.section--list.faq .btn:after {
  width: 16px;
  height: 16px;
  content: url('../images/quest-icon.png') no-repeat;
  position: absolute;
  top: 8px;
  right: 16px;
}
.section--list.letter-list > div {
  margin-bottom: 15px;
}
.section--list.letter-list > div:last-child {
  margin-bottom: 0;
}
.section--list.letter-list .col-xs-3:nth-child(4n) {
  clear: right;
}
.section--list.letter-list .col-xs-3:nth-child(4n+1) {
  clear: left;
}
.section--list.letter-list h4 {
  margin: 0 0 28px;
  color: #878787;
}
/*** Section List Elements Styles ***/
.list-item.event {
  margin-bottom: 30px;
  overflow: hidden;
  line-height: 20px;
}
.list-item.event:nth-child (2n) {
  clear: right;
}
.list-item.event:nth-child(2n-1) {
  clear: left;
}
.list-item.event:last-child {
  margin-bottom: 30px;
}
.list-item.faq dd {
  margin-bottom: 5px;
  font-family: 'SegoeUISemiBold', sans-serif;
  font-size: 19px;
}
.list-item.faq dt {
  font-size: 15px;
}
.list-item.city-info {
  margin-bottom: 35px;
}
.list-item.city-info .city-info {
  display: none;
}
.list-item.city-info .city-info:first-child {
  display: block;
}
.list-item.city-info .phone,
.list-item.city-info .phone-subtitle {
  font-family: 'SegoeUISemiBold', sans-serif;
  line-height: 27px;
  white-space: nowrap;
}
.list-item.city-info .phone {
  font-size: 30px;
}
.list-item.city-info .phone.city-phone {
  margin-left: -22px;
}
.list-item.city-info .phone-subtitle {
  font-size: 12px;
  color: #8f8f8f;
}
.list-item.for-merchandise {
  border: 1px #b0b0b0 solid;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.list-item.for-merchandise .thumb {
  -webkit-border-radius: 7px 7px 0 0;
  -moz-border-radius: 7px 7px 0 0;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}
.list-item:last-child {
  margin-bottom: 0;
}
/*** Modal Dialog Styles ***/
.modal.modal-city > .modal-dialog {
  min-width: 900px;
}
.modal.modal-city .modal-body {
  font-size: 16px;
}
.modal.modal-city .modal-body .tabs-left li {
  margin-bottom: 4px;
}
.modal.modal-city .modal-body .tabs-left li.active a {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  text-decoration: none;
  color: #ffffff;
}
.modal.modal-city .modal-body .tabs-left li.active a:before,
.modal.modal-city .modal-body .tabs-left li.active a:after {
  display: none;
}
.modal.modal-city .modal-body .tabs-left li.item-1174 {
  position: relative;
  margin-top: 15px;
}
.modal.modal-city .modal-body .tabs-left li.item-1174:before {
  position: absolute;
  top: 2px;
  left: -28px;
  width: 23px;
  height: 100%;
  background: url('../images/flag-icon-kz.png') left center no-repeat;
  content: '';
}
.modal.modal-city .modal-body .tabs-left li a {
  position: relative;
  display: inline-block;
  height: 31px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0 10px;
  text-decoration: none;
  line-height: 31px;
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.modal.modal-city .modal-body .tabs-left li a:hover:before,
.modal.modal-city .modal-body .tabs-left li a:hover:after {
  border-color: #c08139;
}
.modal.modal-city .modal-body .tabs-left li a:before,
.modal.modal-city .modal-body .tabs-left li a:after {
  position: absolute;
  bottom: 3px;
  width: 50%;
  height: 0;
  border-bottom: 1px dashed #055fbb;
  content: '';
}
.modal.modal-city .modal-body .tabs-left li a:before {
  left: 10px;
}
.modal.modal-city .modal-body .tabs-left li a:after {
  right: 10px;
}
.modal.modal-city .modal-body .tab-content ul li {
  float: left;
  margin: 0 5% 5px 0;
  width: 30%;
}
.modal.modal-city .modal-body .tab-content ul li:nth-child(3n) {
  margin-right: 0;
  clear: right;
}
.modal.modal-city .modal-body .tab-content ul li:nth-child(3n+1) {
  clear: left;
}
.modal.modal-callme > .modal-dialog,
.modal.modal-order > .modal-dialog,
.modal.modal-qa > .modal-dialog,
.modal.modal-order-sert > .modal-dialog {
  min-width: 370px;
  width: 370px;
}
.modal.modal-qa .modal-body textarea {
  min-height: 100px;
}
.modal.modal-callme-callback > .modal-dialog,
.modal.modal-order-callback > .modal-dialog,
.modal.modal-get-letter-callback > .modal-dialog,
.modal.modal-qa-callback > .modal-dialog,
.modal.modal-order-sert-callback > .modal-dialog {
  min-width: 550px;
  width: 550px;
}
.modal.modal-cost > .modal-dialog {
  min-width: 820px;
  width: 820px;
}
.modal.modal-cost > .modal-dialog h3 {
  margin-top: 0;
}
.modal.modal-cost > .modal-dialog .price {
  font-family: 'SegoeUISemiBold', sans-serif;
  font-size: 25px;
}
.modal.modal-cost > .modal-dialog .col-md-7 {
  border-right: 1px solid #cdd0d2;
  padding-right: 35px;
}
.modal.modal-cost > .modal-dialog .col-md-5 {
  padding-left: 35px;
}
.modal-header h3 {
  margin: 0;
}
/*** Header ***/
.header {
  position: relative;
  z-index: 20;
}
.header.default {
  margin-bottom: 0;
}
.header > .top {
  position: relative;
  height: 113px;
}
.header > .top:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  background: #2c71be;
  background: -moz-linear-gradient(top, #256ab7 0%, #3377c5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #256ab7), color-stop(100%, #3377c5));
  background: -webkit-linear-gradient(top, #256ab7 0%, #3377c5 100%);
  background: -o-linear-gradient(top, #256ab7 0%, #3377c5 100%);
  background: -ms-linear-gradient(top, #256ab7 0%, #3377c5 100%);
  background: linear-gradient(to bottom, #256ab7 0%, #3377c5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#256ab7', endColorstr='#3377c5', GradientType=0);
  content: '';
  z-index: -10;
}
.header > .top:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('../images/header-shade.png') repeat-x;
  z-index: 10;
  content: '';
}
.header > .top > .container-fluid {
  position: relative;
  padding-top: 10px;
}
.header > .top > .container-fluid > .row:first-child {
  height: 65px;
  overflow: hidden;
}
.header > .top > .container-fluid .bottom-row {
  position: relative;
  z-index: 30;
}
.header > .top > .container-fluid .bottom-row .second .navbar-default ul {
  float: right;
}
.header > .bottom {
  padding-top: 32px;
}
.header .logo {
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  width: 215px;
  height: 113px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANcAAABxCAYAAABGODZGAAAACXBIWXMAAAsTAAALEwEAmpwYAAABNmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarY6xSsNQFEDPi6LiUCsEcXB4kygotupgxqQtRRCs1SHJ1qShSmkSXl7VfoSjWwcXd7/AyVFwUPwC/0Bx6uAQIYODCJ7p3MPlcsGo2HWnYZRhEGvVbjrS9Xw5+8QMUwDQCbPUbrUOAOIkjvjB5ysC4HnTrjsN/sZ8mCoNTIDtbpSFICpA/0KnGsQYMIN+qkHcAaY6addAPAClXu4vQCnI/Q0oKdfzQXwAZs/1fDDmADPIfQUwdXSpAWpJOlJnvVMtq5ZlSbubBJE8HmU6GmRyPw4TlSaqo6MukP8HwGK+2G46cq1qWXvr/DOu58vc3o8QgFh6LFpBOFTn3yqMnd/n4sZ4GQ5vYXpStN0ruNmAheuirVahvAX34y/Axk/96FpPYgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAUggAARVYAAA6lwAAF2/XWh+QAAAD/klEQVR42uzdO4hUVxyA8W9mDUgQwYAgCFYWihpFQyBaiKRKGcHCSgg2omQDSggakBSBBLERWQsFTWOV3UYC0UIL0yhiIAoaIkTEJcKCoIj42JmT4uzA4jrPe84yc+/363R3R/2f+fbsjPdRCyEEJCVXdwSScUnGJcm4JOOSjEuScUnGJRmXJOOSjEsyLknGJRmXZFySjEsyLsm4JBmXZFyScUkqdVxew0rGlUmt5mLKuCTjkmRcknFJxiXJuCTjkoxLknFJxiUZlyTjkoxLMi5JxiUZl2RcUkbNZqjUGePGpcUJKwRmGyHZGePNEGiGwDC3WgvBq09I7lyScUkyLsm4JOOSZFyScUnGJcm4JOOSjEuScUnGJRmXJOOSjEsyLknGJRmXZFySjEsyLsm4JBmXZFyScakXXtPYuJRJquujy7gkzcX1m2OQMvzEEkJYC9wBljoOKZlLdeABcMJZSMm8BMZbr7l+Ah45EymJH4F/a/PufbcbmHQuUiH3gS3A6/nvFk4BV5yNVMhB4DUsfCt+HHjrfKSBXASutn5Rf8+WdtIZabGU6OiV58CR+b9Rb/NibNpl12JEUKKjV74H/usW1wvgW59OKmkEOfwJTCyYWWj/LekqsMu5FdNoBOr12sBPzhB8Yg+5JrAduPHuBzodW/g1MOvsihkbqxWKw7CG3rn3hdUtrrvAaWcntTUDHG37jTF0fqW6HPgbWOUcpQW+As63+2C3U06eA985Q2mBP4ALHX+kD93fY60B14EdzlMC4nsR24C/On1SLydLBuAQ0HCmEgCnuoXV687VMgEccK6quGlgHfH/g5PF9RHx8KiVzlcVtgf4tZdP7OcaGk/p8LajVAGXew2r352rFeMN4BPnrIp5BXwM/NNPLP1ozr3uajprVczP/YQ1yM7VchbY77xVEQ+ATXO7V/a4VhKP3Fjh3FUBXwC/9/tFg14UdAY45sxVAZODhFVk5wIYA24RL8YhldELYD3weJAvLnI56wbxyA1vM6Cy+mHQsIruXC0XgH2ug0rmDrCVAuc0pohrFfHNjeWuh0oiADuJB6wPLMVdTp4Ax10PlcgvRcNKtXMBLCFepGOj66IR95R4YO5M0QdKdX+uWeI1N6RRdzRFWCl3rpaLwF7XRyPqJvAZiQ7vSx3XauJpKctcJ42YBvApcDvVA6a+bes08Yq90qg5kzKsHDsXwAfEU6DXuV4aEU/mnq/PUj5ojhuOvyXeLUUaFYdTh5Vr52qZAr503TTkrgGfk+EwvpxxrQHuAR+6fhpSb4DNxDfhkqtn/Is/It5rWRpWJ3OFlXvnAlhKPAByreuoIfMQ2AC8zPUH1DP/A14B37iOGkLjOcMC+H8Ay0nZs+cdM3QAAAAASUVORK5CYII=');
  z-index: 30;
}
.header .logo:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANcAAABxCAYAAABGODZGAAAACXBIWXMAAAsTAAALEwEAmpwYAAABNmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarY6xSsNQFEDPi6LiUCsEcXB4kygotupgxqQtRRCs1SHJ1qShSmkSXl7VfoSjWwcXd7/AyVFwUPwC/0Bx6uAQIYODCJ7p3MPlcsGo2HWnYZRhEGvVbjrS9Xw5+8QMUwDQCbPUbrUOAOIkjvjB5ysC4HnTrjsN/sZ8mCoNTIDtbpSFICpA/0KnGsQYMIN+qkHcAaY6addAPAClXu4vQCnI/Q0oKdfzQXwAZs/1fDDmADPIfQUwdXSpAWpJOlJnvVMtq5ZlSbubBJE8HmU6GmRyPw4TlSaqo6MukP8HwGK+2G46cq1qWXvr/DOu58vc3o8QgFh6LFpBOFTn3yqMnd/n4sZ4GQ5vYXpStN0ruNmAheuirVahvAX34y/Axk/96FpPYgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAUggAARVYAAA6lwAAF2/XWh+QAAAD/klEQVR42uzdO4hUVxyA8W9mDUgQwYAgCFYWihpFQyBaiKRKGcHCSgg2omQDSggakBSBBLERWQsFTWOV3UYC0UIL0yhiIAoaIkTEJcKCoIj42JmT4uzA4jrPe84yc+/363R3R/2f+fbsjPdRCyEEJCVXdwSScUnGJcm4JOOSjEuScUnGJRmXJOOSjEsyLknGJRmXZFySjEsyLsm4JBmXZFyScUkqdVxew0rGlUmt5mLKuCTjkmRcknFJxiXJuCTjkoxLknFJxiUZlyTjkoxLMi5JxiUZl2RcUkbNZqjUGePGpcUJKwRmGyHZGePNEGiGwDC3WgvBq09I7lyScUkyLsm4JOOSZFyScUnGJcm4JOOSjEuScUnGJRmXJOOSjEsyLknGJRmXZFySjEsyLsm4JBmXZFyScakXXtPYuJRJquujy7gkzcX1m2OQMvzEEkJYC9wBljoOKZlLdeABcMJZSMm8BMZbr7l+Ah45EymJH4F/a/PufbcbmHQuUiH3gS3A6/nvFk4BV5yNVMhB4DUsfCt+HHjrfKSBXASutn5Rf8+WdtIZabGU6OiV58CR+b9Rb/NibNpl12JEUKKjV74H/usW1wvgW59OKmkEOfwJTCyYWWj/LekqsMu5FdNoBOr12sBPzhB8Yg+5JrAduPHuBzodW/g1MOvsihkbqxWKw7CG3rn3hdUtrrvAaWcntTUDHG37jTF0fqW6HPgbWOUcpQW+As63+2C3U06eA985Q2mBP4ALHX+kD93fY60B14EdzlMC4nsR24C/On1SLydLBuAQ0HCmEgCnuoXV687VMgEccK6quGlgHfH/g5PF9RHx8KiVzlcVtgf4tZdP7OcaGk/p8LajVAGXew2r352rFeMN4BPnrIp5BXwM/NNPLP1ozr3uajprVczP/YQ1yM7VchbY77xVEQ+ATXO7V/a4VhKP3Fjh3FUBXwC/9/tFg14UdAY45sxVAZODhFVk5wIYA24RL8YhldELYD3weJAvLnI56wbxyA1vM6Cy+mHQsIruXC0XgH2ug0rmDrCVAuc0pohrFfHNjeWuh0oiADuJB6wPLMVdTp4Ax10PlcgvRcNKtXMBLCFepGOj66IR95R4YO5M0QdKdX+uWeI1N6RRdzRFWCl3rpaLwF7XRyPqJvAZiQ7vSx3XauJpKctcJ42YBvApcDvVA6a+bes08Yq90qg5kzKsHDsXwAfEU6DXuV4aEU/mnq/PUj5ojhuOvyXeLUUaFYdTh5Vr52qZAr503TTkrgGfk+EwvpxxrQHuAR+6fhpSb4DNxDfhkqtn/Is/It5rWRpWJ3OFlXvnAlhKPAByreuoIfMQ2AC8zPUH1DP/A14B37iOGkLjOcMC+H8Ay0nZs+cdM3QAAAAASUVORK5CYII=');
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header .logo:hover img {
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header .logo img {
  display: block;
  margin: 20px 0 0 12px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header .choose-city {
  margin-top: 2px;
  line-height: 25px;
}
.header .choose-city a {
  display: initial;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 0;
  vertical-align: baseline;
  white-space: nowrap;
  font-size: 17px;
  line-height: inherit;
  border-bottom: 1px dotted #055fbb;
  text-decoration: none;
  color: #055fbb;
}
.header .choose-city a:hover {
  border-color: #c08139;
  color: #c08139;
}
.header .choose-city a:after {
  position: absolute;
  top: 10px;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 6px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: '';
}
.header .phone,
.header .phone-subtitle {
  font-family: 'SegoeUISemiBold', sans-serif;
  line-height: 20px;
  white-space: nowrap;
}
.header .phone {
  margin-top: 4px;
  font-size: 20px;
}
.header .phone-subtitle {
  margin-top: 8px;
  font-size: 12px;
  color: #8f8f8f;
}
.header .phone-subtitle.city-work-hours {
  margin-left: 14px;
}
.header .phone + .phone-subtitle {
  margin-top: 0;
}
.header .btn {
  float: right;
  margin-top: 4px;
}
.header .navbar-default {
  margin-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
}
.header .navbar-default ul {
  margin: 0;
}
.header .navbar-default ul li {
  float: left;
  margin-left: 38px;
}
.header .navbar-default ul li:first-child {
  margin-left: 0;
}
.header .navbar-default ul li a {
  padding: 0;
  line-height: 30px;
  color: #ffffff;
}
.header .navbar-default ul li a:hover {
  text-decoration: none;
  color: #ffffff;
}
.header .search-form {
  margin-top: 3px;
}
.header .search-form input[type='text'] {
  height: 28px;
}
.header .breadcrumbs {
  margin-bottom: 25px;
  font-size: 14px;
}
.header .breadcrumbs a {
  color: #151114;
}
/*** Footer Styles ***/
.footer {
  margin-top: 60px;
  width: 100%;
  background-color: #3f3f3f;
  padding: 25px 0 45px;
  color: #ffffff;
}
.footer p {
  margin: 0;
}
.footer p a {
  color: #ffffff;
}
.footer p.number {
  white-space: nowrap;
  font-size: 19px;
  font-family: "SegoeUISemiBold", sans-serif;
}
.footer p.rect {
  font-size: 14px;
  color: #969696;
  line-height: 16px;
  margin-bottom: 10px;
}
.footer p .call-me {
  position: relative;
  border-bottom: 1px dashed;
  text-decoration: none;
  font-size: 15px;
  color: #cfcfcf;
}
.footer p .call-me:before {
  content: url('../images/call-me-icon.png');
  position: absolute;
  top: 1px;
  left: -16px;
}
.footer p .call-me:hover {
  border: none;
}
.footer p.dashboard {
  display: inline-block;
  background: #7b7b7b;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 10px;
}
.footer p.dashboard a {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-left: 22px;
}
.footer p.dashboard a:before {
  content: url('../images/key-icon.png');
  position: absolute;
  top: 1px;
  left: 0;
}
.footer p.socials {
  margin-top: 16px;
}
.footer p.socials a {
  width: 20px;
  height: 20px;
  background: url('../images/socials.png');
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 5px;
}
.footer p.socials a.vk {
  background-position: 0 0;
}
.footer p.socials a.fb {
  background-position: -20px;
}
.footer p.socials a.tw {
  background-position: -40px;
}
.footer p.socials a.lj {
  background-position: -60px;
}
.footer ul li {
  margin-bottom: 5px;
}
.footer ul li:last-child {
  margin: 0;
}
.footer ul li a {
  color: #ffffff;
  font-size: 15px;
}
.footer .phone {
  text-align: right;
}
.footer .made-in p:first-child {
  text-transform: uppercase;
}
/*** Second Navigation Panel ***/
.second-nav li {
  float: left;
  margin: 0 5px 0 0;
}
.second-nav li:last-child {
  margin-right: 0;
}
.second-nav li:hover a {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0s ease-in;
  -moz-transition: all 0s ease-in;
  -o-transition: all 0s ease-in;
  transition: all 0s ease-in;
}
.second-nav li.active a {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  color: #ffffff;
  text-decoration: none;
}
.second-nav li a {
  display: block;
  height: 30px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: all 0s ease-in;
  -moz-transition: all 0s ease-in;
  -o-transition: all 0s ease-in;
  transition: all 0s ease-in;
}
.second-nav li a:focus,
.second-nav li a:active {
  background: none;
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  color: #ffffff;
  text-decoration: none;
}
/*** Main Slider ***/
#main-slider {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  height: 446px;
  border-bottom: 1px solid #dfdfdf;
  background-color: #ececec;
  overflow: hidden;
  z-index: 10;
}
#main-slider .slider-items {
  position: relative;
  height: 446px;
  z-index: 10;
}
#main-slider .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: #4c4c4c;
  z-index: 10;
}
#main-slider .slider-item > .container-fluid {
  position: relative;
  height: 100%;
}
#main-slider .slider-item .title,
#main-slider .slider-item .text,
#main-slider .slider-item img {
  opacity: 0;
  filter: alpha(opacity=0);
}
#main-slider .slider-item .title,
#main-slider .slider-item .text {
  position: relative;
  z-index: 20;
}
#main-slider .slider-item .title {
  margin-top: 50px;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}
#main-slider .slider-item .title p {
  margin-bottom: 20px;
  font-family: 'SegoeUISemiBold', sans-serif;
  font-size: 48px;
  line-height: 57px;
  color: #151114;
}
#main-slider .slider-item .text {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  font-size: 19px;
  line-height: 22px;
}
#main-slider .slider-item img {
  position: absolute;
}
#main-slider .slider-item img.image-1 {
  z-index: 10;
}
#main-slider .slider-item img.image-2 {
  z-index: 20;
}
#main-slider .slider-item.active {
  z-index: 20;
}
#main-slider .slider-item.active .title,
#main-slider .slider-item.active .text,
#main-slider .slider-item.active img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.7s ease-in;
  -moz-transition: all 0.7s ease-in;
  -o-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}
#main-slider .slider-item.active .title {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
#main-slider .slider-item.active .text {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#main-slider .slider-item-334 .image-1 {
  right: 80px;
  bottom: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}
#main-slider .slider-item-334 .image-2 {
  left: 500px;
  bottom: 0;
  -webkit-transform: translateY(150px);
  -moz-transform: translateY(150px);
  -ms-transform: translateY(150px);
  -o-transform: translateY(150px);
  transform: translateY(150px);
}
#main-slider .slider-item-334.active .image-1 {
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-duration: 0.75s;
  -moz-transition-duration: 0.75s;
  -o-transition-duration: 0.75s;
  transition-duration: 0.75s;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
#main-slider .slider-item-334.active .image-2 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
#main-slider .slider-item-340 .image-1 {
  right: 0;
  bottom: 0;
}
#main-slider .slider-item-341 .image-1 {
  bottom: 0;
  right: 65px;
  -webkit-transform: translateY(-150px);
  -moz-transform: translateY(-150px);
  -ms-transform: translateY(-150px);
  -o-transform: translateY(-150px);
  transform: translateY(-150px);
}
#main-slider .slider-item-341 .image-2 {
  bottom: 0;
  right: 65px;
  -webkit-transform: translateX(150%);
  -moz-transform: translateX(150%);
  -ms-transform: translateX(150%);
  -o-transform: translateX(150%);
  transform: translateX(150%);
}
#main-slider .slider-item-341.active .image-1 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#main-slider .slider-item-341.active .image-2 {
  -webkit-transition-delay: 1.75s;
  -moz-transition-delay: 1.75s;
  -o-transition-delay: 1.75s;
  transition-delay: 1.75s;
}
#main-slider .slider-points {
  position: absolute;
  bottom: 65px;
  left: 15px;
  height: 46px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 5px;
  background-color: #ffffff;
  z-index: 15;
}
#main-slider .slider-points ul li {
  float: left;
  margin-right: 8px;
  height: 36px;
}
#main-slider .slider-points ul li:last-child {
  margin: 0;
}
#main-slider .slider-points ul li a {
  display: block;
  position: relative;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  padding: 0 12px 0 40px;
  text-decoration: none;
  font-size: 16px;
  color: #151114;
  line-height: 36px;
  -webkit-transition-duration: 0.05s;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  transition-duration: 0.05s;
}
#main-slider .slider-points ul li a:before {
  position: absolute;
  top: 7px;
  left: 12px;
  width: 22px;
  height: 22px;
  background: url('../images/slider-icons.png') no-repeat;
  content: '';
}
#main-slider .slider-points ul li:hover a,
#main-slider .slider-points ul li.active a {
  background: #f19429;
  background: -moz-linear-gradient(top, #f7a950 0%, #ea7e01 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7a950), color-stop(100%, #ea7e01));
  background: -webkit-linear-gradient(top, #f7a950 0%, #ea7e01 100%);
  background: -o-linear-gradient(top, #f7a950 0%, #ea7e01 100%);
  background: -ms-linear-gradient(top, #f7a950 0%, #ea7e01 100%);
  background: linear-gradient(to bottom, #f7a950 0%, #ea7e01 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7a950', endColorstr='#ea7e01', GradientType=0);
  color: #ffffff;
}
#main-slider .slider-points ul li.item-334:hover a:before,
#main-slider .slider-points ul li.item-334.active a:before {
  background-position: 0 -22px;
}
#main-slider .slider-points ul li.item-334 a:before {
  background-position: 0 0;
}
#main-slider .slider-points ul li.item-340:hover a:before,
#main-slider .slider-points ul li.item-340.active a:before {
  background-position: -22px -22px;
}
#main-slider .slider-points ul li.item-340 a:before {
  background-position: -22px 0;
}
#main-slider .slider-points ul li.item-341:hover a:before,
#main-slider .slider-points ul li.item-341.active a:before {
  background-position: -44px -22px;
}
#main-slider .slider-points ul li.item-341 a:before {
  background-position: -44px 0;
}
/*** Site Elements Styles***/
.content {
  margin-bottom: 20px;
}
.content.main-content h1 {
  margin: 20px 0;
  font-size: 32px;
}
.content img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin: 5px 10px 15px 0;
}
.content img:last-child {
  margin-right: 0;
}
.content p.about {
  font-size: 19px;
}
.section--get-sert-instruction {
  width: 100%;
  overflow: hidden;
  height: 191px;
  background: #5a6f96 url('../images/step-instruction-bg.png');
  color: #ffffff;
  position: relative;
  margin: 50px 0;
}
.section--get-sert-instruction.page {
  top: 60px;
}
.section--get-sert-instruction > .container-fluid {
  position: relative;
}
.section--get-sert-instruction p {
  font-size: 17px;
  margin: 10px 0 20px;
}
.section--get-sert-instruction p.title {
  font-family: 'SegoeUIBold', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
}
.section--get-sert-instruction .form-inline .form-group,
.section--get-sert-instruction .form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.section--get-sert-instruction .envelope {
  position: absolute;
  top: -19px;
  right: 0;
  width: 396px;
  height: 210px;
  background: url('../images/envelope.png') no-repeat;
}
.section--get-sert-instruction button {
  border-top: none;
  -webkit-box-shadow: 0 3px 0 0 #b26102;
  -moz-box-shadow: 0 3px 0 0 #b26102;
  box-shadow: 0 3px 0 0 #b26102;
  padding: 0 21px;
  background: #f3aa3c;
  background: -moz-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7c158), color-stop(100%, #ee9220));
  background: -webkit-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -o-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -ms-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: linear-gradient(to bottom, #f7c158 0%, #ee9220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7c158', endColorstr='#ee9220', GradientType=0);
  color: #ffffff;
  display: inline-block;
}
.section--get-sert-instruction button:hover {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
}
.section--get-sert-instruction button:active {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-top: 3px;
  color: #ffffff;
}
.section--get-sert-instruction button:focus {
  color: #ffffff;
}
.section--get-sert-instruction input {
  margin-right: 15px;
  font-style: italic;
  font-size: 14px;
  padding: 5px 12px;
  width: 255px;
  outline: none !important;
}
.section--get-sert-instruction input:active,
.section--get-sert-instruction input:focus {
  outline: none !important;
}
.section--sert-order-steps p.phone {
  font-size: 24px;
  font-family: 'SegoeUISemiBold', sans-serif;
  margin-bottom: 0;
}
.section--sert-order-steps button {
  border-top: none;
  -webkit-box-shadow: 0 3px 0 0 #b26102;
  -moz-box-shadow: 0 3px 0 0 #b26102;
  box-shadow: 0 3px 0 0 #b26102;
  padding: 0 21px;
  background: #f3aa3c;
  background: -moz-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7c158), color-stop(100%, #ee9220));
  background: -webkit-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -o-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: -ms-linear-gradient(top, #f7c158 0%, #ee9220 100%);
  background: linear-gradient(to bottom, #f7c158 0%, #ee9220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7c158', endColorstr='#ee9220', GradientType=0);
  color: #ffffff;
}
.section--sert-order-steps button:hover {
  background: #f0b541;
  background: -moz-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6d264), color-stop(100%, #ea971d));
  background: -webkit-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -o-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: -ms-linear-gradient(top, #f6d264 0%, #ea971d 100%);
  background: linear-gradient(to bottom, #f6d264 0%, #ea971d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6d264', endColorstr='#ea971d', GradientType=0);
  color: #ffffff;
}
.section--sert-order-steps button:active {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-top: 3px;
  color: #ffffff;
}
.section--sert-order-steps button:focus {
  color: #ffffff;
}
.section--sertifications-types .sertifications-types-item {
  float: left;
  width: 16%;
  margin: 10px 4% 20px 0;
}
.section--sertifications-types .sertifications-types-item img {
  border: 1px #bbbbbb solid;
  margin-bottom: 5px;
}
.section--sertifications-types .sertifications-types-item p {
  width: 100%;
}
.section--product-sertification ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.section--product-sertification ul li:last-child {
  margin: 0;
}
.section--single-sertificate {
  margin-bottom: 20px;
}
.section--single-sertificate h1 {
  margin-top: 15px;
}
.section--single-sertificate img {
  max-width: 100%;
}
.section--single-sertificate p {
  font-size: 15px;
}
.section--single-sertificate p.title {
  font-family: 'SegoeUIBold', sans-serif;
  font-size: 26px;
}
.section--single-sertificate button {
  margin-top: 30px;
  background: #f5ab3c;
  background: -moz-linear-gradient(top, #ee9220 0%, #fbc357 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee9220), color-stop(100%, #fbc357));
  background: -webkit-linear-gradient(top, #ee9220 0%, #fbc357 100%);
  background: -o-linear-gradient(top, #ee9220 0%, #fbc357 100%);
  background: -ms-linear-gradient(top, #ee9220 0%, #fbc357 100%);
  background: linear-gradient(to bottom, #ee9220 0%, #fbc357 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee9220', endColorstr='#fbc357', GradientType=0);
  height: 35px;
  padding: 0 26px !important;
}
.section--single-sertificate button.ask-question {
  color: #055fbb;
  border: 0;
  outline: none !important;
  border-bottom: 1px dashed;
  padding-bottom: 2px;
  position: relative;
  top: 17px;
  margin-left: 30px;
  height: auto;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.section--single-sertificate button.ask-question:active,
.section--single-sertificate button.ask-question:focus {
  outline: none !important;
}
.section--single-sertificate button.ask-question:before {
  position: absolute;
  top: 3px;
  left: -21px;
  content: url(../images/ask-q-icon.png);
}
.section--clients img {
  margin-right: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.section--clients img:last-child {
  margin: 0;
}
.sidebar-item {
  margin-bottom: 55px;
}
.sidebar-item p {
  font-size: 15px;
}
.sidebar-item img {
  max-width: 100%;
  margin-bottom: 10px;
}
.sidebar-item span {
  font-size: 14px;
}
.sidebar-item button {
  margin-top: 15px;
}
.sidebar-item:first-child {
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 15px 30px 40px;
  border: 3px #5a8ece solid;
}
.sidebar-item:first-child .title {
  font-size: 23px;
  font-family: 'SegoeUISemiBold', sans-serif;
  margin: 10px 0;
  line-height: 25px;
  border-bottom: 1px #dadada solid;
  padding-bottom: 15px;
}
.sidebar-item:first-child:after {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 13px;
  background: url('../images/sidebar-item-shadow.png') center no-repeat;
  content: '';
}
.sidebar-item:last-child {
  margin: 0;
}
.sidebar-item.main-form {
  margin-top: 30px;
}
.sidebar-item.main-form .main-calculator p {
  font-size: 19px;
  font-family: 'SegoeUISemiBold', sans-serif;
  margin: 15px 0 9px 0;
}
.sidebar-item.main-form .main-calculator select {
  max-width: 100%;
}
.sidebar-item.main-form .main-calculator .chosen-container {
  width: 100% !important;
  font-family: Calibri, sans-serif;
  font-size: 16px;
  font-style: italic;
}
.sidebar-item.main-form .main-calculator .chosen-container.chosen-with-drop .chosen-single div b {
  border-top: none;
  border-bottom: 6px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.sidebar-item.main-form .main-calculator .chosen-container .chosen-single {
  height: 33px;
  background: none;
  -webkit-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.12);
  color: #878787;
}
.sidebar-item.main-form .main-calculator .chosen-container .chosen-single span {
  line-height: 33px;
  font-size: 16px;
}
.sidebar-item.main-form .main-calculator .chosen-container .chosen-single div b {
  margin-top: 12px;
  width: 0;
  height: 0;
  background: none;
  border-top: 6px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: '';
}
.sidebar-item.main-form .main-calculator .chosen-container .chosen-results li {
  color: #878787;
}
.sidebar-item.main-form .main-calculator .chosen-container .chosen-results li.highlighted {
  background: #cccccc;
}
.sidebar-item.main-form .main-calculator label {
  margin-left: 8px;
  font-weight: normal;
  font-size: 15px;
}
.sidebar-item.main-form .main-calculator input[type='radio'] {
  position: relative;
  width: 19px;
  height: 19px;
}
.sidebar-item.main-form .main-calculator input[type='radio']:checked:after {
  background-position: 0 -19px;
}
.sidebar-item.main-form .main-calculator input[type='radio']:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  content: '';
  z-index: 5;
}
.sidebar-item.main-form .main-calculator input[type='radio']:after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background: url('../images/radio-icons.png') 0 0 #ffffff;
  content: '';
  z-index: 10;
}
.sidebar-item .blank,
.sidebar-item .sample {
  padding-left: 50px;
}
.sidebar-item .blank p,
.sidebar-item .sample p {
  margin: 0;
}
.sidebar-item .blank span,
.sidebar-item .sample span {
  color: #8e8e8e;
  position: relative;
  top: -7px;
}
.sidebar-item .blank {
  background: url('../images/blank-icon.png') no-repeat left center;
  margin-bottom: 20px;
}
.sidebar-item .sample {
  background: url('../images/sample-icon.png') no-repeat left center;
}
.single-sertificate-info div {
  margin-bottom: 50px;
}
.single-sertificate-info div.with-image img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-right: 15px;
}
.single-sertificate-info div.with-image img:last-child {
  margin: 0;
}
.single-sertificate-info div ul li,
.single-sertificate-info div ol li {
  list-style-position: inside;
  margin-bottom: 8px;
}
.single-sertificate-info div ul li:first-child,
.single-sertificate-info div ol li:first-child {
  margin-top: 10px;
}
.single-sertificate-info div ul li:last-child,
.single-sertificate-info div ol li:last-child {
  margin: 0;
}
.single-sertificate-info div ul li {
  list-style-type: disc;
}
.single-sertificate-info div:last-child {
  margin: 0;
}
.list-toggle {
  margin: 15px auto;
}
.list-toggle h4 {
  margin: 0;
}
.list-toggle ul {
  list-style: none;
}
.list-toggle ul li {
  display: block;
  float: left;
  margin-right: 15px;
  height: 31px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.list-toggle ul li:hover a {
  border: none;
}
.list-toggle ul li:active,
.list-toggle ul li:focus {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  color: #ffffff;
}
.list-toggle ul li:active a,
.list-toggle ul li:focus a {
  color: #ffffff;
}
.list-toggle ul li.active {
  background: #db8727;
  background: -moz-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d37203), color-stop(100%, #e29b4a));
  background: -webkit-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -o-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: -ms-linear-gradient(top, #d37203 0%, #e29b4a 100%);
  background: linear-gradient(to bottom, #d37203 0%, #e29b4a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d37203', endColorstr='#e29b4a', GradientType=0);
  color: #ffffff;
}
.list-toggle ul li.active.to-compact a:before {
  background-position: 0 0;
}
.list-toggle ul li.active.to-extend a:before {
  background-position: 0 0;
}
.list-toggle ul li.active a {
  color: #ffffff;
}
.list-toggle ul li a {
  position: relative;
  display: block;
  height: 32px;
  padding: 0 10px 0 30px;
  text-decoration: none;
  line-height: 28px;
  color: #055fbb;
}
.list-toggle ul li.to-compact a {
  position: relative;
}
.list-toggle ul li.to-compact a:before {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 14px;
  height: 19px;
  background: url('../images/map-to-compact-icon.png') -14px 0 no-repeat;
  content: '';
}
.list-toggle ul li.to-extend a {
  position: relative;
}
.list-toggle ul li.to-extend a:before {
  position: absolute;
  top: 9px;
  left: 8px;
  width: 14px;
  height: 19px;
  background: url('../images/all-quest-icon.png') -14px 0 no-repeat;
  content: '';
}
#map {
  display: none;
  margin-top: 25px;
  width: 100%;
  height: 400px;
}
hr {
  margin: 40px 0 20px;
}
/*** Footer Styles ***/
/*
.footer {.w100; background:#3f3f3f; padding:25px 0 45px; margin-top:60px; color:@white;
	p {margin:0;
		a {color:@white;}
		&.number {font-size:19px; font-family: "SegoeUISemiBold", sans-serif;}
		&.rect {font-size:14px; color:#969696; line-height:16px; margin-bottom:10px;}
		a.call-me {font-size:15px; color:#cfcfcf; text-decoration:none; border-bottom:1px dashed; .relative;
			&:before {content:url('../images/call-me-icon.png'); .absolute; top:1px; left:-16px;}
			&:hover {border:none;}
		}
		&.dashboard {display:inline-block; background:#7b7b7b; .rounded(25px); padding: 8px 20px; margin-bottom:10px;
			a {font-size:15px; margin-bottom:15px; .acenter; .relative; padding-left:22px;
				&:before {content:url('../images/key-icon.png'); .absolute; top:1px; left:0;}
			}
		}
		&.socials {margin-top:16px;
			a {width:20px; height:20px; background:url('../images/socials.png'); display:inline-block; .relative; top:5px; margin-left:5px;
				&.vk {background-position:0 0;}
				&.fb {background-position:-20px ;}
				&.tw {background-position:-40px ;}
				&.lj {background-position:-60px ;}
			}
		}
	}
	ul { margin-bottom: 0;
		li {margin-bottom:5px;
			&:last-child {margin:0;}
			a {color:@white; font-size:15px;}
		}
	}
	.phone {.aright;}
	.made-in {
		p {
			&:first-child {text-transform:uppercase;}
		}
	}
}
*/
.list--with-icons .list-item {
  margin-bottom: 35px;
  position: relative;
  padding-left: 80px;
}
.list--with-icons .list-item .icon {
  position: absolute;
  width: 65px;
  height: 70px;
  top: 0;
  left: 0;
}
.list--with-icons .list-item p {
  margin: 5px 0 0 0;
}
.list--with-icons .list-item p a {
  font-size: 17px;
  font-family: 'SegoeUISemiBold', sans-serif;
}
.list--with-icons .page-list-item {
  margin-bottom: 60px;
  position: relative;
  padding-left: 108px;
}
.list--with-icons .page-list-item .icon {
  position: absolute;
  width: 92px;
  height: 88px;
  top: 0;
  left: 0;
}
.list--with-icons .page-list-item p {
  margin: 5px 0 0;
  font-size: 17px;
}
.list--with-icons .page-list-item p a {
  font-size: 19px;
  font-family: 'SegoeUISemiBold', sans-serif;
}
hr {
  margin: 0 auto;
}
.nav_toggle {
  display: none;
}
div.news-detail img.detail_picture {
  height: auto;
  max-width: 100%;
}
.caret {
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #0054fb transparent transparent transparent;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
#contacts-list .dropdown-toggle:hover .caret {
  border-color: #c08139 transparent transparent transparent;
}
.header_mobile {
  display: none;
}
