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

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  min-height: 100%;
}

.layout, .layout-fluid {
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.layout {
  max-width: 1400px;
}

.clr:after, .layout:after, .layout-fluid:after {
  display: block;
  clear: both;
  content: '';
}

/* grid */
.col-separator {
  -webkit-flex-basis: 40px;
  -ms-flex-preferred-size: 40px;
  flex-basis: 40px;
}

.col-separator:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background: #f0f3f5;
}

/* style */
a, .link {
  color: #2869cb;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
}

a:hover, .link:hover {
  color: #f55403;
}

.dashed {
  border-bottom: 1px dashed;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0 0 20px;
}

dt {
  font-weight: 500;
}

dd {
  margin: 0 0 12px;
}

iframe {
  display: block;
  border: 0;
}

figure {
  margin-left: 0;
  margin-right: 0;
}

p {
  line-height: 24px;
}

p:first-child {
  margin-top: 0 !important;
}

p:last-child {
  margin-bottom: 0 !important;
}

.heading {
  font-family: 'Fira Sans', sans-serif;
}

.heading-page {
  font-size: 42px;
  line-height: 50px;
}

h1, h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 20px;
  font-weight: 500;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
  margin-bottom: 0;
}

h2, .h2 {
  font-size: 32px;
  line-height: 40px;
}

h3, .h3 {
  font-size: 28px;
  line-height: 34px;
}

h4, .h4 {
  font-size: 22px;
  line-height: 28px;
}

h5, .h5 {
  font-size: 16px;
  line-height: 22px;
}

h6, .h6 {
  font-size: 14px;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.list-cols-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.is-hidden {
  display: none !important;
}

/* form */
button, input, select, textarea {
  position: relative;
  font: inherit;
  color: inherit;
  margin: 0;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

.input, .textarea, .select {
  display: block;
  width: 100%;
  font-size: 13px;
  background-color: #fafbfd;
  border: 1px solid #e3e8ec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.textarea {
  padding: 10px 15px;
}

.input, .select {
  height: 34px;
  padding: 0 15px;
}

.select {
  padding-right: 25px;
  background: #f9fbfd url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%238c939a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 9px center/8px 10px;
}

.input, .textarea {
  -webkit-box-shadow: inset 0 1px 3px 0 rgba(231, 241, 251, 0.7);
  box-shadow: inset 0 1px 3px 0 rgba(231, 241, 251, 0.7);
}

.input:hover, .textarea:hover, .select:hover {
  background-color: #fff;
  border-color: rgba(76, 172, 234, 0.3);
  -webkit-box-shadow: 0 0 0 3px rgba(76, 189, 234, 0.1);
  box-shadow: 0 0 0 3px rgba(65, 181, 249, 0.1);
}

.input:focus, .textarea:focus, .select:focus {
  background-color: #fff;
  border-color: rgba(76, 172, 234, 0.4);
  -webkit-box-shadow: 0 0 0 3px rgba(76, 189, 234, 0.15);
  box-shadow: 0 0 0 3px rgba(65, 181, 249, 0.15);
}

.input_sm, .select_sm {
  height: 30px;
  padding: 0 7px;
}

.select_sm {
  padding-right: 20px;
  background-position: right 7px center;
  background-size: 7px 9px;
}

.input_lg, .select_lg {
  height: 40px;
}

.input_noborder {
  border: 0;
}

.input_rounded {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* checkbox / radio */
.checkbox {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  cursor: pointer;
}

.checkbox_inline {
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-right: 15px;
}

.checkbox_inline:last-child {
  margin-right: 0;
}

.checkbox__input {
  display: none;
}

.checkbox__label {
  margin-left: 7px;
}

.checkbox__box {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  position: relative;
  width: 18px;
  height: 18px;
  background: #f9fbfd;
  border: 1px solid #e3e8ec;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.checkbox__box:before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: #3b74bd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.checkbox__input:checked~.checkbox__box:before {
  content: '';
}

/* checkbox radio */
.checkbox_radio .checkbox__box, .checkbox_radio .checkbox__box:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* checkbox size */
.checkbox_sm .checkbox__label {
  line-height: 1.2;
}

.checkbox_sm .checkbox__box {
  width: 15px;
  height: 15px;
}

.checkbox_sm .checkbox__box:before {
  width: 7px;
  height: 7px;
}

.checkbox_lg .checkbox__label {
  font-size: 14px;
  line-height: 1.4;
}

.checkbox_lg .checkbox__box {
  width: 20px;
  height: 20px;
}

.checkbox_lg .checkbox__box:before {
  width: 12px;
  height: 12px;
}

.checkbox-disabled {
  opacity: .5;
}

/* button */
.button {
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
}

.button:active {
  -moz-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -webkit-transform: scale(0.98);
  -o-transform: scale(0.98);
  transform: scale(0.98);
}

.button_xs {
  height: 24px;
  font-size: 11px;
}

.button_sm {
  height: 27px;
  font-size: 12px;
}

.button_lg {
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
}

.button_rounded {
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
}

/* button color */
.button.is-green {
  color: #fff;
  background: #32a551;
}

.button.is-green:hover {
  color: #fff;
  background: #20ad46;
}

.button.is-red {
  color: #fff;
  background: #ea5959;
}

.button.is-red:hover {
  color: #fff;
  background: #ea3d3b;
}

.button.is-gray {
  color: #7b868e;
  background: #e3e8ec;
}

.button.is-gray:hover {
  color: #86949e;
  background: #e8eef3;
}

.button.is-black {
  color: #fff;
  background: #57565f;
}

.button.is-black:hover {
  color: #fff;
  background: #5a5869;
}

.button.is-white {
  color: #000;
  background: #ffffff;
}

.button.is-white:hover {
  color: #000;
  background: #f3f3f3;
}

.button.is-gray-border {
  border-color: #e3e8ec;
}

.button.is-gray-border:hover {
  color: #7e848a;
  border-color: #d7dfe6;
}

.button.is-red-border {
  color: #ea5959;
  border-color: #ea5959;
}

.button.is-red-border:hover {
  color: #fff;
  background: #ea5959;
}

/* table */
.table-responsive {
  display: block;
  width: 100%;
  padding: 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.table th, .table td {
  vertical-align: top;
  padding: 10px 15px;
  border-bottom: 1px solid #e0e3ef;
}

.table tr:last-child td {
  border-bottom: 0;
}

.table thead th {
  color: #414852;
  font-weight: 700;
  text-align: left;
}

/* table size */
.table_sm th, .table_sm td {
  padding: 7px 12px;
  font-size: 12px;
}

.table_lg th, .table_lg td {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* table middle */
.table_middle td, .table_middle .checkbox {
  vertical-align: middle;
}

/* table striped */
.table_striped tbody tr:nth-of-type(odd) {
  background: #ebecf1;
}

.table_striped tbody td {
  border-bottom: 0;
}

/* table border */
.table_border {
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 1px #ebecf1;
  box-shadow: 0 0 0 1px #ebecf1;
}

/* table bordered */
.table_bordered th, .table_bordered td {
  border: 1px solid #f0f3f5 !important;
}

.table tbody tr:hover {
  background: #eef0f9;
}

/* table align */
.table.t-center thead th {
  text-align: center;
}

/* table color */
th.is-blue {
  color: #fff !important;
  background: #456792;
  border-color: #3f5f88;
}

td.is-blue {
  color: #fff !important;
  background: #4f73a1;
}

.table_striped tbody tr:nth-of-type(odd) td.is-blue {
  background: #456792;
}

/* text color */
.t-green {
  color: #009900;
}

.t-red {
  color: #fb4444;
}

.t-blue {
  color: #0066ff;
}

.t-gray {
  color: #9aa4b5;
}

.t-white {
  color: #fff;
}

/* text weight */
.t-bold {
  font-weight: 700 !important;
}

.t-medium {
  font-weight: 500 !important;
}

.t-normal {
  font-weight: 400 !important;
}

/* text style */
.t-italic {
  font-style: italic !important;
}

/* text align */
.t-left {
  text-align: left !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

.t-justify {
  text-align: justify !important;
}

.t-nowrap {
  white-space: nowrap !important;
}

/* align */
.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

/* ui form */
.ui-form.is-loading {
  cursor: wait;
  opacity: 0.3;
}

.ui-form.is-loading .ui-form__content {
  pointer-events: none;
}

.ui-form__field {
  margin-bottom: 20px;
}

.ui-form__field:last-child {
  margin-bottom: 0;
}

.ui-form__note {
  display: inline-block;
  margin-top: 7px;
  font-size: 12px;
  color: #989fa7;
}

.ui-form__label + .ui-form__note {
  margin: 0 0 7px 7px;
}

.ui-form__label {
  display: inline-block;
  margin-bottom: 7px;
  font-weight: 500;
}

.ui-form__notice, .ui-form__success {
  display: none;
  padding: 8px 12px;
  font-weight: 500;
  color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ui-form__notice {
  margin-top: 10px;
  background: #de6a6a;
}

.ui-form__success {
  text-align: center;
  background: #2fa762;
}

.ui-form__agreement {
  margin-top: 10px;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #b2b2b2;
}

.ui-form__agreement a {
  color: #999;
}

.ui-form__field + .ui-form__field > .checkbox-agreement {
  margin-top: 24px;
}

.col-label {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 9px;
}

.col-label_sm {
  padding-top: 8px;
  padding-bottom: 7px;
}

/* form error */
.ui-form__field.is-error .input {
  background: #ffe4e4;
  border-color: #efbfbf;
}

.ui-form__field.is-error .checkbox-agreement .checkbox__box {
  background: #ffe4e4;
  border-color: #efbfbf;
}

/* ui popup */
.ui-popup {
  position: relative;
  width: 500px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ui-popup_fluid {
  width: 100%;
  max-width: 1240px;
}

.ui-popup__desc {
  color: #515761;
}

.ui-popup__body {
  margin-top: 30px;
}

.open-popup, .img-popup {
  cursor: pointer;
}

/* ui icon */
.ui-icon {
  fill: currentColor;
}

/* ui text border */
.ui-text-border {
  overflow: hidden;
  margin: 15px 0;
  font-size: 12px;
  text-align: center;
  color: #989fa7;
}

.ui-text-border:before, .ui-text-border:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 1px;
  margin: 0 10px;
  background: #e3e8ec;
}

.ui-text-border:before {
  margin-left: -100%;
}

.ui-text-border:after {
  margin-right: -100%;
}

.ui-text-border:first-child {
  margin-top: 0;
}

/* ui img */
.ui-img-fluid {
  max-width: 100%;
  height: auto;
}

.ui-img-thumb {
  max-width: 100%;
  height: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid #f0f3f5;
}

.ui-img-thumb_rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.ui-img-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ui-img-banner {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ui-cover */
.ui-cover {
  position: relative;
  height: 250px;
}

.ui-cover__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}

/* ui img box */
.ui-img-box {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;ç-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
}

.ui-img-box_rounded {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ui-img-box_circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.ui-img-box img {
  max-width: 100%;
  max-height: 100%;
}

/* ui gallery */
.ui-gallery__item {
  margin: 10px 0;
}

.ui-gallery__item img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 140px;
  cursor: pointer;
}

.ui-gallery.row-cols-4 img {
  height: 200px;
}

.ui-gallery__item img:hover {
  opacity: .8;
}

/* ui video slider */
.ui-carousel.is-video .ui-carousel__item {
  height: 300px;
}

/* ui list */
ol.ui-list {
  counter-reset: list;
  list-style: none !important;
}

ol.ui-list li, ul.ui-list li {
  position: relative;
  margin: 0 0 15px 45px !important;
}

ol.ui-list li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  margin-top: -2px;
  margin-left: -45px;
  padding: 2px 10px;
  color: #487498;
  background: #cddbe6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

ul.ui-list {
  list-style: none !important;
}

ul.ui-list li:before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  margin-top: -1px;
  margin-left: -45px;
  background: #f0f1f9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232869cb' width='24px' height='24px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z'/%3E%3C/svg%3E") 5px 0 no-repeat;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* ui typography */
.ui-typography p {
  font-size: 16px;
}

.ui-typography ul, .ui-typography ol {
  font-size: 16px;
  line-height: 26px;
}

.ui-typography ul {
  list-style: disc;
}

.ui-typography ol {
  list-style: decimal;
}

.ui-typography ul li, .ui-typography ol li {
  margin: 0 0 12px 20px;
}

.ui-typography ul li:last-child, .ui-typography ol li:last-child {
  margin-bottom: 0;
}

.ui-typography .table {
  margin-bottom: 20px;
}

.ui-typography .table:last-child {
  margin-bottom: 0;
}

.ui-typography img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: top;
}

/* header */
.header {
  background: #fff;
  -webkit-box-shadow: inset 0 -1px 0 #f0f3f5;
  box-shadow: inset 0 -1px 0 #f0f3f5;
}

.header__inner {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  height: 60px;
}

.header__logo, .header__actions, .header__contact {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
}

.header__logo img {
  display: block;
  width: 120px;
}

.header__location {
  display: flex;
  align-items: center;
  margin-top: 6px;
  font-size: 13px;
}

.header__location svg {
  position: relative;
  top: -1px;
  margin-right: 4px;
  width: 12px;
  height: 12px;
  fill: #e1645e;
}

.header__nav {
  flex-grow: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  margin: 0 30px;
}

/* navbar */
.navbar {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-around;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  height: 60px;
}

.navbar__link {
  display: block;
  padding: 0 10px;
  font-size: 12px;
  line-height: 60px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

.navbar__item:hover .navbar__link, .navbar__item.is-current .navbar__link {
  color: #f54a3f;
  -webkit-box-shadow: inset 0 -4px 0 #f54a3f;
  box-shadow: inset 0 -4px 0 #f54a3f;
}

.header__actions {
  margin-left: 25px;
}

.header__actions .button {
  text-transform: uppercase;
}

/* header contact */
.header__contact {
  font-size: 15px;
  line-height: 16px;
  font-weight: 500;
  text-align: right;
}

.header__contact-item_email {
  display: inline-block;
  border-top: 1px solid #e1e2e2;
  font-size: 13px;
}

.header__contact a {
  color: #d62929;
}

.header__contact svg {
  position: relative;
  top: -2px;
  margin-right: 3px;
  color: #5ba037;
}

/* section */
.section {
  position: relative;
  padding: 60px 0;
}

.section.is-gray {
  background: #f7f8fb;;
}

.section__desc {
  max-width: 700px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #515761;
}

.section__desc.t-center {
  margin: 0 auto;
}

.section__desc_fluid {
  max-width: 100%;
}

.section__body {
  margin-top: 40px;
}

/* content */
.content {
  position: relative;
  flex-grow: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
}

.content__inner {
  padding-top: 20px;
  padding-bottom: 40px;
}

/* banner */
.banner-main img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* product */
.product-cat-list {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.product-cat-list .product-cat {
  margin-right: 20px;
}

.product-cat-list .product-cat:last-child {
  margin-right: 0;
}

.product-cat {
  position: relative;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  height: 150px;
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 14px 0 rgba(130, 131, 131, 0.1);
  box-shadow: 0 4px 14px 0 rgba(130, 131, 131, 0.1);
  cursor: pointer;
}

.product-cat__cover, .product-cat__cover:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.product-cat__cover {
  opacity: 0;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
}

.product-cat__cover:before {
  content: '';
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(29, 29, 33, 0.8) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(29, 29, 33, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(29, 29, 33, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1d1d21a6', GradientType=0);
}

.product-cat__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-cat__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
}

.product-cat__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.product-cat__count {
  margin-top: 10px;
  font-size: 13px;
  color: #b2b6c7;
}

.product-cat:hover .product-cat__cover, .product-cat.is-active .product-cat__cover {
  opacity: 1;
}

.product-cat:hover .product-cat__title, .product-cat.is-active .product-cat__title {
  color: #fff;
}

.product-cat:hover .product-cat__count, .product-cat.is-active .product-cat__count {
  color: rgba(255, 255, 255, 0.7);
}

/* product card */
.product-card {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.product-card__side {
  position: relative;
  -ms-flex: 0 0 140px;
  flex: 0 0 140px;
  max-width: 140px;
  padding-top: 10px;
}

.product-card__more {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .9;
}

.product-card__cover img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.product-card__main {
  flex-grow: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  margin-left: -20px;
  padding: 2px 0 4px 20px;
  background: rgb(247 248 251 / 81%);
  border-left: 1px solid #e8ebf1;
  z-index: 1;
}

.product-card__name {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #2869cb;
  border-bottom: 1px solid #b5ccef;
}

.product-card__desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}

.product-card__properties {
  margin-top: 5px;
  font-size: 13px;
  color: #58585f;
}

.product-card__properties li span {
  margin-left: 5px;
  font-weight: 500;
  color: #515761;
}

.product-card__order {
  margin-top: 10px;
}

.product-card__order .button {
  font-size: 11px;
  text-transform: uppercase;
}

.product-card:hover .product-card__name {
  color: #f55403;
  border-color: #ffbe9d;
}

.product-card.is-hide {
  opacity: .4;
}

@media screen and (min-width: 768px) {
  .product-card_lg {
    padding: 30px;
  }

  .product-card_lg .product-card__side {
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    max-width: 170px;
  }

  .product-card_lg .product-card__main {
    margin-left: 20px;
  }
}

.product-card_lg {
  padding: 15px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 14px 0 rgba(130, 131, 131, 0.1);
  box-shadow: 0 4px 14px 0 rgba(130, 131, 131, 0.1);
}

.product-card_lg .product-card__main {
  background: rgb(255 255 255 / 84%);
}

/* section banner */
.section-banner {
  padding: 50px 0;
  background: #30408d;
  z-index: 1;
}

.section-banner:before, .section-banner:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.section-banner:after {
  height: 40%;
  width: 50%;
  left: auto;
  background: #ff3434;
}

.section-banner:before {
  height: 25%;
  background: #f7f8fb;
}

/* section indicators */
.section-indicators {
  padding-bottom: 0 !important;
  background: -moz-linear-gradient(top,  rgba(247,248,251,0) 0%, rgba(247,248,251,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(247,248,251,0) 0%,rgba(247,248,251,1) 100%);
  background: linear-gradient(to bottom,  rgba(247,248,251,0) 0%,rgba(247,248,251,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f7f8fb', endColorstr='#f7f8fb',GradientType=0 );
}

.indicator {
  position: relative;
}

.indicator:before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='140' height='140' viewBox='0 0 140 140'%3E%3ClinearGradient id='linear-gradient' x1='140' y1='0' x2='0' y2='50' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f7f8fb'/%3E%3Cstop offset='1' stop-color='%23b6c0c4' stop-opacity='0'/%3E%3C/linearGradient%3E%3Ccircle fill='url(%23linear-gradient)' cx='70' cy='70' r='70'/%3E%3C/svg%3E%0A") 0 0 no-repeat;
  background-size: contain;
  z-index: -1;
}

.indicator__value {
  font-size: 50px;
  line-height: 1;
  font-family: 'Fira Sans', sans-serif;
  color: #2869cb;
}

.indicator__desc {
  max-width: 200px;
  padding: 4px 0;
  font-size: 18px;
  line-height: 24px;
}

/* section profit */
.profit-card-list .profit-card {
  margin-bottom: 40px;
}

.profit-card-list .profit-card:last-child {
  margin-bottom: 0;
}

.profit-card {
  padding: 30px 40px;
  background: #f7f8fb;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/* section about */
.section-about {
  background: rgb(37,138,239);
  background: -moz-linear-gradient(-45deg,  rgba(37,138,239,1) 0%, rgba(46,66,158,1) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(37,138,239,1) 0%,rgba(46,66,158,1) 100%);
  background: linear-gradient(135deg,  rgba(37,138,239,1) 0%,rgba(46,66,158,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#258aef', endColorstr='#2e429e',GradientType=1 );
}

.section-about .ui-img-thumb {
  -webkit-box-shadow: 0 36px 100px 0 rgb(41 77 170 / 80%);
  box-shadow: 0 36px 100px 0 rgb(41 77 170 / 80%);
}

/* section promo */
.section-promo .ui-img-box {
  height: 150px;
}

/* section files */
.section-files {
  padding: 20px 0 !important;
  border-bottom: 1px solid #e9eaf1;
}

/* services list */
.services-list {
  padding: 30px 40px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 14px 0 rgba(130, 131, 131, 0.1);
  box-shadow: 0 4px 14px 0 rgba(130, 131, 131, 0.1);
}

.services-list .ui-img-box {
  height: 140px;
}

.services-list .h5 {
  max-width: 170px;
  margin: 0 auto;
}

/* roof list */
.roof-list {
  margin: 50px 0;
  padding: 10px 20px;
  background: #eeeff3;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/* section benefits */
.section-benefits {
  background: url("../img/bg-cable.png") no-repeat;
  background-size: cover;
}

.section-benefits .ui-img-box {
  height: 100px;
}

/* section use */
.section-use {
  padding-bottom: 0;
}

.section-use__inner {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -ms-flex-align: end;
  align-items: flex-end;
}

.section-use__cover {
  position: relative;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  max-width: 240px;
  margin-right: 50px;
}

.section-use__cover img {
  display: block;
}

.section-use__label {
  position: absolute;
  bottom: 20px;
  left: 80px;
  z-index: 1;
}

.section-use__label img {
  max-width: 300px;
}

.section-use__content {
  padding-bottom: 60px;
}

/* file card */
.file-card {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 160px;
  padding: 10px 20px 24px 10px;
  font-weight: 500;
  text-align: left;
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 2px #e9eaf1;
  box-shadow: 0 1px 2px #e9eaf1;
}

.file-card__badge {
  position: absolute;
  bottom: 0;
  right: 0;
}

.file-card__badge:before, .file-card__badge:after  {
  content: '';
  width: 50px;
  height: 26px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.file-card__badge:before {
  position: absolute;
  bottom: -6px;
  right: -18px;
}

.file-card__badge:after {
  position: relative;
  display: block;
  bottom: -4px;
  right: -16px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.file-card__badge.is-pdf:before {
  background: #ee3900;
  -webkit-box-shadow: inset 0 -3px 8px #cc3508;
  box-shadow: inset 0 -3px 8px #cc3508;
}

.file-card__badge.is-pdf:after {
  content: 'pdf';
  color: #ffb8a2;
}

.file-card__title {
  height: 46px;
  font-size: 13px;
  line-height: 15px;
  overflow: hidden;
}

.file-card__size {
  position: absolute;
  bottom: 8px;
  font-size: 11px;
  line-height: 1;
  color: #787c84;
}

/* city card */
.city-card {
  max-width: 150px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.city-card__title {
  padding: 6px 10px;
  text-transform: uppercase;
  color: #e7ebf5;
  background: #626b86;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.city-card__actions {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 15px;
  color: #e7ebf5;
  background: #505661;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
}

.city-card:hover .city-card__actions {
  background: #838ba9;
}

/* button whatsapp */
.button-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 5;
}

.button-whatsapp svg {
  display: block;
}

/* footer */
.footer {
  padding: 60px 0 40px;
  background: #f7f8fb url("../img/russia.svg") 0 60px no-repeat;
  background-size: cover;
}

.footer__title, .footer__desc, .foot-contacts__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  font-family: 'Fira Sans', sans-serif;
}

.footer__desc {
  margin-top: 8px;
  font-size: 26px;
  line-height: 32px;
  color: #515761;
}

.footer__body {
  margin-top: 50px;
}

.foot-contacts__item {
  margin-bottom: 15px;
}

.foot-contacts__item:last-child {
  margin-bottom: 0;
}

.foot-contacts__title {
  font-size: 20px;
  line-height: 28px;
}

.foot-contacts__title.is-phone {
  font-size: 26px;
  color: #475bbb;
}

.foot-contacts__desc {
  color: #787c84;
}

.footer__bottom {
  margin-top: 60px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #4f5561;
}


/* Cookies */

.cookies {
  display: none;
  align-items: center;
  justify-content: space-between;
  row-gap: 25px;
  column-gap: 40px;
  position: fixed;
  z-index: 99999;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 25px;
  width: 90%;
  max-width: 740px;
  background: #2869cb;
  border-radius: 10px;
}

.cookies.is-active {
  display: flex;
}

.cookies__text {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.cookies__text a {
  color: #ffffff;
  border-bottom: 1px dashed;
}

.cookies__button {
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .cookies {
    left: 15px;
    right: 15px;
    flex-direction: column;
    width: auto;
    max-width: 100%;
    transform: none;
  }
  .cookies__button {
    width: 100%;
  }
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  padding: 0 !important;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Owl Carousel - Auto Height Plugin */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*	Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url('../img/owl.video.play.png') no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* style owl */
.owl-nav button {
  position: absolute;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
}

.owl-nav .owl-prev {
  left: -22px;
}

.owl-nav .owl-next {
  right: -22px;
}

.owl-nav button svg {
  width: 44px;
  height: 44px;
  color: #fff;
  background: #2869cb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.owl-nav button:hover svg {
  background: #3b7bda;
}

.owl-nav button.disabled {
  display: none;
}

.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.owl-dot {
  margin: 0 4px;
}

.owl-dot span {
  display: block;
  height: 4px;
  width: 16px;
  background: #858c92;
}

.owl-dot.active span {
  background: #2869cb;
}

@media screen and (max-width: 599px) {
  .owl-nav .owl-prev {
    left: -10px;
  }
  .owl-nav .owl-next {
    right: -10px;
  }
}

/* Engineer help */
.engineer-help {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  margin: 60px 0;
}

.engineer-help__cover {
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  max-width: 250px;
}

.engineer-help__cover img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  padding: 20px;
  background-color: #ffffff;
  border: 3px solid #eee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.engineer-help__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 50px;
}

/*.engineer-help__title {
  font-size: 32px;
  line-height: 38px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}*/

.engineer-help__title span {
  color: #ce0e0e;
}

.engineer-help__desc {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-top: 30px;
}

/* .engineer-help__desc-icon i {
  width: 76px;
  height: 76px;
  background: #f1f1f1;
  color: #d44045;
  text-align: center;
  font-size: 46px;
  line-height: 76px !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0 20px 30px -20px rgb(74, 61, 14);
  -webkit-box-shadow: 0 20px 30px -20px rgb(74, 61, 14);
} */
.engineer-help__desc-icon i {
  color: #d44045;
  font-size: 76px;
}

.engineer-help__desc-info {
  font-size: 17px;
  line-height: 24px;
}

.engineer-help__desc-info .ui-list li {
  margin-bottom: 7px;
}

.form-engineer-help {
  margin-top: 20px;
  padding: 8px 15px;
  background: #e1e5f1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.form-engineer-help .row {
  margin-left: -5px;
  margin-right: -5px;
}

.form-engineer-help [class^=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

.form-engineer-help .form-block {
  margin-top: 7px;
}

.form-engineer-help .form-block__cell {
  margin-top: 12px;
}

.form-engineer-help .form-block__cell:first-child {
  margin-top: 0;
}

.form-engineer-help .input, .form-engineer-help .textarea {
  border-color: transparent;
}

.form-engineer-help .textarea {
  min-height: 80px !important;
}

.form-engineer-help .button {
  height: 80px;
  width: 100%;
}

.form-engineer-help .ui-form__agreement a {
  color: #747474;
}

.form-engineer-help .ui-form__agreement a {
  color: #9f5f5f;
}

.engineer-help__notice {
  margin-top: 5px;
  text-align: center;
  color: #ce0e0e;
}


@media screen and (max-width: 1023px) {
  .engineer-help__cover {
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    max-width: 180px;
  }
}

@media screen and (max-width: 900px) {
  .engineer-help {
    flex-direction: column;
  }
  .engineer-help__cover {
    margin: 0 auto 20px;
  }
  .engineer-help__title {
    text-align: center;
  }
  .engineer-help__content {
    padding: 0;
  }
  .form-engineer-help .textarea {
    min-height: 92px !important;
  }
  .form-engineer-help .button {
    height: 92px;
  }
}

@media screen and (max-width: 575px) {
  .form-engineer-help .textarea {
    margin: 12px 0;
  }
}
