/*
Theme Name: Humon
*/

select {
  font-size: 16px;
  color: #2d0606;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.0);
  border-radius: 0px;
  font-family: "RCR", sans-serif;
  text-transform: uppercase;
  -webkit-appearance: button;
  line-height: 1.25em;
  letter-spacing: 1.6px;
}
.tt {
  width: 1px;
  color: transparent;
}

/* clearfix */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  height: 0;
}

body.loading {
  overflow: hidden;
}
body.no-scroll {
  height: 100%;
  overflow: hidden;
}
.page-preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  text-align: center;
  font: 72px/1 "RCR", sans-serif;
  z-index: 10000;
}

.page-preloader .text--line {
  font-size: 1em;
}

.page-preloader svg {
  position: absolute;
  width: 250px;
  height: 90px;
  top:50%;
  left: 50%;
  margin: -40px 0 0 -125px
}

.page-preloader .text-copy {
  fill: none;
  stroke: #000;
  stroke-dasharray: 20% 80%;
  stroke-width: 1px;
  -webkit-animation: stroke-offset 9s infinite linear;
  animation: stroke-offset 9s infinite linear;
}
.page-preloader .text-copy:nth-child(1) {
  stroke: #000;
  stroke-dashoffset: 20%;
}
.page-preloader .text-copy:nth-child(2) {
  stroke: #000;
  stroke-dashoffset: 40%;
}
.page-preloader .text-copy:nth-child(3) {
  stroke: #000;
  stroke-dashoffset: 60%;
}
.page-preloader .text-copy:nth-child(4) {
  stroke: #000;
  stroke-dashoffset: 80%;
}
.page-preloader .text-copy:nth-child(5) {
  stroke: #000;
  stroke-dashoffset: 100%;
}

@-webkit-keyframes stroke-offset {
  50% {
  stroke-dashoffset: 100%;
  stroke-dasharray: 0 250%;
  }
}

@keyframes stroke-offset {
  50% {
  stroke-dashoffset: 100%;
  stroke-dasharray: 0 250%;
  }
}

.btn {
  display: block;
  width: 185px;
  height: 57px;
  line-height: 55px;
  padding-top: 2px;
  background-color: #d80000;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: "RCR", sans-serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1.3px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.over-shop {
  position: absolute;
  display: none;
  margin: 0;
  padding: 10px;
  list-style: none;
  left: 0;
  top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 5px;
}
.over-shop li {
  margin-top: 5px;
}
.over-shop li:first-child {
  margin-top: 0;
}
.over-shop a {
  font-family: "RCR", sans-serif;
  font-size: 16px;
  line-height: 1.25em;
  letter-spacing: 1.6px;
  color: #2d0606;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.over-shop a:hover {
  color: #d80000;
}

/*
.btn:hover {
  background-color: #ee0000;
}

.btn:hover::before {
  -webkit-transform: translate(-200%, -50%);
  -ms-transform: translate(-200%, -50%);
  transform: translate(-200%, -50%);
}
*/

.btn::before {
  content: '';
  background-image: url(./img/backgrounds/btn.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.btn span {
  padding: 0 30px 0 0;
  position: relative;
  transition: all 0.3s;
}
.btn:hover span {
  padding: 0 15px 0 30px;
}
.btn span::after,
.btn span::before {
  width: 15px;
  height: 15px;
  display: block;
  content: '';
  background-image: url(./img/icons/arrow-white.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  opacity: 0;
}
.btn-white span::after,
.btn-white span::before {
  background-image: url(./img/icons/arrow-black.svg);
}
.btn span::after {
  right: 0;
  opacity: 1;
}
.btn:hover span::after {
  opacity: 0;
  right: -30px;
}
.btn span::before {
  left: -30px;
}
.btn:hover span::before {
  left: 0px;
  opacity: 1;
}

.btn-black {
  background-color: black;
}
.btn-white {
  background-color: #fff;
  display: inline-block;
  color: #000;
}

.btn-black::before,
.btn-white::before {
  display: none;
}

.burgers {
  width: 35px;
  height: 30px;
  cursor: pointer;
  display: none;
  position: relative;
}

.burgers__item {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 50%;
  right: 0;
  margin-top: -5px;
  opacity: 1;
  background: black;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.burgers__item::before {
  content: '';
  display: block;
  position: absolute;
  background: black;
  width: 100%;
  height: 3px;
  top: 11px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.burgers__item::after {
  content: '';
  display: block;
  position: absolute;
  background: black;
  width: 100%;
  height: 3px;
  bottom: 11px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.menu-on .burgers__item::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 0;
}

.menu-on .burgers__item::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

.menu-on .burgers__item {
  background: transparent;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.6;
  font-family: "PR", sans-serif;
  overflow-x: hidden;
  margin: 0 auto;
  line-height: 1.375em;
  transition: padding 0.3s;
  background-color: #000;
}
body.sticky-header .content {
  padding-top: 79px;
}

.hidden {
  display: none;
}

a {
  text-decoration: none;
  outline: none;
  color: #111;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0 !important;
  cursor: pointer;
}

button:active, button:focus {
  border: none;
}

input {
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0;
  border-radius: 0;
  box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0;
}

div, span, form, textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.container {
  width: 1380px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 30px;
}
.container2 {
  width: 1272px;
}

.box {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
}

.img {
  width: 100%;
}

.imgs {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

ul {
  padding-left: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

li {
  list-style-type: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.content {
  overflow-x: hidden;
  z-index: 1;
  margin-bottom: 323px;
  position: relative;
  background-color: #fff;
  padding-top: 132px;
  overflow: hidden;
}

.header {
  z-index: 900;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  transition: all 0.3s;
  /*overflow: hidden;*/
}
/*
.admin-bar .header {
  top: 32px;
}
*/
.header.sticky {
  background-color: #fff !important;
  -webkit-box-shadow: 0 6px 13px rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.07);
}

.top {
  padding-top: 38px;
  padding-bottom: 15px;
  height: 132px;
  transition: all 0.3s;
}

.header.sticky .top  {
  padding-top: 10px;
  padding-bottom: 10px;
  height: 79px;
}

.top .container {
  text-align: justify;
}

.top .container::after {
  content: '';
  display: inline-block;
  width: 100%;
}

.top__btn {
  display: inline-block;
  vertical-align: top;
  /*margin-top: 9px;*/
}

.logo {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  width: 168px;
  height: 41px;
}

.menu {
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}

.menu__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 24px;
}

.current-menu-item .menu__link {
  color: #b7b7b7;
}

.menu__link {
  font-family: "RCR", sans-serif;
  font-size: 16px;
  line-height: 1.25em;
  letter-spacing: 1.6px;
  color: #2d0606;
  text-transform: uppercase;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.menu__link:hover {
  color: #d80000;
}

.bottom {
  position: relative;
  z-index: 1;
  height: calc(100vh - 132px);
  width: 100%;
  display: table;
  overflow: hidden;
}

.bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
   align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
  min-width: 100%;
  min-height: 100%;
  top: 0;
}

.wrap_bottom__video {
  height: calc(100vh - 132px);
  width: 100%;
  overflow: hidden;
  position: absolute;
}
.bottom__video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
/*
.bottom__video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/
.wrap-header-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bottom__wrapper {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

.bottom__content {
  position: relative;
  z-index: 101;
  max-width: 590px;
  padding-top: 10px;
  padding-bottom: 50px;
  padding-left: 5px;
}

.decor-scroll {
  position: absolute;
  width: 1px;
  height: 69px;
  left: 36px;
  bottom: 27px;
  background-color: #fff;
}
.decor-scroll.right-side {
  right: 30px;
  left: auto;
}

.decor-scroll::before {
  content: '';
  background-image: url(./img/icons/header-decor.png?v=2);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 47px;
  height: 54px;
  left: -23px;
  top: -24px;
  -webkit-animation: arrowBounce 2s infinite;
  -moz-animation: arrowBounce 2s infinite;
  -ms-animation: arrowBounce 2s infinite;
  -o-animation: arrowBounce 2s infinite;
  animation: arrowBounce 2s infinite;

  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out
}
@-moz-keyframes arrowBounce {
  0%, 100% {
    top:-24px;
  }
  50% {
    top:20px
  }
}
@-webkit-keyframes arrowBounce {
  0%, 100% {
    top:-24px;
  }
  50% {
    top:38px
  }
}
@-o-keyframes arrowBounce {
  0%, 100% {
    top:-24px;
  }
  50% {
    top:38px
  }
}
@-ms-keyframes arrowBounce {
  0%, 100% {
    top:-24px;
  }
  50% {
    top:38px
  }
}
@keyframes arrowBounce {
  0%, 100% {
    top:-24px;
  }
  50% {
    top:38px
  }
}

.bottom__title {
  font-family: "PB", sans-serif;
  font-size: 50px;
  line-height: 1.25em;
  letter-spacing: 1.2px;
  color: #fff;
}

.bottom__title_accent {
  color: #d80000;
}

.bottom__desc {
  font-family: "PL", sans-serif;
  font-size: 30px;
  line-height: 1.1875em;
  letter-spacing: 0.4px;
  color: #fff;
  margin-top: 26px;
}

.bottom__buttons {
  margin-top: 33px;
}

.bottom__btn {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}

.about {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 2;
}

.about__texts {
  display: inline-block;
  vertical-align: middle;
  margin-top: 30px;
  margin-left: 60px;
  margin-right: 84px;
  max-width: 460px;
}

.about__title {
  font-family: "PB", sans-serif;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.6px;
  color: #000;
}

.about__desc {
  margin-top: 39px;
  font-family: "PL", sans-serif;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.8px;
  opacity: .65;
  color: black;
}
.about__desc strong {
  font-family: "PB", sans-serif;
}

.about__more {
  font-family: "ECR", sans-serif;
  font-size: 14px;
  line-height: 1.25em;
  letter-spacing: 0.4px;
  color: #7c7c7c;
  display: block;
  margin-top: 43px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.about__more:hover {
  color: #575757;
}

.about__more:hover::after {
  margin-left: 15px;
}

.about__more::after {
  content: '';
  background-image: url(./img/icons/arrow-gray2.png);
  background-size: cover;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 11px;
  width: 15px;
  height: 12px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.about__images {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.about__wrap {
  width: 437px;
  height: 587px;
  position: relative;
  overflow: hidden;
  background: url(./img/images/humon.jpg) no-repeat center center;
  background-size: cover;
}
.about__video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.animate-about {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}

.about__wrap-small {
  width: 329px;
  height: 445px;
  position: absolute;
  top: 0;
  right: -206px;
}

.about__wrap-small div::after {
  content: '';
  background-image: url(./img/images/img-decor.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 41px;
  height: 506px;
  bottom: 0;
  right: 0;
  opacity: 0.9;
}
.about__wrap-small div img {
  display: block;
}

.advantages__big {
  height: 559px;
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: 0px auto 0;
  background: #000;
}

.advantages__img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.3s;
  opacity: 0.8;
}
.advantages__big .advantages__img {
  opacity: 0.6;
}
.advantages__big:hover .advantages__img,
.advantages__item:hover .advantages__img {
  opacity: 0.6;
}
.advantages__big:hover .advantages__img {
  opacity: 0.4;
}

.advantages__content {
  position: absolute;
  width: 485px;
  z-index: 10;
  bottom: 50px;
}

.advantages__items {
  max-width: 1440px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px auto 0;
}

.advantages__items::after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}

.advantages__item {
  padding-left: 61px;
  position: relative;
  overflow: hidden;
  height: 335px;
  float: left;
  width: 33.3333333%;
  background: #000;
}

.advantages__item .advantages__content {
  width: 280px;
  top: 50px;
}

.advantages__item .advantages__more {
  margin-top: 24px;
}

.advantages__title {
  font-family: "PB", sans-serif;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.5px;
  color: #fff;
}

.advantages__item .wrap-descr {
  -webkit-transform: translateY(150%);
  -moz-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s;
}
.advantages__item:hover .wrap-descr,
.mobile .advantages__item .wrap-descr {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.advantages__desc {
  font-family: "PL", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  letter-spacing: 0.4px;
  color: #fff;
  margin-top: 21px;
}

.advantages__more {
  font-family: "ECR", sans-serif;
  font-size: 14px;
  line-height: 1.25em;
  letter-spacing: 0.4px;
  color: #f1f1f1;
  display: block;
  margin-top: 31px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.advantages__more:hover {
  color: white;
}

.advantages__more:hover::after {
  margin-left: 20px;
}

.advantages__more::after {
  content: '';
  background-image: url(./img/icons/arrow.png);
  background-size: cover;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 11px;
  width: 15px;
  height: 12px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product {
  position: relative;
  padding-top: 112px;
  padding-bottom: 110px;
}

.product__title {
  font-family: "PB", sans-serif;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.8px;
  color: black;
  position: relative;
  z-index: 100;
}

.product__block {
  position: relative;
  overflow: hidden;
}

.product-animation {
  position: relative;
  width: 1000px;
  height: 500px;
  background: #fff;
  background-image: url(./img/animation/poster.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  margin: 0 auto;
}
.product-animation img {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  visibility:hidden;
}
.product-animation img:first-child {
  visibility: visible !important;
}

.product-animation-2 {
  position: relative;
  width: 1000px;
  height: 500px;
  margin: 0 auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.product-animation-2 img {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
}

.product__wrap {
  width: 667px;
  height: 302px;
  margin-left: 305px;
  margin-top: 114px;
}

.product__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product__item {
  position: relative;
  margin-top: 50px;
  display: inline-block;
  text-align: left;
  vertical-align: top;
}

.product__header {
  font-family: "PR", sans-serif;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.5px;
  color: black;
  position: relative;
}
.product__header span {
  position: absolute;
  left: 0;
  top: -2em;
  font-size: 0.625em;
  color: #ccc;
  letter-spacing: 0.13em;
  display: none;
}

.product__text {
  font-family: "PL", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.5px;
  color: black;
  opacity: .57;
  margin-top: 16px;
}

.product__pdf {
  font-family: "RCR", sans-serif;
  font-size: 14px;
  line-height: 1.25em;
  letter-spacing: 1.4px;
  color: black;
  opacity: .52;
  display: block;
  margin-top: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product__pdf:hover {
  opacity: 1;
}

.product__pdf:hover::after {
  opacity: 1;
}

.product__pdf::after {
  content: '';
  background-image: url(./img/icons/pdf.png);
  background-size: cover;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  opacity: .5;
  width: 22px;
  height: 24px;
  margin-top: -3px;
  margin-left: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.why {
  height: calc(100vh - 79px);
  min-height: 450px;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative
}

.wrap-why__container {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.wrap-shapers,
.wrap-shaper-bg {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
}

.wrap-shaper-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wrap-shapers .shaper {
  position: absolute;
  left: 0;
  top:0;
  width: calc(100% / 3);
  height: 100%;
  overflow: hidden;
}
.wrap-shapers .shaper:nth-child(2) {
  left: calc(100% / 3);
}
.wrap-shapers .shaper:nth-child(3) {
  left: calc(200% / 3);
}
.wrap-shapers .shaper:nth-child(4) {
  left: 75%;
}
.wrap-shapers .shaper > div {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top:0;
  left: 100%;
  width: 300%;
  height: 100%;
}

.why__wrapper {
  display: table;
  min-height: 100%;
  height: 100%;
}

.why__container {
  display: table-cell;
  vertical-align: middle;
}

.why__slider {
  padding-bottom: 60px;
}

.why__slide {
  outline: none;
  overflow: hidden;
}

.why__content {
  width: 411px;
  padding: 46px 44px;
  padding-bottom: 35px;
  margin-left: 44px;
  position: relative;
  z-index: 1;
}

.why__content::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: white;
  z-index: -1;
}

.why__count {
  font-family: "RCR", sans-serif;
  font-size: 200px;
  line-height: 1.25em;
  letter-spacing: -3px;
  color: #fff;
  opacity: 1;
  top: -124px;
  left: -74px;
  position: absolute;
  z-index: -2;
  display: none;
}

.why__title {
  font-family: "PB", sans-serif;
  font-size: 18px;
  line-height: 1.25em;
  letter-spacing: 1.5px;
  color: black;
  margin-bottom: 30px;
}

.why__title::after {
  content: '';
  display: block;
  margin-top: 20px;
  width: 18px;
  height: 1px;
  opacity: 0.38;
  background-color: black;
}

.why__header {
  font-family: "PR", sans-serif;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.6px;
  color: black;
}

.why__text {
  font-family: "RL", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.5px;
  color: #757575;
  margin-top: 26px;
  padding-right: 5px;
}

.why__controls {
  margin-top: 97px;
  margin-left: -4px;
}

.why__prev {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: -3px;
  display: inline-block;
  vertical-align: top;
  width: 17px;
  height: 17px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  opacity: 0.21;
}

.why__prev:hover {
  opacity: 1;
}

.why__next {
  position: absolute;
  bottom: 0;
  left: 40px;
  display: inline-block;
  vertical-align: top;
  width: 17px;
  height: 17px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  opacity: 0.21;
}

.why__next:hover {
  opacity: 1;
}

.why__next svg,
.why__prev svg {
  fill: #000;
}

.reviews {
  position: relative;
  padding-top: 113px;
  padding-bottom: 139px;
  background-color: #ececec;
}

.reviews::before {
  content: '';
  position: absolute;
  background-image: url(./img/icons/quotes.png);
  background-size: cover;
  background-position: center;
  width: 103px;
  height: 82px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-left: -611px;
  top: -24px;
}

.reviews::after {
  content: '';
  position: absolute;
  background-image: url(./img/icons/quotes.png);
  background-size: cover;
  background-position: center;
  width: 103px;
  height: 82px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(-1, -1);
  -ms-transform: translateX(-50%) scale(-1, -1);
  transform: translateX(-50%) scale(-1, -1);
  margin-left: 611px;
  bottom: -24px;
}

.reviews__title,
.section-title {
  font-family: "PB", sans-serif;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: 0.8px;
  color: black;
}

.reviews__items {
  margin-top: 53px;
}

.reviews__item {
  margin-top: 40px;
  display: inline-block;
  vertical-align: top;
  margin-right: 27px;
  padding-left: 192px;
  min-height: 227px;
  width: 419px;
  position: relative;
}

.reviews__item:nth-child(3n+3) {
  margin-right: 0;
}

.reviews__wrap {
  display: inline-block;
  vertical-align: top;
  width: 172px;
  height: 227px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.reviews__wrap img {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.3s;
}
/*
.reviews__item:hover .reviews__wrap img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
*/

.reviews__content {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.reviews__header {
  font-family: "RCR", sans-serif;
  font-size: 14px;
  line-height: 1.25em;
  letter-spacing: 1px;
  color: black;
}

.reviews__desc {
  font-family: "PL", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0.5px;
  color: #818181;
  padding: 15px 20px;
  min-height: 165px;
  background-color: #fff;
  margin: 13px 0;
  margin-left: -50px;
}

.reviews__info {
  font-family: "RCR", sans-serif;
  font-size: 14px;
  line-height: 1.25em;
  letter-spacing: 1.4px;
  color: black;
  display: inline-block;
}

.subscribe {
  padding: 51px 0;
  position: relative;
  z-index: 1;
}

.subscribe::before {
  content: '';
  background-image: url(./img/backgrounds/subscribe.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.subscribe__wrapper .container:before,
.subscribe__wrapper .container:after {
  content: "";
  display: table;
}

.subscribe__wrapper .container:after {
  clear: both;
}

.subscribe__wrapper {
  background-color: #0b0b0d;
  padding: 77px 0;
  padding-bottom: 88px;
}

.subscribe__title {
  font-family: "PL", sans-serif;
  font-size: 30px;
  line-height: 1.25em;
  letter-spacing: 0.8px;
  color: #fff;
  width: 50%;
  float: left;
}

.subscribe__content {
  float: right;
  width: 50%;
  padding-left: 60px;
}

.subscribe__form,
.mailpoet_form {
  width: 100%;
  position: relative;
  margin-top: 13px;
}

.subscribe__input,
#mailpoet_form_1 .mailpoet_text {
  width: 100%;
  padding-top: 1px;
  height: 47px;
  border: 0.88px solid #444446;
  background-color: transparent;
  padding-left: 28px;
  font-family: "PL", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.79);
  cursor: pointer;
}

.subscribe__input::-webkit-input-placeholder,
.mailpoet_text::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.49);
}

.subscribe__input:-moz-placeholder,
.mailpoet_text:-moz-placeholder {
  color: rgba(255, 255, 255, 0.49);
}

.subscribe__input::-moz-placeholder,
.mailpoet_text::-moz-placeholder {
  color: rgba(255, 255, 255, 0.49);
}

.subscribe__input:-ms-input-placeholder,
.mailpoet_text:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.49);
}

.subscribe__input:-webkit-autofill,
.mailpoet_text:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #0b0b0d !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.79) !important;
  color: rgba(255, 255, 255, 0.79) !important;
}

.subscribe__btn,
.mailpoet_submit {
  width: 55px;
  height: 47px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #626264;
  background-image: url(./img/icons/arrow-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-indent: -9999px;
}

.subscribe__btn:hover,
.mailpoet_submit:hover {
  opacity: 1;
}

.mailpoet_text_label {
  display: none !important;
}

.footer {
  background-color: #0b0b0d;
  padding: 80px 0 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer .container {
  text-align: justify;
}

.footer .container::after {
  content: '';
  display: inline-block;
  width: 100%;
}

.footer__left {
  text-align: left;
  display: inline-block;
  vertical-align: top;
}

.footer__right {
  text-align: right;
  display: inline-block;
  vertical-align: top;
  float: right;
}

.logo-footer {
  display: inline-block;
  vertical-align: top;
  margin-right: 128px;
  width: 133px;
  height: 32px;
}

.menu-footer {
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.menu-footer__column {
  margin-right: 90px;
  display: inline-block;
  vertical-align: top;
}

.menu-footer__link {
  font-family: "PL", sans-serif;
  font-size: 16px;
  line-height: 1.25em;
  color: #fff;
  opacity: .43;
  display: block;
  margin-top: 19px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.menu-footer__link:hover {
  opacity: .8;
}

.menu-footer__link:first-child {
  margin-top: 0;
}

.menu-footer__link_active {
  color: #9a9a9a;
}

.social {
  margin-top: 10px;
  width: 400px;
}

.social__item {
  display: inline-block;
  vertical-align: top;
  margin-left: 33px;
}

.social__item:first-child {
  margin-left: 0;
}

.social__link {
  font-family: "RCR", sans-serif;
  font-size: 12px;
  line-height: 1.25em;
  letter-spacing: 2.4px;
  color: #fff;
  text-transform: uppercase;
  opacity: .32;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.social__link:hover {
  color: #fdb5b5;
  opacity: .7;
}

.page-header {
  position: relative;
  z-index: 50;
  height: calc(100vh - 132px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-header {
  height: 500px;
}

.page-header h1 {
  font: 200px/1 "PL", sans-serif;
  color: #e7e7e7;
  position: absolute;
  left: 30px;
  bottom: 5%;
}
.page-header.black h1 {
  color: #121213;
}

.page-about {
  padding: 8em 0 9em;
  background-color: #f2f2f2;
  color: #757575;
  font: 24px/1.5 "PL", sans-serif;
  text-align: center;
  margin-top: 4px;
}
.page-about.small-pad {
  padding: 6em 0 3em;
  margin-top: 0;
}
.page-about .container {
  max-width: 1060px;
}
.page-about h2 {
  font: 1em/1.2 "PB", sans-serif;
  color: #000;
  margin-bottom: 2.1667em;
  position: relative;
  letter-spacing: 0.8px;
}
.page-about h2:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 64px;
  background-color: #d4d4d4;
  left: 50%;
  top:-99px;
}

.about-company {
  padding: 50px 0 190px;
  background-color: #fff;

}

.news__items {
  position: relative;
  margin: 0 -26px;
}

.news__item {
  margin-top: 20px;
  display: inline-block;
  vertical-align: top;
  padding: 0 26px;
  width: 50%;
}
.news__item img {
  transition: all 0.3s;
}
.news__item:hover img {
  transform: scale(1.1, 1.1);
}

.news__item:nth-child(3n+3) {
  margin-right: 0;
}

.news__wrap {
  position: relative;
  overflow: hidden;
}

.news__content {
  position: relative;
  z-index: 2;
  padding: 1.667em 1.667em 0.667em 1.2667em;
  background-color: #fff;
  margin-left: 20px;
  margin-top: -3.8em;
  font: 30px/1.2 "PL", sans-serif;
  color: #595959;
}

.news__header {
  font: 0.8em/1.2 "PB", sans-serif;
  color: #000;
  display: block;
  margin-bottom: 1.3em;
  letter-spacing: 0.8px;
}

.join__form {
  width: 100%;
  position: relative;
  margin-top: 13px;
}

.join__input {
  width: 100%;
  padding: 0 50px 0 0;
  height: 46px;
  border: none;
  border-bottom: 1px solid #8c8c8c;
  background-color: transparent;

  font-family: "PL", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #000;
}

.join__input::-webkit-input-placeholder {
  color: #7c7c7c;
}

.join__input:-moz-placeholder {
  color: #7c7c7c;
}

.join__input::-moz-placeholder {
  color: #7c7c7c;
}

.join__input:-ms-input-placeholder {
  color: #7c7c7c;
}

.join__input:-webkit-autofill {
  color: #7c7c7c !important;
}

.join__btn {
  display: block;
  width: 100%;
  margin-top: 45px;
  height: 32px;
  position: relative;
  color: #7c7c7c;
  font: 14px "RCR", Arial;
  overflow: hidden;

  border-bottom: 1px solid #8c8c8c;

  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.join__btn:hover {
  border-bottom-color: #d80000;
}
.join__btn span {
  display: block;
  padding: 0 30px 0 0;
  position: relative;
  transition: all 0.3s;
}
.join__btn:hover span {
  padding: 0 15px 0 45px;
}
.join__btn span::after,
.join__btn span::before {
  width: 15px;
  height: 15px;
  display: block;
  content: '';
  background-image: url(./img/icons/arrow-black.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  opacity: 0;
}

.join__btn span::after {
  right: 0;
  opacity: 0.5;
}
.join__btn:hover span::after {
  opacity: 0;
  right: -30px;
}
.join__btn span::before {
  left: -30px;
}
.join__btn:hover span::before {
  left: 0px;
  opacity: 0.5;
}

.advisors {
  margin-bottom: 57px;
}
.advisors .container {
  max-width: 1280px;
}
.advisors:before {
  content: '';
  display: block;
  height: 405px;
  background-color: #e7e7e7;
  margin-bottom: -275px;
}

.advisors__list {
  position: relative;
  margin: 46px -11px;
}
.advisors__item {
  display: inline-block;
  width: 16.666%;
  vertical-align: top;
  padding: 0 11px;
  margin-top: 50px;
}
.advisors__name,
.advisors__role {
  font: 14px/1.25 "RCR", sans-serif;
  letter-spacing: 1px;
  color: black;
}
.advisors__role {
  color: #7f7f7f;
  margin-top: 7px;
}
.advisors_image {
  margin-bottom: 21px;
}

.advisors_image img {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.3s;
}
/*
.advisors__item:hover .advisors_image img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
*/

.makingof {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.makingof__info {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  transition: all 0.5s;
}
.makingof.active .makingof__info {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}
.makingof__info .container {
  height: auto;
  text-align: center;
  max-width: 840px;
}
.makingof .section-title {
  color: #fff;
  margin-bottom: 1.875em;
}
.makingof__text {
  color: #fff;
  font: 24px/1.23 "PL", sans-serif;
  margin-bottom: 2.75em;
}
.makingof__play-button {
  display: inline-block;
  position: relative;
}
.makingof__play-button__bg svg {
  width: 62px;
  height: 71px;
}
.makingof__play-button__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 16px;
  margin: -10px 0 0 -4px;
  transition: all 0.3s;
}
.makingof__play-button:hover .makingof__play-button__arrow {
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.makingof__play-button__arrow svg {
  width: 13px;
  height: 16px;
  fill: #000;
}
.makingof__wrap-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}
.makingof.active .makingof__wrap-video {
  display: block;
}
.makingof__wrap-video .video {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto {
  background-color: #2f2f2f;
  padding: 149px 0 88px;
  overflow: hidden;
}
.manifesto .container {
  position: relative;
}
.manifesto .container-inner {
  max-width: 1082px;
  margin: 0 auto;
}
.manifesto__wrap_text {
  float: left;
  width: 50%;
  background-color: #890202;
  padding: 53px 44px 46px;
}
.manifesto__text {
  overflow: auto;;
  position: relative;
  font: 24px/1.2 "PB", sans-serif;
  color: #580202;
  margin-bottom: 33px;
  height: 463px;
}
/*
.manifesto__text_inner {
  padding-bottom: 200%;
}
*/

.manifesto h2 {
  color: #fff;
  font: 54px/1.2 "PR", sans-serif;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.manifesto__text p {
  margin: 1.2em 0 0;
  padding: 0;
  transition: color 0.3s;
  color: #fff;
}
.manifesto__text p.active {
  color: #fff;
}
.manifesto__text p:first-child {
  margin-top: 0;
}

.manifesto__text_inner {
  position: relative;
}
.manifesto__image {
  float: right;
  width: 50%;
}
.manifesto__sign {
  position: absolute;
  right: 30px;
  bottom: -23px;
  width: 796px;
}
.manifesto__wrap_text .btn {
  height: 57px;
  line-height: 55px;
}

.science-slider {
  background-color: #000;
}

.science-slider .slick-dots {
  position: fixed;
  top: 50%;
  right: 54px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.science-slider .slick-dots.hidden {
  opacity: 0;
}
.science-slider .slick-dots li {
  display: block;
  margin-top: 8px;
}
.science-slider .slick-dots a {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: border 0.3s;
  border-radius: 50%;
  position: relative;
  display: block;
  cursor: pointer;
}
.science-slider .slick-dots li:first-child {
  margin-top: 0;
}
.science-slider .slick-dots li button {
  display: none;
}
.science-slider .slick-dots a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  transition: all 0.3s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.science-slider .slick-dots li.slick-active a {
  border-color: #a10505;
}
.science-slider .slick-dots li.slick-active a:after {
  width: 9px;
  height: 9px;
  opacity: 0.27;
}

.science-slide {
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(100vh - 79px);
  color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  overflow: hidden;
}
.science-slide-zoom-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 2.5s;
}
.slick-current .science-slide-zoom-image,
.science-slide:hover .science-slide-zoom-image {
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
.science-slide .slide-inner {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.science-slide h2 {
  font: 24px/1.2 "PB", sans-serif;
  margin-bottom: 1.625em;
  letter-spacing: 0.8px;
}
.science-slide .text {
  font: 24px/1.5 "PL", sans-serif;
  color: rgba(201, 201, 201, 0.651);
  max-width: 50%;
}

.science-slide .added_blocks {
  margin-top: 2.875em;
  font: 16px/1.4 "RL", sans-serif;
}
.science-slide .added_block {
  float: left;
  margin-top: 2.125em;
  padding-left: 28px;
  padding-right: 80px;
  width: 44%;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.science-slide .added_block.with-title {
  margin-top: 2.875em;
}
.science-slide .added_block:after {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 1px;
  height: 59px;
  background-color: #797979;
}

.added_block_usecase_slider {
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.win .added_block_usecase_slider {
  color: #ccc;
  opacity: 1;
  transition: color 0.3s;
}
.added_block_usecase_slider:hover,
.added_block_usecase_slider.active {
  opacity: 1;
}
.win .added_block_usecase_slider:hover,
.win .added_block_usecase_slider.active {
  color: #fff;
}

.usecase-slider .science-slide .added_block {
  width: 48%;
  padding-right: 40px;
}

.science-slide .usecase-big-title {
  font: 120px/1 "PL", sans-serif;
  color: #fff;
  margin-bottom: 0.42em;
}
.science-slide .usecase-big-title.big-marging {
  margin-bottom: 0.85em;
}
.science-slide .added_block_title {
  font: 18px/1.2 "PB", sans-serif;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
  position: absolute;
  left: 28px;
  top: -43px;
}

.inner-usecase-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.inner-usecase-slide {
  background-color: #181818;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: calc(100vh - 79px);
  height: 540px;
  position: relative;
}
.usecase-screen {
  position: absolute;
  top: 14%;
  right: 10%;
  height: 60%;
  width: auto;
}
.usecase-video {
  position: absolute;
  bottom: 0;
  right: 15%;
  height: 69.29%;
  width: auto;
}
.usecase-screen img,
.usecase-video img {
  height: 100%;
  width: auto;
}

.usecase-screen .bg-screen-mobile {
  display: none;
}

.science-slide .added_blocks.with-icons {
  margin-top: 7.4em;
}
.added_block .with-icon-inner {
  padding-right: 100px;
  max-width: 453px;
  position: relative;
}
.added_block .with-icon-inner .wrap-icon {
  position: absolute;
  top:0;
  right: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  padding-top: 13px;
  text-align: center;
}
.added_block .with-icon-inner .wrap-icon svg {
  fill: #fff;
  height: 46px;
  width: 22px;
}
.added_block .with-icon-inner .wrap-icon svg.icon-man2 {
  width: 42px;
}

.btn-usecase {
  display: inline-block;
  margin-top: 50px;
  margin-left: 28px;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 372px;
  height: 47px;
  line-height: 45px;
  box-sizing: border-box;
  font-family: "RCR", sans-serif;
  font-size: 14px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  letter-spacing: 1.3px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.btn-usecase span {
  display: block;
  padding: 0 30px;
  position: relative;
  transition: all 0.3s;
}
.btn-usecase:hover span {
  padding: 0 15px 0 45px;
}
.btn-usecase span::after,
.btn-usecase span::before {
  width: 15px;
  height: 15px;
  display: block;
  content: '';
  background-image: url(./img/icons/arrow-white.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  opacity: 0;
}
.btn-usecase span::after {
  right: 23px;
  opacity: 1;
}
.btn-usecase:hover span::after {
  opacity: 0;
  right: -30px;
}
.btn-usecase span::before {
  left: -30px;
}
.btn-usecase:hover span::before {
  left: 23px;
  opacity: 1;
}

.o2-schema {
  position: relative;
  margin-top: 130px;
}
.o2-schema-item {
  float: left;
  width: 178px;
  height: 41px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e10000;
  border-radius: 21px;
  text-align: center;
  padding-top: 6px;
  font: 14px/1.5 "RL", sans-serif;
}
.o2-schema-item:first-child {
  margin-right: 52px;
}
.o2-schema-item > span {
  display: inline-block;
  margin-top: -3px;
  margin-right: 10px;
}
.o2-schema-item > span span {
  font-size: 8px;
  margin-bottom: -4px;
  display: inline-block;
  vertical-align: bottom;
}
.o2-schema .separ {
  position: absolute;
  left: 178px;
  top: 20px;
  width: 52px;
  height: 2px;
  background-color: #e10000;
}
.o2-schema .separ svg {
  position: absolute;
  top: -9px;
}
.o2-schema .separ .right-arrow {
  right: 3px;

  -webkit-animation: arrowHorizontBounce 2s infinite;
  -moz-animation: arrowHorizontBounce 2s infinite;
  -ms-animation: arrowHorizontBounce 2s infinite;
  animation: arrowHorizontBounce 2s infinite;

}
.o2-schema .separ .left-arrow {
  left: 3px;
  -webkit-animation: arrowHorizontBounce2 2s infinite;
  -moz-animation: arrowHorizontBounce2 2s infinite;
  -ms-animation: arrowHorizontBounce2 2s infinite;
  animation: arrowHorizontBounce2 2s infinite;
}
.science-slide .o2-schema + .added_blocks {
  margin-top: 2.5em;
}

.mc4wp-response {
  color: #fff;
  margin-top: 10px;
}

@-moz-keyframes arrowHorizontBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@-webkit-keyframes arrowHorizontBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@-o-keyframes arrowHorizontBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@-ms-keyframes arrowHorizontBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@keyframes arrowHorizontBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@-moz-keyframes arrowHorizontBounce2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}
@-webkit-keyframes arrowHorizontBounce2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}
@-o-keyframes arrowHorizontBounce2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}
@-ms-keyframes arrowHorizontBounce2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}
@keyframes arrowHorizontBounce2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

.science-figura {
  position: absolute;
  width: 179px;
  height: 268px;
  top: 21.7%;
  right: 16.67%;
}
.science-figura-label {
  font: 12px/1.5 "RL", sans-serif;
}
.science-figura-label .title {
  font: 14px/1.5 "PB", sans-serif;
}
.figura-circle {
  position: absolute;
  width: 179px;
  height: 179px;
  left: 0;
  top: 89px;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.figura-circle .science-figura-label {
  width: 100%;
}
.figura-left-line,
.figura-right-line {
  position: absolute;
  width: 2px;
  height: 142px;
  top: 26px;
  background-color: #fff;
}
.figura-left-line {
  left: 0;
}
.figura-right-line {
  right: 0;
}

.figura-left-arrow,
.figura-right-arrow {
  width: 22px;
  height: 22px;
  position: absolute;
  top:0;
}
.figura-left-arrow {
  left: -10px;
  -webkit-animation: arrowVerticalBounce 2s infinite;
  -moz-animation: arrowVerticalBounce 2s infinite;
  -ms-animation: arrowVerticalBounce 2s infinite;
  animation: arrowVerticalBounce 2s infinite;
}
.figura-left-arrow svg{
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.figura-right-arrow {
  right: -10px;
  -webkit-animation: arrowVerticalBounce2 2s infinite;
  -moz-animation: arrowVerticalBounce2 2s infinite;
  -ms-animation: arrowVerticalBounce2 2s infinite;
  animation: arrowVerticalBounce2 2s infinite;
}
.figura-right-arrow svg{
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@-moz-keyframes arrowVerticalBounce {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(4px);
  }
}
@-webkit-keyframes arrowVerticalBounce {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(4px);
  }
}
@-o-keyframes arrowVerticalBounce {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(4px);
  }
}
@-ms-keyframes arrowVerticalBounce {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes arrowVerticalBounce {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(4px);
  }
}

@-moz-keyframes arrowVerticalBounce2 {
  0%, 100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes arrowVerticalBounce2 {
  0%, 100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-o-keyframes arrowVerticalBounce2 {
  0%, 100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-ms-keyframes arrowVerticalBounce2 {
  0%, 100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes arrowVerticalBounce2 {
  0%, 100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.science-figura-label.top-label {
  position: absolute;
  bottom: 100%;
  left: -5px;
  margin-bottom: 22px;
}
.science-figura-label.right-label {
  position: absolute;
  left: auto;
  top: 27px;
  width: 80px;
  right: 18px;
  text-align: right;
}

.humon-medical {
  padding: 99px 0 72px;
  background-color: #000;
  text-align: center;
  color: #fff;
  position: relative;
}
.humon-medical h2 {
  font: 24px/1 "PB", sans-serif;
  margin: 1.125em 0 1.25em;
}
.humon-medical ul {
  padding: 0;
  margin: 0 0 50px;
  list-style: none;
  font: 16px/1.5 "RL", sans-serif;
  color: rgba(255, 255, 255, 0.549);
}
.humon-medical ul li {
  margin-top: 7px;
}
.humon-medical ul li:first-child {
  margin-top: 0;
}
.humon-medical ul li:before,
.humon-medical ul li:after {
  content: '';
  width: 22px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.549);
  display: inline-block;
  vertical-align: middle;
}
.humon-medical ul li:before {
  margin-right: 17px;
}
.humon-medical ul li:after {
  margin-left: 17px;
}
.humon-medical .btn-grey {
  display: inline-block;
  width: 156px;
  height: 45px;
  background-color: #242424;
  border-radius: 5px;
  color: #fff;
  font: 14px/45px "RCR", sans-serif;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.humon-medical .btn-grey:hover {
  background-color: #d80000;
}

.whitepapers {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}
.whitepapers .list-files {
  position: relative;
  margin: 40px -27px 0;
}
.whitepapers .list-files-item {
  display: inline-block;
  width: 33.33%;
  padding: 40px 27px;
  vertical-align: top;
}
.whitepapers .list-files-item-inner {
  position: relative;
  padding-left: 130px;
  min-height: 98px;
  font: 24px/1.5 "RL", sans-serif;
}
.whitepapers .wrap-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 98px;
  height: 98px;
  background-color: #ebebeb;
  border-radius: 50%;
  text-align: center;
  padding-top: 27px;
  transition: background 0.3s;
}
.whitepapers .wrap-icon:hover {
  background-color: #d80000;
}
.whitepapers .wrap-icon svg {
  fill: #410203;
  transition: all 0.3s;
}
.whitepapers .wrap-icon:hover svg {
  fill: #fff;
}
.whitepapers .list-files-item-inner .title {
  font: 16px/1 "PB", sans-serif;
  margin-bottom: 6px;
}

.footer-down {
  margin-top: 30px;
  color: #49494a;
  font: 14px/1.25 "PL", sans-serif;
}

.footer-down .container {
  text-align: left;
}
.developer-link {
  display: inline-block;
  color: #49494a;
  transition: color 0.3s;
  margin-left: 35px;
}
.developer-link:hover {
  color: #fff;
}

.jobs {
  padding: 90px 0;
  overflow: hidden;
}
.jobs h2 {
  font: 24px/1.2 "PB", sans-serif;
  color: #000;
  position: relative;
  letter-spacing: 0.8px;
  float: left;
}
.jobs-tabs {
  float: right;
  text-align: right;
  white-space: nowrap;
  padding-top: 6px;
}
.jobs-tabs a {
  font: 16px "RCR", sans-serif;
  color: #000;
  display: inline-block;
  margin-left: 45px;
  transition: color 0.3s;
  letter-spacing: 1.5px;
}
.jobs-tabs a:hover,
.jobs-tabs a.active {
  color: #b7b7b7;
}

.job-type {
  font: 14px "RCR", sans-serif;
  color: rgba(124, 124, 124, 0.588);
  letter-spacing: 1px;
  margin-top: 10px;
}
.job-btn {
  display: block;
  width: 100%;
  height: 32px;
  position: relative;
  color: #000;
  font: 16px "PR", Arial;
  overflow: hidden;

  border-bottom: 1px solid #8c8c8c;

  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  letter-spacing: 1px;
}
.job-btn:hover {
  border-bottom-color: #d80000;
}
.job-btn span {
  display: block;
  padding: 0 30px 0 0;
  position: relative;
  transition: all 0.3s;
}
.job-btn:hover span {
  padding: 0 15px 0 45px;
}
.job-btn span::after,
.job-btn span::before {
  width: 15px;
  height: 15px;
  display: block;
  content: '';
  background-image: url(./img/icons/arrow-black.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  opacity: 0;
}

.job-btn span::after {
  right: 0;
  opacity: 1;
}
.job-btn:hover span::after {
  opacity: 0;
  right: -30px;
}
.job-btn span::before {
  left: -30px;
}
.job-btn:hover span::before {
  left: 0px;
  opacity: 1;
}

.job-grid {
  margin-top: 34px;
  margin-left: -90px;
  margin-right: -90px;
  position: relative;
}
.job-item {
  width: 33.33%;
  float: left;
  margin: 38px 0;
}
.job-item-inner {
  width: 280px;
  margin: 0 auto;
}

.blog-header-slider .slide {
  height: 500px;
  position: relative;
  background-color: #000;
}
.blog-header-slider .slide-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.blog-header-slider .slide-content {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
}

.blog-header-slider .slide-content .title {
  font: 36px/1.2 "PR", sans-serif;
  color: #fff;
  max-width: 500px;
  letter-spacing: 1.5px;
  display: block;
}
.blog-header-slider .slide-content h1.title {
  position: relative;
  left: 0;
  bottom: auto;
}
.blog-header-slider .slide-content .title span {
  background-repeat: no-repeat;
  background-position: left bottom 5px;
  background-size: 0% 2px;
  background-image: linear-gradient(to right, #d80000, #d80000);
  transition: all 0.3s;
}
.blog-header-slider .slide-content .title:hover span {
  background-size: 100% 2px;
}
.blog-header-slider .slide-content .date {
    color: rgba(255, 255, 255, 0.471);
  font: 18px "RCR", Arial;
  margin-bottom: 1.67em;
  letter-spacing: 2px;
}
.blog-header-slider .slick-arrow {
  position: absolute;
  font: 100 48px/1 "PL", sans-serif;
  height: 48px;
    color: rgba(255, 255, 255, 0.471);
    top:50%;
    margin-top: -24px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s;
}
.blog-header-slider .slick-arrow svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.blog-header-slider .slick-arrow:hover svg {
  opacity: 1;
}
.blog-header-slider .slick-arrow:hover {
  color: #fff;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.blog-header-slider .slick-arrow.prev {
  left: 50px;
}
.blog-header-slider .slick-arrow.prev svg {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.blog-header-slider .slick-arrow.next {
  right: 50px;
}
.blog-header-slider .slick-dots {
  position: absolute;
  right: 50px;
  bottom: 52px;
}
.blog-header-slider .slick-dots li {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: border 0.3s;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
}
.blog-header-slider .slick-dots li:first-child {
  margin-left: 0;
}
.blog-header-slider .slick-dots li button {
  display: none;
}
.blog-header-slider .slick-dots li:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  transition: all 0.3s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.blog-header-slider .slick-dots li.slick-active {
  border-color: #a10505;
}
.blog-header-slider .slick-dots li.slick-active:after {
  width: 9px;
  height: 9px;
  opacity: 0.27;
}

.blog-posts {
  padding: 100px 0;
  overflow: hidden;
}
.blog-posts-header {
  position: relative;
}
.blog-posts-header h2 {
  font: 24px/1.2 "PB", sans-serif;
  color: #000;
  position: relative;
  letter-spacing: 0.8px;
  float: left;
}
.blog-posts-tabs {
  float: right;
  text-align: right;
  white-space: nowrap;
  padding-top: 6px;
  padding-right: 65px;
}
.blog-posts-tabs a {
  font: 16px "RCR", sans-serif;
  color: #000;
  display: inline-block;
  margin-left: 45px;
  transition: color 0.3s;
  letter-spacing: 1.5px;
  vertical-align: top;
}
.blog-posts-tabs a:hover,
.blog-posts-tabs a.active {
  color: #b7b7b7;
}

.blog-posts-header .icon-search {
  width: 20px;
  height: 20px;
  fill: #000;
}
.blog-posts-header .but-search {
  position: absolute;
  top: 5px;
  right: 0;
}

.blog-posts-list {
  margin-top: 50px;
}
.blog-posts-list-item {
  float: left;
  width: 23.5%;
  margin: 0 2% 2% 0;
  display: inline-block;
  min-height: 737px;
  position: relative;
}
.blog-posts-list-item:nth-child(3n) {
  margin-right: 0;
}
.blog-posts-list-item img {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.blog-posts-list-item:hover img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.blog-posts-list-item .wrap-post-image-inner {
  display: none;
}
.post-date {
    color: rgba(0, 0, 0, 0.471);
  font: 14px "RCR", Arial;
  letter-spacing: 1.5px;
}
.post-title {
  font: 24px/1.2 "PR", sans-serif;
  color: #000;
  letter-spacing: 1.5px;
}
.blog-posts-list-item .post-title {
  margin-top: 1em;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.blog-posts-list-item .post-title span {
  background-repeat: no-repeat;
  background-position: left bottom 1px;
  background-size: 0% 2px;
  background-image: linear-gradient(to right, #d80000, #d80000);
  transition: all 0.3s;
}

.blog-posts-list-item:hover .post-title span {
  background-size: 100% 2px;
}
.post-snippet {
  color: #757575;
  font: 16px/1.5 "RL", Arial;
  letter-spacing: 0.6px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-height: 7.5em;
  overflow: hidden;
  margin-top: 1.75em;
}
.blog-posts-list-item .wrap-post-image {
  margin-bottom: 47px;
  overflow: hidden;
  background-color: #000;
}

.blog-posts-list-item .wrap-post-image img,
.blog-posts-list-item-big .wrap-post-image-inner {
  opacity: 0.8;
}

.blog-posts-item-link {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
}

.blog-shop-video {
  background-color: #000;
  height: 450px;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 30px 0;
}
.blog-shop-video .wrap-blog-shop-video {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 150%;
  overflow: hidden;
}
.blog-shop-video .blog-shop-video-content {
  position: absolute;
  left: 0;
  top:50%;
  width: 100%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.blog-shop-video .blog-shop-video-content .title {
  font-family: "PL", sans-serif;
  font-size: 40px;
  line-height: 1.25em;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.75em;
}

.blog-post-item {
  padding: 50px 0;
  color: #757575;
  font: 16px/1.5 "RL", Arial;
  letter-spacing: 0.6px;
}
.blog-post-item strong {
  font-family: "RB", Arial;
  color: #000;
}
.blog-post-item p {
  margin-top: 1em;
}
.blog-post-item p:first-child {
  margin-top: 0;
}
.blog-post-item-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-item h3 {
  font: 26px/1.2 "PR", sans-serif;
  margin: 2em 0 1em;
}

.blog-post-item figure {
  margin: 30px 0;
  text-align: center;
}
.blog-post-item figure img {
  max-width: 100%;
}
.blog-post-item figcaption {
   text-align: center;
  font: 14px/1.2 "PR", sans-serif;
  color: #757575;
  margin-top: 0.7em;
}

.blog-posts-header .wrap-form-search {
  position: absolute;
  width: 0;
  right: 40px;
  top: 0;
  background-color: #fff;
  height: 40px;
  overflow: hidden;
  transition: width 0.5s;
}
.blog-posts-header .wrap-form-search form {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
.blog-posts-header .wrap-form-search.active {
  width: calc(100% - 40px);
}
.blog-posts-header .wrap-form-search input {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
  border-bottom: 1px solid #8c8c8c;
  color: #000;
  font: 24px/1.2 "PR", sans-serif;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.mobile-socials {
  display: none;
}

.press {
  padding: 95px 0px;
  background-color: #fff;
}

.press__items {
  position: relative;
  margin: 65px 0 0;
  text-align: justify
}
.press__items:after {
  content: '';
  width: 100%;
  display: inline-block;
  height: 0;
  font-size: 0;
}
.press__item {
  display:-moz-inline-stack;
  display: inline-block;
  padding: 10px;
  vertical-align: top;
}
.press__item a {
  display: block;
}
.press_author {
  font-family: "RCR", sans-serif;
  font-size: 20px;
  line-height: 1.25em;
  letter-spacing: 1px;
  color: black;
  margin-bottom: 0.5em;
}
.press_author a {
  color: black;
  transition: color 0.3s;
}
.press_author a:hover {
  color: #d80000;
}
.press__link {
  font-family: "PL", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0.5px;
  color: #818181;
  transition: color 0.3s;
}
.press__link:hover {
  color: #d80000;
}

.press__items img {
  width: auto;
  height: 36px;
}

.press__items a {
  transition: opacity 0.3s;
}
.press__items a:hover {
  opacity: 0.6 !important;
}

.mobile-shop {
  display: none;
}

.s-popup {
  max-width: 450px;
  background-color: white;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  position: relative;
}
.s-popup-job {
  max-width: 600px;
}
.job-text {
  margin: 30px 0;
  color: #757575;
  font: 16px/1.5 "RL", Arial;
  letter-spacing: 0.6px;
}
.job-text p {
  margin-top: 1em;
}
.job-text p:first-child {
  margin-top: 0;
}
.job-text strong {
  font-family: "RB", Arial;
  color: #000;
}
.s-popup-inner {
  padding: 25px;
}

.s-popup-title {
  margin-bottom: 25px;
}
.s-popup .form-line {
  margin-top: 25px;
}
.s-popup .form-line input[type="text"],
.s-popup .form-line input[type="email"],
.s-popup .form-line input[type="phone"],
.s-popup .form-line input[type="tel"],
.s-popup .form-line input[type="url"],
.s-popup textarea {
  width: 100%;
  max-width: 400px;
  position: relative;
  border: none;
  border-bottom: 1px solid #8c8c8c;
  color: #000;
  font: 16px/1.5 "RCR", sans-serif;
}

.s-popup .form-line input[type="text"].wpcf7-not-valid,
.s-popup .form-line input[type="email"].wpcf7-not-valid,
.s-popup .form-line input[type="phone"].wpcf7-not-valid,
.s-popup .form-line input[type="tel"].wpcf7-not-valid,
.s-popup .form-line input[type="url"].wpcf7-not-valid,
.s-popup textarea.s-popup textarea.wpcf7-not-valid {
  border-bottom-color: #f00;
}
.s-popup textarea {
  height: 70px;
  resize: none;
}

span.wpcf7-not-valid-tip {
  font-size: 0.8em !important;
  margin-top: 5px;
}

.s-popup .btn-submit-form {
  margin-top: 20px;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  display: none !important;
}

.nav-blog-post {
  margin-top: 50px;
  border-top: 1px solid #eaedf0;
  padding: 50px 0;
  position: relative;
}
.nav-blog-post:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #eaedf0;
  left: 50%;
  top:0;
}
.nav-blog-post-item {
  width: 50%;
  cursor: pointer;
}
.nav-blog-post-item-left {
  float: left;
  padding-right: 70px;
  text-align: right;
}
.nav-blog-post-item-right {
  float: right;
  padding-left: 70px;
  text-align: left;
}
.nav-blog-post-item .wrap-image {
  width: 40%;
  overflow: hidden;
}
.nav-blog-post-item .wrap-image img {
  display: block;
  transition: all 0.3s;
}
.nav-blog-post-item:hover .wrap-image img {
  -ms-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.nav-blog-post-item-left .wrap-image {
  float: right;
}
.nav-blog-post-item-right .wrap-image {
  float: left;
}

.nav-blog-post-item-left .wrap-content {
  margin-right: 40%;
  padding-right: 40px;
}
.nav-blog-post-item-right .wrap-content {
  margin-left: 40%;
  padding-left: 40px;
}

.nav-blog-post-item .post_label,
.blog-post-header .post_label {
  font-family: "ECR", sans-serif;
  font-size: 18px;
  line-height: 1.25em;
  letter-spacing: 0.4px;
  color: rgba(0, 0, 0, 0.471);
  display: block;
  margin-top: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.nav-blog-post-item:hover .post_label,
.blog-post-header .post_label:hover {
  color: #000;
}

.nav-blog-post-item .post_label .icon-arrow,
.blog-post-header .post_label .icon-arrow {
  display: inline-block;
  vertical-align: top;
  margin-top: 3px;
  margin-left: 11px;
  width: 15px;
  height: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  fill: rgba(0, 0, 0, 0.471);
}
.nav-blog-post-item-left .post_label .icon-arrow,
.blog-post-header .post_label .icon-arrow {
  margin-left: 0;
  margin-right: 11px;
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-blog-post-item:hover .post_label .icon-arrow {
  margin-left: 20px;
  fill: #000;
}
.nav-blog-post-item-left:hover .post_label .icon-arrow {
  margin-left: 0;
  margin-right: 20px;
}

.nav-blog-post-item .post_title {
  font: 20px/1.2 "PR", sans-serif;
  color: #000;
  letter-spacing: 1.5px;
  margin-top: 0.5em;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.nav-blog-post-item .post_title span {
  background-repeat: no-repeat;
  background-position: left bottom 1px;
  background-size: 0% 2px;
  background-image: linear-gradient(to right, #d80000, #d80000);
  transition: all 0.3s;
}

.nav-blog-post-item:hover .post_title span {
  background-size: 100% 2px;
}

.blog-post-header {
  border-top: 1px solid #eaedf0;
  padding: 40px 0 0;
}
.blog-post-header .wrap-image {
  float: left;
  width: 300px;
}
.blog-post-header .wrap-info {
  margin-left: 300px;
  padding-left: 40px;
}

.blog-post-header .post_label {
  margin-top: 0;
  margin-bottom: 40px;
}

.blog-post-header .post-date {
  font-size: 18px;
  margin-bottom: 2em;
}
.blog-post-header .title {
  font-size: 44px;
  line-height: 1.3;
}

.blog-post-header .post_label {
  font-size: 15px;
}
.blog-post-header .post_label .icon-arrow {
  margin-top: 2px;
  width: 13px;
  height: 13px;
}
.blog-post-header .post_label:hover .icon-arrow {
  -ms-transform: rotate(180deg) translateX(6px);
  -moz-transform: rotate(180deg) translateX(6px);
  -webkit-transform: rotate(180deg) translateX(6px);
  transform: rotate(180deg) translateX(6px);
  fill: #000;
}

#lang_choice_1 {
  border: 0px;
  margin: 0px;
}

@media only screen and (min-width: 1200px) {
  .blog-posts-list-item-big img {
    display: none;
  }
  .blog-posts-list-item-big .wrap-post-image,
  .blog-posts-list-item-big .wrap-post-image-inner {
    margin-bottom: 0;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .blog-posts-list-item-big .wrap-post-image-inner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s;
  }
  .blog-posts-list-item:hover .wrap-post-image-inner {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  .blog-posts-list-item-big .wrap-post-info {
    position: absolute;
    left: 36px;
    bottom: 36px;
    width: 300px;
    transition: all 0.3s;
  }
  .blog-posts-list-item-big .post-snippet,
  .blog-posts-list-item-big .post-title,
  .blog-posts-list-item-big .post-date {
    color: #fff;
  }
  .blog-posts-list-item-big {
    width: 49%;
  }
}

/*==========  Desktop First Method  ==========*/
@media only screen and (max-height: 860px) {
  .manifesto {
    padding-top: 50px;
  }
  .manifesto__image img {
    max-height: 650px;
    width: auto;
  }
  .manifesto__text {
    height: 413px;
  }
}
@media only screen and (max-height: 750px) {
  .product {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .product__item {
    margin-top: 10px;
  }

  .manifesto__wrap_text {
    padding: 35px 35px 35px;
  }
  .manifesto__text {
    height: 309px;
  }
  .manifesto__image img {
    max-height: 580px;
    width: auto;
  }
  .product__block {
    margin-top: -50px;
  }
  .product__items {
    margin-top: -15px;
  }
  .why__content {
    padding: 26px 24px;
    padding-bottom: 25px;
  }
  .o2-schema {
    margin-top: 50px;
  }

  .science-slide .usecase-big-title {
    font-size: 100px;
  }
  .science-slide .usecase-big-title.big-marging {
    margin-bottom: 0.5em;
  }

}

@media only screen and (max-width: 1439px) {
  .advantages__big {
    padding-left: 63px;
  }
}

@media only screen and (max-width: 1379px) {
  .container {
    width: 1170px;
  }

  .about__texts {
    margin-right: 40px;
  }

  .product__wrap {
    margin-left: 160px;
  }

  .reviews__item {
    width: 359px;
    margin-right: 12px;
  }

  .reviews__desc {
    font-size: 14px;
  }

  .product__header {
    font-size: 22px;
  }
  .product__item {
    margin-top: 30px;
  }
  .advantages__item .advantages__content {
    /*width: auto;
    right: 30px;*/
    left: 30px;
    top: 25px;
    bottom: auto;
  }
  .advantages__desc {
    font-size: 15px;
    line-height: 1.4em;
    margin-top: 13px;
  }
  .advantages__item .advantages__more {
    margin-top: 15px;
  }

  .page-header h1 {
    font-size: 160px;
  }
  .news__content {
    font-size: 24px;
  }

  .advisors .container {
    max-width: 1080px;
  }
  .advisors:before {
    height: 305px;
    margin-bottom: -220px;
  }

  .advisors__item {
    margin-top: 35px;
  }

  .job-grid {
    margin-left: -65px;
    margin-right: -65px;
  }
  .menu__item {
    margin: 0 10px;
  }

}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1199px) {
  /**/
  .top .container {
    width: 100%;
    padding: 0 10px;
  }
  .container {
    width: 970px;
  }

  .menu__item {
    margin: 0 6px;
  }

  .about__texts {
    margin-top: 0px;
    margin-left: 0;
    max-width: 414px;
  }

  .about__desc {
    font-size: 27px;
  }

  .about__wrap {
    width: 393.3px;
    height: 528.3px;
  }

  .about__wrap-small {
    width: 296.1px;
    height: 400.5px;
    top: -109.8px;
    right: -185.4px;
  }

  .advantages__big {
    padding-left: 23px;
  }

  .advantages__big {
    height: 300px;
  }

  .advantages__item {
    height: 240px;
    padding-left: 40px;
  }

  .advantages__img {
    min-width: 0;
    width: 100%;
  }

  .product__wrap {
    margin-left: 20px;
    width: 600.3px;
    height: 271.8px;
  }

  .product__item_bottom {
    right: 370px;
  }

  .reviews::before {
    margin-left: -470px;
  }

  .reviews::after {
    margin-left: 470px;
  }

  .reviews__item {
    width: 292px;
    margin-right: 12px;
    padding-left: 159px;
  }

  .reviews__desc {
    padding: 10px 12px;
    font-size: 12px;
    min-height: 138px;
  }
  .reviews__wrap {
    width: 150px;
    height: 197px;
  }

  .reviews__info {
    font-size: 11.2px;
  }

  .subscribe__title {
    font-size: 24px;
  }

  .subscribe__form,
  .mailpoet_form {
    margin-top: 7px;
  }

  .logo-footer {
    margin-right: 80px;
  }

  .menu-footer__column {
    margin-right: 60px;
  }

  .product-animation {
    margin-top: -50px;
  }
  .product-animation-2 {
    margin-top: -50px;
  }
  .product {
    padding-top: 65px;
    padding-bottom: 70px;
  }
  .product__header {
    font-size: 18px;
  }
  .page-header h1 {
    font-size: 120px;
  }
  .page-about {
    font-size: 22px;
  }

  .news__content {
    font-size: 20px;
  }

  .manifesto__sign {
    width: 600px;
  }

  .science-slide .text,
  .science-slide h2,
  .whitepapers .list-files-item-inner {
    font-size: 20px;
  }
  .o2-schema {
    margin-top: 40px;
  }
  .whitepapers .list-files-item-inner .title {
    font-size: 14px;
  }
  .whitepapers .list-files-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .whitepapers .list-files {
    margin-left: -10px;
    margin-right: -10px;
  }
  .whitepapers .list-files-item-inner {
    padding-left: 115px;
  }
  .science-slide .usecase-big-title {
    font-size: 80px;
  }
  .job-grid {
    margin-left: -16px;
    margin-right: -16px;
  }
  .blog-header-slider .slick-arrow.next {
    right: 20px;
  }
  .blog-header-slider .slick-arrow.prev {
    left: 20px;
  }
  .blog-header-slider .slide-content .title {
    font-size: 28px;
  }
  .blog-header-slider .slide-content .date {
    font-size: 16px;
  }
  .blog-header-slider .slick-dots {
    right: 25px;
    bottom: 20px;
  }
  .post-title {
    font-size: 20px;
  }
  .post-snippet {
    font-size: 14px;
  }
  .post-date {
    font-size: 13px;
  }
  .blog-posts-list-item {
    min-height: 550px;
  }
  .blog-posts-list-item,
  .blog-posts-list-item:nth-child(3n) {
    width: 48%;
    margin: 0 4% 4% 0;
  }
  .blog-posts-list-item:nth-child(2n) {
    margin-right: 0;
  }

  .blog-shop-video .wrap-blog-shop-video {
    height: 120%;
  }

  .press_author {
    font-size: 18px;
  }

  .press__items img {
    height: 30px;
  }

  .nav-blog-post-item .post_title {
    font-size: 18px;
  }

  .jobs-tabs a {
    margin-left: 25px;
  }
}

.overlay-loader {
  background-color: #fff;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 10000;
  transition: height 0.8s ease-in-out;
}

.overlay-loader-inner {
  background-color: #000;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 10001;
  transition: height 0.7s 0.3s ease-in-out;
  overflow: hidden;
}

.overlay-loader-inner svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s 0.9s;
  width: 168px;
  height: 41px;
  fill: #fff;
}

.overlay-loader-inner.active svg {
  opacity: 1;
}
.overlay-loader-inner.active.loaded svg {
  opacity: 0;
  transition: opacity 0.8s;
}
.overlay-loader.active,
.overlay-loader-inner.active {
  height: 100%;
}
.overlay-loader.loaded,
.overlay-loader-inner.loaded {
  bottom: 0;
  top: auto;
  height: 0;
}
.overlay-loader-inner.loaded {
  transition: height 0.8s ease-in-out;
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 2000px) {
  .page-header h1 {
    font-size: 250px;
  }
  .container {
    width: 1680px;
  }
  .container2 {
    width: 1580px;
  }
  .menu__link {
    font-size: 20px;
  }
  .science-slide .text,
  .science-slide h2 {
    font-size: 28px;
  }
  .science-slide .added_blocks {
    font-size: 20px;
  }
  .o2-schema-item {
    width: 214px;
    height: 50px;
    border-radius: 25px;
    padding-top: 7px;
    font: 17px/1.5 "RL", sans-serif;
  }
  .o2-schema-item:first-child {
    margin-right: 62px;
  }
  .o2-schema .separ {
    left: 214px;
    top: 24px;
    width: 62px;
  }
  .science-figura {
    width: 215px;
    height: 322px;
  }
  .science-figura-label.top-label {
    left: -6px;
    margin-bottom: 26px;
  }
  .science-figura-label.right-label {
    top: 33px;
    width: 96px;
    right: 22px;
  }
  .science-figura-label {
    font-size: 14px;
  }
  .science-figura-label .title {
    font-size: 17px;
  }
  .figura-circle {
    width: 215px;
    height: 215px;
    top: 107px;
    padding: 24px;
  }
  .figura-left-line, .figura-right-line {
    height: 170px;
    top: 31px;
  }
  .figura-left-arrow, .figura-right-arrow {
    width: 26px;
    height: 26px;
  }
  .figura-left-arrow {
    left: -12px;
  }
  .figura-right-arrow {
    right: -12px;
  }
  .humon-medical h2 {
    font-size: 29px;
  }
  .humon-medical ul {
    margin: 0 0 60px;
    font-size: 19px;
  }
  .humon-medical ul li {
    margin-top: 9px;
  }
  .humon-medical .btn-grey {
    width: 187px;
    height: 54px;
    font-size: 17px;
    line-height: 54px;
  }

  .reviews__title, .section-title {
    font-size: 29px;
  }
  .whitepapers .list-files-item-inner .title {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .whitepapers .list-files-item-inner {
    padding-left: 156px;
    min-height: 188px;
    font-size: 29px;
  }
  .whitepapers .wrap-icon {
    width: 118px;
    height: 118px;
    padding-top: 32px;
  }

  .bottom__title {
    font-size: 60px;
  }
  .bottom__desc {
    font-size: 36px;
    margin-top: 31px;
  }
  .bottom__buttons {
    margin-top: 40px;
  }
  .bottom__btn {
    margin-right: 10px;
  }

  .btn {
    font-size: 16px;
  }

  .about__title {
    font-size: 29px;
  }
  .about__desc {
    margin-top: 47px;
    font-size: 34px;
  }
  .about__texts {
    margin-top: 36px;
    margin-left: 72px;
    margin-right: 101px;
    max-width: 552px;
  }

  .advantages__big {
    height: 671px;
    max-width: 1728px;
  }
  .advantages__items {
    max-width: 1728px;
  }
  .advantages__item {
    height: 402px;
  }

  .advantages__title {
    font-size: 29px;
  }
  .advantages__desc {
    font-size: 19px;
    margin-top: 25px;
  }
  .advantages__more {
    font-size: 17px;
    margin-top: 37px;
  }
  .advantages__more::after {
    margin-top: 2px;
    margin-left: 13px;
    width: 18px;
    height: 14px;
  }

  .product__title,
  .product__header {
    font-size: 29px;
  }
  .why__content {
    width: 493px;
    padding: 55px 53px;
    padding-bottom: 42px;
    margin-left: 53px;
  }
  .why__count {
    font-size: 240px;
    top: -149px;
    left: -89px;
  }
  .why__title {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .why__title::after {
    margin-top: 24px;
    width: 22px;
  }
  .why__slider {
    padding-bottom: 72px;
  }
  .why__header {
    font-size: 29px;
  }

  .why__text {
    font-size: 19px;
    margin-top: 31px;
    padding-right: 6px;
  }

  .why__controls {
    margin-top: 116px;
    margin-left: -5px;
  }
  .why__prev {
    width: 20px;
    height: 20px;
  }
  .why__next {
    left: 48px;
    width: 20px;
    height: 20px;
  }

  .reviews__items {
    margin-top: 64px;
  }
  .reviews__item {
    margin-top: 48px;
    margin-right: 32px;
    padding-left: 230px;
    min-height: 272px;
    width: 515px;
  }
  .reviews__wrap {
    width: 207px;
    height: 272px;
  }
  .reviews__header,
  .reviews__info {
    font-size: 17px;
  }
  .reviews__desc {
    font-size: 19px;
    padding: 18px 24px;
    min-height: 198px;
    margin: 16px 0;
    margin-left: -60px;
  }

  .science-slide .usecase-big-title {
    font-size: 144px;
  }
  .science-slide .added_block_title {
    font-size: 22px;
    top: -52px;
  }
  .added_block .with-icon-inner {
    padding-right: 120px;
    max-width: 544px;
  }
  .added_block .with-icon-inner .wrap-icon {
    width: 94px;
    height: 94px;
    padding-top: 16px;
  }
  .added_block .with-icon-inner .wrap-icon svg {
    height: 55px;
    width: 26px;
  }
  .added_block .with-icon-inner .wrap-icon svg.icon-man2 {
    width: 50px;
  }
  .btn-usecase {
    margin-top: 60px;
    width: 446px;
    height: 56px;
    line-height: 54px;
    font-size: 17px;
  }

  .blog-header-slider .slide,
  .blog-header {
    height: 600px;
  }
  .blog-header-slider .slick-arrow {
    font-size: 58px;
    height: 58px;
    margin-top: -29px;
  }
  .blog-header-slider .slide-content .date {
    font-size: 22px;
  }
  .blog-header-slider .slide-content .title {
    font-size: 43px;
    max-width: 600px;
  }

  .page-about {
    font-size: 29px;
    margin-top: 5px;
  }

  .blog-posts-header h2 {
    font-size: 29px;
  }

  .blog-posts-tabs a {
    font-size: 19px;
    margin-left: 54px;
  }

  .post-date {
    font-size: 17px;
  }
  .post-title {
    font-size: 29px/1.2;
  }
  .post-snippet {
    font-size: 19px/1.5;
  }

  .blog-post-item-container {
    max-width: 960px;
  }
  .blog-post-header .post_label {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .blog-post-header .post-date {
    font-size: 22px;
  }
  .blog-post-header .title {
    font-size: 53px;
  }
  .blog-post-item {
    padding: 60px 0;
    font-size: 19px;
  }
  .blog-post-item h3 {
    font-size: 31px;
  }
  .nav-blog-post-item .post_label, .blog-post-header .post_label {
    font-size: 22px;
    margin-top: 18px;
  }
  .nav-blog-post-item .post_title {
    font-size: 24px;
  }

  .news__content {
    margin-left: 24px;
    font-size: 36px;
  }
  .join__btn {
    margin-top: 54px;
    height: 38px;
    font-size: 17px;
   }
 
   .advisors .container {
    max-width: 1540px;
  }
  .advisors__name, .advisors__role {
    font-size: 17px;
  }
  .advisors__role {
    margin-top: 9px;
  }

  .makingof__text {
    font-size: 29px;
  }

  .makingof__play-button__bg svg {
    width: 74px;
    height: 85px;
  }
  .makingof__play-button__arrow {
    width: 16px;
    height: 19px;
    margin: -19px 0 0 -10px;
  }
  .makingof__play-button__arrow svg {
    width: 16px;
    height: 19px;
  }

  .manifesto .container-inner {
    max-width: 1300px;
  }
  .manifesto__wrap_text {
    padding: 64px 72px 55px;
  }
  .manifesto h2 {
    font-size: 65px;
    margin-bottom: 24px;
  }
  .manifesto__text {
    font-size: 29px;
    margin-bottom: 40px;
    height: 556px;
  }

  .jobs h2 {
    font-size: 29px;
  }
  .jobs-tabs a {
    font-size: 19px;
    margin-left: 54px;
  }
  .job-item {
    margin: 46px 0;
  }
  .job-item-inner {
    width: 336px;
  }
  .job-btn {
    height: 38px;
    font-size: 19px "PR", Arial;
  }
  .job-type {
    font-size: 17px "RCR", sans-serif;
    margin-top: 12px;
  }

  .s-popup {
    max-width: 540px;
  }
  .s-popup-inner {
    padding: 30px;
  }
  .s-popup .form-line {
    margin-top: 30px;
  }
  .s-popup .form-line input[type="text"], .s-popup .form-line input[type="email"], .s-popup .form-line input[type="phone"], .s-popup .form-line input[type="tel"], .s-popup .form-line input[type="url"], .s-popup textarea {
    max-width: 480px;
    font-size: 19px;
  }
}

@media only screen and (max-width: 1023px) {
  /**/

  .top .container {
    width: 100%;
    padding: 0 30px;
  }
  .content {
    padding-top: 103px;
  }
  .container {
    width: auto;
    padding-left: 25px;
    padding-right: 25px;
  }

  .top {
    padding-top: 20px;
    padding-bottom: 5px;
    height: 103px;
  }

  .bottom,
  .wrap_bottom__video {
    height: calc(100vh - 103px);
  }

  .menu {
    display: none;
    position: absolute;
    top: 81px;
    height: calc(100vh - 81px);
    margin-top: 0;
    right: 0;
    z-index: 1000;
    background: rgb(189,0,0);
    background: linear-gradient(90deg, rgba(189,0,0,1) 0%, rgba(216,0,0,1) 66%, rgba(216,0,0,1) 100%);
    width: 100%;
    padding: 30px 0 60px;
    text-align: center;
    box-sizing: border-box;
  }
  .header.sticky .menu {
    top: 69px;
    height: calc(100vh - 69px);
  }
  .current-menu-item .menu__link {
    color: #000;
  }

  .mobile-socials {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
  }
  .mobile-socials a {
    display: inline-block;
    margin: 0 15px;
  }
  .mobile-socials svg {
    fill: #fff;
    width: 40px;
    height: 40px;
  }

  .menu__wrap {
    max-height: calc(100vh - 193px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu__item {
    margin: 0;
    display: block;
    text-align: right;
    padding: 0;
    text-align: center;
    margin-top: 25px;
  }
  .menu__item:first-child {
    margin-top: 0;
  }

  .menu__link {
    font-size: 28px;
    color: #fff;
  }
  .menu__link:hover {
    color: #000;
  }

  .burgers {
    display: inline-block;
    vertical-align: top;
    margin-top: 18px;
  }

  .bottom,
  .wrap_bottom__video {
    min-height: 280px;
  }

  .bottom__content {
    max-width: 480px;
    padding-top: 20px;
  }

  .bottom__title {
    font-size: 40px;
  }

  .bottom__desc {
    font-size: 24px;
  }

  .about {
    padding-bottom: 130px;
  }

  .about__texts {
    max-width: 100%;
    margin-right: 0;
    display: block;
  }

  .about__images {
    margin-top: 70px;
  }

  .about__wrap-small {
    right: -200px;
    top: -50px;
  }

  .about__wrap-small div::after {
    top: 0;
    bottom: auto;
  }

  .advantages__big {
    height: auto;
    padding-left: 0;
  }

  .advantages__big .container {
    max-width: none;
    width: 100%;
  }

  .advantages__item {
    float: none;
    padding: 0 25px;
    width: 100%;
    height: auto;
  }
  .advantages__item .advantages__content {
    left: 0;
  }
  .advantages__item .wrap-descr {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  .advantages__content {
    padding: 50px 0;
    margin-left: 0;
    bottom: auto !important;
    position: relative;
    max-width: 360px;
    top: auto !important;
  }

  .advantages__desc {
    opacity: .9;
  }

  .product__wrap {
    margin-left: 20px;
    margin-top: 50px;
    width: 466.9px;
    height: 211.4px;
  }

  .product__text {
    margin-top: 10px;
  }

  .why__content {
    margin-left: 0;
  }

  .reviews::before {
    margin-left: -350px;
  }

  .reviews::after {
    margin-left: 350px;
  }

  .reviews__item {
    width: 80%;
    padding-left: 192px;
  }

  .reviews__desc {
    font-size: 16px;
    min-height: 165px;
  }

  .reviews__wrap {
    width: 172px;
    height: 227px;
  }

  .subscribe__title {
    float: none;
    width: 100%;
    text-align: center;
  }

  .subscribe__content {
      display: block;
      margin: 40px auto 0;
      float: none;
      width: 100%;
      max-width: 600px;
      padding: 0;
  }

  .logo-footer {
    margin-right: 40px;
  }

  .menu-footer__column {
    margin-right: 20px;
  }

  .social {
    width: 350px;
  }

  .social__item {
    margin-left: 15px;
  }

  .product-animation {
    width: 750px;
    height: 497px;
    margin-top: -20px;
  }

  .product-animation-2 {
    width: 750px;
    height: 497px;
    margin-top: -20px;
  }

  .product__item {
    margin-top: 10px;
  }
  
  .product__header {
    font-size: 14px;
  }

  .product {
    padding-top: 55px;
    padding-bottom: 60px;
  }
  .menu-footer,
  .top__btn {
    display: none;
  }
  .footer {
    padding: 60px 0 16px;
  }
  .content {
    margin-bottom: 174px;
  }

  .about__wrap-small div::after {
    display: none;
  }
     .page-header {
    height: calc(100vh - 103px);
  }

  .page-header.blog-header {
    height: auto;
  }
      .page-header h1 {
    font-size: 90px;
  }

  .page-about {
    font-size: 20px;
  }

  .manifesto__image {
    display: none;
  }
  .manifesto__wrap_text {
    float: none;
    width: 100%;
    max-width: 500px;
  }

  .manifesto__sign {
    width: 400px;
  }

  .science-slide .added_block,
  .usecase-slider .science-slide .added_block {
    padding-left: 28px;
    padding-right: 40px;
    width: 50%;
  }
  .science-slide .text {
    color: rgba(201, 201, 201, 1);
  }
  .science-figura {
    right: 14%;
  }

  .science-slide .usecase-big-title {
    font-size: 60px;
  }

  .usecase-slider .science-slide .text {
    max-width: 100%;
    font-size: 16px;
  }
  .usecase-slider .science-slide .added_blocks {
    margin-top: 0;
    font-size: 14px;
  }

  .usecase-slider .science-slide .added_blocks + .added_blocks {
    margin-top: 2em;
  }

  .job-item-inner {
    width: 210px;
  }
  .job-btn {
    font-size: 14px;
  }
     .jobs {
    padding: 40px 0;
  }
     .blog-header-slider .slick-arrow {
    top: 15%;
  }
  .blog-header-slider .slick-arrow.prev {
    left: 25px;
  }
  .blog-header-slider .slick-arrow.next {
    right: 25px;
  }

  .blog-header-slider .slide {
    height: 270px;
  }
  .blog-header-slider .slide-content .title {
    font-size: 24px;
  }
  .blog-header-slider .slide-content {
    bottom: 30px;
  }
  .blog-header-slider .slide-content .date {
    font-size: 14px;
  }
  .blog-posts {
    padding: 30px 0px
  }
  .blog-posts-tabs a {
    margin-left: 25px;
  }
  .blog-posts-tabs .but-search {
    margin-left: 45px;
  }
  .blog-posts-list {
    margin-top: 30px;
  }

  .manifesto__text {
    height: auto;
  }

  .manifesto__text_inner {
    padding-bottom: 0;
  }
  .manifesto__text p {
    color: #fff;
  }

  .science-slide:before {
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  .inner-usecase-slider {
    background-color: #000;
  }
  .inner-usecase-slide {
    opacity: 0.8;
  }
  .usecase-screen {
    right: 2%;
    height: 55%;
  }
  .usecase-video {
    right: 5%;
  }
   
  .press__items {
    margin: 65px -5px 0;
  }
  .press__item {
    padding: 5px;
  }
  .press_author {
    font-size: 14px;
  }

  .press__link {
    font-size: 14px;
  }
     .mobile-shop {
    display: block;     }

  .whitepapers .list-files-item {
    width: 100%;
  }
     .press__items img {
    height: 25px;
  }

  .nav-blog-post-item-right {
    padding-left: 30px;
  }
  .nav-blog-post-item-left {
    padding-right: 30px;
  }
  .nav-blog-post-item-right .wrap-content {
    padding-left: 20px;
  }
  .nav-blog-post-item-left .wrap-content {
    padding-right: 20px;
  }
  .nav-blog-post {
    margin-top: 30px;
    padding: 30px 0;
  }
  .nav-blog-post-item .post_title {
    font-size: 16px;
    margin-top: 0;
  }
  .nav-blog-post-item .post_label {
    font-size: 16px;
    margin-top: 10px;
  }
     .blog-post-header .title {
    font-size: 40px;
  }
     .jobs-tabs a {
    font-size: 14px;
    margin-left: 10px;
  }
     .science-slider .slick-dots {
    right: 15px;
  }
  #lang_choice_1 {
    font-size: 28px;
    color: #fff;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    width: auto;
    padding: 0 15px;
  }

  .blog-header-slider .slick-arrow.prev {
    left: 15px;
  }
  .blog-header-slider .slick-arrow.next {
    right: 15px;
  }

  .content {
    padding-top: 65px;
  }
  .content.sticky-header {
    padding-top: 65px;
  }
  .menu {
    top: 65px;
    height: calc(100vh - 65px);
  }

  .top {
    height: 65px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .bottom {
    height: calc(100vh - 65px);
  }

  .header.sticky .top {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 65px;
  }
  .header.sticky .menu {
    top: 65px;
    height: calc(100vh - 65px);
  }

  .inner-usecase-slide {
    min-height: calc(100vh - 65px);
    height: 100%;
  }

  .why {
    height: calc(100vh - 65px);
  }
     .wrap_bottom__video {
    height: calc(100vh - 65px);
  }

  .logo {
    width: 151.2px;
    height: 36.9px;
    margin-top: 8px;
  }

  .bottom__title {
    font-size: 30px;
  }
  .bottom__desc {
    font-size: 18px;
  }
  .bottom__buttons {
    margin-top: 32px;
  }

  .about {
    padding-bottom: 100px;
  }

  .about__desc {
    font-size: 24px;
    margin-top: 10px;
  }

  .about__more {
    margin-top: 15px;
  }

  .about__wrap {
    width: 349.6px;
    height: 469.6px;
  }

  .about__wrap-small {
    width: 263.2px;
    height: 356px;
    right: -150px;
  }

  .advantages__big .advantages__img {
    width: auto;
    max-width: 160%;
  }

  .why__content {
    padding: 25px;
  }
  .why__title {
    margin-bottom: 20px;
  }

  .why__slider {
    padding-bottom: 60px;
  }
  .why__header {
    font-size: 20px;
  }
  .why__text {
    font-size: 13px;
    margin-top: 15px;
  }

  .why__count {
    top: -73px;
    left: -15px;
    opacity: .5;
    font-size: 100px;
  }

  .reviews {
    padding: 90px 0;
    padding-bottom: 100px;
  }

  .reviews::before {
    margin-left: 0px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: auto;
    width: 82.4px;
    height: 65.6px;
  }

  .reviews::after {
    margin-left: auto;
    right: 0;
    width: 82.4px;
    height: 65.6px;
    -webkit-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
    left: auto;
  }

  .reviews__items {
    margin-top: 20px;
  }

  .reviews__item {
    width: 100%;
    max-width: 600px;
  }

  .subscribe__wrapper {
    padding-top: 45px;
    padding-bottom: 45px;
  
  }

  .subscribe__title {
    font-size: 24px;
  }

  .product {
    height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .product__block {
    padding-bottom: 49px;
    margin-top: 0;
  }

  .product__item_bottom {
    right: 308px;
    text-align: right;
  }

  .product__wrap {
    width: 400.2px;
    height: 181.2px;
    margin-left: 0px;
  }

  .product__pdf {
    position: relative;
    bottom: auto;
    margin-top: 28px;
  }
  .product-animation {
    width: 100%;
    height: auto;
  }

  .product-animation-2 {
    width: 100%;
    height: auto;
  }

  .product__text {
    font-size: 12px;
  }

  .product__header {
    font-size: 13px;
  }

  .product__item {
    margin-top: -20px;
  }

  .product-animation {
    margin-top: -20px;
  }

  .product-animation-2 {
    margin-top: -20px;
  }

  .burgers {
    margin-top: 16px;
  }
  .menu {
    top: 60px;
  }
  .header.sticky .menu {
    top: 60px;
  }

  .product__block {
    padding-bottom: 0px;
  }

  .decor-scroll {
    left: auto;
    right: 36px;
    bottom: 110px;
  }

  .page-header h1 {
    font-size: 60px;
    bottom: 20%;
  }
  .page-header {
    height: 170px;
  }
  .page-about {
    font-size: 16px;
    padding: 5em 0 5em;
    /*min-height: 100vh;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page-about.small-pad {
    padding: 5em 0 3em;
  }
  .page-about h2:before {
    height: 35px;
    top: -53px;
  }

  .news__item {
    display: block;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-company {
    padding-bottom: 50px;
  }

  .advisors:before {
    height: 184px;
    margin-bottom: -164px;
  }

  .advisors__list {
    margin: 0px -11px;
  }
  .advisors__item {
    width: 33.33%;
  }

  .makingof__text {
    font-size: 20px;
    margin-bottom: 2em;
  }

  .manifesto {
    background-color: #2f2f2f;
    padding: 49px 0 88px;
  }

  .manifesto h2 {
    font-size: 44px;
  }
  .manifesto__text {
    font-size: 20px;
    margin-bottom: 28px;
  }
  .manifesto__sign {
    width: 300px;
  }
  .btn,
  .manifesto__wrap_text .btn {
    height: 44px;
    line-height: 43px;
    padding-top: 1px;
  }
  .manifesto__wrap_text {
    max-width: none;
  }

     .science-slide .text, .science-slide h2, .whitepapers .list-files-item-inner {
    font-size: 14px;
  }
  .science-slide h2 {
    margin-bottom: 1em;
  }
  .science-slide .added_blocks  {
    margin-top: 2em;
    font-size: 12px;
  }

  .science-slide .o2-schema + .added_blocks {
    margin-top: 0.5em;
  }

  .o2-schema-item {
    width: 120px;
    height: 33px;
    border-radius: 17px;
    padding-top: 4px;
    font-size: 12px;
  }
  .o2-schema .separ {
    left: 120px;
    top: 16px;
  }
  .science-figura {
  
  }
  .science-slide {
    min-height: calc(100vh - 65px);
  }
  .science-slide.with-figura .slide-inner {
    padding-bottom: 280px;
  }

  .science-slide .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .figura-circle {
    width: 130px;
    height: 130px;
    top: 44px;
  }
  .science-figura-label {
    line-height: 1.3;
  }
  .science-figura {
    width: 130px;
    height: 200px;
    top: auto;
    right: auto;
    left: 50px;
    bottom: 0;
  }
  .figura-left-line, .figura-right-line {
    height: 78px;
  }
  .science-figura-label.right-label {
    left: 100%;
    right: auto;
    text-align: left;
    margin-left: 18px;
  }
     .science-slide .added_block,
  .usecase-slider .science-slide .added_block {
    padding-left: 14px;
    padding-right: 20px;
  }
  .usecase-slider .science-slide .added_blocks {
    font-size: 12px;
  }
  .science-slide .added_block_title {
    left: 14px;
    font-size: 12px;
    top: -28px;
    letter-spacing: 3px;
  }
  .science-slide .added_block.with-title {
    margin-top: 4em;
  }
     .science-slide .added_block_usecase_slider .added_block:after {
    opacity: 0;
  }
  .science-slide .added_block_usecase_slider.active .added_block:after {
    opacity: 1;
  }
     .science-slide .text {
    max-width: 70%;
  }
  .humon-medical,
  .whitepapers {
    padding: 35px 0 35px;
  }
     .whitepapers .list-files-item-inner {
    font-size: 16px;
  }

  .science-slide .added_block,
  .usecase-slider .science-slide .added_block {
    width: 100%;
  }
  .science-slide .usecase-big-title {
    font-size: 44px;
    margin-bottom: 1em;
  }
  .usecase-slider .science-slide .added_block.with-title + .added_block.with-title {
    margin-top: 80px;
  }
  .btn-usecase {
    margin-left: 14px;
    width: 290px;
  }
  .job-grid {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .job-item {
    width: 100%;
    float: none;
    margin: 40px 0 0;
  }
  .job-item-inner {
    width: 100%;
  }
  .job-btn {
    font-size: 16px;
  }

  .jobs h2 {
    float: none;
  }

  .jobs-tabs {
    float: none;
    text-align: left;
    white-space: normal;
    margin-top: 20px;
  }
  .jobs-tabs a {
    font-size: 14px;
    margin-left: 0;
    margin-right: 10px;
  }

  .page-header {
    height: calc(100vh - 65px);
  }

  .page-header.blog-header {
    height: auto;
  }

  .blog-header-slider .slide-content .title {
    font-size: 20px;
  }

  .blog-header-slider .slide-content .date {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .blog-posts-header h2 {
    float: none;
    margin-bottom: 20px;
  }
  .blog-posts-tabs {
    float: none;
    text-align: left;
  }
  .blog-posts-tabs a {
    margin-left: 10px;
    font-size: 14px;
  }
  .blog-posts-tabs a:first-child {
    margin-left: 0;
  }
  .blog-posts-tabs .icon-search {
    width: 20px;
    height: 20px;
  }
  .blog-posts-tabs .but-search {
    margin-top: -2px;
    margin-left: 25px;
  }
  .blog-posts-list {
    margin-top: 20px;
  }
  .blog-posts-list-item .wrap-post-image {
    margin-bottom: 25px;
  }
  .post-title {
    font-size: 16px;
  }
  .post-date {
    font-size: 12px;
  }
  .post-snippet {
    font-size: 13px;
  }

  .blog-shop-video {
    height: 200px;
  }
  .blog-shop-video .blog-shop-video-content .title {
    font-size: 25px;
    margin-bottom: 1em;
  }

  .menu__link {
    font-size: 26px;
  }
  .menu__item {
    margin-top: 30px;
  }
  .mobile-socials svg {
    width: 24px;
    height: 24px;
  }

  .advantages__item {
    padding: 0 15px;
  }
     .usecase-video {
    display: none;
  }
  .usecase-screen {
    right: 8.8%;
    height: auto;
    width: 31.46667%;
    top: auto;
    bottom: 12.5%;
    padding: 0;
    background: none;
  }
  .usecase-screen img {
    height: auto;
    width: 100%;
  }

  .usecase_screen_text {
    transition: all 0.5s;
  
  }
  .usecase_screen_text.active {
    padding-right: 155px;
  }
  .usecase-screen .bg-screen-mobile {
    display: block;
  }
  .usecase-screen .bg-screen-desktop {
    display: none;
  }

  .press {
    padding: 40px 0px;
  }
  .press__item {
    padding: 15px 10px;
    width: 100%;
  }
  .press__items a {
    display: block;
    padding: 15px 0;
    width: auto;
  }
  .press__items {
    position: relative;
    margin: 10px 0 0;
    text-align: left;
  }

  .blog-posts-header .wrap-form-search input {
    font-size: 18px;
  }

  .nav-blog-post-item .wrap-image {
    display: none;
  }
  .nav-blog-post-item-right .wrap-content {
    padding-left: 0;
    margin-left: 0;
  }
  .nav-blog-post-item-left .wrap-content {
    padding-right: 0;
    margin-right: 0;
  }
  .nav-blog-post {
    margin-top: 10px;
    padding: 15px 0;
  }
  .nav-blog-post-item-left {
    padding-right: 20px;
  }
  .nav-blog-post-item-right {
    padding-left: 20px;
  }
  .nav-blog-post-item .post_title {
    font-size: 14px;
    margin-top: -10px;
  }
  .blog-post-item {
    padding: 30px 0;
  }
     .blog-post-header .wrap-image {
    float: none;
    width: 100%;
  }

  .blog-post-header .wrap-info {
    margin-left: 0;
    padding-left: 0;
    margin-top: 25px;
  }

  .blog-post-header .title {
    font-size: 28px;
  }
  .blog-post-header .post-date {
    font-size: 16px;
    margin-bottom: 1em;
  }

  .blog-post-header {
    padding: 20px 0 0;
  }
  .blog-post-header .post_label {
    margin-bottom: 20px;
  }

  .blog-header-slider .slick-dots {
    display: none !important;
  }
  #lang_choice_1 {
    font-size: 28px;
    color: #fff;
  }
}

@media only screen and (max-width: 767px) and (max-height: 700px) {
  .usecase-screen {
    bottom: 2.5%;
  }
  #lang_choice_1 {
    font-size: 28px;
    color: #fff;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 519px) {
  /**/
  .top__btn {
    display: none;
  }

  .logo {
    width: 134.4px;
    height: 32.8px;
  }

  .bottom,
  .wrap_bottom__video {
    min-height: 300px;
  }

  .bottom__content {
    padding: 100px 0;
    padding-bottom: 150px;
  }

  .bottom__content::before {
    width: 32.9px;
    height: 64.4px;
  }

  .bottom__title {
    font-size: 35px;
  }

  .bottom__desc {
    font-size: 18px;
    margin-top: 15px;
  }

  .bottom__buttons {
    margin-top: 20px;
  }

  .bottom__btn {
    margin-top: 12px;
    margin-right: 0;
    display: block;
  }

  .bottom__btn:first-child {
    margin-top: 0;
  }

  .about {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .about__desc {
    font-size: 18px;
    margin-top: 10px;
  }

  .about__images {
    margin-top: 50px;
  }

  .about__wrap {
    width: 292.79px;
    height: 393.29px;
  }

  .about__wrap-small {
    width: 164.5px;
    height: 222.5px;
    right: -50px;
  }

  .about__wrap-small div::after {
    width: 20.5px;
    height: 253px;
  }

  .advantages__content {
    margin-left: 0;
    width: 100%;
  }

  .advantages__big .advantages__img {
    width: auto;
    /*max-width: 200%;*/
  }

  .advantages__title {
    font-size: 19.2px;
  }

  .advantages__desc {
    font-size: 12.8px;
  }

  .why__content {
    max-width: 290px;
    padding: 30px 20px;
  }

  .why__title {
    font-size: 14.4px;
    margin-bottom: 20px;
  }

  .why__title::after {
    margin-top: 10px;
  }

  .why__header {
    font-size: 19.2px;
  }

  .why__text {
    font-size: 12.8px;
    padding-right: 0;
  }

  .reviews__desc {
    font-size: 12px;
    padding-left: 13px;
  }

  .subscribe__wrapper {
    padding: 30px 0;
  }

  .subscribe__title {
    font-size: 18px;
  }
  .subscribe__content {
    margin-top: 25px;
  }

  .subscribe__form,
  .mailpoet_form {
    width: 100%;
  }

  .subscribe__input,
  #mailpoet_form_1 .mailpoet_text {
    padding-left: 20px;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .logo-footer {
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer .container {
    text-align: left;
  }

  .footer .container::after {
    display: none;
  }

  .footer__left {
    text-align: center;
    display: block;
    width: 100%;
  }

  .footer__left::after {
    content: '';
    display: inline-block;
    width: 100%;
  }

  .footer__right {
    text-align: center;
    display: block;
    float: none;
  }
     .content {
    margin-bottom: 172px;
  }

  .social {
    text-align: center;
    width: 100%;
    margin-top: -6px;
  }

  .menu-footer {
    margin-top: 0;
  }

  .menu-footer__column {
    display: block;
    text-align: right;
    margin-right: 0;
  }

  .menu-footer__link {
    margin-top: 10px;
  }

  .menu-footer__link:first-child {
    margin-top: 10px;
  }


  .social__link {
    letter-spacing: 1px;
  }

  .product {
    padding-bottom: 50px;
    padding-top: 40px;
  }

  .product__wrap {
    width: 100%;
    height: auto;
  }

  .product__header {
    font-size: 18px;
  }

  .product__text {
    font-size: 14.4px;
  }

  .product__pdf {
    margin-top: 55px;
  }

  .product__item {
    position: relative;
    display: block;
    margin-top: 20px;
    width: 100%;
    text-align: left;
  }
  .product__header span {
    display: none;
  }

  .product__items {
    display: block;
  }

  .product-animation {
    margin-top: 0;
  }

  .product-animation-2 {
    margin-top: 0;
  }

  .news__content {
    font-size: 16px;
  }

  .advisors__item {
    width: 50%;
  }

  .makingof__text {
    font-size: 18px;
  }
     .manifesto h2 {
    font-size: 36px;
  }
  .manifesto__text {
    font-size: 17px;
  }
      .manifesto__wrap_text {
    padding: 20px 17px 35px;
  }

  .manifesto {
    padding: 30px 0 41px;
  }

  .manifesto__sign {
    width: 200px;
    right: 0;
  }

  .humon-medical h2 {
    font: 20px/1.2 "PB", sans-serif;
  }
  .humon-medical ul {
    margin: 0 0 20px;
    font-size: 12px;
  }
  .humon-medical ul li:after {
    display: none;
  }
     .science-slider .slick-dots {
    right: 20px;
  }

  .reviews__desc {
    min-height: 160px;
  }

  .blog-posts-list-item {
    width: 100% !important;
    margin-right: 0;
    float: none;
    min-height: none;
  }


  .developer-link {
    margin-left: 10px;
  }
  .developer-link:last-child {
    margin-top: 10px;
  }

  .footer .container {
    text-align: center;
  }
  .footer-down {
    margin-top: 12px;
    font-size: 12px;
  }


}

@media only screen and (max-width: 359px) {
  .usecase_screen_text.active {
    padding-right: 0;
  }
  .usecase-screen {
    display: none;
  }
}

@media only screen and (max-width: 767px) and (max-height: 650px) {
  .menu__link {
    font-size: 20px;
  }
  .menu__item {
    margin-top: 25px;
  }
  #lang_choice_1 {
    font-size: 20px;
    color: #fff;
  }
}

@media only screen and (max-width: 767px) and (max-height: 499px) {
  .menu__link {
    font-size: 16px;
  }
  .menu__item {
    margin-top: 12px;
  }

  .menu {
    padding: 20px 0 60px;
  }
  .menu__wrap {
    max-height: calc(100vh - 163px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
     .mobile-socials svg {
    width: 20px;
    height: 20px;
  }
  .mobile-socials {
    bottom: 5px;
  }
     .added_block .with-icon-inner .wrap-icon {
    width: 39px;
    height: 39px;
    padding-top: 6px;
  }
  .added_block .with-icon-inner .wrap-icon svg {
    height: 23px;
    width: 11px;
  }
  .added_block .with-icon-inner .wrap-icon svg.icon-man2 {
    width: 21px;
  }

  .product__block {
    margin-top: -40px;
  }
  #lang_choice_1 {
    font-size: 16px;
    color: #fff;
  }
}

#bitnami-banner {
  display: none !important;
}
