figure {
  margin: 0;
}

/*** layouts ***/

.mkb-layouts {
  width: 72%;
  max-width: 920px;
  padding: 10px 20px;
  margin: 24px auto 12px;
}

@media (max-width: 980px) {

  .mkb-layouts {
    width: 72%;
    margin: 20px auto 15px;
  }
}

@media (max-width: 880px) {

  .mkb-layouts {
    width: auto;
    margin: 10px auto;
  }
}

@media (max-width: 500px) {

  .mkb-layouts {
    margin: 20px auto 10px;
  }
}

.mkb-layouts {
  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;
}

@media (max-width: 399px) {

  .mkb-layouts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.mkb-layouts__layout {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1em;
}

@media (max-width: 604px) {

  .mkb-layouts__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 0.5em);
    margin-bottom: 15px;
  }
}

@media (max-width: 399px) {

  .mkb-layouts__layout {
    width: 100%;
  }
}

.mkb-layouts__image-wrapper {
  display: block;
  margin: 0 0.5em 0 0;
}

.mkb-layouts__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.mkb-layouts__note {
  display: block;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/*** layout end ***/

/*** deposit ***/

.mkb-deposit {
  position: relative;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  width: 100%;
  max-height: 800px;
}

.mkb-deposit__video {
  display: block;
  width: 100%;
  height: auto;
}

.mkb-deposit__left {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 100%;
}

.mkb-deposit .mkb-deposit__left-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 70%;
}

.mkb-deposit__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}

.mkb-deposit .mkb-deposit__right-image {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mkb-deposit .mkb-deposit__right-image_1 {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
}

.mkb-deposit .mkb-deposit__right-image_2 {
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 78%;
}

.mkb-deposit__right-sprite {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: 70%;
  max-width: 528px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mkb-deposit__right-sprite-placeholder {
  display: block;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.mkb-deposit__right-sprite-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: 2.4s transform steps(72);
}

.mkb-deposit__right-sprite-image_active {
  transform: translateY(-98.63%);
}

/*** deposit end ***/

/*** tools ***/

.mkb-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: calc(100% - 44px);
  margin: 0 auto;
  max-width: 1600px;
}

.mkb-tools__note {
  display: block;
  text-align: left;
  padding: 0 7%;
  margin-top: 1em;
}

.mkb-tools__tool:nth-child(1) {
  flex-basis: 60%;
  max-width: 60%;
  margin-top: 5em;
}

.mkb-tools__tool:nth-child(2) {
  flex-basis: 40%;
  max-width: 40%;
}

.mkb-tools__tool:nth-child(3) {
  margin-top: 3em;
  flex-basis: 80%;
  max-width: 80%;
  margin-left: 15%;
}

.mkb-tools__tool:nth-child(3) .mkb-tools__note {
  margin-top: 0;
}

.mkb-tools:nth-child(1) .announce__screencast video {
  top: 9.2%;
  margin-bottom: 0;
}

.mkb-tools:nth-child(3) .announce__screencast video {
  top: 8.64%;
  margin-bottom: 0;
}

/*** branch ***/

.mkb-branch {
  position: absolute;
  top: 0;
  margin-bottom: 0;
  opacity: 0;
  -webkit-animation: 4s ease-in infinite branch;
  animation: 6s ease-in infinite branch;
}

@-webkit-keyframes branch {
  0%   { opacity: 0 }
  45%  { opacity: 0 }
  50%  { opacity: 1 }
  95%  {opacity:  1 }
  100% { opacity: 0 }
}

@keyframes branch {
  0%   { opacity: 0 }
  45%  { opacity: 0 }
  50%  { opacity: 1 }
  95%  {opacity:  1 }
  100% { opacity: 0 }
}

/*** branch ***/

@media (max-width: 900px) {
  .mkb-tools__tool {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin: 25px 0 15px !important;
  }

  .mkb-tools .announce__screencast {
    width: 100% !important;
    max-width: none !important;
  }
}

/*** tools end ***/

/*** circles ***/

.mkb-circles {
  position: relative;
  width: 1400px;
  max-width: calc(100% - 44px);
  margin-left: auto;
  margin-right: auto;
}

@media(max-width: 1400px) {
  .mkb-circles {
    max-width: 100%;
  }

  .mkb-circles__mask {
    //position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
  }
}

  #circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


/*** circles end ***/

.mkb-footer {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.mkb-footer img {
  display: block;
  width: 100%;
  height: auto;
}


.main-cover {
  overflow: hidden;
  position: relative;
}

.main-cover__video {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  height: 100%;
  width: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

@media(max-width: 650px) {
  .main-cover__video {
    display: none;
  }
}


