@charset "UTF-8";
@font-face {
  font-family: 'Lato';
  font-display: swap;
  src: url("../fonts/lato-light.woff2") format("woff2"), url("../fonts/lato-light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  font-display: swap;
  src: url("../fonts/lato-regular.woff2") format("woff2"), url("../fonts/lato-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  font-display: swap;
  src: url("../fonts/lato-medium.woff2") format("woff2"), url("../fonts/lato-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  font-display: swap;
  src: url("../fonts/lato-semibold.woff2") format("woff2"), url("../fonts/lato-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  font-display: swap;
  src: url("../fonts/lato-bold.woff2") format("woff2"), url("../fonts/lato-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  font-display: swap;
  src: url("../fonts/lato-heavy.woff2") format("woff2"), url("../fonts/lato-heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal; }

body {
  margin: 0;
  padding: 0;
  position: relative;
  min-width: 1060px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #32363b; }

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

*:focus,
*:hover {
  outline: none; }

a, button {
  cursor: pointer; }

button {
  border: none;
  background-color: transparent; }

.hidden {
  display: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden; }

h1 {
  margin-top: 20px;
  margin-bottom: 32px;
  font-size: 44px;
  line-height: 49px;
  font-weight: 400; }

.container {
  padding: 0 20px;
  margin: 0 auto;
  width: 1060px; }

.button {
  position: relative;
  padding: 15px 40px;
  display: inline-block;
  text-align: center;
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 900;
  letter-spacing: .1rem;
  color: #fff;
  background-color: #4c70df;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  border-radius: 22px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; }
  .button._disabled {
    background-color: #c6c6c6;
    pointer-events: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .button:hover, .button:focus {
    background-color: #4c70df; }
  .button.button--arrow {
    padding-right: 35px; }
    .button.button--arrow::after {
      content: '';
      position: absolute;
      right: 23px;
      top: calc(50% - 4px);
      width: 7px;
      height: 7px;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      -webkit-transform-origin: center;
              transform-origin: center;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
  .button--green {
    background-color: #24da89;
    -webkit-box-shadow: 0 10px 16px 0 rgba(94, 255, 184, 0.17);
            box-shadow: 0 10px 16px 0 rgba(94, 255, 184, 0.17); }
    .button--green:hover, .button--green:focus {
      background-color: #1aca7c; }
    .button--green.button--arrow {
      padding-right: 57px; }
      .button--green.button--arrow::after {
        border-color: #fff; }
  .button--gray {
    color: #afacac;
    background-color: #f9fcff;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), color-stop(90%, rgba(0, 0, 0, 0.05)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 90%);
    -webkit-transition: background-image 0.6s ease;
    transition: background-image 0.6s ease; }
    .button--gray:hover, .button--gray:focus {
      background-color: #eaeaeb;
      background-image: none; }
    .button--gray.button--arrow {
      padding-right: 35px; }
      .button--gray.button--arrow::after {
        border-color: #c6c6c6; }
  .button--blue {
    background-color: #7294fc;
    color: #fff;
    -webkit-box-shadow: 0 10px 16px 0 rgba(196, 208, 244, 0.17);
            box-shadow: 0 10px 16px 0 rgba(196, 208, 244, 0.17); }
    .button--blue:hover, .button--blue:focus {
      background-color: #4c70df; }
  .button--20 {
    padding: 20px 80px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 31px; }
  .button--16 {
    font-size: 16px;
    line-height: 16px;
    padding: 17px 50px;
    border-radius: 29px; }
  .button--14 {
    padding: 15px 40px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 900;
    letter-spacing: .06rem; }
    .button--14.button--arrow {
      padding-right: 57px; }
      .button--14.button--arrow::after {
        border-color: #fff;
        border-width: 3px;
        top: calc(50% - 6px);
        height: 10px;
        width: 10px; }
  .button--12 {
    padding: 9px 30px 11px 30px;
    text-transform: none;
    letter-spacing: 0.01rem;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    border-radius: 16px; }
    .button--12.button--arrow {
      padding-right: 40px; }
      .button--12.button--arrow::after {
        content: '';
        position: absolute;
        top: calc(50% - 4px);
        right: 15px; }
  .button--wide {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden; }
  .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 12px;
    line-height: 38px;
    color: #444;
    height: 38px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #F8f8f8;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial; }
    .selectric .button:after {
      content: " ";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      width: 0;
      height: 0;
      border: 4px solid transparent;
      border-top-color: #BBB;
      border-bottom: none; }

.selectric-focus .selectric {
  border-color: #aaaaaa; }

.selectric-hover .selectric {
  border-color: #c4c4c4; }
  .selectric-hover .selectric .button {
    color: #a2a2a2; }
    .selectric-hover .selectric .button:after {
      border-top-color: #a2a2a2; }

.selectric-open {
  z-index: 9999; }
  .selectric-open .selectric {
    border-color: #c4c4c4; }
  .selectric-open .selectric-items {
    display: block; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }
  .selectric-hide-select select {
    position: absolute;
    left: -100%; }
  .selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10; }
    .selectric-hide-select.selectric-is-native select {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      border: none;
      z-index: 1;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      opacity: 0; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px -6px;
          box-shadow: 0 0 10px -6px; }
  .selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto; }
  .selectric-above .selectric-items {
    top: auto;
    bottom: 100%; }
  .selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px; }
  .selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer; }
    .selectric-items li.selected {
      background: #E0E0E0;
      color: #444; }
    .selectric-items li.highlighted {
      background: #D0D0D0;
      color: #444; }
    .selectric-items li:hover {
      background: #D5D5D5;
      color: #444; }
  .selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: none;
    color: #444; }
  .selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1; }
  .selectric-items .selectric-group li {
    padding-left: 25px; }

.page-header {
  position: absolute;
  left: 0;
  right: 0;
  height: 138px; }
  .page-header .container {
    width: 100%;
    max-width: 1520px;
    padding: 0 10px; }
  .page-header--inner {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 40px 0 rgba(60, 99, 217, 0.2);
            box-shadow: 0 2px 40px 0 rgba(60, 99, 217, 0.2); }

.page-nav {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .page-nav__logo {
    display: block;
    margin-right: 90px; }
    .page-nav__logo a[href=''] {
      pointer-events: none; }
  .page-nav__main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 530px;
    -ms-flex-negative: 3;
        flex-shrink: 3;
    margin-right: 30px; }
  .page-nav__item._active .page-nav__link {
    color: #4c70df; }
  .page-nav__link {
    color: #32363b;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    text-decoration: none; }
    .page-nav__link:hover, .page-nav__link:focus {
      color: #4c70df; }
  .page-nav__contacts-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-bottom: 15px; }
  .page-nav__contact {
    margin-right: 25px; }
    .page-nav__contact:last-child {
      margin-right: 10px; }
  .page-nav__contact-link {
    color: #4c70df;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Lato", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 18px; }
    .page-nav__contact-link:hover, .page-nav__contact-link:focus {
      text-decoration: underline; }

.page-main {
  background: url("../img/bg.png") no-repeat top center;
  padding-top: 190px;
  min-height: calc(100vh - 448px); }
  .page-main--inner {
    padding-top: 160px;
    padding-bottom: 126px;
    background: none; }

.inner-page__lead {
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 28px;
  font-weight: 300; }

.inner-page .news__item {
  margin-bottom: 44px; }

.inner-page__date {
  display: inline-block;
  font-size: 13px;
  color: #7b8087;
  line-height: 22px; }

.inner-page__img {
  margin-bottom: 25px; }
  .inner-page__img img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px; }

.inner-page__img-left {
  max-width: 285px;
  display: inline-block;
  float: left;
  margin-top: 7px;
  margin-right: 32px; }
  .inner-page__img-left img {
    display: block;
    margin-bottom: 16px; }

.inner-page__img-right {
  max-width: 285px;
  display: inline-block;
  float: right;
  margin-top: 7px;
  margin-left: 32px; }
  .inner-page__img-right img {
    display: block;
    margin-bottom: 16px; }

.inner-page__photo-caption {
  display: inline-block;
  font-size: 11px;
  line-height: 22px;
  font-weight: 400;
  color: #7b8087; }

.inner-page__source {
  margin: 35px 0; }
  .inner-page__source p {
    margin: 15px 0 20px 0;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300; }
  .inner-page__source a {
    color: #4c70df;
    text-decoration: none; }
    .inner-page__source a:hover, .inner-page__source a:focus {
      text-decoration: underline; }

.about {
  min-height: 100vh;
  background-size: 1600px; }
  .about__header {
    padding-bottom: 125px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(150, 176, 255, 0.05)), color-stop(90%, rgba(76, 112, 223, 0.05))), url("../img/header-bg2.png");
    background-image: linear-gradient(to bottom, transparent 0%, rgba(150, 176, 255, 0.05) 40%, rgba(76, 112, 223, 0.05) 90%), url("../img/header-bg2.png");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, center top;
    background-size: 100%, 1909px; }
  .about__title {
    width: 700px;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    font-family: "Lato", Arial, sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 62px;
    color: #32363b; }
  .about__subtitle {
    margin-bottom: 45px;
    width: 550px;
    display: block;
    font-family: "Lato", Arial, sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 46px; }
  .about__content {
    padding-top: 85px; }
    .about__content .container {
      padding: 0 10px;
      padding-bottom: 93px;
      border-bottom: 1px solid #e8e8e8; }
  .about__caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 55px; }
  .about__name {
    font-size: 44px;
    line-height: 50px;
    font-weight: 400;
    position: relative;
    margin-right: 86px;
    white-space: nowrap; }
    .about__name::after {
      content: '';
      position: absolute;
      top: 22px;
      right: -66px;
      width: 36px;
      height: 1px;
      background-color: #e8e8e8; }
  .about__text {
    margin-top: 5px;
    font-size: 19px;
    line-height: 30px;
    font-weight: 300; }
  .about__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .about__img {
    width: 100%;
    margin-bottom: 10px;
    height: 82px;
    text-align: center; }
    .about__img img {
      text-align: center; }
  .about__item {
    -ms-flex-preferred-size: 190px;
        flex-basis: 190px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    background-color: transparent; }

.solution {
  position: relative;
  padding-top: 105px;
  padding-bottom: 100px; }
  .solution .container {
    position: relative;
    padding: 0 10px;
    background: url("../img/bg.png") no-repeat bottom center; }
    .solution .container::before, .solution .container:after {
      content: '';
      position: absolute;
      border-radius: 50%;
      width: 25px;
      height: 25px; }
    .solution .container::before {
      top: 230px;
      left: -183px;
      background: url("../img/solution-after.png") no-repeat top left; }
    .solution .container::after {
      top: 1450px;
      right: -175px;
      background: url("../img/solution-before.png") no-repeat top left; }
  .solution__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 48px; }
    .solution__header .button {
      margin-bottom: 5px; }
  .solution__title {
    font-size: 44px;
    line-height: 50px;
    font-weight: 400;
    margin: 0;
    margin-right: 40px; }
  .solution__list {
    margin: 0;
    padding: 0;
    list-style: none; }
  .solution__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 77px; }
    .solution__item:nth-child(2n) .solution__content {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .solution__item:nth-child(2n) .solution__img {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0; }
    .solution__item:last-child {
      margin-bottom: 0; }
  .solution__content {
    width: 530px; }
    .solution__content--coming {
      margin-top: -59px; }
  .solution__caption {
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
    font-size: 34px;
    line-height: 40px;
    font-weight: 400; }
  .solution__text {
    margin-bottom: 43px; }
    .solution__text p {
      font-size: 15px;
      line-height: 26px;
      font-weight: 300; }
  .solution__coming {
    display: block;
    margin: 19px 0;
    font-size: 12px;
    line-height: 21px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    color: #4c70df; }

.news {
  padding-bottom: 40px; }
  .news__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .news__list .slick-slide {
      width: 319px !important;
      margin-right: 30px; }
  .news__item {
    width: 319px;
    margin-right: 30px; }
    .news__item:nth-child(3n) {
      margin-right: 0; }
  .news__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 75px; }
  .news__label {
    font-size: 44px;
    line-height: 50px;
    font-weight: 400;
    margin: 0;
    margin-right: 50px;
    padding: 0; }
  .news__slider-controls {
    margin-left: auto; }
  .news__link {
    display: block;
    color: #32363b;
    text-decoration: none; }
    .news__link:hover .news__title, .news__link:focus .news__title {
      color: #4c70df; }
  .news__img {
    margin-bottom: 18px; }
    .news__img img {
      display: block;
      width: 100%;
      height: auto; }
  .news__date {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400; }
  .news__title {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600; }
  .news__subtitle {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 22px; }

.slider__controls {
  margin-left: auto; }

.slider__control {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #f9fcff;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50%;
  -webkit-transition: background-image 0.6s ease;
  transition: background-image 0.6s ease;
  vertical-align: bottom; }
  .slider__control:hover, .slider__control:focus {
    background-color: #eaeaeb;
    background-image: none; }
  .slider__control::after {
    content: '';
    position: absolute;
    bottom: 15px;
    width: 10px;
    height: 10px;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .slider__control--prev::after {
    right: 14px;
    border-top: 3px solid #c6c6c6;
    border-left: 3px solid #c6c6c6; }
  .slider__control--next::after {
    right: 16px;
    border-bottom: 3px solid #c6c6c6;
    border-right: 3px solid #c6c6c6; }

.footer {
  margin-top: 50px;
  padding: 50px 0 50px 0;
  text-align: center;
  color: #fff;
  background-color: #132199;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(11, 17, 61, 0.46)), color-stop(68%, rgba(8, 29, 189, 0.05))), url("../img/footer-bg.jpg");
  background-image: linear-gradient(to right, rgba(11, 17, 61, 0.46) 0%, rgba(8, 29, 189, 0.05) 68%), url("../img/footer-bg.jpg");
  background-repeat: no-repeat, repeat;
  background-position: top left, top left; }
  .footer .container {
    position: relative; }
    .footer .container::before, .footer .container:after {
      content: '';
      position: absolute; }
    .footer .container::before {
      top: 65px;
      left: -205px;
      width: 17px;
      height: 17px;
      background: url("../img/footer-before.png") no-repeat top left; }
    .footer .container::after {
      top: -73px;
      left: 40px;
      width: 36px;
      height: 36px;
      background: url("../img/footer-after.png") no-repeat top left; }
  .footer__button {
    margin-bottom: 35px; }
  .footer__caption {
    width: 590px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300; }
  .footer__contacts {
    width: 550px;
    margin-bottom: 43px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .footer__link {
    font-size: 32px;
    line-height: 40px;
    color: #4c70df;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02rem;
    white-space: nowrap; }
  .footer__copyright {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;
    color: #4c70df; }
  .footer__address {
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
    color: #4c70df; }

.breadcrumbs {
  padding: 10px; }
  .breadcrumbs__list {
    margin: 0;
    padding: 0;
    list-style: none; }
  .breadcrumbs__item {
    position: relative;
    display: inline-block;
    margin-right: 20px; }
    .breadcrumbs__item::after {
      content: '—';
      position: absolute;
      top: 0;
      right: -19px;
      color: #7b8087; }
    .breadcrumbs__item:last-child::after {
      content: none; }
    .breadcrumbs__item:last-child .breadcrumbs__link {
      pointer-events: none; }
  .breadcrumbs__link {
    color: #7b8087;
    text-decoration: none;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    text-decoration: none; }
    .breadcrumbs__link:hover, .breadcrumbs__link:focus {
      color: #4c70df; }

.solution-inner__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.solution-inner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 33px;
  border: 1px solid #dadada; }
  .solution-inner__item .button {
    margin-right: 25px; }

.solution-inner__img {
  width: 254px;
  height: 246px;
  margin: -1px; }
  .solution-inner__img img {
    display: block; }

.solution-inner__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px; }

.solution-inner__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 30px 30px 20px 30px; }

.solution-inner__subject {
  color: #7294fc;
  font-size: 11px;
  line-height: 14px; }

.solution-inner__status {
  display: block;
  padding: 2px 10px 0 10px;
  background-color: #24da89;
  color: #fff;
  font-size: 10px;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 0.05rem; }

.solution-inner__title {
  margin: 0;
  margin-bottom: 8px;
  padding: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600; }

.solution-inner__description {
  margin: 0;
  margin-bottom: 24px;
  padding: 0;
  height: 66px;
  padding-right: 40px;
  font-size: 12px;
  line-height: 22px;
  font-weight: 300; }

.columns .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.columns__main {
  width: 668px;
  margin-right: 55px; }
  .columns__main h1 {
    margin-top: 22px;
    margin-bottom: 20px;
    font-size: 37px;
    line-height: 49px;
    font-weight: 400; }

.columns__aside {
  margin-top: 35px;
  width: 300px; }

.columns__wrapper-aside {
  padding: 25px 25px 25px 25px; }

.gallery {
  position: relative;
  margin-bottom: 35px; }
  .gallery__name {
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    color: #7b8087; }
  .gallery__controls {
    position: absolute;
    left: -20px;
    top: 220px;
    z-index: 4;
    width: 710px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .gallery__control {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #f9fcff;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50%;
    -webkit-transition: background-image 0.6s ease;
    transition: background-image 0.6s ease;
    vertical-align: bottom; }
    .gallery__control:hover, .gallery__control:focus {
      background-image: none;
      background-color: #eaeaeb; }
    .gallery__control::after {
      content: '';
      position: absolute;
      bottom: 15px;
      width: 10px;
      height: 10px;
      -webkit-transform-origin: center;
              transform-origin: center;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .gallery__control--prev::after {
      right: 14px;
      border-top: 3px solid #c6c6c6;
      border-left: 3px solid #c6c6c6; }
    .gallery__control--next::after {
      right: 16px;
      border-bottom: 3px solid #c6c6c6;
      border-right: 3px solid #c6c6c6; }
  .gallery-for {
    height: 420px;
    margin-bottom: 20px; }
    .gallery-for img {
      display: block;
      width: 100%;
      height: auto; }
  .gallery-nav {
    height: 90px;
    margin-bottom: 10px; }
    .gallery-nav img {
      display: block;
      width: 100%;
      height: auto; }
    .gallery-nav .slick-track {
      height: 90px; }
    .gallery-nav .slick-slide {
      width: 127px !important;
      height: 80px;
      margin-right: 8px; }
      .gallery-nav .slick-slide div {
        line-height: 0; }
    .gallery-nav .slick-current {
      -webkit-box-shadow: 0px 4px 10px 0px rgba(60, 99, 217, 0.3);
              box-shadow: 0px 4px 10px 0px rgba(60, 99, 217, 0.3); }
  .gallery__index {
    font-size: 14px;
    line-height: 18px;
    font-weight: 300; }

.text h3 {
  margin: 0;
  margin-bottom: 19px;
  margin-top: 35px;
  font-size: 23px;
  line-height: 24px;
  font-weight: 600; }

.text p {
  margin: 15px 0 20px 0;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300; }

.text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 20px; }

.text a {
  color: #4c70df;
  text-decoration: none; }
  .text a:hover, .text a:focus {
    text-decoration: underline; }

.text li {
  position: relative;
  margin: 6px 0;
  padding-left: 15px; }
  .text li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #4c70df;
    border-radius: 50%; }

.addon {
  padding-top: 15px; }
  .addon__title {
    margin: 0;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600; }
  .addon__videos {
    margin: 0;
    padding: 0;
    list-style: none; }
  .addon__video {
    display: inline-block;
    width: 203px;
    height: 136px;
    margin-right: 20px; }
    .addon__video:last-child {
      margin-right: 0; }
  .addon__files {
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 30px 0 35px 0; }
  .addon__file {
    position: relative;
    margin-bottom: 10px;
    padding-left: 32px;
    background: url("../img/icon/file-icon.svg") no-repeat left 2px;
    background-size: 19px; }
  .addon__link {
    color: #4c70df;
    text-decoration: none;
    display: block;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400; }
    .addon__link:hover, .addon__link:focus {
      text-decoration: underline; }
  .addon__info {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #7b8087; }

.share {
  padding-top: 35px;
  border-top: 1px solid #e8e8e8; }
  .share__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block; }
  .share__item {
    display: inline-block;
    margin-right: 10px; }
  .share__link {
    text-decoration: none;
    display: block; }
    .share__link--vk:hover svg path, .share__link--vk:focus svg path {
      fill: #6190c5; }
    .share__link--fb:hover svg path, .share__link--fb:focus svg path {
      fill: #1f78cc; }
    .share__link--ok:hover svg path, .share__link--ok:focus svg path {
      fill: #fa8546; }
    .share__link--twee:hover svg path, .share__link--twee:focus svg path {
      fill: #62d1f3; }
  .share__caption {
    display: inline-block;
    margin-right: 20px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    color: #7b8087;
    vertical-align: top; }

.ya-share2__item:hover,
.ya-share2__item:focus {
  opacity: 0.8 !important; }

.ya-share2__container_size_m .ya-share2__icon {
  width: 19px !important;
  height: 20px !important; }

.ya-share2__badge {
  background-color: transparent !important; }

.ya-share2__icon {
  background-size: contain !important;
  background-repeat: no-repeat !important; }

.ya-share2__item_service_vkontakte .ya-share2__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.87' height='19.87'%3E%3Cpath d='M9.94 0a9.94 9.94 0 1 0 9.94 9.93A9.933 9.933 0 0 0 9.94 0zm5.21 13.95l-1.64.03a1.164 1.164 0 0 1-.82-.25c-.62-.43-1.2-1.53-1.65-1.38a1.343 1.343 0 0 0-.45 1.13.521.521 0 0 1-.1.33.609.609 0 0 1-.34.14h-.73a4.224 4.224 0 0 1-3.06-1.39A20.157 20.157 0 0 1 3.42 7.7a.394.394 0 0 1 0-.31.657.657 0 0 1 .37-.12l1.76-.01a.668.668 0 0 1 .28.11.566.566 0 0 1 .16.21 11.058 11.058 0 0 0 .66 1.37c.73 1.27 1.08 1.55 1.33 1.41.36-.19.25-1.79.25-1.79a1.778 1.778 0 0 0-.18-.84.878.878 0 0 0-.55-.28c-.1-.01.06-.24.28-.34a3.78 3.78 0 0 1 1.53-.16 3.426 3.426 0 0 1 .87.08c.61.15.4.72.4 2.08a1.573 1.573 0 0 0 .24 1.25c.13.08.46.01 1.29-1.39a10.847 10.847 0 0 0 .68-1.45.562.562 0 0 1 .17-.2.42.42 0 0 1 .24-.04l1.85-.01a.722.722 0 0 1 .65.18c.09.27-.21.88-.97 1.89-1.24 1.66-1.38 1.51-.35 2.47a5.783 5.783 0 0 1 1.23 1.41c.41.68-.46.73-.46.73z' fill='%234f749e' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") !important; }

.ya-share2__item_service_facebook .ya-share2__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.88' height='19.87'%3E%3Cpath d='M9.94 0a9.94 9.94 0 1 0 9.94 9.93A9.931 9.931 0 0 0 9.94 0zm2.35 6.86H10.8a.51.51 0 0 0-.38.55v1.08h1.87v1.53h-1.87v4.63H8.66v-4.63h-1.6V8.49h1.6v-.91a2.214 2.214 0 0 1 2.14-2.35h1.49v1.63z' fill='%231361aa' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") !important; }

.ya-share2__item_service_odnoklassniki .ya-share2__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.9' height='19.87'%3E%3Cpath d='M9.95 8.01A1.41 1.41 0 1 0 8.54 6.6a1.408 1.408 0 0 0 1.41 1.41zm0-8.01a9.94 9.94 0 1 0 9.94 9.93A9.931 9.931 0 0 0 9.95 0zm0 3.73A2.87 2.87 0 1 1 7.09 6.6a2.876 2.876 0 0 1 2.86-2.87zm2.55 7.39a4.693 4.693 0 0 1-1.99.59l.46.46 1.68 1.69a.652.652 0 0 1 0 .93l-.07.08a.67.67 0 0 1-.93 0l-1.69-1.69-1.69 1.69a.7.7 0 0 1-.46.19.7.7 0 0 1-.47-.19l-.08-.08a.67.67 0 0 1 0-.93l1.69-1.69.46-.45a4.991 4.991 0 0 1-2.01-.6c-.71-.46-1.03-.74-.75-1.3a.72.72 0 0 1 1.2-.13 3.815 3.815 0 0 0 4.2 0 .73.73 0 0 1 1.21.13c.28.56-.04.84-.76 1.3z' fill='%23fe7327' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") !important; }

.ya-share2__item_service_twitter .ya-share2__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.87' height='19.87'%3E%3Cpath d='M9.94 0a9.94 9.94 0 1 0 9.94 9.93A9.94 9.94 0 0 0 9.94 0zm4.04 8.14v.25a5.566 5.566 0 0 1-8.57 4.69 3.708 3.708 0 0 0 .47.03 3.89 3.89 0 0 0 2.43-.84 1.949 1.949 0 0 1-1.83-1.36 2.206 2.206 0 0 0 .37.04 2.247 2.247 0 0 0 .52-.07A1.954 1.954 0 0 1 5.8 8.96v-.03a1.875 1.875 0 0 0 .88.25 1.967 1.967 0 0 1-.87-1.63 1.894 1.894 0 0 1 .27-.98 5.554 5.554 0 0 0 4.03 2.04 2.138 2.138 0 0 1-.05-.45 1.966 1.966 0 0 1 3.39-1.34 3.88 3.88 0 0 0 1.24-.47 1.93 1.93 0 0 1-.86 1.08 3.647 3.647 0 0 0 1.13-.31 4.136 4.136 0 0 1-.98 1.02z' fill='%2318bdef' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") !important; }

.projects-block {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2);
          box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2);
  margin-bottom: 35px; }
  .projects-block__title {
    margin: 0;
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 22px;
    font-weight: 600; }
  .projects-block__list {
    margin: 0;
    padding: 0;
    list-style: none; }
  .projects-block__item {
    position: relative;
    margin-bottom: 45px; }
    .projects-block__item::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -25px;
      width: 100%;
      height: 1px;
      background-color: #e8e8e8; }
    .projects-block__item:last-child {
      margin-bottom: 0; }
      .projects-block__item:last-child::after {
        content: none; }
  .projects-block__link {
    color: #32363b;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .projects-block__link:hover, .projects-block__link:focus {
      color: #4c70df; }
  .projects-block__img {
    margin-top: 8px;
    width: 80px;
    height: 54px;
    overflow: hidden;
    border: 1px solid #e8e8e8; }
    .projects-block__img img {
      display: block; }
  .projects-block__caption {
    margin: 0;
    padding: 0;
    width: 160px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 500; }

.order-form {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2);
          box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2);
  margin-bottom: 40px; }
  .order-form__title {
    margin: 8px 0 5px;
    padding: 0;
    text-align: center;
    font-size: 23px;
    line-height: 24px;
    font-weight: 700; }
  .order-form__caption {
    margin-top: 13px;
    margin-bottom: 21px;
    text-align: center;
    font-size: 13px;
    line-height: 22px;
    font-weight: 300; }
  .order-form .button {
    margin-top: 12px;
    margin-bottom: 8px; }

.form__field {
  position: relative;
  margin-bottom: 16px; }

.form__input {
  width: 100%;
  max-width: 360px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 13px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  line-height: 13px;
  font-weight: 300;
  color: #32363b;
  border-radius: 22px;
  border: 1px solid #e8e8e8; }
  .form__input::-webkit-input-placeholder {
    opacity: 1;
    color: #7b8087; }
  .form__input:-ms-input-placeholder {
    opacity: 1;
    color: #7b8087; }
  .form__input::-ms-input-placeholder {
    opacity: 1;
    color: #7b8087; }
  .form__input::placeholder {
    opacity: 1;
    color: #7b8087; }
  .form__input:hover, .form__input:focus {
    background-color: #f9f9f9; }
  .form__input._error {
    border-color: #ffb4b4;
    background-color: #fef8f8;
    color: #f45252; }
    .form__input._error::-webkit-input-placeholder {
      color: rgba(244, 82, 82, 0.7); }
    .form__input._error:-ms-input-placeholder {
      color: rgba(244, 82, 82, 0.7); }
    .form__input._error::-ms-input-placeholder {
      color: rgba(244, 82, 82, 0.7); }
    .form__input._error::placeholder {
      color: rgba(244, 82, 82, 0.7); }

.form__checkbox {
  position: relative;
  z-index: 2;
  opacity: 0;
  margin-left: 1px;
  cursor: pointer; }
  .form__checkbox:hover + .form__checkbox-label::after {
    content: '';
    opacity: 0.5; }
  .form__checkbox:checked + .form__checkbox-label::after {
    opacity: 1; }
  .form__checkbox:checked:hover + .form__checkbox-label::after {
    opacity: 0.5; }

.form__checkbox-label {
  position: absolute;
  left: 0;
  padding-left: 30px;
  padding-right: 50px;
  font-size: 11px;
  line-height: 16px;
  cursor: pointer; }
  .form__checkbox-label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 2px; }
  .form__checkbox-label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    opacity: 0;
    width: 5px;
    height: 8px;
    border-right: 2px solid #24da89;
    border-bottom: 2px solid #24da89;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease; }
  .form__checkbox-label._error {
    color: #f45252; }
    .form__checkbox-label._error:before {
      border-color: #ffb4b4;
      background-color: #fef8f8; }

.wpcf7-not-valid {
  border-color: #ffb4b4 !important;
  background-color: #fef8f8 !important;
  color: #f45252 !important; }
  .wpcf7-not-valid::-webkit-input-placeholder {
    color: rgba(244, 82, 82, 0.7) !important; }
  .wpcf7-not-valid:-ms-input-placeholder {
    color: rgba(244, 82, 82, 0.7) !important; }
  .wpcf7-not-valid::-ms-input-placeholder {
    color: rgba(244, 82, 82, 0.7) !important; }
  .wpcf7-not-valid::placeholder {
    color: rgba(244, 82, 82, 0.7) !important; }

span.wpcf7-not-valid-tip {
  display: none !important; }

.wpcf7-validation-errors {
  border: none !important; }

.contacts-block {
  background-color: #fafafd;
  margin-bottom: 32px; }
  .contacts-block__title {
    margin: 0;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600; }
  .contacts-block__text {
    margin: 0;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 300; }
  .contacts-block__link {
    color: #4c70df;
    text-decoration: none;
    display: block;
    font-size: 22px;
    line-height: 36px;
    font-weight: 700; }
    .contacts-block__link:hover, .contacts-block__link:focus {
      text-decoration: underline; }

.partners-block {
  background-color: #fafafd;
  margin-bottom: 35px; }
  .partners-block__title {
    margin: 0;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600; }
  .partners-block__caption {
    margin: 0;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 300; }
  .partners-block__text {
    margin: 0;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 300; }
  .partners-block__tel {
    color: #32363b;
    text-decoration: none;
    font-weight: 700; }
    .partners-block__tel:hover, .partners-block__tel:focus {
      color: #4c70df; }
  .partners-block__mail {
    color: #4c70df;
    text-decoration: none; }
    .partners-block__mail:hover, .partners-block__mail:focus {
      text-decoration: underline; }

.pagination {
  vertical-align: middle;
  padding-top: 10px;
  padding-bottom: 10px; }
  .pagination ul.page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle; }
  .pagination li {
    display: inline-block; }
  .pagination a.page-numbers {
    display: block;
    padding-right: 9px;
    padding-left: 9px;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
    line-height: 30px;
    font-weight: 400;
    text-decoration: none;
    color: #32363b; }
    .pagination a.page-numbers:hover, .pagination a.page-numbers:focus {
      text-decoration: underline;
      -webkit-text-decoration-color: #4c70df;
              text-decoration-color: #4c70df; }
    .pagination a.page-numbers.current {
      color: #4c70df; }
  .pagination__control {
    vertical-align: middle;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #f9fcff;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .pagination__control:hover, .pagination__control:focus {
      background-image: none;
      background-color: #eaeaeb; }
    .pagination__control::after {
      content: '';
      position: absolute;
      bottom: 12px;
      width: 7px;
      height: 7px;
      -webkit-transform-origin: center;
              transform-origin: center;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .pagination__control--prev {
      margin-right: 8px; }
      .pagination__control--prev::after {
        right: 10px;
        border-top: 2px solid #c6c6c6;
        border-left: 2px solid #c6c6c6; }
    .pagination__control--next {
      margin-left: 8px; }
      .pagination__control--next::after {
        right: 12px;
        border-bottom: 2px solid #c6c6c6;
        border-right: 2px solid #c6c6c6; }

.calendar__datepicker {
  padding-bottom: 16px; }

.calendar__title {
  margin: 0;
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 20px;
  font-weight: 600; }

.calendar__datepicker {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2);
          box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2); }

.calendar .ui-datepicker-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3px;
  padding-bottom: 2px;
  margin-bottom: 5px;
  background-color: #4c70df; }

.calendar .ui-datepicker-prev {
  font-size: 0;
  display: block;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0; }

.calendar .ui-datepicker-next {
  font-size: 0;
  display: block;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

.calendar .ui-datepicker-next, .calendar .ui-datepicker-prev {
  position: relative;
  width: 40px;
  height: 30px; }
  .calendar .ui-datepicker-next::after, .calendar .ui-datepicker-prev::after {
    content: '';
    position: absolute;
    top: 11px;
    width: 7px;
    height: 7px;
    -webkit-transform-origin: center;
            transform-origin: center; }

.calendar .ui-datepicker-prev::after {
  left: 25px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.calendar .ui-datepicker-next::after {
  right: 25px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.calendar .ui-datepicker-title {
  font-family: "Lato", Arial, sans-serif;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  background-color: #4c70df; }

.calendar .ui-datepicker-calendar {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  text-align: right; }
  .calendar .ui-datepicker-calendar thead {
    color: #7b8087;
    font-size: 13px;
    line-height: 20px;
    font-weight: 900; }
    .calendar .ui-datepicker-calendar thead th {
      padding: 5px 10px 15px 10px; }
  .calendar .ui-datepicker-calendar tbody {
    color: #7b8087;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600; }
    .calendar .ui-datepicker-calendar tbody td {
      padding: 5px 10px 10px 10px; }

.calendar .ui-state-default {
  position: relative;
  z-index: 1;
  display: block;
  color: #32363b;
  text-decoration: none; }
  .calendar .ui-state-default::after {
    content: '';
    position: absolute;
    top: -8px;
    left: calc(50% - 14px);
    z-index: -1;
    width: 30px;
    height: 30px;
    background-color: #4c70df;
    border-radius: 50%;
    opacity: 0;
    transtion: opacity 0.3s ease; }
  .calendar .ui-state-default:hover, .calendar .ui-state-default:focus {
    color: #fff; }
    .calendar .ui-state-default:hover::after, .calendar .ui-state-default:focus::after {
      opacity: 1; }
  .calendar .ui-state-default._disabled {
    pointer-events: none;
    color: #7b8087; }
  .calendar .ui-state-default.ui-state-active {
    color: #4c70df; }
    .calendar .ui-state-default.ui-state-active:hover, .calendar .ui-state-default.ui-state-active:focus {
      color: #fff; }

#wp-calendar {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  text-align: right; }
  #wp-calendar caption {
    padding-top: 6px;
    padding-bottom: 4px;
    margin-bottom: 5px;
    margin-left: -11px;
    margin-right: -11px;
    font-family: "Lato", Arial, sans-serif;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    background-color: #4c70df; }
  #wp-calendar thead {
    color: #7b8087;
    font-size: 13px;
    line-height: 20px;
    font-weight: 900; }
    #wp-calendar thead th {
      padding: 5px 10px 15px 10px; }
  #wp-calendar tbody {
    color: #7b8087;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600; }
    #wp-calendar tbody td {
      padding: 5px 10px 10px 10px;
      color: #7b8087; }
      #wp-calendar tbody td a {
        position: relative;
        z-index: 1;
        display: block;
        color: #32363b;
        text-decoration: none; }
        #wp-calendar tbody td a::after {
          content: '';
          position: absolute;
          top: -8px;
          left: calc(50% - 14px);
          z-index: -1;
          width: 30px;
          height: 30px;
          background-color: #4c70df;
          border-radius: 50%;
          opacity: 0;
          transtion: opacity 0.3s ease; }
        #wp-calendar tbody td a:hover, #wp-calendar tbody td a:focus {
          color: #fff; }
          #wp-calendar tbody td a:hover::after, #wp-calendar tbody td a:focus::after {
            opacity: 1; }
  #wp-calendar tfoot a { color:#4c70df; text-decoration:none;}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: none;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  overflow-x: auto;
  overflow-y: scroll;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); }
  .modal::before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .modal__block {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 520px;
    padding: 60px 80px 45px 80px;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2);
            box-shadow: 0px 2px 20px 0px rgba(60, 99, 217, 0.2); }
  .modal__close {
    position: absolute;
    z-index: 35;
    top: 19px;
    right: 28px;
    padding: 0;
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: none; }
    .modal__close::before, .modal__close::after {
      content: '';
      position: absolute;
      top: -2px;
      left: 4px;
      width: 1px;
      height: 14px;
      background-color: #c6c6c6;
      -webkit-transform-origin: center;
              transform-origin: center; }
    .modal__close::before {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-box-shadow: none;
              box-shadow: none; }
    .modal__close::after {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .modal__close:hover::before, .modal__close:hover::after, .modal__close:focus::before, .modal__close:focus::after {
      background-color: #a4a4a4; }

.feedback-form {
  text-align: left; }
  .feedback-form__title {
    margin: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 46px;
    line-height: 46px;
    font-weight: 400; }
  .feedback-form__caption {
    margin: 0;
    margin-bottom: 35px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300; }
  .feedback-form .form__field--checkbox {
    margin-left: 30px;
    margin-right: 30px; }
  .feedback-form .form__checkbox-label {
    display: inline-block;
    padding-right: 0; }
    .feedback-form .form__checkbox-label::before {
      top: 0; }
    .feedback-form .form__checkbox-label::after {
      top: 3px; }

.projects__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 100px; }

.projects__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px; }

.projects__gallery {
  position: relative;
  width: 362px;
  margin-right: 33px; }

.projects__controls {
  position: absolute;
  left: -20px;
  top: 100px;
  z-index: 4;
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.projects__control {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #f9fcff;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50%;
  -webkit-transition: background-image 0.6s ease;
  transition: background-image 0.6s ease;
  vertical-align: bottom; }
  .projects__control:hover, .projects__control:focus {
    background-image: none;
    background-color: #eaeaeb; }
  .projects__control::after {
    content: '';
    position: absolute;
    bottom: 15px;
    width: 10px;
    height: 10px;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .projects__control--prev::after {
    right: 14px;
    border-top: 3px solid #c6c6c6;
    border-left: 3px solid #c6c6c6; }
  .projects__control--next::after {
    right: 16px;
    border-bottom: 3px solid #c6c6c6;
    border-right: 3px solid #c6c6c6; }

.projects__slider {
  margin-bottom: 20px; }
  .projects__slider-item {
    display: block;
    height: 246px;
    border: 1px solid #e8e8e8;
    overflow: hidden; }
    .projects__slider-item img {
      display: block;
      min-width: 100%;
      min-height: 100%;
      height: auto;
      width: auto; }
  .projects__slider .slick-track {
    height: 244px; }

.projects__preview-item {
  width: 83px;
  height: 53px;
  overflow: hidden; }
  .projects__preview-item img {
    display: block;
    width: 100%;
    height: auto; }

.projects__preview .slick-slide {
  width: 83px;
  border: 1px solid #e8e8e8;
  margin-right: 9px; }

.projects__caption {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 22px;
  font-weight: 400;
  color: #4c70df; }

.projects__title {
  margin: 0;
  margin-bottom: 25px;
  padding-right: 90px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600; }

.projects__date {
  display: block;
  margin-bottom: 26px;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: #7b8087; }

.projects__content {
  margin-bottom: 47px; }
  .projects__content p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 22px;
    font-weight: 300; }

.text_full {
	width: 970px !important;
}

img.wp-image-180.size-medium.alignright {
	float: right;
}

.form-margin-top {
	margin-top: 30px;
}