*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.5;
  height: 100%;
  color: #262626;
  overflow-x: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  vertical-align: baseline;
}

input,
button,
textarea {
  font-family: inherit;
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
}

input::placeholder,
textarea::placeholder {
  color: #afafaf;
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

em,
i {
  font-style: italic;
}

b,
strong {
  font-weight: 600;
}

#main {
  background: #fff;
}




.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

.container {
  /*line-height: normal;*/
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 769px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 769px) {
  .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {
  .col, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {
  .col, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}

.clearfix,
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

  .clearfix:after,
  .container:after,
  .container-fluid:after,
  .row:after {
    clear: both;
  }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.slideout-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 320px;
  overflow-y: auto;
  display: none;
}

.slideout-panel {
  position: relative;
  z-index: 1;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

  .slideout-open .slideout-menu {
    display: block;
  }

.title {
  font-size: 19px;
  text-transform: uppercase;
}

  .title.-h1 {
    font-size: 50px;
  }

  .title.-h2 {
    font-size: 42px;
  }

  .title.-h3 {
    font-size: 32px;
  }

  .title.-h4 {
    font-size: 19px;
  }

  .title.-small {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 500;
    line-height: 29px;
  }

.text {
  font-size: 17px;
  line-height: 27px;
}

  .text.-medium {
    font-size: 19px;
    line-height: 29px;
  }

@media (max-width: 992px) {
  .title.-h1 {
    font-size: 40px;
  }

  .title.-h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .title.-h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (max-width: 769px) {
  .title.-h1 {
    font-size: 35px;
  }

  .title.-h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .title.-h3 {
    font-size: 22px;
    line-height: 28px;
  }
}

.select {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

  .select select {
    width: 100%;
    position: absolute;
    left: -9999em;
  }

  .select.-wide {
    width: 100%;
  }

.select.-on_dark .select2-selection {
    background-color: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
  }

    .select.-on_dark .select2-selection:after {
      opacity: 0.5;
    }

  .select.-on_dark .select2-selection__placeholder {
    color: #fff;
  }

  .select.-on_dark .select2-container--focus .select2-selection,
  .select.-on_dark .select2-container--open .select2-selection {
    border-color: rgba(255,255,255,0.4);
  }

.select2 {
  width: 100% !important;
  display: block;
}

.select2-selection {
  display: block;
  width: 100%;
  outline: none;
  user-select: none;
  cursor: pointer;
  height: 54px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  border: 2px solid #e9e9e9;
  background: #fcfcfc;
  color: #262626;
  border-radius: 3px;
}

  .select2-selection:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    border-color: #d1d1d1 transparent transparent transparent;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin: -2px 0 0;
    content: '';
    background-size: 100% 100%;
  }

  .select2-selection .select2-search {
    border: 0;
  }

  .select2-selection:hover {
    border-color: #e1e1e1;
  }

.select2-selection__placeholder {
  color: #262626;
  opacity: 0.3;
}

.select2-selection__rendered:empty:before {
  visibility: hidden;
  content: '\007C\00a0\00a0';
}

.select2-search {
  display: block;
}

.select2-search__field {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
  padding: 8px 9px;
  width: 100%;
  appearance: none;
}

.select2-search--hide {
  display: none;
}

.select2-dropdown {
  position: absolute;
  margin: 6px 0 0;
  z-index: 10000;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 7px rgba(0,0,0,0.15);
  font-size: 15px;
}

  .select2-dropdown .select2-results {
    display: block;
    padding: 5px 0;
  }

    .select2-dropdown .select2-results li {
      cursor: pointer;
      padding: 10px 20px;
      margin: 11px 0 0;
      position: relative;
    }

      .select2-dropdown .select2-results li:before {
        display: block;
        width: 100%;
        height: 1px;
        background: #f0f0f0;
        position: absolute;
        top: -6px;
        left: 0;
        content: '';
      }

      .select2-dropdown .select2-results li:first-child {
        margin: 0;
      }

        .select2-dropdown .select2-results li:first-child:before {
          display: none;
        }

      .select2-dropdown .select2-results li[aria-disabled=true] + .select2-dropdown .select2-results li {
        margin: 0;
      }

        .select2-dropdown .select2-results li[aria-disabled=true] + .select2-dropdown .select2-results li:before {
          display: none;
        }

  .select2-dropdown .select2-results__option--highlighted {
    color: #fff;
    background: #3499e0;
  }

  .select2-dropdown .select2-results > .select2-results__options {
    max-height: 200px;
    overflow: auto;
  }

.select2-dropdown--above {
  margin: 0 0 6px;
}

li[aria-disabled="true"] {
  display: none;
}

.slick-slider .slick-track {
  padding-top: 1px;
  padding-bottom: 1px;
  margin-top: -1px;
  margin-bottom: -1px;
}

.slick-slider .slick-slide {
  outline: none;
}

  .slick-slider .slick-slide img,
  .slick-slider .slick-slide a {
    outline: none;
  }

.slick-slider .slick-dots {
  text-align: center;
}

  .slick-slider .slick-dots > li {
    display: inline-block;
    position: relative;
    width: 20px;
    vertical-align: top;
    margin: 0;
  }

    .slick-slider .slick-dots > li button {
      display: block;
      width: 20px;
      height: 20px;
      text-indent: -9999px;
      margin: -5px 0;
      position: relative;
    }

      .slick-slider .slick-dots > li button:before {
        position: absolute;
        top: 5px;
        left: 5px;
        display: block;
        width: 10px;
        height: 10px;
        background-color: #ababab;
        content: '';
        border-radius: 50%;
        opacity: 0.3;
        text-indent: -9999px;
      }

    .slick-slider .slick-dots > li.slick-active button:before {
      opacity: 1;
    }

.button {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 3px;
  color: #000;
  padding: 14px 20px;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  background-color: #fff;
  transition: color 0.2s, background-color 0.2s;
}

  .button:active {
    box-shadow: inset 0 2px 0 rgba(0,0,0,0.2);
  }

  .button.-bordered {
    border: 2px solid #000;
    padding: 12px 18px;
    background-color: transparent;
  }

    .button.-bordered:active {
      border: 0;
      padding: 14px 20px;
    }

  .button.-white {
    background-color: #fff;
    color: #262626;
  }

    .button.-white:hover {
      background-color: #e6e6e6;
    }

    .button.-white.-bordered {
      background-color: transparent;
      color: #fff;
    }

      .button.-white.-bordered:hover {
        background-color: #fff;
      }

  .button.-green {
    background-color: #8eb220;
    color: #fff;
  }

    .button.-green:hover {
      background-color: #80a01d;
    }

    .button.-green.-bordered {
      background-color: transparent;
      color: #8eb220;
      border-color: #8eb220;
    }

      .button.-green.-bordered:hover {
        background-color: #80a01d;
        border-color: #80a01d;
        color: #fff;
      }

  .button.-blue_light {
    background-color: #59bcdb;
    color: #fff;
  }

    .button.-blue_light:hover {
      background-color: #40b2d6;
    }

    .button.-blue_light.-bordered {
      background-color: transparent;
      color: #59bcdb;
      border-color: #59bcdb;
    }

      .button.-blue_light.-bordered:hover {
        background-color: #40b2d6;
        border-color: #40b2d6;
        color: #fff;
      }

  .button.-blue_dark {
    background-color: #0b66a2;
    color: #fff;
  }

    .button.-blue_dark:hover {
      background-color: #0a5c92;
    }

    .button.-blue_dark.-bordered {
      background-color: transparent;
      color: #0b66a2;
      border-color: #0b66a2;
    }

      .button.-blue_dark.-bordered:hover {
        background-color: #0a5c92;
        border-color: #0a5c92;
        color: #fff;
      }

  .button.-picton_blue {
    background-color: #34c1e4;
    color: #fff;
  }

    .button.-picton_blue:hover {
      background-color: #1eb8de;
    }

    .button.-picton_blue.-bordered {
      background-color: transparent;
      color: #34c1e4;
      border-color: #34c1e4;
    }

      .button.-picton_blue.-bordered:hover {
        background-color: #1eb8de;
        border-color: #1eb8de;
        color: #fff;
      }

  .button.-emerald {
    background-color: #5cc67b;
    color: #fff;
  }

    .button.-emerald:hover {
      background-color: #47be6a;
    }

    .button.-emerald.-bordered {
      background-color: transparent;
      color: #5cc67b;
      border-color: #5cc67b;
    }

      .button.-emerald.-bordered:hover {
        background-color: #47be6a;
        border-color: #47be6a;
        color: #fff;
      }

  .button.-red {
    background-color: #ed5151;
    color: #fff;
  }

    .button.-red:hover {
      background-color: #ea3434;
    }

    .button.-red.-bordered {
      background-color: transparent;
      color: #ed5151;
      border-color: #ed5151;
    }

      .button.-red.-bordered:hover {
        background-color: #ea3434;
        border-color: #ea3434;
        color: #fff;
      }

  .button.-waikawa_gray {
    background-color: #6975a6;
    color: #fff;
  }

    .button.-waikawa_gray:hover {
      background-color: #5b6799;
    }

    .button.-waikawa_gray.-bordered {
      background-color: transparent;
      color: #6975a6;
      border-color: #6975a6;
    }

      .button.-waikawa_gray.-bordered:hover {
        background-color: #5b6799;
        border-color: #5b6799;
        color: #fff;
      }

  .button.-waikawa_red {
    background-color: #ff3033;
    color: #000;
  }

    .button.-waikawa_red:hover {
      background-color: #ed5151;
    }

    .button.-waikawa_red.-bordered {
      background-color: transparent;
      color: #000;
      border-color: #ff3033;
    }

      .button.-waikawa_red.-bordered:hover {
        background-color: #ed5151;
        border-color: #ed5151;
        color: #fff;
      }

  .button.-venice_blue {
    background-color: #0a568a;
    color: #fff;
  }

    .button.-venice_blue:hover {
      background-color: #094d7c;
    }

    .button.-venice_blue.-bordered {
      background-color: transparent;
      color: #0a568a;
      border-color: #0a568a;
    }

      .button.-venice_blue.-bordered:hover {
        background-color: #094d7c;
        border-color: #094d7c;
        color: #fff;
      }

  .button.-arrowed .button--inner:after {
    content: '\f14c';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    font-size: 17px;
    margin: 0 0 0 7px;
    position: relative;
    top: 1px;
  }

  .button.-arrowed.-large .button--inner:after {
    margin-right: -8px;
  }

  .button.-arrow_on_hover .button--inner {
    position: relative;
    margin: 0 -10px;
    padding: 0 10px;
    transition: padding 0.2s;
  }

    .button.-arrow_on_hover .button--inner i {
      position: absolute;
      top: 50%;
      right: 5px;
      opacity: 0;
      color: #fff;
      transition: all 0.2s;
      font-size: 15px;
      margin: -7px 0 0;
    }

  .button.-arrow_on_hover:hover .button--inner {
    padding: 0 20px 0 0;
  }

  .button.-arrow_on_hover:hover i {
    opacity: 1;
    right: 0;
  }

  .button.-arrow_on_hover.-large:hover .button--inner {
    padding: 0 20px 0 0;
  }

    .button.-arrow_on_hover.-large:hover .button--inner i {
      opacity: 1;
      right: -5px;
    }

  .button.-large {
    font-size: 17px;
    padding: 16px 30px;
  }

    .button.-large.-bordered {
      padding: 14px 28px;
    }

      .button.-large.-bordered:active {
        padding: 16px 30px;
      }

  .button.-wide {
    display: block;
    width: 100%;
  }

  .button.-menu_size {
    padding: 12px 20px;
  }

    .button.-menu_size.-bordered {
      padding: 10px 18px;
    }

      .button.-menu_size.-bordered:active {
        padding: 12px 20px;
      }

@media (max-width: 769px) {
  .button {
    white-space: normal;
    font-size: 13px;
    padding: 12px 16px;
  }

    .button .button--inner {
      padding: 0 !important;
      margin: 0 !important;
    }

    .button.-bordered {
      padding: 10px 12px;
    }

    .button.-with_arrow:hover i {
      display: none;
    }

    .button.-large {
      font-size: 15px;
      padding: 14px 24px;
    }
}

.field {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

  .field input,
  .field textarea {
    width: 100%;
    background: #fcfcfc;
    border: 2px solid #e9e9e9;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
    resize: none;
    border-radius: 3px;
    vertical-align: top;
    color: #262626;
  }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #262626;
      opacity: 0.35;
      transition: opacity 0.3s ease;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: #34c1e4;
    }

      .field input:focus::placeholder,
      .field textarea:focus::placeholder {
        color: #afafaf;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

  .field.-medium input,
  .field.-medium textarea {
    font-size: 17px;
    line-height: 27px;
    padding: 14px 20px;
  }

  .field.-wide {
    display: block;
  }

  .field.-on_dark input,
  .field.-on_dark textarea {
    background-color: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
  }

    .field.-on_dark input::placeholder,
    .field.-on_dark textarea::placeholder {
      color: #fff;
      opacity: 0.3;
      transition: opacity 0.3s ease;
    }

    .field.-on_dark input:focus,
    .field.-on_dark textarea:focus {
      border-color: rgba(255,255,255,0.4);
    }

      .field.-on_dark input:focus::placeholder,
      .field.-on_dark textarea:focus::placeholder {
        opacity: 0;
        transition: opacity 0.3s ease;
      }

.form--row {
  margin: 20px -20px 0;
}

  .form--row:first-of-type {
    margin-top: 0;
  }

.form--row_inner {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-spacing: 20px 0;
}

.form--col {
  display: table-cell;
}

.form--footer {
  margin: 20px 0 0;
}

.form--footer_buttons {
  text-align: right;
}

@media (max-width: 769px) {
  .form--row_inner,
  .form--row,
  .form--col {
    display: block;
    border-spacing: 0;
    margin: 0;
  }

  .form--col {
    margin: 15px 0 0;
  }
}

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 96px;
  height: 96px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

  .c-hamburger:focus {
    outline: none;
  }

  .c-hamburger span {
    display: block;
    position: absolute;
    top: 44px;
    left: 18px;
    right: 18px;
    height: 8px;
    background: #363636;
  }

    .c-hamburger span::before,
    .c-hamburger span::after {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 8px;
      background-color: #363636;
      content: "";
    }

    .c-hamburger span::before {
      top: -20px;
    }

    .c-hamburger span::after {
      bottom: -20px;
    }

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

  .c-hamburger--htx span::before,
  .c-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
  }

  .c-hamburger--htx span::before {
    transition-property: top, transform;
  }

  .c-hamburger--htx span::after {
    transition-property: bottom, transform;
  }

.c-hamburger--htx.is-active span,
.slideout-open .c-hamburger--htx span {
  background: none !important;
}

  .c-hamburger--htx.is-active span::before,
  .slideout-open .c-hamburger--htx span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .c-hamburger--htx.is-active span::after,
  .slideout-open .c-hamburger--htx span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  .c-hamburger--htx.is-active span::before,
  .slideout-open .c-hamburger--htx span::before,
  .c-hamburger--htx.is-active span::after,
  .slideout-open .c-hamburger--htx span::after {
    transition-delay: 0s, 0.3s;
  }

.topbar {
  padding: 13px 0;
  background: #383d61;
  color: #fff;
  font-size: 15px;
  position: relative;
  z-index: 1000;
}

  .topbar.-dark {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .topbar [class*=col] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .topbar .select_language {
    margin: 0 35px 0 0;
  }

  .topbar .follow_us {
    margin: 1px 0 0;
  }

  .topbar .topbar_contacts {
    margin-left: auto;
    padding: 2px 0 0;
  }

.topbar--right {
  width: 100%;
  text-align: right;
}

@media (max-width: 992px) {
  .topbar .topbar_contacts {
    float: left;
  }

  .topbar [class*=col] {
    margin: 15px 0 0;
  }

    .topbar [class*=col]:first-child {
      margin: 0;
    }
}

.header {
  background: #fff;
  position: relative;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

  .header.-backgroundless {
    background: none;
  }

.header--inner {
  padding: 25px 0;
}

.header--right {
  margin-left: auto;
}

.header--logo {
  position: relative;
  padding-top: 8px;
  z-index: 1;
}

.header--menu_opener {
  display: none;
  position: absolute;
  left: 12px;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0;
  z-index: 1;
  color: #fff;
  padding: 0;
}

  .header--menu_opener .c-hamburger {
    top: 2px;
    left: 2px;
    transform: scale(0.4) translate(-50%, -50%);
  }

  .header--menu_opener.-white .c-hamburger span,
  .header--menu_opener.-white .c-hamburger span:before,
  .header--menu_opener.-white .c-hamburger span:after {
    background: #fff;
  }

.header .container > .row {
  position: relative;
}

.header .row > [class*=col] {
  position: static !important;
}

.header_sticky {
  transform: translateY(-100%);
  transition: all 0.25s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 1001;
  opacity: 0;
}

  .header_sticky.-stick {
    transform: translateY(0);
    opacity: 1;
    will-change: transform;
  }

    .header_sticky.-stick.-backgroundless {
      background: #fff;
    }

@media (max-width: 1200px) {
  .header--logo {
    padding: 0;
  }

  .header--right {
    float: none;
    padding: 10px 0 0;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 0;
  }

  .header--logo {
    text-align: center;
  }

  .header--menu_opener {
    display: block !important;
    margin: -30px 0 0;
  }
}

@media (max-width: 769px) {
  .header--menu_opener {
    left: 0;
  }
}

.header_nav {
  display: inline-block;
}

  .header_nav.-right {
    float: right;
  }

.header_nav--phone {
  font-size: 15px;
  display: inline-block;
  padding: 5px 0 5px 37px;
  color: #fff;
  position: relative;
  margin: 0 0 0 18px;
  font-size: 18px;
}

  .header_nav--phone:before {
    width: 1px;
    height: 30px;
    background: #fff;
    opacity: 0.1;
    content: '';
    position: absolute;
    left: -23px;
    top: 0;
  }

  .header_nav--phone .bi_com-phone {
    transform: scale(-1, 1);
    font-size: 21px;
    position: absolute;
    top: 3px;
    left: 0;
  }

.header_nav.-wide {
  width: 100%;
  border-top: 1px solid #e9e9e9;
}

  .header_nav.-wide .header_nav--inner {
    max-width: 1140px;
    margin: 0 auto;
  }

@media (max-width: 1200px) {
  .header_nav.-wide .header_nav--inner {
    width: 940px;
  }
}

.header_search {
  display: inline-block;
  position: relative;
  margin-right: 25px;
}

.header_search--dropdown {
  display: none;
  background: #fff;
  width: 210px;
  border-radius: 3px;
  left: -180px;
  top: 35px;
  position: absolute;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

  .header_search--dropdown:before {
    content: '';
    position: absolute;
    display: block;
    left: 185px;
    top: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #fff transparent;
  }

  .header_search--dropdown input {
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    display: block;
    padding: 14px 15px;
  }

.header_search--opener {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
}

  .header_search--opener [class*=icons8] {
    display: block;
    font-size: 22px;
    transform: scale(-1, 1);
  }

  .header_search--opener.-active [class*=bi_]:before {
    color: #3499e0;
  }

.header_auth {
  display: inline-block;
}

  .header_auth > a {
    color: #3499e0;
    display: inline-block;
    padding: 0 30px 0 30px;
    position: relative;
    font-weight: 500;
  }

    .header_auth > a:hover {
      text-decoration: underline;
    }

    .header_auth > a:before {
      display: block;
      content: '';
      position: absolute;
      width: 1px;
      height: 25px;
      background: #e5e5e5;
      top: -5px;
      left: 0;
    }

.follow_us strong {
  display: inline-block;
  font-weight: 500;
}

.follow_us ul {
  display: inline-block;
}

  .follow_us ul li {
    display: inline-block;
    margin: 0 0 0 13px;
  }

.follow_us a {
  color: #fff;
  opacity: 0.3;
}

  .follow_us a:hover {
    opacity: 1;
  }

.follow_us.-mobile_sidebar {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

  .follow_us.-mobile_sidebar strong {
    display: none;
  }

  .follow_us.-mobile_sidebar ul {
    display: block;
    text-align: center;
    font-size: 20px;
  }

    .follow_us.-mobile_sidebar ul li {
      margin: 0 7px;
    }

.select_language {
  position: relative;
}

.select_language--opener {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
  position: relative;
  font-size: 15px;
  color: #fff;
  padding: 0 16px 0 26px;
  font-weight: 500;
  height: 20px;
  top: -1px;
}

  .select_language--opener:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin: -1px 0 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
  }

  .select_language--opener .select_language--opener_icon {
    font-size: 23px;
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translate(0, -50%);
  }

  .select_language--opener:hover {
    text-decoration: underline;
  }

.select_language--list {
  display: none;
  position: absolute;
  top: 27px;
  left: 30px;
  width: 150px;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  z-index: 1000;
  border-radius: 3px;
  background: #fff;
}

  .select_language--list > li {
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;
  }

    .select_language--list > li > a {
      color: #000;
      padding: 10px 0 10px 20px;
      display: block;
    }

      .select_language--list > li > a:hover {
        background: #1eb8de;
        color: #fff;
      }

    .select_language--list > li:last-child {
      border-bottom: none;
      border-radius: 0 0 3px 3px;
    }

  .select_language--list:before {
    content: '';
    position: absolute;
    display: block;
    left: 74px;
    top: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #fff transparent;
  }

.select_language.-opened .select_language--list {
  display: block;
}

.select_language.-mobile_sidebar {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

  .select_language.-mobile_sidebar .select_language--opener {
    display: block;
    width: 100%;
    color: #fff;
    padding: 17px 20px 17px 50px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.1);
    height: auto;
    text-decoration: none;
  }

    .select_language.-mobile_sidebar .select_language--opener:after {
      position: absolute;
      top: 50%;
      right: 16px;
      margin: -4px 0 0;
      display: block;
      border-style: solid;
      border-width: 4px 0 4px 4px;
      border-color: transparent transparent transparent #fff;
      content: '';
      opacity: 0.3;
    }

  .select_language.-mobile_sidebar .select_language--opener_icon {
    left: 20px;
  }

  .select_language.-mobile_sidebar .select_language--list {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background: none;
    box-shadow: none;
  }

    .select_language.-mobile_sidebar .select_language--list:before {
      display: none;
    }

    .select_language.-mobile_sidebar .select_language--list li {
      border: 0;
      padding: 0;
    }

    .select_language.-mobile_sidebar .select_language--list a {
      border-top: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.3);
      display: block;
      padding: 17px 20px 17px 40px;
    }

      .select_language.-mobile_sidebar .select_language--list a:hover {
        background: none;
      }

  .select_language.-mobile_sidebar.-opened .select_language--opener:after {
    transform: rotate(90deg);
  }

.topbar_contacts--item {
  display: inline-block;
  margin: 0 0 0 37px;
  padding: 0 0 0 27px;
  position: relative;
  color: #fff;
}

  .topbar_contacts--item span i {
    font-size: 20px;
    display: block;
    font-weight: 300;
    position: absolute;
    top: -4px;
    left: 0;
  }

    .topbar_contacts--item span i.icons8-message {
      margin-top: 0;
    }

    .topbar_contacts--item span i.icons8-talk {
      font-size: 24px;
      margin-top: -2px;
    }

  .topbar_contacts--item:first-child {
    margin: 0;
  }

.topbar_contacts.-mobile_sidebar .topbar_contacts--item {
  display: block;
  margin: 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 17px 20px;
}

  .topbar_contacts.-mobile_sidebar .topbar_contacts--item [class*=contact_] {
    display: block;
    padding: 0 20px 0 30px;
    position: relative;
  }

.topbar_contacts [class*=contact_] a {
  color: inherit;
}

  .topbar_contacts [class*=contact_] a:hover {
    text-decoration: underline;
  }

.section {
  padding: 50px 0;
  background-size: cover;
  background: #fff;
  position: relative;
}

.section--header {
  margin: -20px 0 70px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.section--title {
  font-size: 50px;
  font-weight: 300;
  text-align: center;
}

  .section--title.-left {
    text-align: left;
  }

.section--description {
  font-size: 20px;
  line-height: 30px;
  color: #9b9b9b;
  text-align: center;
  margin: 13px 0 0;
}

  .section--description.-left {
    text-align: left;
  }

.section--text .title.-h2 {
  margin: 0 0 35px;
}

.section--footer {
  text-align: center;
  padding: 70px 0 0;
}

.section.-odd {
  background: #f7f7f7;
}

.section.-bordered {
  border-top: 1px solid #e9e9e9;
}

.section.-hide {
  display: none;
}

.section.-dark_mode {
  background-color: #3a3d3d;
}

  .section.-dark_mode .section--title {
    color: #fff;
  }

  .section.-dark_mode .section--description {
    color: rgba(255,255,255,0.3);
  }

.section.-parallax {
  background-attachment: fixed !important;
}

.section.-compact {
  padding: 80px 0;
}

.section.-pattern {
  background-size: auto;
  background-repeat: repeat;
}

  .section.-pattern.-light {
    background-image: url("../images/pattern-light.png");
  }

  .section.-pattern.-dark {
    background-image: url("../images/pattern-dark.png");
  }

.section.-rounded {
  border-radius: 50%/50px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 150px;
  margin-left: -15px;
  margin-right: -15px;
}

  .section.-rounded + .section {
    margin-top: -50px;
    padding-top: 200px;
  }

.section.-paddingless {
  padding: 0 !important;
}

.section.-cut {
  overflow: hidden;
}

.section:nth-child(1) {
  z-index: 30;
}

.section:nth-child(2) {
  z-index: 29;
}

.section:nth-child(3) {
  z-index: 28;
}

.section:nth-child(4) {
  z-index: 27;
}

.section:nth-child(5) {
  z-index: 26;
}

.section:nth-child(6) {
  z-index: 25;
}

.section:nth-child(7) {
  z-index: 24;
}

.section:nth-child(8) {
  z-index: 23;
}

.section:nth-child(9) {
  z-index: 22;
}

.section:nth-child(10) {
  z-index: 21;
}

.section:nth-child(11) {
  z-index: 20;
}

.section:nth-child(12) {
  z-index: 19;
}

.section:nth-child(13) {
  z-index: 18;
}

.section:nth-child(14) {
  z-index: 17;
}

.section:nth-child(15) {
  z-index: 16;
}

.section:nth-child(16) {
  z-index: 15;
}

.section:nth-child(17) {
  z-index: 14;
}

.section:nth-child(18) {
  z-index: 13;
}

.section:nth-child(19) {
  z-index: 12;
}

.section:nth-child(20) {
  z-index: 11;
}

.section:nth-child(21) {
  z-index: 10;
}

.section:nth-child(22) {
  z-index: 9;
}

.section:nth-child(23) {
  z-index: 8;
}

.section:nth-child(24) {
  z-index: 7;
}

.section:nth-child(25) {
  z-index: 6;
}

.section:nth-child(26) {
  z-index: 5;
}

.section:nth-child(27) {
  z-index: 4;
}

.section:nth-child(28) {
  z-index: 3;
}

.section:nth-child(29) {
  z-index: 2;
}

.section:nth-child(30) {
  z-index: 1;
}

.section_divider {
  height: 1px;
  background: #e9e9e9;
  border: 0;
  width: 100%;
  display: block;
  padding: 0;
  margin: 0 auto;
}

  .section_divider.-narrow {
    max-width: 1170px;
  }

@media (max-width: 992px) {
  .section {
    padding: 50px 0 !important;
  }

  .section--header {
    margin: 0 0 30px;
  }

  .section--title {
    font-size: 40px;
  }

  .section--description {
    font-size: 17px;
    line-height: 24px;
    margin: 20px 0 0;
  }

    .section--description br {
      display: none;
    }

  .section--footer {
    padding-top: 50px;
  }

  .section.-rounded {
    border-radius: 50%/25px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 100px 0 125px !important;
  }

    .section.-rounded + .section {
      margin-top: -25px;
      padding-top: 125px !important;
      padding-bottom: 100px !important;
    }

  .section.-paddingless,
  .section.-paddingless.-rounded {
    padding: 0 !important;
  }
}

@media (max-width: 769px) {
  .section--title {
    font-size: 30px;
  }

  .section--footer .button {
    display: block;
    width: 100%;
  }
}

.notification {
  background: #34c1e4;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

.notification--inner {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 18px 30px;
}

.notification--close {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
  display: block;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  margin: -11px 0 0;
  font-size: 22px;
  color: #fff;
}

  .notification--close:hover {
    opacity: 1;
  }

@media (max-width: 769px) {
  .notification--inner {
    padding-right: 60px;
  }

  .notification--close {
    font-size: 18px;
    right: 10px;
  }
}

.footer {
  background-size: cover;
  position: relative;
}

.footer--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  top: 0;
  left: 0;
}

.footer--inner {
  position: relative;
  z-index: 1;
}

.footer.-blue_dark {
  background-color: #0b66a2;
}

.footer_main {
  position: relative;
  padding: 51px 0 0;
}

.footer_main--column_title {
  color: #fff;
  font-size: 17px;
  line-height: 29px;
  font-weight: 700;
  display: block;
}

@media (max-width: 1190px) {
  .footer_main--column {
    margin: 50px 0 0;
  }

  .footer_main [class*="col-"]:nth-child(1) .footer_main--column,
  .footer_main [class*="col-"]:nth-child(2) .footer_main--column {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .footer_main--column_title {
    text-align: center;
  }

  .footer_main [class*="col-"]:nth-child(2) .footer_main--column {
    margin: 50px 0 0;
  }
}

.footer_navigation {
  padding: 6px 15px 0 0;
}

.footer_navigation--item {
  display: block;
  position: relative;
  padding: 12px 25px 12px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

  .footer_navigation--item:before {
    position: absolute;
    content: "\eb14";
    display: block;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 3px;
    color: #fff;
    font-size: 12px;
    font-family: Budicon;
  }

.footer_navigation--link {
  color: #fff;
  font-size: 15px;
  line-height: 22px;
}

  .footer_navigation--link:hover {
    text-decoration: underline;
  }

@media (max-width: 769px) {
  .footer_navigation--item {
    width: 300px;
    margin: 0 auto;
  }

  .footer_navigation--item_wrap {
    margin: 0 !important;
  }

  .footer_navigation--item_nav {
    padding: 0 !important;
  }
}

.footer_copyrights {
  margin: 60px 0 0;
}

.footer_copyrights--container {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

.footer_copyrights--item_copyrights {
  font-size: 15px;
  color: #fff;
  opacity: 0.6;
  text-align: right;
  padding: 7px 0 0 0;
  margin: 0 20px 0 0;
}

@media (max-width: 769px) {
  .footer_copyrights {
    margin: 20px 0 0;
    text-align: center;
  }

  .footer_copyrights--item_copyrights {
    text-align: center;
    margin: 10px 0 0;
    padding: 0;
  }
}

.footer_contact_info {
  padding: 5px 0 0;
}

.footer_contact_info--item {
  padding: 10px 0;
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
}

  .footer_contact_info--item i {
    display: block;
    position: absolute;
    left: -2px;
    top: 12px;
  }

  .footer_contact_info--item .bi_com-phone {
    transform: scale(-1, 1);
    font-size: 16px;
  }

  .footer_contact_info--item .bi_com-email {
    font-size: 16px;
  }

  .footer_contact_info--item .bi_location-alt-pin {
    font-size: 19px;
    left: -3px;
  }

  .footer_contact_info--item .bi_time-clock-a {
    font-size: 18px;
  }

  .footer_contact_info--item span {
    display: inline-block;
    vertical-align: text-top;
    padding: 0 0 0 28px;
  }

@media (max-width: 768px) {
  .footer_contact_info {
    width: 300px;
    margin: 0 auto;
  }
}

.footer_about {
  position: relative;
  padding: 17px 25px 0 0;
}

.footer_about--text {
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  padding: 0 0 16px;
}

  .footer_about--text:last-child {
    padding: 0;
  }

@media (max-width: 768px) {
  .footer_about {
    width: 300px;
    margin: 0 auto;
  }
}

.footer_blog {
  position: relative;
  padding: 7px 15px 0 0;
}

@media (max-width: 1190px) {
  .footer_blog {
    padding: 0 0 50px;
  }
}

.footer_projects {
  position: relative;
  padding: 7px 15px 0 0;
}

@media (max-width: 970px) {
  .footer_projects {
    padding: 0 0 50px;
  }
}

.tip_help {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 380px;
  background: #fff;
  z-index: 100;
  padding: 20px 25px;
  color: #262626;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
  will-change: transform;
}

.tip_help--close {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
  display: block;
  width: 22px;
  height: 22px;
  opacity: 0.2;
  position: absolute;
  right: 22px;
  top: 29px;
  margin: -11px 0 0;
  font-size: 22px;
  color: #262626;
}

  .tip_help--close:hover {
    opacity: 1;
  }

  .tip_help--close span {
    display: block;
    width: 16px;
    height: 16px;
  }

    .tip_help--close span:before,
    .tip_help--close span:after {
      display: block;
      width: 100%;
      height: 1px;
      background: #262626;
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -1px;
      transform: rotate(45deg);
      content: '';
    }

    .tip_help--close span:after {
      transform: rotate(-45deg);
    }

.tip_help--title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}

.tip_help--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
}

.tip_help--contact {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.tip_help--contact_card {
  width: 230px;
}

.tip_help--contact_button {
  width: 100px;
  text-align: right;
}

.tip_help--contact_image {
  width: 60px;
  height: 60px;
  display: block;
  float: left;
  position: relative;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  padding: 4px;
  margin: 0 15px 0 -5px;
}

  .tip_help--contact_image img {
    display: block;
    width: 100%;
    border-radius: 50%;
    width: 100%;
  }

.tip_help--contact_name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  margin: 9px 0 0;
}

.tip_help--contact_job {
  display: block;
  font-size: 14px;
  color: #969696;
  margin: 7px 0 0;
}

.tip_help--contact_button {
  margin: 8px 0 0;
}

.tip_help.-hide {
  display: none;
}

@media (max-width: 992px) {
  .tip_help {
    display: none;
  }
}

.tip_order {
  display: block;
}

  .tip_order [class*=bi_] {
    font-size: 90px;
    position: absolute;
    right: 35px;
    bottom: 20px;
  }

.tip_order--button {
  padding: 10px 15px;
  margin-top: 20px;
  text-transform: uppercase;
}

.text_block {
  padding-right: 40px;
}

.text_block--title {
  margin-bottom: 45px;
}

.text_block--footer {
  padding-top: 40px;
}

@media (max-width: 992px) {
  .text_block {
    padding: 0;
  }

  .text_block--title {
    margin-bottom: 30px;
  }

  .text_block--footer {
    padding-top: 30px;
  }
}

@media (max-width: 769px) {
  .text_block--title {
    margin-bottom: 20px;
  }

  .text_block--footer .button {
    display: block;
    width: 100%;
  }
}

.post .entry-header {
  padding-top: 30px;
}

.post .entry-title {
  color: #262626;
  font-size: 19px;
  line-height: 29px;
  text-transform: uppercase;
  font-weight: 500;
}

  .post .entry-title > a {
    color: #262626;
  }

.post .entry-content {
  padding-top: 23px;
  font-size: 17px;
  line-height: 27px;
  color: #9b9b9b;
}

  .post .entry-content figure {
    line-height: 0;
  }

    .post .entry-content figure img {
      width: 100%;
    }

  .post .entry-content a {
    color: #34c1e4;
  }

    .post .entry-content a:hover {
      text-decoration: underline;
    }

  .post .entry-content h1,
  .post .entry-content h2,
  .post .entry-content h3,
  .post .entry-content h4,
  .post .entry-content h5,
  .post .entry-content h6 {
    padding-bottom: 18px;
    color: #363636;
  }

  .post .entry-content h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .post .entry-content h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .post .entry-content h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .post .entry-content h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .post .entry-content h5 {
    font-size: 22px;
    line-height: 28px;
  }

  .post .entry-content h6 {
    font-size: 19px;
    line-height: 25px;
  }

  .post .entry-content > p {
    margin: 20px 0;
  }

  .post .entry-content blockquote {
    font-style: italic;
    font-weight: normal;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #0fbe7c;
    margin: 20px 0;
    background: #fff;
  }

    .post .entry-content blockquote:before,
    .post .entry-content blockquote:after {
      content: '';
    }

    .post .entry-content blockquote cite {
      text-transform: uppercase;
      font-size: 12px;
      font-style: normal;
      display: block;
      text-align: right;
    }

  .post .entry-content table {
    width: 100%;
    background: #fff;
    margin: 0 0 20px;
  }

    .post .entry-content table tr:nth-child(2n) td {
      background: #fafafa;
    }

    .post .entry-content table th {
      font-weight: bold;
      text-align: left;
      color: #363636;
    }

    .post .entry-content table td,
    .post .entry-content table th {
      border: 1px solid #e5e5e5;
      padding: 8px 14px;
    }

  .post .entry-content pre,
  .post .entry-content code,
  .post .entry-content kbd,
  .post .entry-content var,
  .post .entry-content samp,
  .post .entry-content tt {
    font-family: Hack, Courier, monospace;
    font-size: 14px;
    line-height: 19px;
    white-space: pre-wrap;
  }

  .post .entry-content pre {
    background-color: #fff;
    margin-bottom: 20px;
    overflow: auto;
    padding: 20px;
    border: 1px solid #e5e5e5;
  }

  .post .entry-content dl {
    margin: 0 0 20px;
  }

    .post .entry-content dl dt {
      margin: 0 0 3px;
      font-weight: bold;
    }

    .post .entry-content dl dd {
      margin: 0 0 15px;
    }

  .post .entry-content ul,
  .post .entry-content ol {
    padding: 0 0 0 35px;
    margin-bottom: 30px;
  }

    .post .entry-content ul li > ol,
    .post .entry-content ol li > ol,
    .post .entry-content ul li > ul,
    .post .entry-content ol li > ul {
      margin-bottom: 0;
    }

  .post .entry-content ul {
    list-style: circle;
  }

  .post .entry-content ol {
    list-style: decimal;
  }

  .post .entry-content address {
    display: block;
    font-style: italic;
    margin: 0 0 20px;
  }

  .post .entry-content abbr,
  .post .entry-content acronym,
  .post .entry-content dfn {
    border-bottom: 1px dotted #666;
    cursor: help;
  }

  .post .entry-content cite,
  .post .entry-content em,
  .post .entry-content i {
    font-style: italic;
  }

  .post .entry-content ins {
    background: #fff;
  }

  .post .entry-content sub,
  .post .entry-content sup {
    font-size: 10px;
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
  }

  .post .entry-content sub {
    top: 0.5ex;
  }

  .post .entry-content sup {
    bottom: 1ex;
  }

.post .entry-footer {
  padding-top: 22px;
  vertical-align: middle;
}

  .post .entry-footer .icon-links {
    float: right;
    display: block;
    color: #9b9b9b;
    font-size: 15px;
    padding: 5px 0 0;
  }

    .post .entry-footer .icon-links {
      display: flex;
      flex-wrap: wrap;
    }

    .post .entry-footer .icon-links > a,
    .post .entry-footer .icon-links > div {
      margin: 0 0 0 30px;
      color: #868686;
      font-family: 'Open Sans', Arial, sans-serif;
    }

      .post .entry-footer .icon-links > a > a,
      .post .entry-footer .icon-links > div > a {
        color: #868686;
        font-family: #262626;
      }

      .post .entry-footer .icon-links > a b,
      .post .entry-footer .icon-links > div b {
        font-weight: normal;
      }

    .post .entry-footer .icon-links [class*=bi_],
    .post .entry-footer .icon-links [class*=fa-] {
      font-size: 24px;
      color: #c2c2c2;
      position: relative;
      float: left;
      margin: -5px 8px 0 0;
    }

      .post .entry-footer .icon-links [class*=bi_]:before,
      .post .entry-footer .icon-links [class*=fa-]:before {
        margin: 0;
      }

    .post .entry-footer .icon-links .fa-heart-o {
      margin-right: 10px;
    }

    .post .entry-footer .icon-links .bi_com-bubble {
      margin-top: -4px;
    }

  .post .entry-footer .tags-links {
    position: relative;
    display: inline-block;
    width: 60%;
    margin: -10px 0 0;
  }

    .post .entry-footer .tags-links > a {
      border: 1px solid #e6e6e6;
      color: #b3b3b3;
      font-size: 15px;
      font-style: italic;
      padding: 6px 10px;
      margin: 10px 10px 0 0;
      border-radius: 3px;
      display: inline-block;
    }

    .post .entry-footer .tags-links > span {
      position: absolute;
      width: 1px;
      height: 1px;
      clip: 1px 1px 1px 1px;
      overflow: hidden;
    }

.post--info_userpic {
  height: 62px;
  width: 62px;
  position: absolute;
  left: 0;
  top: -6px;
}

  .post--info_userpic img {
    border-radius: 50%;
  }

.post--info {
  position: relative;
  padding: 10px 0 0 93px;
}

.post--info_user {
  font-size: 17px;
}

  .post--info_user > a {
    color: #262626;
  }

.post--info_meta {
  padding-top: 12px;
}

  .post--info_meta li {
    display: inline-block;
    margin: 0 0 0 30px;
    color: #9b9b9b;
    font-size: 16px;
    position: relative;
  }

    .post--info_meta li:before {
      position: absolute;
      content: '';
      display: block;
      height: 3px;
      width: 3px;
      border-radius: 50%;
      background: #d0d0d0;
      left: -17px;
      top: 7px;
    }

    .post--info_meta li:first-child {
      margin: 0;
    }

      .post--info_meta li:first-child:before {
        display: none;
      }

    .post--info_meta li > a {
      color: #3499e0;
    }

.post.-page {
  padding: 0 30px 0 0;
}

  .post.-page .entry-header {
    padding-top: 26px;
  }

  .post.-page .entry-title {
    font-size: 35px;
    line-height: 45px;
  }

  .post.-page .entry-content {
    padding-top: 20px;
  }

  .post.-page .entry-footer {
    padding: 42px 0 0;
  }

@media (max-width: 992px) {
  .post .entry-footer .icon-links > a,
  .post .entry-footer .icon-links > div {
    display: block;
    float: left;
    margin: 0 20px 0 0;
  }

  .post.-page {
    padding: 0;
  }

    .post.-page .entry-title {
      font-size: 26px;
      line-height: 35px;
    }

    .post.-page .entry-footer .tags-links {
      display: block;
      width: 100%;
      margin-bottom: 20px;
    }
}

@media (max-width: 769px) {
  .post--info_meta li {
    display: block;
    padding: 0;
    margin: 5px 0 0;
  }

    .post--info_meta li:before {
      display: none;
    }

  .post .entry-footer .icon-links {
    float: none;
    display: block;
    margin: 0 0 20px;
  }

  .post .entry-footer .button {
    float: none;
    display: block;
    width: 100%;
  }
}

.pagination {
  position: relative;
  border-top: 1px solid #e2e2e2;
  margin: 0 -15px;
  min-height: 84px;
}

  .pagination ul {
    text-align: center;
    color: #9b9b9b;
  }

    .pagination ul li {
      display: inline-block;
      font-size: 19px;
      margin-left: 5px;
      position: relative;
      padding: 22px 0;
    }

      .pagination ul li:first-child {
        margin-left: 0;
      }

    .pagination ul a {
      color: #969696;
      display: block;
      padding: 10px;
    }

      .pagination ul a:before {
        display: none;
        width: 100%;
        height: 3px;
        background: #34c1e4;
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
      }

      .pagination ul a.-active {
        color: #34c1e4;
      }

        .pagination ul a.-active:before {
          display: block;
        }

.pagination--link {
  font-size: 18px;
  color: #9b9b9b;
  position: absolute;
  top: 31px;
}

  .pagination--link i.icons8-right {
    display: inline-block;
    position: relative;
    top: 1px;
  }

  .pagination--link.-prev {
    left: 15px;
  }

    .pagination--link.-prev i.icons8-right {
      transform: scale(-1, 1);
      margin-left: -3px;
    }

  .pagination--link.-next {
    right: 15px;
  }

    .pagination--link.-next i {
      margin-right: -3px;
    }

.section .pagination {
  margin-bottom: -102px;
}

.case_studies .pagination {
  margin-top: 100px;
}

@media (max-width: 992px) {
  .section .pagination {
    margin-bottom: -30px;
  }
}

@media (max-width: 769px) {
  .pagination {
    min-height: 64px;
  }

    .pagination ul {
      display: none;
      text-align: left;
      padding: 20px 0;
    }

      .pagination ul li {
        display: block;
        margin: 0;
      }

        .pagination ul li a {
          padding: 5px;
        }

  .pagination--link {
    top: 20px;
  }

  .section .pagination {
    margin-bottom: -50px;
  }
}

.calendar {
  display: table;
  width: 100%;
  position: relative;
}

.calendar--title {
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 19px 0;
  text-transform: uppercase;
}

.calendar--months {
  border-top: 1px solid #e5e5e5;
}

  .calendar--months > th {
    padding: 15px 0;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }

    .calendar--months > th:first-child {
      padding-left: 5px;
    }

    .calendar--months > th:last-child {
      padding-right: 5px;
    }

.calendar--links {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.calendar--arrow {
  position: absolute;
  top: 13px;
  right: 20px;
  z-index: 2;
  font-size: 24px;
}

  .calendar--arrow.-prev {
    left: 20px;
    z-index: 1;
  }

  .calendar--arrow > a {
    color: #cbcbcb;
  }

    .calendar--arrow > a:hover {
      color: #8c8a8a;
    }

.calendar--days {
  background: #fff;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

  .calendar--days > tr > td {
    padding-bottom: 14px;
  }

    .calendar--days > tr > td:first-child {
      padding-left: 5px;
    }

    .calendar--days > tr > td:last-child {
      padding-right: 5px;
    }

    .calendar--days > tr > td > span {
      color: #bababa;
      font-weight: normal;
    }

.progressbar {
  display: block;
  width: 100px;
  height: 100px;
  position: relative;
}

.progressbar--label {
  font-size: 22px;
  font-weight: 300;
  color: #262626 !important;
}

  .progressbar--label:after {
    content: '%';
  }

.progressbars {
  position: relative;
}

.progressbars--title {
  font-size: 36px;
  text-align: center;
}

.progressbars--item {
  text-align: center;
  margin: 75px 0 0;
}

  .progressbars--item .progressbar {
    margin: 0 auto;
  }

.progressbars--item_title {
  font-size: 19px;
  padding: 29px 0 0;
}

.section .progressbars {
  margin-top: -12px;
}

@media (max-width: 992px) {
  .progressbars--title {
    font-size: 30px;
  }

  .progressbars--item {
    margin-top: 60px;
  }
}

@media (max-width: 500px) {
  .progressbars--title {
    font-size: 24px;
  }

  .progressbars--item {
    margin-top: 40px;
  }
}

.skills [class*=col] {
  text-align: center;
}

.skills--item {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

  .skills--item .progressbar {
    display: inline-block;
  }

  .skills--item .title {
    margin: 18px 0 0;
  }

.section .skills {
  padding: 50px 0 0;
}

@media (max-width: 992px) {
  .skills {
    margin: -40px 0 0;
  }

  .skills--item {
    margin: 40px 0 0;
  }
}

.contacts {
  position: relative;
}

@media (max-width: 992px) {
  .contacts.-page {
    margin: 10px 0 50px;
  }

  .contacts .col-md-4 .contact_card {
    margin: 20px 0 0;
  }

  .contacts .col-md-4:first-child .contact_card {
    margin-top: 0;
  }
}

.widget {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin-top: 30px;
  overflow: hidden;
}

  .widget:first-child {
    margin-top: 20px;
  }

.widget--title {
  background: #fafafa;
  position: relative;
  font-size: 18px;
  padding: 20px 10px 20px 56px;
}

  .widget--title i {
    font-size: 27px;
    color: #59bcdb;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 18px;
    margin-top: -1px;
  }

  .widget--title .icons8-layers {
    font-size: 29px;
  }

  .widget--title .icons8-sms {
    font-size: 24px;
    margin-top: 1px;
  }

  .widget--title .icons8-edit-property {
    font-size: 25px;
    margin-top: 1px;
  }

.widget ul {
  font-size: 16px;
  line-height: 24px;
}

  .widget ul li {
    border-top: 1px solid #e5e5e5;
    padding: 17px 20px;
    color: #9b9b9b;
  }

    .widget ul li a {
      color: #9b9b9b;
      padding: 5px 0;
    }

      .widget ul li a:hover {
        text-decoration: underline;
      }

    .widget ul li .comment-author-link a {
      color: #2d8fcc;
    }

    .widget ul li .rsswidget {
      color: #262626;
      font-size: 16px;
      line-height: 27px;
      font-weight: 500;
    }

    .widget ul li .rssSummary {
      padding-top: 5px;
    }

    .widget ul li .rss-date {
      display: block;
      color: #262626;
      padding: 4px 0 2px;
      font-size: 15px;
    }

.widget > ul {
  margin-top: -1px;
}

.widget .tagcloud {
  padding: 10px 20px 20px;
  font-size: 15px;
}

  .widget .tagcloud a {
    border: 1px solid #e6e6e6;
    color: #868686;
    font-size: 15px;
    font-style: italic;
    padding: 6px 10px;
    margin: 10px 10px 0 0;
    border-radius: 3px;
    display: inline-block;
  }

.widget .slick-slider {
  position: static;
}

  .widget .slick-slider .slick-dots {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 100%;
    right: 16px;
    margin-bottom: 25px;
  }

    .widget .slick-slider .slick-dots > li {
      border: 0;
      padding: 0;
      margin: 0;
      width: 14px;
      float: left;
    }

      .widget .slick-slider .slick-dots > li button {
        width: 14px;
        height: 16px;
      }

        .widget .slick-slider .slick-dots > li button:before {
          top: 4px;
          left: 3px;
          width: 8px;
          height: 8px;
        }

.widget .menu .menu-item {
  padding: 0;
  position: relative;
}

  .widget .menu .menu-item a {
    padding: 17px 20px;
    display: block;
    position: relative;
  }

    .widget .menu .menu-item a:hover {
      text-decoration: none;
      color: #262626;
    }

  .widget .menu .menu-item .sub-menu {
    display: none;
  }

  .widget .menu .menu-item .menu-item a {
    padding: 17px 20px 17px 40px;
  }

.widget .menu > .menu-item > a {
  font-weight: 500;
}

  .widget .menu > .menu-item > a:after {
    display: block;
    width: 10px;
    height: 5px;
    position: absolute;
    top: 50%;
    right: 18px;
    margin: -1px 0 0;
    opacity: 0.2;
    content: '';
    transform: rotate(-90deg);
    background-size: 100% 100%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAPCAMAAAAvUzStAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA4VBMVEUAAAA2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjYAAADnvYxKAAAASXRSTlMAC2VsEl5aCLXgLyPTsvjzU0Xt+o3+fwFy/KZ5/ayhA07y0B8byfdfK9zqPTrm5Da9+WZkxxoEk5KeBya++2/p7EPSIq4MgH41GUZ1CwAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAC8SURBVBjTdVBlF4JQDB2KYjdiB9hgK9hd+/9/SPawUNyHvRvvnG0XOJebB6fiPF4BfIj+gIMZDCGGIYKI0diPGU+YehJSZkcxLdnNTJbkHEj5AoEi9+EJJZIwVTZxpUpQVl5mrU5Co2mxVptYR32YWpdor//8zA+ID0eMjGlPnEzfg3SDDTJ00GcMzRe2JUdDEgfLFT3rzfeB6padRm23/w1HkdGqw9Ex2CIzT2fH2EG6iCheJfhXWuZm43efkyaq4CBthQAAAABJRU5ErkJggg==");
  }

  .widget .menu > .menu-item > a:hover:after {
    opacity: 1;
  }

.widget .menu > .menu-item.-opened > a {
  color: #262626;
}

  .widget .menu > .menu-item.-opened > a:after {
    opacity: 1;
    transform: rotate(0);
  }

.widget .menu > .menu-item.-opened .sub-menu {
  display: block;
}

.widget.-iconless .widget--title {
  padding-left: 20px;
}

.widget_search--field {
  display: block;
  width: 100%;
  position: relative;
}

  .widget_search--field i {
    display: block;
    position: absolute;
    color: #3499e0;
    font-size: 24px;
    top: 50%;
    left: 15px;
    margin: -12px 0 0;
  }

  .widget_search--field input {
    font-size: 17px;
    display: block;
    padding: 21px 20px 21px 55px;
    width: 100%;
  }

.textwidget {
  margin-top: -1px;
}

  .textwidget strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
  }

    .textwidget strong + img {
      margin-top: 10px;
    }

  .textwidget p {
    padding: 20px;
    font-size: 15px;
    line-height: 24px;
    border-top: 1px solid #e5e5e5;
  }

  .textwidget img {
    width: 100%;
  }

.sidebar .block + .block {
  margin-top: 55px;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 0 7px rgba(0,0,0,0.15);
  border-top: 1px solid #f2f2f2;
}

  .mega-menu:before {
    display: block;
    width: 100%;
    height: 7px;
    background: #fff;
    content: '';
    position: absolute;
    bottom: 100%;
    margin: 0 0 1px;
  }

.mega_nav {
  position: relative;
}

  .mega_nav .container {
    padding: 10px 0;
  }

  .mega_nav:before {
    display: block;
    width: 100%;
    height: 35px;
    bottom: 100%;
    position: absolute;
    left: 0;
    content: '';
  }

.mega_nav--item {
  position: relative;
  display: block;
  padding: 16px 15px 16px 78px;
  border-radius: 3px;
}

  .mega_nav--item:hover {
    background: #f7f7f7;
  }

  .mega_nav--item.-icon {
    padding-left: 70px;
  }

    .mega_nav--item.-icon .mega_nav--item_icon {
      left: 15px;
      top: 12px;
    }

    .mega_nav--item.-icon .icons8-diamond {
      left: 17px;
      top: 9px;
    }

    .mega_nav--item.-icon .icons8-umbrella {
      left: 18px;
      top: 9px;
    }

    .mega_nav--item.-icon .icons8-idea {
      left: 18px;
      top: 12px;
      font-size: 36px;
    }

    .mega_nav--item.-icon .icons8-business {
      left: 17px;
      top: 12px;
    }

    .mega_nav--item.-icon .icons8-coins {
      left: 18px;
      top: 12px;
    }

    .mega_nav--item.-icon .icons8-online-support {
      left: 17px;
      top: 10px;
    }

    .mega_nav--item.-icon .icons8-currency-exchange {
      left: 17px;
      top: 12px;
    }

    .mega_nav--item.-icon .icons8-customer-support {
      left: 18px;
      top: 12px;
    }

    .mega_nav--item.-icon .icons8-lifebuoy {
      left: 19px;
      top: 11px;
    }

    .mega_nav--item.-icon .icons8-training {
      left: 16px;
      top: 10px;
      font-size: 40px;
    }

    .mega_nav--item.-icon .icons8-overtime {
      left: 19px;
      top: 12px;
      font-size: 36px;
    }

    .mega_nav--item.-icon .icons8-reviewer {
      top: 10px;
      left: 15px;
    }

.mega_nav--item_icon {
  position: absolute;
  left: 0;
  top: -7px;
  color: #59bcdb;
  font-size: 38px;
}

.mega_nav--item_image {
  position: absolute;
  border-radius: 3px;
  padding: 3px;
  left: 20px;
  border: 1px solid #e6e6e6;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background: #fff;
}

  .mega_nav--item_image img {
    vertical-align: top;
    width: 100%;
    border-radius: 3px;
  }

.mega_nav--item_body {
  position: relative;
  overflow: hidden;
  width: 100%;
}

  .mega_nav--item_body dt {
    color: #262626;
    font-size: 15px;
    padding: 0 0 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mega_nav--item_body dd {
    color: #969696;
    white-space: nowrap;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
  }

.mega_nav--open_all {
  display: block;
  position: relative;
  background: #f4f4f4;
  padding: 20px 0;
  text-align-last: center;
  text-align: center;
}

  .mega_nav--open_all span {
    position: relative;
    color: #b5b5b5;
    font-size: 16px;
  }

    .mega_nav--open_all span:after {
      content: '\f14c';
      display: inline-block;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-decoration: inherit;
      text-rendering: optimizeLegibility;
      text-transform: none;
      font-smoothing: antialiased;
      position: relative;
      margin: 0 0 0 7px;
      top: 1px;
    }

.header_nav.-wide .mega_nav:before {
  display: none;
}

.header_nav .menu .menu-item {
  position: relative;
  text-align: left;
  text-align-last: left;
}

  .header_nav .menu .menu-item > a {
    color: #262626;
  }

    .header_nav .menu .menu-item > a:hover {
      color: #262626;
    }

  .header_nav .menu .menu-item.-mega,
  .header_nav .menu .menu-item.menu-item-has-mega-menu {
    position: static !important;
  }

  .header_nav .menu .menu-item:hover > .sub-menu {
    display: block;
  }

  .header_nav .menu .menu-item:hover > .mega-menu {
    display: block;
  }

.header_nav .menu > .menu-item {
  display: inline-block;
  padding: 5px 0 5px 0;
  margin: 0 0 0 35px;
  vertical-align: middle;
  cursor: pointer;
}

  .header_nav .menu > .menu-item > a {
    font-size: 16px;
    position: relative;
    cursor: pointer;
  }

    .header_nav .menu > .menu-item > a:hover {
      color: #34c1e4;
    }

    .header_nav .menu > .menu-item > a:before {
      display: none;
      height: 2px;
      content: '';
      position: absolute;
      top: -100%;
      left: -10px;
      right: -10px;
      margin-top: -1px;
      background: #34c1e4;
    }

    .header_nav .menu > .menu-item > a .menu-item-notify {
      white-space: nowrap;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      position: absolute;
      bottom: 100%;
      left: 100%;
      margin: -1px 0 0 -10px;
      background: #ed5151;
      border-radius: 3px;
      padding: 1px 5px 3px;
    }

  .header_nav .menu > .menu-item .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    /*box-shadow: 0 0 7px rgba(0,0,0,0.15);*/
    background: linear-gradient(to bottom, white, rgba(255,255,255,0.8));
    border-radius: 3px;
  }

    .header_nav .menu > .menu-item .sub-menu:before {
      width: 100%;
      height: 15px;
      content: '';
      position: absolute;
      bottom: 100%;
      left: 0;
    }

    .header_nav .menu > .menu-item .sub-menu .menu-item {
      min-width: 240px;
      /*border-top: 1px solid #eaeaea;*/
      position: relative;
    }

      .header_nav .menu > .menu-item .sub-menu .menu-item a {
        display: block;
        padding: 15px 20px 14px;
      }

      .header_nav .menu > .menu-item .sub-menu .menu-item:first-child {
        border: 0;
      }

  .header_nav .menu > .menu-item > .sub-menu {
    top: 100%;
    left: -20px;
    margin: 15px 0 0;
  }

    .header_nav .menu > .menu-item > .sub-menu .menu-item-has-children:after {
      position: absolute;
      top: 50%;
      right: 16px;
      margin: -4px 0 0;
      display: block;
      border-style: solid;
      border-width: 4px 0 4px 4px;
      border-color: transparent transparent transparent #363636;
      content: '';
    }

    .header_nav .menu > .menu-item > .sub-menu .sub-menu {
      top: 0;
      left: 100%;
      margin: 0 0 0 -3px;
    }

  .header_nav .menu > .menu-item:first-child {
    margin: 0;
  }

  .header_nav .menu > .menu-item.current-menu-item > a,
  .header_nav .menu > .menu-item:hover > a {
    color: #34c1e4;
  }

  .header_nav .menu > .menu-item.menu-item-search {
    padding: 0;
  }

.header_nav .menu.-dark {
  padding-top: 10px;
}

  .header_nav .menu.-dark > .menu-item > a {
    color: #fff;
  }

    .header_nav .menu.-dark > .menu-item > a:hover {
      text-decoration: underline;
    }

    .header_nav .menu.-dark > .menu-item > a .bi_com-phone {
      transform: scale(-1, 1);
    }

    .header_nav .menu.-dark > .menu-item > a [class*=bi_] {
      font-size: 19px;
      margin: 0 3px 0 0;
      display: inline-block;
    }

.header_nav.-wide .header_nav--inner > .menu {
  text-align: justify;
  text-align-last: justify;
}

  .header_nav.-wide .header_nav--inner > .menu .header_search {
    margin: 0;
  }

  .header_nav.-wide .header_nav--inner > .menu > .menu-item {
    display: inline-block;
    margin: 0;
    padding: 25px 10px;
  }

    .header_nav.-wide .header_nav--inner > .menu > .menu-item > .sub-menu {
      border-radius: 0 0 3px 3px;
      margin: 0;
    }

      .header_nav.-wide .header_nav--inner > .menu > .menu-item > .sub-menu:before {
        display: block;
        width: 100%;
        height: 5px;
        background: #fff;
        content: '';
        position: absolute;
        bottom: 100%;
        left: 0;
      }

    .header_nav.-wide .header_nav--inner > .menu > .menu-item:first-child {
      margin-left: -10px;
    }

    .header_nav.-wide .header_nav--inner > .menu > .menu-item.current-menu-item > a {
      color: #34c1e4;
    }

      .header_nav.-wide .header_nav--inner > .menu > .menu-item.current-menu-item > a:before {
        display: block;
      }

    .header_nav.-wide .header_nav--inner > .menu > .menu-item.menu-item-search {
      padding: 0;
    }

.header_nav.-violet .header_nav--inner > .menu {
  text-align: justify;
  text-align-last: justify;
}

  .header_nav.-violet .header_nav--inner > .menu > .menu-item .menu-item-notify {
    background: #34c1e4;
  }

  .header_nav.-violet .header_nav--inner > .menu > .menu-item > a:hover {
    color: #6975a6;
  }

  .header_nav.-violet .header_nav--inner > .menu > .menu-item:hover a {
    color: #6975a6;
  }

  .header_nav.-violet .header_nav--inner > .menu > .menu-item.current-menu-item > a {
    color: #6975a6;
  }

    .header_nav.-violet .header_nav--inner > .menu > .menu-item.current-menu-item > a:before {
      display: block;
      background: #6975a6;
    }

.mobile_sidebar {
  display: none;
  background: #383d61;
  color: #fff;
}

.mobile_sidebar--buttons {
  padding: 0 20px 20px 20px;
}

  .mobile_sidebar--buttons .button {
    display: block;
    width: 100%;
    margin: 20px 0 0;
  }

.mobile_sidebar--closer {
  display: none;
  position: absolute;
  top: -23px;
  right: -20px;
  transform: scale(0.4);
  z-index: 1;
}

  .mobile_sidebar--closer.-white .c-hamburger span,
  .mobile_sidebar--closer.-white .c-hamburger span:before,
  .mobile_sidebar--closer.-white .c-hamburger span:after {
    background: #fff;
  }

@media (max-width: 360px) {
  .mobile_sidebar--closer {
    display: block;
  }
}

.mobile_auth {
  color: #fff;
  font-size: 15px;
  padding: 17px 0;
  border: 1px solid #4a4a4a;
  text-transform: uppercase;
  font-weight: 500;
}

.mobile_auth--menu {
  text-align: center;
}

  .mobile_auth--menu li {
    display: inline-block;
    padding: 0 12px;
    position: relative;
    margin: 0 0 0 1px;
  }

    .mobile_auth--menu li:before {
      position: absolute;
      top: 0;
      left: -1px;
      height: 13px;
      width: 1px;
      background: #fff;
      content: '';
      opacity: 0.3;
    }

    .mobile_auth--menu li a {
      color: #fff;
      text-decoration: none;
      opacity: 0.3;
    }

      .mobile_auth--menu li a:hover {
        opacity: 1;
      }

    .mobile_auth--menu li:first-child:before {
      display: none;
    }

.mobile_menu .menu .menu-item {
  font-size: 15px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
  position: relative;
}

  .mobile_menu .menu .menu-item > a {
    display: block;
    color: #fff;
    padding: 17px 20px;
    position: relative;
  }

.mobile_menu .menu .sub-menu {
  display: none;
}

  .mobile_menu .menu .sub-menu .menu-item > a {
    padding-left: 40px;
    color: rgba(255,255,255,0.3);
  }

  .mobile_menu .menu .sub-menu .sub-menu .menu-item a {
    padding-left: 60px;
  }

.mobile_menu .menu .menu-item-has-children > a:after {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: -4px 0 0;
  display: block;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #fff;
  content: '';
  opacity: 0.3;
}

.mobile_menu .menu .menu-item-has-children.-active > a:after {
  transform: rotate(90deg);
}

.mobile_menu .menu .menu-item.-active > .sub-menu {
  display: block;
}

.mobile_menu .menu > .menu-item:first-child {
  border-top: 0;
}

.video--content {
  position: relative;
  z-index: 15;
}

.video--background,
.video--background_color,
.video--background_video,
.video--background_placeholder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video--background_placeholder {
  z-index: 10;
}

.video--background_color {
  z-index: 20;
}

.video--background_video {
  z-index: 1;
}

.partners {
  padding: 60px 0;
}

.partners--item {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  opacity: 0.8;
}

  .partners--item:hover {
    opacity: 1;
  }

.partners .slick-slider .slick-track {
  display: table;
}

.partners .slick-slider .slick-slide {
  float: none;
  position: relative;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

  .partners .slick-slider .slick-slide img {
    display: inline-block;
    vertical-align: top;
  }

.partners .slick-slider .slick-dots {
  margin: 50px 0 -15px;
}

.promo_slider--slides .slick-slide {
  min-height: 587px;
}

.promo_slider--slide {
  backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
}

.promo_slider.-rounded {
  border-radius: 50%/50px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
}

@media (max-width: 1200px) {
  .promo_slider--slides .slick-slide {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .promo_slider.-rounded {
    border-radius: 50%/25px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.promo_slider_nav {
  position: relative;
  overflow: hidden;
}

  .promo_slider_nav:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    position: absolute;
    bottom: 0;
    left: 0;
  }

.promo_slider_nav--slide.slick-current .promo_slider_nav--item:before {
  display: block;
}

.promo_slider_nav--item {
  position: relative;
  padding: 27px 0 33px 50px;
  cursor: pointer;
  margin: 0 15px;
}

  .promo_slider_nav--item:after {
    display: block;
    position: absolute;
    content: '';
    width: 1px;
    height: 50px;
    background: #969696;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0.3;
  }

  .promo_slider_nav--item:before {
    display: none;
    position: absolute;
    content: '';
    height: 4px;
    background: #59bcdb;
    bottom: 0;
    width: calc(100% + 30px);
    left: -30px;
  }

  .promo_slider_nav--item strong {
    font-weight: bold;
  }

.promo_slider_nav--item_icon {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -4px;
  margin-top: -4px;
  color: #59bcdb;
  font-size: 40px;
}

.promo_slider_nav--item_title {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  color: #262626;
}

.promo_slider_nav--item_description {
  color: #969696;
  font-size: 16px;
  padding-top: 13px;
}

.promo_slider_nav .slick-slider {
  margin: 0 -15px;
  z-index: 1;
}

  .promo_slider_nav .slick-slider:before {
    display: block;
    height: 100%;
    width: 15px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    border-bottom: 1px solid #e5e5e5;
  }

  .promo_slider_nav .slick-slider .slick-prev,
  .promo_slider_nav .slick-slider .slick-next {
    position: absolute;
    font-size: 22px;
    opacity: 0.2;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
    padding: 10px;
  }

    .promo_slider_nav .slick-slider .slick-prev:hover,
    .promo_slider_nav .slick-slider .slick-next:hover {
      opacity: 0.4;
    }

  .promo_slider_nav .slick-slider .slick-prev {
    right: 100%;
    margin-right: 15px;
  }

    .promo_slider_nav .slick-slider .slick-prev .icons8-long-arrow-right {
      display: inline-block;
      transform: scale(-1, 1);
    }

  .promo_slider_nav .slick-slider .slick-next {
    left: 100%;
    margin-left: 15px;
  }

@media (max-width: 1300px) {
  .promo_slider_nav .slick-slider .slick-prev {
    margin-right: 0;
  }

  .promo_slider_nav .slick-slider .slick-next {
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .promo_slider_nav--item {
    padding: 20px 0 25px 55px;
  }

  .promo_slider_nav--item_icon {
    font-size: 40px;
    left: 0;
  }
}

@media (max-width: 992px) {
  .promo_slider_nav--item {
    padding: 17px 0 20px 45px;
  }

    .promo_slider_nav--item:after {
      height: 40px;
    }

  .promo_slider_nav--item_icon {
    font-size: 32px;
    margin-top: -2px;
  }

  .promo_slider_nav--item_title {
    font-size: 16px;
  }

  .promo_slider_nav--item_description {
    font-size: 14px;
    padding-top: 7px;
  }
}

@media (max-width: 600px) {
  .promo_slider_nav--item:after {
    display: none;
  }
}

.slide_simple {
  background-size: cover;
  height: 587px;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
}

.slide_simple--container {
  height: 100%;
  background: rgba(0,0,0,0.2);
  text-align: center;
  color: #fff;
  padding: 164px 0 0;
}

.slide_simple--title {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.slide_simple--text {
  font-size: 26px;
  line-height: 36px;
  opacity: 0.6;
  margin: 28px 0 0;
}

.slide_simple--buttons {
  margin: 40px 0 0;
}

  .slide_simple--buttons .button {
    margin: 0 10px;
  }

@media (max-width: 1200px) {
  .slide_simple {
    height: auto;
  }

  .slide_simple--container {
    padding: 120px 0 120px;
  }

  .slide_simple--title {
    font-size: 44px;
  }

  .slide_simple--text {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 992px) {
  .slide_simple {
    height: auto;
  }

  .slide_simple--container {
    padding: 80px 0 80px;
  }

  .slide_simple--title {
    font-size: 36px;
  }

  .slide_simple--text {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 769px) {
  .slide_simple--title {
    font-size: 32px;
  }

  .slide_simple--text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 500px) {
  .slide_simple--container {
    padding: 50px 0;
  }

  .slide_simple .button {
    margin-top: 20px;
    display: block;
    width: 100%;
  }

    .slide_simple .button:first-child {
      margin-top: 0;
    }
}

.header_contacts {
  float: right;
  text-align: center;
  padding: 6px 0 0 0;
}

.header_contacts--item {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 40px;
  vertical-align: middle;
}

  .header_contacts--item:first-child {
    margin: 0;
  }

.contact_mini {
  position: relative;
  padding: 0 0 0 50px;
}

.contact_mini--icon {
  font-size: 34px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}

.contact_mini strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.contact_mini span {
  font-size: 13px;
  color: #969696;
  display: block;
  padding: 6px 0 0;
}

.services {
  position: relative;
}

  .services .service_item {
    margin-top: 30px;
  }

.section--container .services:first-child {
  margin-top: -30px;
}

.service_item {
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  padding: 147px 15px 48px;
  position: relative;
}

.service_item--icon {
  font-size: 76px;
  display: block;
  color: #59bcdb;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, 0);
}

  .service_item--icon.icons8-business {
    top: 43px;
  }

  .service_item--icon.icons8-umbrella {
    top: 39px;
  }

  .service_item--icon.icons8-reviewer {
    margin-left: -5px;
  }

.service_item--title {
  font-size: 20px;
  text-align: center;
  color: #262626;
}

.service_item--text {
  font-size: 16px;
  text-align: center;
  color: #969696;
  padding-top: 14px;
  line-height: 23px;
}

.service_item--footer {
  padding-top: 38px;
  text-align: center;
}

.service_item.-colored {
  border: none;
  padding: 127px 5px 38px 23px;
}

  .service_item.-colored .service_item--icon {
    top: 14px;
    left: 69px;
  }

    .service_item.-colored .service_item--icon.icons8-business {
      top: 20px;
    }

    .service_item.-colored .service_item--icon.icons8-umbrella {
      top: 18px;
    }

  .service_item.-colored .service_item--title {
    color: #fff;
    font-weight: 600;
    text-align: left;
  }

  .service_item.-colored .service_item--text {
    color: #fff;
    text-align: left;
  }

  .service_item.-colored .service_item--footer {
    text-align: left;
    padding-top: 28px;
  }

  .service_item.-colored .service_item--more {
    color: #fff;
  }

.service_item.-horizontal {
  border: 1px solid #e9e9e9;
  padding: 19px 130px 21px 19px;
}

  .service_item.-horizontal .service_item--icon {
    right: 23px;
    left: auto;
    top: 36px;
    transform: none;
  }

    .service_item.-horizontal .service_item--icon.icons8-online-support {
      top: 40px;
    }

    .service_item.-horizontal .service_item--icon.icons8-currency-exchange {
      top: 40px;
    }

    .service_item.-horizontal .service_item--icon.icons8-business {
      top: 44px;
    }

    .service_item.-horizontal .service_item--icon.icons8-umbrella {
      top: 39px;
    }

    .service_item.-horizontal .service_item--icon.icons8-reviewer {
      top: 35px;
      right: 27px;
    }

  .service_item.-horizontal .service_item--title {
    text-align: left;
  }

  .service_item.-horizontal .service_item--text {
    text-align: left;
    font-size: 14px;
    line-height: 21px;
    padding-top: 9px;
  }

  .service_item.-horizontal .service_item--footer {
    text-align: left;
    padding-top: 15px;
  }

  .service_item.-horizontal .service_item--more {
    font-size: 14px;
    color: #0b66a2;
  }

@media (max-width: 1200px) {
  .service_item.-horizontal {
    border: 1px solid #e9e9e9;
    padding: 107px 15px 28px 15px;
  }

    .service_item.-horizontal .service_item--icon {
      right: auto;
      font-size: 66px;
      left: 50%;
      transform: translate(-50%, 0);
      top: 15px;
    }

      .service_item.-horizontal .service_item--icon.icons8-online-support {
        top: 11px;
      }

      .service_item.-horizontal .service_item--icon.icons8-currency-exchange {
        top: 11px;
      }

      .service_item.-horizontal .service_item--icon.icons8-business {
        top: 13px;
      }

      .service_item.-horizontal .service_item--icon.icons8-umbrella {
        top: 8px;
      }

      .service_item.-horizontal .service_item--icon.icons8-reviewer {
        top: 5px;
        right: auto;
      }

    .service_item.-horizontal .service_item--title {
      text-align: center;
    }

    .service_item.-horizontal .service_item--text {
      text-align: center;
    }

    .service_item.-horizontal .service_item--footer {
      text-align: center;
      padding-top: 20px;
    }
}

@media (max-width: 992px) {
  .service_item {
    padding: 107px 15px 28px;
  }

  .service_item--icon {
    font-size: 66px;
    top: 15px;
  }

    .service_item--icon.icons8-business {
      top: 23px;
    }

    .service_item--icon.icons8-umbrella {
      top: 19px;
    }

  .service_item--footer {
    padding-top: 20px;
  }

  .service_item.-colored .service_item--icon {
    top: 15px;
    font-size: 66px;
  }

    .service_item.-colored .service_item--icon.icons8-business {
      top: 30px;
    }

    .service_item.-colored .service_item--icon.icons8-umbrella {
      top: 28px;
    }
}

@media (max-width: 769px) {
  .service_item.-colored {
    border: none;
    padding: 107px 13px 38px 13px;
  }

    .service_item.-colored .service_item--icon {
      left: 50%;
      transform: translate(-50%, 0);
      margin-left: 0;
    }

      .service_item.-colored .service_item--icon.icons8-business {
        top: 30px;
      }

      .service_item.-colored .service_item--icon.icons8-umbrella {
        top: 28px;
      }

    .service_item.-colored .service_item--title {
      text-align: center;
    }

    .service_item.-colored .service_item--text {
      text-align: center;
    }

    .service_item.-colored .service_item--footer {
      text-align: center;
      padding-top: 20px;
    }
}

.features {
  position: relative;
  margin-top: -30px;
}

  .features .features_item {
    margin-top: 30px;
  }

.features_item {
  position: relative;
}

.features_item--media img {
  width: 100%;
}

.features_item--title {
  font-size: 20px;
  padding-top: 24px;
  color: #262626;
}

.features_item--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  padding-top: 9px;
}

.promo_banner {
  position: relative;
  background: url("../images/promo_banner_bg.jpg") 50% 0% no-repeat;
  background-size: cover;
}

.promo_banner--container {
  height: 100%;
  background: rgba(0,0,0,0.5);
  padding: 83px 0 100px;
  color: #fff;
}

.promo_banner--title {
  font-size: 50px;
  font-weight: 300;
}

.promo_banner--text {
  font-size: 20px;
  line-height: 30px;
  opacity: 0.6;
  padding: 32px 0 43px;
  font-weight: 300;
}

.promo_banner.-centered {
  text-align: center;
}

.promo_banner.-rounded .promo_banner--container {
  padding: 220px 0 180px;
}

@media (max-width: 1200px) {
  .promo_banner--container {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .promo_banner--container {
    padding: 60px 20px;
  }

  .promo_banner--title {
    font-size: 42px;
    line-height: 46px;
  }

  .promo_banner--text {
    font-size: 18px;
    line-height: 26px;
  }

  .promo_banner.-rounded .promo_banner--container {
    padding: 140px 20px;
  }
}

@media (max-width: 769px) {
  .promo_banner--title {
    font-size: 34px;
    line-height: 38px;
  }

  .promo_banner--container {
    padding: 40px 20px;
  }

  .promo_banner--text br {
    display: none;
  }

  .promo_banner.-rounded .promo_banner--container {
    padding: 120px 20px;
  }
}

.promo_detailed {
  position: relative;
  min-height: 500px;
  background: #fafafa;
}

.promo_detailed--container {
  position: relative;
  z-index: 10;
  height: 100%;
}

.promo_detailed--list {
  padding: 68px 0 52px;
}

.promo_detailed--list_item {
  position: relative;
  padding: 0 100px 0 80px;
  margin-top: 41px;
}

  .promo_detailed--list_item dl dt {
    font-size: 20px;
    color: #262626;
  }

  .promo_detailed--list_item dl dd {
    font-size: 16px;
    line-height: 23px;
    color: #969696;
    padding-top: 15px;
  }

  .promo_detailed--list_item:first-child {
    margin-top: 0;
  }

.promo_detailed--list_item_icon {
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  border: 2px solid #ed5151;
  border-radius: 3px;
  width: 56px;
  height: 56px;
  box-sizing: border-box;
}

  .promo_detailed--list_item_icon i {
    color: #ed5151;
    position: absolute;
    font-size: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.promo_detailed--background_image {
  background-size: cover;
  width: 50%;
  height: 100%;
  background-color: #7d7e75;
  position: absolute;
  top: 0;
  right: 0;
}

.promo_detailed--cta {
  padding: 0 25px;
  position: relative;
  height: 100%;
}

.promo_detailed--cta_wrap {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
}

.promo_detailed--cta_text {
  background: rgba(27,31,32,0.7);
  border-radius: 3px;
  padding: 38px 20px 38px 28px;
  max-width: 495px;
  color: #fff;
  font-size: 26px;
  line-height: 36px;
  font-weight: 300;
  text-align: left;
}

.promo_detailed--cta_footer {
  padding-top: 50px;
}

.promo_detailed--cta_background_image {
  display: none;
}

@media (max-width: 992px) {
  .promo_detailed {
    min-height: auto;
  }

  .promo_detailed--background_image {
    height: 50%;
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
  }

  .promo_detailed--cta_text {
    font-size: 26px;
    line-height: 36px;
  }

  .promo_detailed--cta {
    text-align: center;
    padding: 30px 0;
    position: relative;
  }

  .promo_detailed--cta_wrap {
    display: inline-block;
    padding: 0 20px;
  }

  .promo_detailed--list_item {
    padding-right: 20px;
  }

    .promo_detailed--list_item dl dt {
      font-size: 20px;
    }

    .promo_detailed--list_item dl dd {
      font-size: 16px;
      line-height: 23px;
    }

  .promo_detailed--cta_wrap {
    position: relative;
    transform: none;
    top: 0;
    z-index: 1;
  }

  .promo_detailed--cta_background_image {
    display: block;
    position: absolute;
    top: 0;
    left: -15px;
    right: -15px;
    height: 100%;
  }

  .promo_detailed--background_image {
    display: none;
  }
}

@media (max-width: 767px) {
  .promo_detailed--list {
    padding: 50px 0;
  }

  .promo_detailed--list_item {
    padding: 0;
  }

  .promo_detailed--list_item_icon {
    top: 0;
    position: relative;
    margin: 0 0 15px;
  }

  .promo_detailed--cta_text {
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
  }

  .promo_detailed--cta_footer {
    padding: 30px 0 0;
  }
}

.contact_card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  position: relative;
  text-align: center;
  padding: 146px 0 48px;
}

.contact_card--icon {
  position: absolute;
  font-size: 76px;
  display: block;
  top: 37px;
  left: 50%;
  transform: translate(-50%, 0);
}

.contact_card--title {
  font-size: 20px;
  display: inline-block;
}

.contact_card--text {
  padding: 14px 0 43px;
  color: #969696;
  font-size: 16px;
  line-height: 23px;
}

  .contact_card--text strong {
    color: #262626;
  }

  .contact_card--text a {
    color: #262626;
  }

    .contact_card--text a:hover {
      text-decoration: underline;
    }

@media (max-width: 992px) {
  .contact_card {
    padding: 106px 0 28px;
  }

  .contact_card--icon {
    font-size: 66px;
    top: 17px;
  }

  .contact_card--text {
    padding: 14px 0 23px;
  }
}

@media (max-width: 769px) {
  .contact_card {
    padding: 96px 0 28px;
  }

  .contact_card--icon {
    font-size: 56px;
    top: 17px;
  }

  .contact_card--title {
    font-size: 16px;
  }

  .contact_card--text {
    font-size: 14px;
    line-height: 20px;
  }
}

.statistics {
  position: relative;
}

.statistics--item {
  position: relative;
  padding: 59px 0 59px 61px;
}

.statistics--item_icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: -2px;
  font-size: 48px;
}

  .statistics--item_icon.icons8-why-us {
    font-size: 54px;
    margin-top: -4px;
  }

  .statistics--item_icon.icons8-bank {
    font-size: 52px;
  }

.statistics--item_label {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .statistics--item_label {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .statistics {
    position: relative;
  }

  .statistics--item {
    position: relative;
    padding: 39px 0 39px 61px;
    display: inline-block;
  }

  .statistics--item_icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: -2px;
    font-size: 48px;
  }

    .statistics--item_icon.icons8-why-us {
      font-size: 54px;
      margin-top: -4px;
    }

    .statistics--item_icon.icons8-bank {
      font-size: 52px;
    }

  .statistics--item_label {
    color: #fff;
    font-size: 20px;
  }
}

@media (max-width: 769px) {
  .statistics {
    text-align: center;
  }
}

.tab_navigation {
  position: relative;
  border-top: 1px solid #e9e9e9;
  z-index: 1;
}

.tab_navigation--link {
  position: relative;
  padding: 24px 0 10px;
  display: block;
  text-align: center;
}

  .tab_navigation--link:before {
    display: none;
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background: #59bcdb;
    top: -1px;
    left: 0;
  }

  .tab_navigation--link.-active:before,
  .tab_navigation--link:hover:before {
    display: block;
  }

  .tab_navigation--link.-active i,
  .tab_navigation--link:hover i,
  .tab_navigation--link.-active span,
  .tab_navigation--link:hover span {
    color: #59bcdb;
  }

.tab_navigation--link_icon {
  position: relative;
  display: inline-block;
  font-size: 26px;
  vertical-align: baseline;
  margin-right: 11px;
  color: #262626;
  vertical-align: top;
  top: -6px;
}

.tab_navigation--link_text {
  color: #262626;
  font-size: 16px;
  vertical-align: top;
}

@media (max-width: 1200px) {
  .tab_navigation--link_icon {
    font-size: 24px;
    margin-right: 8px;
  }

  .tab_navigation--link_text {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .tab_navigation--link.-active {
    border: 0;
  }

    .tab_navigation--link.-active:before {
      display: none;
    }

  .tab_navigation--link_text {
    font-size: 16px;
  }

  .tab_navigation--link_icon {
    font-size: 26px;
  }
}

.case_studies {
  position: relative;
}

  .case_studies [class*=col] {
    display: none;
  }

.case_studies--item {
  background-size: cover;
  position: relative;
  display: block;
  height: 200px;
  margin-top: 30px;
  border-radius: 3px;
  overflow: hidden;
}

  .case_studies--item span {
    display: none;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

    .case_studies--item span:after {
      content: '\f14c';
      display: inline-block;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-decoration: inherit;
      text-rendering: optimizeLegibility;
      text-transform: none;
      font-smoothing: antialiased;
      position: relative;
      margin: 0 0 0 7px;
      top: 1px;
    }

  .case_studies--item img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .case_studies--item:hover span {
    display: block;
  }

  .case_studies--item:hover img {
    display: none;
  }

.tab_navigation + .case_studies {
  margin: 33px 0 0;
}

@media (max-width: 992px) {
  .tab_navigation + .case_studies {
    margin: 0;
  }
}

.who_mini {
  position: relative;
}

  .who_mini .col-md-12:first-child .who_mini--gallery_item {
    padding-top: 0;
  }

.who_mini--title {
  font-size: 36px;
}

.who_mini--container {
  position: relative;
  padding: 35px 0 0;
}

.who_mini--gallery_item {
  padding: 39px 0 0;
  border-radius: 3px;
  overflow: hidden;
}

  .who_mini--gallery_item img {
    max-width: 100%;
    vertical-align: top;
  }

.who_mini--text {
  padding: 5px 0 0;
}

  .who_mini--text p {
    color: #969696;
    font-size: 16px;
    line-height: 23px;
    padding: 0 0 18px;
  }

.who_mini--more {
  font-size: 16px;
  color: #59bcdb;
  display: block;
}

  .who_mini--more:after {
    content: '\f14c';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: relative;
    margin: 0 0 0 7px;
    top: 1px;
  }

@media (max-width: 992px) {
  .who_mini--gallery_item {
    padding: 0;
  }

    .who_mini--gallery_item img {
      width: 100%;
    }

  .who_mini--text {
    padding: 34px 0 0;
    font-size: 15px;
    line-height: 21px;
  }

  .who_mini--more {
    font-size: 15px;
  }

  .who_mini--title {
    padding: 34px 0 0;
    font-size: 32px;
  }
}

@media (max-width: 769px) {
  .who_mini--gallery_item {
    padding: 39px 0 0;
  }
}

.why_mini {
  position: relative;
}

.why_mini--title {
  font-size: 36px;
}

.why_mini--list {
  position: relative;
  padding: 35px 0 0;
}

.why_mini--item {
  position: relative;
  margin-top: 33px;
}

  .why_mini--item:first-child {
    margin-top: 0;
  }

.why_mini--item_icon {
  display: inline-block;
  color: #59bcdb;
  font-size: 26px;
  vertical-align: middle;
  margin: 0 5px 0 0;
}

.why_mini--item_title {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}

.why_mini--item_text {
  font-size: 16px;
  padding: 10px 0 0;
  color: #969696;
  line-height: 23px;
}

.strong_points {
  position: relative;
  margin-top: -75px;
}

@media (max-width: 769px) {
  .strong_points {
    position: relative;
    margin-top: -25px;
  }
}

.strong_points_item {
  position: relative;
  padding: 70px 0 0;
  margin: 92px 0 0;
}

.strong_points_item--icon {
  position: absolute;
  color: #59bcdb;
  font-size: 48px;
  top: -5px;
  left: -6px;
}

.strong_points_item--title {
  font-size: 20px;
  line-height: 30px;
}

.strong_points_item--text {
  color: #969696;
  font-size: 16px;
  line-height: 23px;
  padding: 10px 0 0;
}

.strong_points_item--more {
  font-size: 16px;
  color: #59bcdb;
  display: block;
  padding-top: 28px;
}

  .strong_points_item--more:after {
    content: '\f14c';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: relative;
    margin: 0 0 0 7px;
    top: 1px;
  }

@media (max-width: 769px) {
  .strong_points_item {
    text-align: center;
    padding: 60px 0 0;
    margin: 60px 0 0;
  }

  .strong_points_item--icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.page_header {
  position: relative;
  text-align: center;
  padding: 80px 0 92px;
  font-weight: 300;
}

.page_header--title {
  font-size: 60px;
  color: #fff;
}

@media (max-width: 1200px) {
  .page_header {
    padding: 70px 0;
  }

  .page_header--title {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .page_header {
    padding: 50px 0;
  }

  .page_header--title {
    font-size: 40px;
  }
}

@media (max-width: 769px) {
  .page_header {
    padding: 30px 0;
  }

  .page_header--title {
    font-size: 35px;
  }
}

.breadcrumbs {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
}

.breadcrumbs--list {
  padding: 16px 0 18px;
}

.breadcrumbs--item {
  display: inline-block;
  margin: 0 0 0 35px;
  position: relative;
}

  .breadcrumbs--item:before {
    display: block;
    content: '\f14c';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: absolute;
    left: -27px;
    top: -1px;
    color: #bdbdbd;
  }

  .breadcrumbs--item:first-child {
    margin-left: 0;
  }

    .breadcrumbs--item:first-child:before {
      display: none;
    }

.breadcrumbs--link {
  display: block;
  font-size: 14px;
  color: #262626;
}

  .breadcrumbs--link.-active {
    color: #6975a6;
  }

.our_mission {
  position: relative;
  margin-top: -30px;
}

.our_mission--item {
  position: relative;
  margin-top: 30px;
}

.our_mission--item_media {
  border-radius: 3px;
  overflow: hidden;
}

  .our_mission--item_media img {
    width: 100%;
    vertical-align: top;
  }

.our_mission--item_title {
  font-size: 20px;
  padding: 30px 0 0;
  color: #262626;
}

.our_mission--item_body p {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  padding: 15px 0 13px;
}

.our_mission--item_body ul li {
  position: relative;
  margin: 14px 0 0;
  padding: 0 0 0 25px;
  color: #969696;
  font-style: italic;
}

  .our_mission--item_body ul li:before {
    content: '\f14c';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: absolute;
    display: block;
    color: #59bcdb;
    top: 0;
    left: 0;
  }

  .our_mission--item_body ul li:first-child {
    margin-top: 0;
  }

@media (max-width: 769px) {
  .our_mission--item_title {
    padding: 20px 0 0;
  }

  .our_mission--item_body p {
    padding: 10px 0 10px;
  }

  .our_mission--item_body ul li {
    margin: 10px 0 0;
    padding: 0 0 0 25px;
  }
}

@media (max-width: 425px) {
  .our_mission--item_title {
    padding: 15px 0 0;
    font-size: 18px;
  }

  .our_mission--item_body {
    font-size: 15px;
    line-height: 21px;
  }

    .our_mission--item_body p {
      padding: 10px 0 10px;
    }

    .our_mission--item_body ul li {
      margin: 7px 0 0;
      padding: 0 0 0 25px;
    }

      .our_mission--item_body ul li:before {
        top: 2px;
      }
}

.team {
  position: relative;
  margin: -28px 0 0;
}

.team_member {
  position: relative;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin: 30px 0 0;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
}

.team_member--image img {
  width: 100%;
  vertical-align: top;
  overflow: hidden;
}

.team_member--body {
  padding: 25px;
}

.team_member--name {
  font-size: 18px;
  font-weight: 600;
}

.team_member--position {
  display: block;
  color: #969696;
  font-size: 16px;
  line-height: 23px;
  margin: 10px 0 0;
}

.team_member--email {
  display: block;
  margin: 8px 0 0;
}

  .team_member--email a {
    color: #59bcdb;
  }

    .team_member--email a:hover {
      text-decoration: underline;
    }

.team_member--links {
  margin: 22px 0 0;
}

  .team_member--links li {
    display: inline-block;
  }

    .team_member--links li a {
      color: #bdbdbd;
      display: block;
      padding: 5px;
    }

      .team_member--links li a:hover {
        color: #59bcdb;
      }

@media (max-width: 992px) {
  .team_member--body {
    padding: 20px;
  }
}

@media (max-width: 769px) {
  .team_member--body {
    padding: 20px 10px;
  }

  .team_member--name {
    font-size: 16px;
  }

  .team_member--position {
    font-size: 15px;
    line-height: 21px;
    margin: 8px 0 0;
  }

  .team_member--links {
    margin: 15px 0 0;
  }

  .team_member--email {
    font-size: 15px;
  }
}

.our_company {
  position: relative;
}

.our_company--text {
  position: relative;
  padding: 4px 45px 0 0;
}

  .our_company--text h3 {
    font-size: 20px;
    margin: 0 0 13px;
  }

  .our_company--text p {
    font-size: 16px;
    color: #969696;
    line-height: 23px;
    margin: 15px 0 0;
  }

    .our_company--text p:first-of-type {
      margin-top: 0;
    }

.our_company--quote {
  padding: 0;
}

.our_company--quote_media {
  position: relative;
}

  .our_company--quote_media img {
    width: 100%;
    vertical-align: top;
    overflow: hidden;
  }

.our_company--quote_text {
  position: relative;
  font-size: 16px;
  color: #969696;
  line-height: 23px;
  font-style: italic;
  padding: 45px 0 0;
}

  .our_company--quote_text:before {
    display: block;
    content: '\f147';
    position: absolute;
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    top: -5px;
    left: -3px;
    font-size: 32px;
    color: #59bcdb;
  }

.our_company--quote_author {
  position: relative;
}

  .our_company--quote_author strong {
    display: block;
    padding: 19px 0 0;
  }

  .our_company--quote_author span {
    padding: 8px 0 0;
    display: block;
    font-size: 14px;
    color: #969696;
  }

@media (max-width: 992px) {
  .our_company--text {
    margin-bottom: 20px;
    padding: 0;
  }

  .our_company--quote_media {
    margin-bottom: 20px;
  }

  .our_company--quote_text {
    padding: 35px 0 0;
  }
}

@media (max-width: 992px) and (max-width: 425px) {
  .our_company--text h3 {
    font-size: 18px;
  }

  .our_company--text p {
    font-size: 15px;
    line-height: 21px;
  }

  .our_company--quote_text {
    font-size: 15px;
    line-height: 21px;
  }
}

.blog {
  position: relative;
}

  .blog .article {
    margin: 0 0 100px;
  }

  .blog.-latest .article {
    margin: 0;
  }

@media (max-width: 992px) {
  .blog .article,
  .blog.-latest .article {
    margin-bottom: 60px;
  }
}

@media (max-width: 769px) {
  .blog .article,
  .blog.-latest .article {
    margin-bottom: 40px;
  }
}

.article {
  padding: 0 35px 0 0;
}

.article--title {
  color: #262626;
  font-size: 50px;
  line-height: 60px;
  font-weight: 300;
}

  .article--title a {
    color: inherit;
  }

.article--meta {
  padding: 14px 0 0;
}

.article--meta_item {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #969696;
  padding: 0 0 0 28px;
  margin: 10px 10px 0 0;
}

  .article--meta_item:after {
    content: '\f156';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: absolute;
    display: block;
    color: #59bcdb;
    font-size: 20px;
    margin-top: -2px;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
  }

  .article--meta_item a:hover {
    text-decoration: underline;
  }

  .article--meta_item:last-child {
    margin-right: 0;
  }

  .article--meta_item.-date:after {
    content: '\f110';
    font-size: 23px;
    margin-top: -3px;
  }

  .article--meta_item.-author {
    padding-left: 25px;
  }

    .article--meta_item.-author a {
      color: #59bcdb;
    }

    .article--meta_item.-author:after {
      content: '\f126';
    }

.article--content {
  margin: 23px 0 0;
  font-size: 16px;
  line-height: 23px;
  color: #969696;
}

  .article--content figure {
    border-radius: 3px;
    margin: 30px 0;
    overflow: hidden;
  }

    .article--content figure img {
      width: 100%;
      vertical-align: top;
    }

  .article--content > p {
    margin: 30px 0;
  }

  .article--content a {
    color: #34c1e4;
  }

    .article--content a:hover {
      text-decoration: underline;
    }

  .article--content h1,
  .article--content h2,
  .article--content h3,
  .article--content h4,
  .article--content h5,
  .article--content h6 {
    margin: 30px 0;
    color: #363636;
  }

  .article--content h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .article--content h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .article--content h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .article--content h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .article--content h5 {
    font-size: 22px;
    line-height: 28px;
  }

  .article--content h6 {
    font-size: 19px;
    line-height: 25px;
  }

  .article--content blockquote {
    font-style: italic;
    font-weight: normal;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #0fbe7c;
    margin: 20px 0;
    background: #fff;
  }

    .article--content blockquote:before,
    .article--content blockquote:after {
      content: '';
    }

    .article--content blockquote cite {
      text-transform: uppercase;
      font-size: 12px;
      font-style: normal;
      display: block;
      text-align: right;
    }

  .article--content table {
    width: 100%;
    background: #fff;
    margin: 0 0 20px;
  }

    .article--content table tr:nth-child(2n) td {
      background: #fafafa;
    }

    .article--content table th {
      font-weight: bold;
      text-align: left;
      color: #363636;
    }

    .article--content table td,
    .article--content table th {
      border: 1px solid #e5e5e5;
      padding: 8px 14px;
    }

  .article--content pre,
  .article--content code,
  .article--content kbd,
  .article--content var,
  .article--content samp,
  .article--content tt {
    font-family: Hack, Courier, monospace;
    font-size: 14px;
    line-height: 19px;
    white-space: pre-wrap;
  }

  .article--content pre {
    background-color: #fff;
    margin-bottom: 20px;
    overflow: auto;
    padding: 20px;
    border: 1px solid #e5e5e5;
  }

  .article--content dl {
    margin: 0 0 20px;
  }

    .article--content dl dt {
      margin: 0 0 3px;
      font-weight: bold;
    }

    .article--content dl dd {
      margin: 0 0 15px;
    }

  .article--content ul,
  .article--content ol {
    padding: 0 0 0 35px;
    margin-bottom: 30px;
  }

    .article--content ul li > ol,
    .article--content ol li > ol,
    .article--content ul li > ul,
    .article--content ol li > ul {
      margin-bottom: 0;
    }

  .article--content ul {
    list-style: circle;
  }

  .article--content ol {
    list-style: decimal;
  }

  .article--content address {
    display: block;
    font-style: italic;
    margin: 0 0 20px;
  }

  .article--content abbr,
  .article--content acronym,
  .article--content dfn {
    border-bottom: 1px dotted #666;
    cursor: help;
  }

  .article--content cite,
  .article--content em,
  .article--content i {
    font-style: italic;
  }

  .article--content ins {
    background: #fff;
  }

  .article--content sub,
  .article--content sup {
    font-size: 10px;
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
  }

  .article--content sub {
    top: 0.5ex;
  }

  .article--content sup {
    bottom: 1ex;
  }

.article--footer {
  padding: 22px 0 40px;
  vertical-align: middle;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

  .article--footer .tags-links {
    position: relative;
    display: inline-block;
    width: 60%;
    margin: -10px 0 0;
  }

    .article--footer .tags-links > a {
      border: 1px solid #e9e9e9;
      color: #cecece;
      font-size: 14px;
      font-style: italic;
      padding: 6px 10px;
      margin: 10px 10px 0 0;
      border-radius: 3px;
      display: inline-block;
    }

    .article--footer .tags-links > span {
      position: absolute;
      width: 1px;
      height: 1px;
      clip: 1px 1px 1px 1px;
      overflow: hidden;
    }

  .article--footer .share {
    margin-left: auto;
  }

.article.-blog_page {
  padding: 0;
}

  .article.-blog_page .article--title {
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
  }

    .article.-blog_page .article--title > a {
      color: #262626;
    }

  .article.-blog_page .article--content {
    margin: 0;
  }

    .article.-blog_page .article--content > p {
      margin: 7px 0;
    }

  .article.-blog_page .article--footer {
    padding: 15px 0 0;
  }

  .article.-blog_page .article--read_more {
    color: #59bcdb;
  }

    .article.-blog_page .article--read_more:after {
      content: '\f14c';
      display: inline-block;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-decoration: inherit;
      text-rendering: optimizeLegibility;
      text-transform: none;
      font-smoothing: antialiased;
      position: relative;
      margin: 0 0 0 7px;
      top: 1px;
    }

  .article.-blog_page .article--preview {
    overflow: hidden;
    border-radius: 3px;
    margin: 0 0 26px;
  }

    .article.-blog_page .article--preview img {
      vertical-align: top;
      overflow: hidden;
      width: 100%;
    }

  .article.-blog_page .article--meta {
    padding: 19px 0 0;
  }

  .article.-blog_page .article--content {
    padding: 12px 0 0;
  }

.article.-blue_dark .article--meta_item:after {
  color: #0b66a2;
}

@media (max-width: 992px) {
  .article {
    padding-right: 0;
  }

    .article.-blog_page .article--preview {
      margin: 0 0 10px;
    }

    .article.-blog_page .article--meta {
      padding: 10px 0 0;
    }

    .article.-blog_page .article--content {
      padding: 5px 0 0;
    }

    .article.-blog_page .article--footer {
      padding: 5px 0 0;
    }
}

@media (max-width: 769px) {
  .article--title {
    font-size: 40px;
    line-height: 50px;
  }

  .article--content {
    font-size: 14px;
    line-height: 21px;
  }

    .article--content > p,
    .article--content > figure,
    .article--content h1,
    .article--content h2,
    .article--content h3,
    .article--content h4,
    .article--content h5,
    .article--content h6 {
      margin: 20px 0;
    }

    .article--content blockquote {
      margin: 15px 0;
      padding: 15px;
    }

    .article--content table {
      margin: 0 0 15px;
    }

    .article--content ul,
    .article--content ol {
      margin-bottom: 20px;
      padding: 0 0 0 25px;
    }

    .article--content h1 {
      font-size: 26px;
      line-height: 32px;
    }

    .article--content h2 {
      font-size: 24px;
      line-height: 30px;
    }

    .article--content h3 {
      font-size: 22px;
      line-height: 28px;
    }

    .article--content h4 {
      font-size: 20px;
      line-height: 26px;
    }

    .article--content h5 {
      font-size: 18px;
      line-height: 24px;
    }

    .article--content h6 {
      font-size: 15px;
      line-height: 21px;
    }

  .article--footer .tags-links {
    width: 100%;
    float: none;
  }

  .article--footer .share {
    margin: 30px 0 0;
    float: none;
  }

  .article.-blog_page .article--title {
    font-size: 18px;
    line-height: 22px;
  }

  .article.-blog_page .article--content {
    font-size: 15px;
    line-height: 18px;
  }

  .article.-blog_page .article--footer {
    font-size: 15px;
  }
}

@media (max-width: 425px) {
  .article--title {
    font-size: 28px;
    line-height: 36px;
  }

  .article.-blog_page .article--meta_item {
    margin: 10px 0 0 0;
    display: block;
  }

    .article.-blog_page .article--meta_item:first-child {
      margin-top: 0;
    }

      .article.-blog_page .article--meta_item:first-child:after {
        left: -2px;
      }
}

.calendar {
  display: table;
  width: 100%;
  position: relative;
}

.calendar--title {
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 19px 0;
  text-transform: uppercase;
}

.calendar--months {
  border-top: 1px solid #e5e5e5;
}

  .calendar--months > th {
    padding: 15px 0;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }

    .calendar--months > th:first-child {
      padding-left: 5px;
    }

    .calendar--months > th:last-child {
      padding-right: 5px;
    }

.calendar--links {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.calendar--arrow {
  position: absolute;
  top: 13px;
  right: 20px;
  z-index: 2;
  font-size: 24px;
}

  .calendar--arrow.-prev {
    left: 20px;
    z-index: 1;
  }

  .calendar--arrow > a {
    color: #cbcbcb;
  }

    .calendar--arrow > a:hover {
      color: #8c8a8a;
    }

.calendar--days {
  background: #fff;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

  .calendar--days > tr > td {
    padding-bottom: 14px;
  }

    .calendar--days > tr > td:first-child {
      padding-left: 5px;
    }

    .calendar--days > tr > td:last-child {
      padding-right: 5px;
    }

    .calendar--days > tr > td > span {
      color: #bababa;
      font-weight: normal;
    }

.comments {
  margin: 0 35px 0 0;
  padding: 36px 0 0 0;
  position: relative;
}

  .comments:before {
    display: block;
    height: 1px;
    background: #e9e9e9;
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    right: -15px;
  }

.comments--title {
  font-size: 20px;
  padding: 0 0 46px;
}

.comments .comment_form {
  padding: 36px 0 0 0;
  position: relative;
}

  .comments .comment_form:before {
    display: block;
    height: 1px;
    background: #e9e9e9;
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    right: -15px;
  }

@media (max-width: 992px) {
  .comments {
    margin-right: 0;
  }

  .comments--title {
    padding-bottom: 30px;
  }
}

.comment {
  position: relative;
  padding: 0 0 0 80px;
}

  .comment .comment {
    padding: 0 0 0 80px;
    border-bottom: 0;
  }

.comment--header {
  position: relative;
}

.comment--username {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 0 0 6px;
  color: #262626;
}

  .comment--username a {
    color: #262626;
  }

    .comment--username a:hover {
      text-decoration: underline;
    }

.comment--date {
  font-size: 14px;
  color: #969696;
}

.comment--userpic {
  position: absolute;
  left: -80px;
  top: -8px;
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 60px;
}

.comment--content {
  margin: 10px 0 46px;
  padding: 18px 20px;
  position: relative;
  background: #f5f5f5;
  color: #969696;
  font-size: 16px;
  line-height: 23px;
  border-radius: 3px;
}

  .comment--content p {
    padding: 0 0 17px;
  }

  .comment--content:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #f5f5f5 transparent;
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
  }

.comment--reply {
  color: #59bcdb;
  font-size: 14px;
  font-weight: 600;
}

  .comment--reply:before {
    content: '\f14a';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: relative;
    font-size: 16px;
    margin: 0 7px 0 0;
    transform: scale(-1, 1);
    top: 0;
  }

@media (max-width: 769px) {
  .comment {
    padding: 0;
  }

  .comment--userpic {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 10px;
  }

  .comment--content {
    font-size: 14px;
    line-height: 21px;
    margin: 10px 0 30px;
  }

  .comment .comment {
    padding: 0 0 0 30px;
  }
}

.comment_form--title {
  font-size: 20px;
  margin: 0 0 27px;
}

@media (max-width: 992px) {
  .comment_form--footer .button {
    display: block;
    width: 100%;
  }
}

.twitter_feed {
  margin: 0 auto;
}

.twitter_feed--content {
  padding: 0;
}

.twitter_feed--messages {
  padding: 30px 0 0;
}

.twitter_feed--message {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: #969696;
  text-align: center;
  margin: 0 10%;
}

  .twitter_feed--message p {
    padding: 0;
    position: relative;
  }

.twitter_feed--message_author {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin: 34px 0 0;
  padding: 31px 0 0;
  position: relative;
}

  .twitter_feed--message_author a {
    color: #59bcdb;
    text-decoration: underline;
  }

  .twitter_feed--message_author:before {
    position: absolute;
    content: '';
    display: block;
    background: #d7d7d7;
    width: 14px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }

.twitter_feed--icon {
  display: block;
  width: 100%;
  text-align: center;
}

  .twitter_feed--icon i {
    color: #59bcdb;
    font-size: 36px;
  }

.twitter_feed .slick-slider .slick-dots {
  margin: 55px 0 0;
}

.section .twitter_feed {
  margin: -30px 0 -47px;
}

@media (max-width: 992px) {
  .twitter_feed {
    margin: 0 auto !important;
  }

  .twitter_feed--icon {
    padding: 0;
  }

    .twitter_feed--icon i {
      font-size: 36px;
    }
}

@media (max-width: 769px) {
  .twitter_feed--icon i {
    font-size: 32px;
  }

  .twitter_feed--messages {
    padding: 20px 0 0;
  }

  .twitter_feed--message {
    font-size: 18px;
    line-height: 26px;
    margin: 20px 0 0;
    padding: 0 6%;
  }

  .twitter_feed .slick-slider .slick-dots {
    margin: 30px 0 0;
  }
}

.clients_reviews--slide {
  padding: 0 15px;
}

.clients_reviews .slick-slider .slick-list {
  margin: -10px -15px;
}

.clients_reviews .slick-slider .slick-track {
  padding: 10px 0;
  margin: 0;
}

.clients_reviews .slick-slider .slick-dots {
  position: relative;
  margin: 80px 0 0;
}

.section .clients_reviews {
  margin: 0 0 -25px;
}

.section.-rounded .clients_reviews {
  margin-bottom: -50px;
}

@media (max-width: 992px) {
  .clients_reviews .slick-slider .slick-dots {
    margin: 35px 0 0;
  }
}

.client_review {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  padding: 27px 30px 46px;
}

.client_review--text {
  font-size: 14px;
  line-height: 21px;
  color: #969696;
  padding: 0;
}

.client_review--client {
  margin: 25px 0 0;
  position: relative;
}

  .client_review--client figure {
    position: relative;
    float: left;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 16px 0 0;
    width: 70px;
    height: 70px;
  }

    .client_review--client figure img {
      vertical-align: top;
      width: 100%;
    }

  .client_review--client strong {
    font-size: 16px;
    display: block;
    padding: 16px 0 0;
  }

  .client_review--client span {
    display: block;
    font-size: 14px;
    color: #969696;
    padding: 9px 0 0;
  }

@media (max-width: 769px) {
  .client_review {
    padding: 20px 20px 30px;
  }

  .client_review--client {
    margin: 20px 0 0;
  }

  .client_review figure {
    width: 50px;
    height: 50px;
  }

  .client_review strong {
    padding-top: 6px;
  }
}

.link {
  position: relative;
  font-size: 16px;
  color: #59bcdb;
}

  .link:after {
    content: '\f14c';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    position: relative;
    margin: 0 0 0 7px;
    top: 1px;
  }

  .link.-blue_dark {
    color: #0b66a2;
  }

  .link.-white {
    color: #fff;
  }

.additional_help {
  position: relative;
}

.additional_help--item_card {
  display: table;
  width: 100%;
  padding: 0;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  overflow: hidden;
}

.additional_help--item_card_body {
  display: table-cell;
  padding: 18px 0 0 30px;
  vertical-align: top;
  width: 50%;
}

.additional_help--item_card_title {
  font-size: 20px;
  line-height: 30px;
  color: #262626;
}

.additional_help--item_card_text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  margin: 20px 0 0;
  position: relative;
}

  .additional_help--item_card_text p {
    padding: 16px 0 0;
  }

  .additional_help--item_card_text:before {
    display: block;
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #ddd;
    top: -2px;
    left: 0;
  }

.additional_help--item_card_media {
  position: relative;
  display: table-cell;
  width: 50%;
  max-width: 50%;
  vertical-align: top;
}

  .additional_help--item_card_media a {
    display: block;
    position: relative;
  }

    .additional_help--item_card_media a img {
      width: 100%;
      vertical-align: top;
    }

.additional_help--item_gallery figure {
  overflow: hidden;
  border-radius: 3px;
  margin: 28px 0 0;
}

  .additional_help--item_gallery figure img {
    width: 100%;
    vertical-align: top;
    overflow: hidden;
  }

  .additional_help--item_gallery figure:first-child {
    margin-top: 0;
  }

.additional_help .tab_navigation {
  margin-bottom: 65px;
}

@media (max-width: 1200px) {
  .additional_help--item_card_body {
    display: block;
    width: 100%;
    padding: 18px 15px;
  }

  .additional_help--item_card_media {
    width: 100%;
    display: block;
    max-width: 100%;
  }

    .additional_help--item_card_media a {
      display: block;
      position: relative;
      max-height: 300px;
      overflow: hidden;
    }

      .additional_help--item_card_media a img {
        vertical-align: top;
        width: 100%;
      }

  .additional_help--item_card_title {
    line-height: 25px;
  }

  .additional_help--item_card_text {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 23px;
  }

    .additional_help--item_card_text p {
      padding: 16px 0 0;
    }
}

@media (max-width: 992px) {
  .additional_help {
    position: relative;
  }

  .additional_help--item_card_body {
    display: block;
    width: 100%;
    padding: 18px 0 0;
  }

  .additional_help--item_card_title {
    padding: 0 20px 0;
  }

  .additional_help--item_card_text {
    margin: 20px;
  }

  .additional_help--item_card {
    display: block;
  }

  .additional_help--item_card_media {
    position: relative;
    display: block;
    width: 100%;
  }

    .additional_help--item_card_media a {
      display: block;
      position: relative;
    }

      .additional_help--item_card_media a img {
        vertical-align: top;
        width: 100%;
      }

  .additional_help--item_gallery {
    margin: 0 -10px;
  }

    .additional_help--item_gallery figure {
      margin: 20px 0 0;
      padding: 0 10px;
      float: left;
      width: 50%;
    }

      .additional_help--item_gallery figure:first-child {
        margin: 20px 0 0 0;
      }
}

@media (max-width: 769px) {
  .additional_help--item_card_text {
    font-size: 15px;
    line-height: 21px;
    margin: 15px 20px;
  }

    .additional_help--item_card_text p {
      padding: 12px 0 0;
    }

  .additional_help--item_card_title {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 600px) {
  .additional_help--item_gallery {
    margin-top: 20px;
  }

    .additional_help--item_gallery figure {
      margin: 20px 0 0;
      width: 100%;
    }

      .additional_help--item_gallery figure:first-child {
        margin: 0;
      }
}

@media (max-width: 425px) {
  .additional_help--item_card_title {
    padding: 0 10px 0;
  }

  .additional_help--item_card_text {
    margin: 15px 10px;
  }

  .additional_help--item_gallery {
    margin: 0 -5px;
  }

    .additional_help--item_gallery figure {
      margin: 15px 0 0;
      padding: 0 5px;
    }

      .additional_help--item_gallery figure:first-child {
        margin: 15px 0 0 0;
      }

  .additional_help--item_card_body {
    padding: 10px 0 0;
  }
}

.button_play {
  display: block;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  background: rgba(0,0,0,0.3);
  font-size: 26px;
  color: #fff;
  border-radius: 100px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

  .button_play [class*=icons8] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.why_articles {
  position: relative;
}

@media (max-width: 992px) {
  .why_articles .col-md-4 .why_article {
    margin-top: 30px;
  }

  .why_articles .col-md-4:first-child .why_article {
    margin-top: 0;
  }
}

.why_article {
  position: relative;
}

.why_article--preview {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin: 0 0 29px;
}

  .why_article--preview img {
    vertical-align: top;
    width: 100%;
  }

.why_article--title {
  font-size: 20px;
}

.why_article--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  padding: 14px 0 0;
}

.why_article--footer {
  padding: 23px 0 0;
}

@media (max-width: 992px) {
  .why_article--preview {
    margin: 0 0 10px;
  }

  .why_article--title {
    font-size: 20px;
  }

  .why_article--text {
    font-size: 16px;
    line-height: 23px;
    color: #969696;
    padding: 14px 0 0;
  }

  .why_article--footer {
    padding: 10px 0 0;
  }
}

.slide_block {
  background: url("../images/slide_block_bg.jpg") top center no-repeat;
  background-size: cover;
  height: 587px;
}

  .slide_block .container {
    position: relative;
    height: 587px;
  }

.slide_block--body {
  max-width: 605px;
  padding: 39px 120px 40px 39px;
  background: rgba(10,86,138,0.85);
  border-radius: 3px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
}

.slide_block--title {
  font-size: 45px;
  font-weight: 300;
  color: #fff;
}

.slide_block--text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  padding: 23px 0 35px;
  color: #fff;
}

.slide_block--icon {
  font-size: 48px;
  position: absolute;
  background: #5cc67b;
  border-radius: 3px 0 0 3px;
  width: 75px;
  text-align: center;
  padding: 10px 0;
  right: -5px;
  top: 30px;
  color: #fff;
}

  .slide_block--icon:after {
    position: absolute;
    display: block;
    content: '';
    right: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 0;
    border-color: #3e8754 transparent transparent transparent;
  }

.promo_slider.-rounded .slide_block {
  height: 627px;
}

  .promo_slider.-rounded .slide_block .container {
    height: 627px;
  }

@media (max-width: 992px) {
  .slide_block {
    height: auto !important;
  }

    .slide_block .container {
      position: relative;
      height: auto !important;
    }

  .slide_block--body {
    max-width: 505px;
    padding: 30px 100px 30px 30px;
    position: relative;
    transform: none;
    margin: 50px 0;
  }

  .slide_block--title {
    font-size: 42px;
  }

  .slide_block--text {
    font-size: 17px;
    line-height: 26px;
    padding: 20px 0 30px;
  }

  .slide_block--icon {
    font-size: 44px;
    width: 70px;
    padding: 10px 0;
  }
}

@media (max-width: 769px) {
  .slide_block {
    height: auto;
    padding: 0;
    width: 100%;
  }

    .slide_block .container {
      position: relative;
      height: auto;
      width: 100%;
      padding: 0;
    }

  .slide_block--body {
    width: 100%;
    max-width: none;
    padding: 39px 120px 40px 39px;
    margin: 0;
    left: 0;
    top: 0;
    border-radius: 0;
  }

  .slide_block--title {
    font-size: 48px;
  }

  .slide_block--text {
    font-size: 20px;
    line-height: 28px;
    padding: 23px 0 35px;
  }

  .slide_block--icon {
    font-size: 48px;
    width: 75px;
    padding: 10px 0;
    right: 0;
    top: 30px;
  }

    .slide_block--icon:after {
      display: none;
    }
}

@media (max-width: 600px) {
  .slide_block--body {
    padding: 30px 100px 30px 30px;
  }

  .slide_block--title {
    font-size: 42px;
  }

  .slide_block--text {
    font-size: 17px;
    line-height: 26px;
    padding: 20px 0 30px;
  }

  .slide_block--icon {
    font-size: 34px;
    width: 60px;
    padding: 10px 0;
  }
}

@media (max-width: 425px) {
  .slide_block--body {
    padding: 30px 15px 30px 15px;
  }

  .slide_block--title {
    font-size: 34px;
  }

  .slide_block--text {
    font-size: 15px;
    line-height: 21px;
    padding: 10px 20px 20px 0;
  }

  .slide_block--icon {
    display: none;
  }

  .slide_block .button {
    display: block;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .slide_block--title {
    font-size: 32px;
  }

  .slide_block--text {
    font-size: 15px;
    line-height: 21px;
    padding: 10px 0 20px;
  }

  .slide_block--icon {
    font-size: 36px;
    width: 45px;
    padding: 5px 0;
  }
}

.slide_fancy {
  position: relative;
  background: url("../images/slide_fancy_bg.jpg") top center no-repeat;
  background-size: cover;
  height: 587px;
  overflow: hidden;
}

  .slide_fancy .container {
    position: relative;
    height: 587px;
  }

  .slide_fancy:before {
    width: 70%;
    height: 100%;
    background: rgba(71,77,122,0.9);
    content: '';
    display: block;
    position: absolute;
    transform: skewX(-25deg);
    top: 0;
    left: -11%;
  }

.slide_fancy--body {
  max-width: 605px;
  padding: 0 100px 0 0;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
}

.slide_fancy--title {
  font-size: 60px;
  font-weight: 300;
  color: #34c1e4;
  margin: -6px;
}

.slide_fancy--text {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  padding: 25px 0 34px;
  color: #fff;
}

@media (max-width: 1200px) {
  .slide_fancy:before {
    width: 80%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -20%;
  }
}

@media (max-width: 992px) {
  .slide_fancy {
    text-align: center;
    max-height: 387px;
  }

    .slide_fancy .container {
      position: relative;
      max-height: 387px;
    }

    .slide_fancy:before {
      width: 100%;
      height: 100%;
      background: rgba(71,77,122,0.9);
      content: '';
      display: block;
      position: absolute;
      transform: none;
      top: 0;
      left: 0;
    }

  .slide_fancy--body {
    width: 80%;
    padding: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 769px) {
  .slide_fancy {
    text-align: center;
    height: auto;
    padding: 30px 0;
  }

    .slide_fancy .container {
      position: relative;
      height: auto;
    }

  .slide_fancy--body {
    width: 80%;
    position: relative;
    transform: none;
    left: auto;
    margin: 0 auto;
  }

  .slide_fancy--title {
    font-size: 46px;
    margin: -6px;
  }

  .slide_fancy--text {
    font-size: 18px;
    line-height: 26px;
    padding: 20px 0 25px;
  }
}

@media (max-width: 570px) {
  .slide_fancy--title {
    font-size: 40px;
    margin: -6px;
  }

  .slide_fancy--text {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 0 25px;
  }
}

.share {
  position: relative;
}

.share--opener {
  border: 1px solid #34c1e4;
  border-radius: 3px;
  font-size: 14px;
  position: relative;
  padding: 4px 10px 4px 32px;
  color: #34c1e4;
}

  .share--opener .icons8-share {
    font-size: 21px;
    position: absolute;
    top: 0;
    left: 7px;
  }

.share--dropdown {
  white-space: nowrap;
  display: none;
  padding: 10px 0 10px 10px;
  background: #fff;
  border-radius: 3px;
  top: 100%;
  right: 0;
  position: absolute;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin: 12px 0 0;
  z-index: 1;
}

  .share--dropdown:before {
    content: '';
    position: absolute;
    display: block;
    right: 15px;
    top: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #fff transparent;
  }

  .share--dropdown [class*=share] {
    margin-bottom: 0;
  }

@media (max-width: 769px) {
  .share--dropdown {
    right: auto;
    left: 0;
  }

    .share--dropdown:before {
      right: auto;
      left: 15px;
    }
}

.contact_form [class*=col-] {
  margin: 20px 0 0 0;
}

.contact_form--submit {
  text-align: right;
}

.contact_form--files {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact_form--files_list {
  color: #262626;
  font-size: 15px;
  padding: 12px 0 0 15px;
}

  .contact_form--files_list span {
    max-width: 300px;
    display: inline-block;
    position: relative;
    padding: 2px 0 2px 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

    .contact_form--files_list span:before {
      display: inline-block;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-decoration: inherit;
      text-rendering: optimizeLegibility;
      text-transform: none;
      font-smoothing: antialiased;
      content: '\f105';
      font-size: 22px;
      position: absolute;
      top: -3px;
      left: 0;
      color: #c0c0c0;
    }

.contact_form--file_input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  font-size: 200px !important;
}

  .contact_form--file_input direction ltr {
    cursor: pointer;
  }

.contact_form.-on_dark .contact_form [class*=col-] {
  margin: 30px 0 0 0;
}

.contact_form.-on_dark .contact_form--files_list {
  color: #fff;
  padding: 18px 0 0 25px;
}

  .contact_form.-on_dark .contact_form--files_list span {
    max-width: 500px;
    position: relative;
    padding: 2px 0 2px 30px;
  }

    .contact_form.-on_dark .contact_form--files_list span:before {
      color: inherit;
    }

.section .contact_form {
  margin-top: -30px;
}

@media (max-width: 992px) {
  .contact_form--submit {
    text-align: left;
  }
}

.clients .owl-stage-outer {
  padding: 10px;
  margin: -10px;
}

.clients .slick-slider .slick-list {
  margin: -10px -15px;
  margin: 0;
}

.clients .slick-slider .slick-track {
  padding: 10px 0;
}

.clients .slick-slider .slick-dots {
  margin: 20px 0 -20px;
}

.clients--slide {
  padding: 0 10px;
}

@media (max-width: 992px) {
  .clients .slick-slider .slick-dots {
    margin: 40px 0 0;
  }
}

.client {
  position: relative;
  text-align: center;
  /*border-radius: 3px;*/
  height: 333px;
  cursor: pointer;
  border: solid 1px;
  border-color: #ababab;
}

  .client:hover .client--info {
    display: none;
  }

  .client:hover .client--quote {
    display: block;
  }

.client--wrap {
  position: relative;
  width: 100%;
  height: 40%;
  border-radius: 3px;
  /*background: rgba(0,0,0,0.2);*/
  padding: 80px 0 0;
}

.client--userpic {
  position: relative;
  display: inline-block;
  margin: 0 0 15px;
}

  .client--userpic img {
    border-radius: 50%;
    vertical-align: top;
    width: 90px;
    height: 90px;
    border: 2px solid #fff;
  }

.client--name {
  font-size: 18px;
  color: #fff;
  display: block;
}

.client--job {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 13px 0 0;
}

.client--location {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 13px 0 0;
}

.client--quote {
  font-size: 16px;
  line-height: 23px;
  margin: 0 25px;
  color: #fff;
  display: none;
  position: relative;
}

  .client--quote:before {
    display: block;
    position: absolute;
    /*content: '"';*/
    color: #fff;
  }

  .client--quote:after {
    display: block;
    position: absolute;
    /*content: '"';*/
    color: #fff;
    bottom: 0;
    right: 0;
  }

.case_study {
  position: relative;
  margin: -49px 0 0;
}

.case_study--media {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  margin: 49px 0 0;
}

  .case_study--media img {
    vertical-align: top;
    width: 100%;
  }

.case_study--section {
  margin: 50px 0 0;
}

.case_study--details {
  padding: 16px 0 0;
}

  .case_study--details dl {
    padding: 21px 0 20px;
    border-bottom: 1px solid #e9e9e9;
  }

    .case_study--details dl {
      display: flex;
      flex-wrap: wrap;
    }

    .case_study--details dl dt {
      display: block;
      width: 50%;
      color: #262626;
      padding: 0 0 0 35px;
      position: relative;
    }

      .case_study--details dl dt i {
        color: #59bcdb;
        font-size: 26px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
      }

      .case_study--details dl dt .icons8-diamond {
        margin: -2px 0 0 -3px;
      }

      .case_study--details dl dt .icons8-umbrella {
        margin: -2px 0 0 -2px;
      }

    .case_study--details dl dd {
      display: block;
      width: 50%;
      font-style: italic;
      font-size: 16px;
      color: #969696;
      padding: 0 0 0 32px;
    }

.case_study--section_title {
  font-size: 36px;
  padding: 4px 0 0;
}

.case_study--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
}

  .case_study--text p {
    padding: 16px 0 0;
  }

  .case_study--text ul {
    padding: 16px 0 0;
  }

    .case_study--text ul li {
      font-style: italic;
      position: relative;
      padding: 0 0 0 22px;
      margin: 6px 0 0;
    }

      .case_study--text ul li:before {
        display: block;
        content: '\f14c';
        display: inline-block;
        font-family: "icons";
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        text-decoration: inherit;
        text-rendering: optimizeLegibility;
        text-transform: none;
        font-smoothing: antialiased;
        position: absolute;
        left: 0;
        color: #59bcdb;
        top: 2px;
      }

      .case_study--text ul li:first-child {
        margin-top: 0;
      }

@media (max-width: 992px) {
  .case_study--section {
    margin: 30px 0 0;
  }

  .case_study--section_title {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .case_study--section {
    margin: 20px 0 0;
  }

  .case_study--section_title {
    font-size: 24px;
  }

  .case_study--text {
    font-size: 14px;
    line-height: 21px;
  }

    .case_study--text p {
      padding: 14px 0 0;
    }
}

.cta_banner {
  position: relative;
  background: url("../images/pattern-dark.png");
}

.cta_banner--inner {
  display: table;
  width: 100%;
  padding: 50px 0;
}

.cta_banner--text {
  color: #fff;
  display: table-cell;
  width: 80%;
  font-size: 36px;
  font-weight: 300;
  line-height: 46px;
  vertical-align: middle;
}

.cta_banner--buttons {
  color: #fff;
  display: table-cell;
  width: 20%;
  vertical-align: middle;
  text-align: right;
}

@media (max-width: 992px) {
  .cta_banner--inner {
    padding: 40px 0;
  }

  .cta_banner--text {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 768px) {
  .cta_banner--text,
  .cta_banner--buttons {
    display: block;
    width: 100%;
    text-align: center;
  }

  .cta_banner--buttons {
    padding: 25px 0 0;
  }
}

@media (max-width: 650px) {
  .cta_banner--text {
    font-size: 22px;
    line-height: 28px;
  }

    .cta_banner--text br {
      display: none;
    }
}

.services_info {
  position: relative;
}

.services_info--item {
  position: relative;
  padding: 37px 30px 25px 97px;
  background: #fafafa;
  border-radius: 3px;
}

.services_info--item_order {
  position: absolute;
  top: 30px;
  left: -5px;
  padding: 18px 10px 18px 15px;
  background: #6975a6;
  color: #fff;
  font-size: 36px;
  border-radius: 0 3px 3px 0;
}

  .services_info--item_order:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 0;
    border-color: transparent #485173 transparent transparent;
    bottom: -5px;
    left: 0;
  }

.services_info--item_title {
  font-size: 28px;
  text-transform: uppercase;
}

.services_info--item_text {
  font-size: 16px;
  line-height: 26px;
  color: #969696;
  padding: 17px 0 20px;
  position: relative;
}

  .services_info--item_text:before {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 2px;
    background: #dadada;
    bottom: 0;
    left: 0;
  }

@media (max-width: 1200px) {
  .services_info--item_order {
    padding: 12px 6px 12px 11px;
    font-size: 30px;
  }

  .services_info--item_title {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .services_info .row .col-md-6:first-child .services_info--item {
    margin: 0;
  }

  .services_info--item {
    margin: 20px 0 0;
    padding-left: 80px;
  }

  .services_info--item_title {
    font-size: 24px;
  }
}

@media (max-width: 769px) {
  .services_info--item_title {
    font-size: 24px;
  }

  .services_info--item_text {
    font-size: 15px;
    line-height: 21px;
  }

    .services_info--item_text:before {
      left: 50%;
      transform: translate(-50%, 0);
    }

  .services_info--item {
    padding: 67px 20px 25px 20px;
    text-align: center;
  }

  .services_info--item_order {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 12px 6px 12px 11px;
    font-size: 24px;
    border-radius: 0 0 3px 3px;
  }

    .services_info--item_order:before {
      display: none;
    }
}

@media (max-width: 425px) {
  .services_info--item {
    padding: 60px 15px 20px 15px;
  }

  .services_info--item_title {
    font-size: 22px;
    line-height: 28px;
    padding: 0;
  }

  .services_info--item_text {
    font-size: 15px;
    line-height: 21px;
  }

  .services_info--item_order {
    padding: 12px 6px 12px 11px;
    font-size: 20px;
  }
}

.services_page {
  position: relative;
}

  .services_page .services {
    margin: 50px 0 0;
  }

.careers {
  position: relative;
}

.careers--subtitle {
  font-size: 24px;
  padding: 0 0 27px;
}

@media (max-width: 992px) {
  .careers--subtitle {
    font-size: 22px;
    margin: 40px 0 0;
  }
}

@media (max-width: 769px) {
  .careers--subtitle {
    font-size: 20px;
    margin: 25px 0 0;
    padding: 0 0 18px;
  }
}

.careers_articles {
  position: relative;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
}

.careers_article {
  position: relative;
  text-align: center;
  padding: 147px 5px 48px;
  border-top: 1px solid #e9e9e9;
}

  .careers_article:first-child {
    border-top: none;
  }

.careers_article--icon {
  color: #59bcdb;
  font-size: 74px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 42px;
}

.careers_article .icons8-carrot {
  margin: 0 0 0 -3px;
}

.careers_article--title {
  font-size: 20px;
}

.careers_article--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  padding: 14px 0 38px;
}

@media (max-width: 992px) {
  .careers_article {
    padding: 107px 15px 28px;
  }

  .careers_article--icon {
    font-size: 66px;
    top: 15px;
  }

  .careers_article--text {
    padding: 14px 0 20px;
  }
}

.vacancies {
  position: relative;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
}

.vacancies--item {
  border-top: 1px solid #e9e9e9;
}

  .vacancies--item:first-child {
    border-top: none;
  }

  .vacancies--item:nth-child(5n+1) .vacancies--item_title:before {
    color: #34c1e4;
  }

  .vacancies--item:nth-child(5n+1) .vacancies--item_content a {
    color: #34c1e4;
  }

  .vacancies--item:nth-child(5n+2) .vacancies--item_title:before {
    background: #ffbf57;
  }

  .vacancies--item:nth-child(5n+2) .vacancies--item_content a {
    color: #ffbf57;
  }

  .vacancies--item:nth-child(5n+3) .vacancies--item_title:before {
    background: #6975a6;
  }

  .vacancies--item:nth-child(5n+3) .vacancies--item_content a {
    color: #6975a6;
  }

  .vacancies--item:nth-child(5n+4) .vacancies--item_title:before {
    background: #ed5151;
  }

  .vacancies--item:nth-child(5n+4) .vacancies--item_content a {
    color: #ed5151;
  }

  .vacancies--item:nth-child(5n+5) .vacancies--item_title:before {
    background: #ab938a;
  }

  .vacancies--item:nth-child(5n+5) .vacancies--item_content a {
    color: #ab938a;
  }

  .vacancies--item.-opened .vacancies--item_title:after {
    content: '-';
    font-size: 36px;
    right: 27px;
  }

  .vacancies--item.-opened .vacancies--item_content {
    display: block;
  }

  .vacancies--item.-opened:nth-child(5n+1) .vacancies--item_title {
    color: #34c1e4;
  }

    .vacancies--item.-opened:nth-child(5n+1) .vacancies--item_title:after {
      color: #34c1e4;
    }

  .vacancies--item.-opened:nth-child(5n+2) .vacancies--item_title {
    color: #ffbf57;
  }

    .vacancies--item.-opened:nth-child(5n+2) .vacancies--item_title:after {
      color: #ffbf57;
    }

  .vacancies--item.-opened:nth-child(5n+3) .vacancies--item_title {
    color: #6975a6;
  }

    .vacancies--item.-opened:nth-child(5n+3) .vacancies--item_title:after {
      color: #6975a6;
    }

  .vacancies--item.-opened:nth-child(5n+4) .vacancies--item_title {
    color: #ed5151;
  }

    .vacancies--item.-opened:nth-child(5n+4) .vacancies--item_title:after {
      color: #ed5151;
    }

  .vacancies--item.-opened:nth-child(5n+5) .vacancies--item_title {
    color: #ab938a;
  }

    .vacancies--item.-opened:nth-child(5n+5) .vacancies--item_title:after {
      color: #ab938a;
    }

.vacancies--item_title {
  font-size: 16px;
  cursor: pointer;
  padding: 26px 30px;
  position: relative;
}

  .vacancies--item_title:after {
    content: '+';
    display: block;
    position: absolute;
    font-size: 28px;
    color: #c3c3c3;
    right: 25px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .vacancies--item_title:before {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    height: 36px;
    background: #34c1e4;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
  }

    .vacancies--item_title:before:nth-child(2):before {
      background: #34c1e4;
    }

.vacancies--item_content {
  position: relative;
  background: #fcfcfc;
  padding: 35px 60px 22px 30px;
  border-top: 1px solid #e9e9e9;
  display: none;
}

  .vacancies--item_content a:hover {
    text-decoration: underline;
  }

  .vacancies--item_content h5 {
    font-size: 16px;
    margin: 30px 0 20px;
  }

    .vacancies--item_content h5:first-child {
      margin: 0;
    }

  .vacancies--item_content ul {
    font-size: 14px;
    line-height: 21px;
    color: #969696;
    margin: 20px 0 0;
  }

    .vacancies--item_content ul li {
      margin: 0;
      position: relative;
    }

      .vacancies--item_content ul li:before {
        content: '\2022';
        position: absolute;
        display: block;
        left: -10px;
        top: 50%;
        transform: translate(0, -50%);
      }

  .vacancies--item_content p {
    font-size: 14px;
    line-height: 21px;
    color: #969696;
    margin: 17px 0;
  }

@media (max-width: 992px) {
  .vacancies--item_content {
    position: relative;
    background: #fcfcfc;
    padding: 35px 30px 22px 30px;
  }
}

@media (max-width: 425px) {
  .vacancies--item_content {
    position: relative;
    background: #fcfcfc;
    padding: 25px 20px 12px 20px;
  }

    .vacancies--item_content ul li:before {
      left: -10px;
      top: 11px;
    }

    .vacancies--item_content h5 a {
      margin: 5px 0 0;
      display: inline-block;
    }

  .vacancies--item_title {
    font-size: 16px;
    padding: 26px 20px;
  }

    .vacancies--item_title:after {
      content: '+';
      display: block;
      position: absolute;
      font-size: 28px;
      color: #c3c3c3;
      right: 15px;
    }

  .vacancies--item.-opened .vacancies--item_title:after {
    content: '-';
    font-size: 36px;
    right: 15px;
  }
}

.widget_solutions {
  display: block;
}

  .widget_solutions li {
    padding: 0 !important;
    position: relative;
  }

    .widget_solutions li a {
      display: block !important;
      padding: 16px 20px 17px 57px !important;
      position: relative;
    }

      .widget_solutions li a:hover {
        text-decoration: none !important;
        color: #59bcdb;
      }

      .widget_solutions li a [class*=icons] {
        font-size: 27px;
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translate(0, -50%);
        color: #59bcdb;
        margin: -4px 0 0;
      }

.widget_support {
  position: relative;
  text-align: center;
  padding: 31px 0 35px;
}

.widget_support--person {
  position: relative;
}

.widget_support--person_userpic {
  overflow: hidden;
  display: inline-block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

  .widget_support--person_userpic img {
    vertical-align: top;
    width: 100%;
  }

.widget_support--person_name {
  display: block;
  font-size: 16px;
  margin: 14px 0 0;
}

.widget_support--person_position {
  display: block;
  color: #969696;
  font-weight: 400;
  font-size: 14px;
  margin: 10px 0 0;
}

.widget_support--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  margin: 29px 0 0;
}

  .widget_support--text strong {
    color: #262626;
  }

.widget_testimonial {
  position: relative;
  padding: 18px 25px 30px 20px;
}

.widget_testimonial--text {
  font-size: 14px;
  line-height: 21px;
  color: #969696;
  margin: 0 0 15px;
}

.widget_testimonial--author {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.widget_testimonial--author_userpic {
  overflow: hidden;
  display: inline-block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin: 0 15px 0 0;
}

  .widget_testimonial--author_userpic img {
    vertical-align: top;
    width: 100%;
  }

.widget_testimonial--author_name {
  display: block;
  font-size: 16px;
  padding: 10px 0 0;
}

.widget_testimonial--author_position {
  display: block;
  color: #969696;
  font-weight: 400;
  font-size: 14px;
  margin: 10px 0 0;
}

.widget_twitter {
  position: relative;
  text-align: center;
  padding: 70px 15px 28px;
}

  .widget_twitter i {
    font-size: 28px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #59bcdb;
  }

.widget_twitter--tweet_text {
  font-size: 14px;
  line-height: 21px;
  color: #969696;
}

  .widget_twitter--tweet_text a {
    color: #59bcdb;
  }

    .widget_twitter--tweet_text a:hover {
      text-decoration: underline;
    }

.widget_twitter--tweet_footer {
  margin: 20px 0 0;
}

  .widget_twitter--tweet_footer a {
    font-size: 14px;
    color: #59bcdb;
  }

    .widget_twitter--tweet_footer a:hover {
      text-decoration: underline;
    }

.widget_brochure {
  position: relative;
  padding: 18px 20px 31px;
}

.widget_brochure--text {
  font-size: 14px;
  line-height: 21px;
  color: #969696;
  margin: 0 0 25px;
}

.link_download {
  position: relative;
  font-size: 16px;
  color: #262626;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

  .link_download.-pdf {
    padding: 10px 0 0 43px;
    height: 36px;
  }

    .link_download.-pdf:before {
      display: block;
      content: '\f142';
      display: inline-block;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-decoration: inherit;
      text-rendering: optimizeLegibility;
      text-transform: none;
      font-smoothing: antialiased;
      position: absolute;
      font-size: 44px;
      color: #ed5151;
      left: -6px;
      top: -7px;
    }

  .link_download.-doc {
    padding: 10px 0 0 43px;
    height: 36px;
  }

    .link_download.-doc:before {
      display: block;
      content: '\f120';
      display: inline-block;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-decoration: inherit;
      text-rendering: optimizeLegibility;
      text-transform: none;
      font-smoothing: antialiased;
      position: absolute;
      font-size: 44px;
      color: #ffbf57;
      left: -6px;
      top: -7px;
    }

.service_description {
  position: relative;
}

.service_description--title {
  font-size: 36px;
}

.service_description--text {
  margin: 16px 0 0;
}

  .service_description--text p {
    font-size: 16px;
    line-height: 23px;
    color: #969696;
  }

@media (max-width: 769px) {
  .service_description--title {
    font-size: 32px;
  }

  .service_description--text {
    margin: 16px 0 0;
  }

    .service_description--text p {
      font-size: 15px;
      line-height: 21px;
      color: #969696;
    }
}

@media (max-width: 425px) {
  .service_description--title {
    font-size: 28px;
  }

  .service_description--text {
    margin: 14px 0 0;
  }

    .service_description--text p {
      font-size: 15px;
      line-height: 21px;
      color: #969696;
    }
}

.service_gallery {
  position: relative;
}

.service_gallery--list {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}

.service_gallery--list_item {
  width: 25%;
  padding: 20px 10px 0;
}

.service_gallery--big_image img {
  width: 100%;
  height: 100%;
}

.service_gallery--image {
  overflow: hidden;
  border-radius: 3px;
}

  .service_gallery--image img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

.service_description .service_gallery {
  margin: 24px 0 0;
}

@media (max-width: 769px) {
  .service_gallery--list_item {
    width: 50%;
  }
}

.benefits {
  position: relative;
  padding: 0 25px 0 0;
}

.benefits--title {
  font-size: 36px;
  padding: 0 0 0;
}

.benefits--text {
  margin: 37px 0 0;
}

  .benefits--text p {
    font-size: 16px;
    line-height: 23px;
    color: #969696;
    margin: 17px 0 0;
  }

@media (max-width: 992px) {
  .benefits {
    margin: 50px 0 0;
    padding: 0 10px 0 0;
  }
}

@media (max-width: 769px) {
  .benefits {
    margin: 30px 0 0;
    padding: 0;
  }

  .benefits--text {
    margin: 25px 0 0;
  }
}

@media (max-width: 425px) {
  .benefits {
    margin: 30px 0 0;
  }

  .benefits--title {
    font-size: 28px;
  }

  .benefits--text {
    margin: 15px 0 0;
  }

    .benefits--text p {
      font-size: 15px;
      line-height: 21px;
      margin: 15px 0 0;
    }
}

.service_sidebar .widget:first-child {
  margin-top: 0;
}

.service_page {
  padding: 0 0 0 35px;
}

  .service_page .row {
    margin-top: 65px;
  }

@media (max-width: 992px) {
  .service_page {
    margin: 50px 0 0;
  }
}

@media (max-width: 769px) {
  .service_page {
    padding: 0 15px;
    margin: 30px 0 0;
  }
}

@media (max-width: 425px) {
  .service_page {
    padding: 0 10px;
  }
}

.faq {
  position: relative;
}

.faq--title {
  font-size: 36px;
}

.faq--list {
  margin: 38px 0 0;
}

.faq--item {
  margin: 21px 0 0;
  position: relative;
}

  .faq--item:first-child {
    margin-top: 0;
  }

  .faq--item.-opened .faq--item_title {
    color: #59bcdb;
  }

    .faq--item.-opened .faq--item_title:before {
      transform: rotate(90deg);
      top: 0;
      left: 1px;
    }

  .faq--item.-opened .faq--item_content {
    display: block;
  }

.faq--item_title {
  font-size: 20px;
  line-height: 26px;
  cursor: pointer;
  padding: 0 0 0 32px;
  position: relative;
}

  .faq--item_title:before {
    position: absolute;
    display: block;
    content: '\f116';
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    font-smoothing: antialiased;
    color: #59bcdb;
    font-size: 26px;
    top: -2px;
    left: 0;
  }

.faq--item_content {
  margin: 10px 0 0;
  padding: 0 0 0 35px;
  display: none;
}

  .faq--item_content p {
    font-size: 16px;
    line-height: 23px;
    color: #969696;
  }

@media (max-width: 500px) {
  .faq {
    position: relative;
  }

  .faq--title {
    font-size: 28px;
  }

  .faq--item_content p {
    font-size: 15px;
    line-height: 21px;
  }

  .faq--item_title {
    font-size: 18px;
    line-height: 24px;
  }
}

.brochure {
  position: relative;
}

.brochure--title {
  font-size: 36px;
}

.brochure--body {
  margin: 36px 0 0;
}

  .brochure--body p {
    font-size: 16px;
    line-height: 23px;
    color: #969696;
  }

.brochure--item {
  position: relative;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.brochure--item_cover {
  overflow: hidden;
  display: block;
  border-radius: 3px;
}

  .brochure--item_cover img {
    vertical-align: top;
  }

.brochure--download {
  display: block;
  margin: 27px 0 0 30px;
}

.brochure--download_link {
  margin: 30px 0 0;
}

  .brochure--download_link:first-child {
    margin-top: 0;
  }

@media (max-width: 992px) {
  .brochure {
    margin: 50px 0 0;
  }
}

@media (max-width: 769px) {
  .brochure {
    margin: 30px 0 0;
  }

  .brochure--body {
    margin: 25px 0 0;
  }

  .brochure--item {
    margin: 24 auto 0;
  }
}

@media (max-width: 425px) {
  .brochure {
    margin: 30px 0 0;
  }

  .brochure--title {
    font-size: 28px;
  }

  .brochure--body {
    margin: 15px 0 0;
  }

    .brochure--body p {
      font-size: 15px;
      line-height: 21px;
    }
}

@media (max-width: 320px) {
  .brochure--download {
    display: block;
    float: none;
    margin: 27px 0 0 0;
    text-align: center;
    padding: 0 50px;
  }

  .brochure--item_cover {
    float: none;
    text-align: center;
  }
}

.map--opener {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: #59bcdb;
}

  .map--opener span {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding: 0 15px 0 0;
    color: #fff;
  }

    .map--opener span:after {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 4px 3px 0 3px;
      border-color: #fff transparent transparent transparent;
      position: absolute;
      right: 0;
      top: 50%;
      content: '';
    }

  .map--opener:hover {
    background-color: #40b2d6;
  }

.map--container {
  display: none;
  width: 100%;
  height: 590px;
}

.contact_us {
  position: relative;
}

  .contact_us .tab_navigation {
    margin: 0 0 80px;
  }

.contact_us--contacts_item {
  margin: 67px 0 0;
}

  .contact_us--contacts_item:first-child {
    margin-top: 0;
  }

.contact_us--form .contact_form {
  margin: 0;
}

.contact_us--form_title {
  font-size: 20px;
  margin: 0 0 6px;
}

@media (max-width: 992px) {
  .contact_us--contacts {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }

  .contact_us--contacts_item {
    width: 33.3%;
    margin: 0;
  }
}

@media (max-width: 769px) {
  .contact_us--contacts_item {
    width: 100%;
    margin: 40px 0 0;
  }

    .contact_us--contacts_item:first-child {
      margin-top: 0;
    }
}

.contact_item {
  position: relative;
  padding: 0 0 0 97px;
}

.contact_item--icon {
  position: absolute;
  font-size: 72px;
  color: #6975a6;
  top: 0;
  left: 0;
}

.contact_item .icons8-message {
  font-size: 74px;
}

.contact_item--title {
  font-size: 20px;
}

.contact_item--text {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  margin: 15px 0 0;
}

  .contact_item--text strong {
    color: #262626;
  }

@media (max-width: 1200px) {
  .contact_item {
    padding: 0 0 0 90px;
  }

  .contact_item--icon {
    position: absolute;
    font-size: 66px;
    color: #6975a6;
    top: 0;
    left: 0;
  }

  .contact_item .icons8-message {
    font-size: 68px;
  }

  .contact_item--text {
    font-size: 15px;
    line-height: 21px;
  }
}

@media (max-width: 992px) {
  .contact_item {
    padding: 80px 20px 0;
    text-align: center;
  }

  .contact_item--icon {
    left: 50%;
    font-size: 60px;
    transform: translate(-50%, 0);
  }

  .contact_item .icons8-message {
    font-size: 62px;
  }

  .contact_item--text {
    margin: 15px 0;
  }
}

@media (max-width: 769px) {
  .contact_item {
    padding: 70px 15px 0;
  }

  .contact_item--icon {
    font-size: 50px;
  }

  .contact_item .icons8-message {
    font-size: 52px;
  }
}

.pricing_plan {
  border: 1px solid #e9e9e9;
  background: #fafafa;
  border-radius: 3px;
}

.pricing_plan--label {
  display: inline-block;
  line-height: 1;
  margin: -11px 0 25px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
  padding: 5px 10px 4px;
}

  .pricing_plan--label.-popular {
    background: #ed5151;
    color: #fff;
  }

.pricing_plan--header {
  text-align: center;
  padding: 36px 0;
  height: 154px;
}

.pricing_plan--title {
  display: block;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}

  .pricing_plan--title b {
    font-weight: 500;
  }

.pricing_plan--price {
  display: block;
  font-size: 40px;
  font-weight: 300;
  color: rgba(38,38,38,0.6);
  margin: 24px 0 0;
}

  .pricing_plan--price small {
    font-size: 30px;
  }

.pricing_plan--options {
  border-top: 1px solid #e9e9e9;
}

.pricing_plan--option {
  border-bottom: 1px solid #e9e9e9;
  font-size: 16px;
  color: #939393;
  text-align: center;
  line-height: 68px;
}

  .pricing_plan--option b {
    color: #262626;
  }

.pricing_plan--footer {
  text-align: center;
  padding: 40px 45px;
}

.pricing_plan.-popular {
  background: #fff;
}

  .pricing_plan.-popular .pricing_plan--header {
    height: 200px;
  }

  .pricing_plan.-popular .pricing_plan--price {
    color: #262626;
  }

@media (max-width: 1200px) {
  .pricing_plan--title {
    font-size: 16px;
  }

  .pricing_plan--header {
    padding: 25px 0;
    height: 111px;
  }

  .pricing_plan--price {
    font-size: 35px;
    margin: 16px 0 0;
  }

    .pricing_plan--price small {
      font-size: 25px;
    }

  .pricing_plan.-popular .pricing_plan--header {
    height: 156px;
  }
}

@media (max-width: 769px) {
  .pricing_plan--header {
    padding: 20px 0;
    height: 98px;
  }

  .pricing_plan--label {
    margin-bottom: 20px;
  }

  .pricing_plan--price {
    font-size: 26px;
    margin: 15px 0 0;
  }

    .pricing_plan--price small {
      font-size: 20px;
    }

  .pricing_plan.-popular .pricing_plan--header {
    height: 137px;
  }
}

@media (max-width: 500px) {
  .pricing_plan--title {
    font-size: 14px;
  }
}

.pricing_compare {
  position: relative;
  margin: 48px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.pricing_compare--plans {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
}

  .pricing_compare--plans .pricing_plan {
    width: 33.3%;
  }

    .pricing_compare--plans .pricing_plan:first-child {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
    }

    .pricing_compare--plans .pricing_plan:last-child {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
    }

    .pricing_compare--plans .pricing_plan.-popular {
      width: calc(33.3% + 2px);
      margin: -46px -1px 0;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

.pricing_compare--options {
  float: left;
  width: 45%;
  margin: 155px 0 0;
  border-top: 1px solid #e9e9e9;
}

.pricing_compare--option {
  border-bottom: 1px solid #e9e9e9;
  font-size: 16px;
  line-height: 68px;
  padding: 0 0 0 65px;
  position: relative;
  background: #fff;
}

.pricing_compare--option_icon {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 23px;
  transform: translate(0, -50%);
  font-size: 28px;
  color: #a8a8a8;
  line-height: 1;
}

.pricing_compare .icons8-user-group {
  font-size: 30px;
}

.pricing_compare .icons8-sales-performance {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .pricing_compare--options {
    margin-top: 112px;
  }

  .pricing_compare .pricing_plan--footer {
    padding: 20px 10px;
  }

  .pricing_compare .pricing_plan.-popular {
    margin-top: -45px;
  }
}

@media (max-width: 992px) {
  .pricing_compare--options {
    position: absolute;
    width: 100%;
  }

  .pricing_compare--plans {
    float: none;
    width: 100%;
  }

  .pricing_compare--option {
    line-height: 56px;
    margin-bottom: 67px;
  }

  .pricing_compare .pricing_plan--option {
    line-height: 18px;
    margin-top: 56px;
    height: 68px;
    padding: 15px 0;
  }

    .pricing_compare .pricing_plan--option b,
    .pricing_compare .pricing_plan--option strong {
      display: block;
    }

  .pricing_compare .pricing_plan--footer {
    padding: 20px 10px;
  }
}

@media (max-width: 769px) {
  .pricing_compare--options {
    margin-top: 99px;
  }

  .pricing_compare .pricing_plan.-popular {
    margin-top: -39px;
  }
}

@media (max-width: 992px) {
  .blog_sidebar {
    margin: 60px 0 0;
  }
}

.js-tabby .tabby--pane {
  display: none;
  visibility: hidden;
}

.tabby--pane.-active {
  display: block;
  visibility: visible;
}

.support_chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.support_chat--opener {
  width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: 0 0 7px rgba(0,0,0,0.15);
  color: #59bcdb;
  border-radius: 100px;
  font-size: 30px;
}

  .support_chat--opener.-active {
    background: #59bcdb;
    color: #fff;
  }

.support_chat--window {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 380px;
  background: #fff;
  border-radius: 3px;
  margin: 0 0 15px;
  box-shadow: 0 0 7px rgba(0,0,0,0.2);
}

  .support_chat--window.-show {
    display: block;
  }

.support_chat--container {
  padding: 20px 25px 25px;
}

.support_chat--title {
  font-size: 18px;
  font-weight: 600px;
  margin: 0 0 12px;
}

.support_chat--profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.support_chat--profile p {
  font-size: 16px;
  line-height: 23px;
  color: #969696;
  overflow: hidden;
  padding: 8px 0 0 15px;
}

.support_chat--profile_image {
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  padding: 4px;
  margin: 0 0 0 -5px;
}

  .support_chat--profile_image img {
    display: block;
    width: 100%;
    border-radius: 50%;
    width: 100%;
  }

.support_chat--form {
  background: #f2f2f2;
  border-radius: 0 0 3px 3px;
  padding: 10px;
}

  .support_chat--form .button {
    float: right;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 0 3px 3px 0;
  }

.support_chat--form_text {
  overflow: hidden;
}

  .support_chat--form_text textarea {
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    background: none;
    resize: none;
    background: #fff;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 23px;
    padding: 11px 15px 9px;
  }

.support_chat--form_inner {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}

.support_chat .tip_help {
  background: none;
  box-shadow: none;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  width: auto;
}

@media (max-width: 992px) {
  .support_chat {
    display: none;
  }
}

.msg {
  display: none;
  padding: 8px;
  clear: both;
  float: none;
  margin-top: 30px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}
/* Custom */
.sliderAltMenu {
  width: 100%;
}

.baslik {
  width: 25%;
  float: left;
}

@media screen and (max-width: 960px) {
  .baslik {
    width: 100%;
    clear: both;
  }

  .mainVideobtso {
    width: 100%;
    clear: both;
  }

  .videoSliderbtso {
    width: 100%;
  }

  .ListeResim {
    background-size: cover !important;
    width: 100% !important;
  }
}
/* Egitim Detay*/
.Egitim {
  width: 100%;
  display: flex;
}

.EgitimDetay {
  padding-right: 30px;
  width: 100%;
  float: left;
}

.EgitmenCV {
  padding-left: 20px;
  width: 40%;
  float: left;
}

.EgitimIcerik {
  width: 100%;
}

.EgitimBilgileri {
  clear: both;
  width: 100%;
}

.katilimciForm {
  clear: both;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .Egitim {
    display: block;
  }

  .EgitimDetay {
    padding: 20px 0 20px 0;
    width: 100%;
    clear: both;
  }

  .EgitmenCV {
    padding: 0 0 20px 0;
    width: 100%;
    clear: both;
  }

  .slick-prev {
    padding: 30px;
    top: 0;
  }

  .slick-next {
    padding: 30px;
    top: 0;
  }
}
/**/
.mydivdiv {
  list-style: initial !important;
  all: initial !important;
}

.yenidenboyutla {
  width: 0;
}

.slick-prev {
  display: inline-block;
  position: absolute;
  color: white;
  z-index: 1;
  top: 30%;
  padding: 50px;
}

.slick-next {
  display: inline-block;
  position: absolute;
  color: white;
  right: 0;
  top: 30%;
  padding: 50px;
  float: right;
}

#video-row img {
  border: 1px solid #e3e3e3;
  margin-bottom: 20px;
}

@font-face {
  font-family: 'Exo';
  src: url('../fonts/exo/Exo-Regular.otf') format("opentype");
}
.Exo{
  font-family:Exo;
}
