html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

img {
  max-width: 100%;
}

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

body {
  font-family: 'Roboto';
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.center {
  text-align: center;
}

.clear-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}


/* Buttons */
.btn {
  display: inline-block !important;
  padding: 15px 45px !important;
  background: #6D00F7;
  border-radius: 100px !important;
  color: #fff;
  font-size: 1.375em !important;
  font-weight: bold !important;
  text-align: center !important;
}

.btn--small {
  font-size: 1em !important;
  padding: 8px 24px !important;
}

.btn--secondary {
  background: #FF3700;
}

/* Menu */
.header {
  padding: 15px 0;
  background: #FFFFFF;
  box-shadow: 5px 0px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.logo-container {
  justify-self: flex-start;
  margin-right: auto;
}

.menu {
  display: flex;
  flex-wrap: wrap;
}

.menu__item {
  padding: 0 12px;
}

.menu__link {
  font-size: 1.125em;
  color: #383F46;
}

.logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*.logo > img {
	width: 100px;
	padding: 5px 0 0 10px;
}*/


/* Lang Chooser */


.switch-lang {
  /*width: 110px;*/
  cursor: pointer;
  position: relative;
  border-radius: 100px;
  margin: 0 8px;
  z-index: 3;
  background: #fff;
}

.switch-lang.open .lang-dropdown {
  display: block;
}

.switcher-link {
  color: #fff;
}

.switcher-link:hover {
  color: #fff;
}

.current-lang {
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #383F46;
  font-weight: bold;
  font-size: 0.875em;
  padding: 0 10px;
  position: relative;
}

.current-lang:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #43525A transparent transparent transparent;
  transition: all 300ms ease;
}

.switch-lang.open .current-lang:after {
  transform: rotate(180deg);
}

.lang-flag {
  width: 22px;
  display: inline-block;
  margin: 0 8px 0 0;
  position: relative;
}

.selecting-lang .lang-flag {
  width: 30px;
  height: 30px;
}

.active.selecting-lang .lang-flag {
  background: linear-gradient(to top, #AD06F0, #50EAFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-flag img {
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 28px;
  background: #fff;
  height: 28px;
}

.lang-text {
  display: inline-block;
  margin-right: 10px;
}

.lang-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  display: none;
  background: #fff;
  padding: 8px 0;
  width: 220px;
  border: 1px solid #DCDCDC;
  box-sizing: border-box;
  border-radius: 3px;
}

.selecting-lang {
  position: relative;
  color: #383F46;
  /*font-weight: bold;*/
  font-size: 1.125em;
  padding: 18px;
  display: block;
  display: flex;
  align-items: center;
  transition: background 400ms ease;
}

.active.selecting-lang {
  font-weight: bold;
}

.selecting-lang:hover {
  background: #F7F7F7;
}

.selecting-lang:not(:last-child):after {
  content: "";
  display: block;
  background: #DCDCDC;
  right: 20px;
  left: 20px;
  height: 1px;
  position: absolute;
  bottom: 0;
}

.menu-arrow {
  display: inline-block;
  width: 10px;
  margin-left: 10px;
  vertical-align: top;
  margin-top: 6px;
}


/* Page */
#page {
  padding: 85px 0 0;
}

/* Section Banner */
.section--banner {
  color: #fff;
  /*background: linear-gradient(32.85deg, #FF00F1 6.28%, #7D09F0 43.33%, #5276F3 70.19%, #50EAFF 95.2%), #8E01E4;*/
  /*background: url(../img/bg-banner.svg) no-repeat top;*/
  position: relative;
  padding: 80px 0 130px;
  overflow: hidden;
}

.morph_svg--purple {
  position: absolute;
  /*top: 0;*/
  bottom: -140px;
  left: 50%;
  left: 0;
  /*transform: translate(0, 0);*/
  transform: translate(0, -23%) scale(1.2);
  width: 100%;
}

.morph_svg--mobile {
  display: none;
}

.st1.hidden {
  opacity: 0;
}

.align-items-center {
  align-items: center;
}

.section--banner .container {
  max-width: 1100px;
}

.banner-left {
  flex: 0 0 40%;
  max-width: 40%;
}

.banner-title {
  font-weight: normal;
  font-size: 2.1875em;
  margin: 0;
  line-height: 1.22;
  font-family: 'blogger_sansregular';
}

.video__holder {
  display: none;
  align-items: center;
  margin: 45px 0;
}

.video__container {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.25);
  position: relative;
}

.video__container:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 35px;
  border-color: transparent transparent transparent #fff;
  /*box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.25);*/

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video__text {
  padding: 0 25px;
  font-size: 1.125em;
}

.store {
  display: flex;
  margin: 45px 0 10px;
}

.store__item {
  margin: 0 10px 0 0;
}

.banner-right {
  flex: 0 0 60%;
  max-width: 60%;
}

.animated-phone {
  position: absolute;
  right: 0;
  top: 20px;
  overflow: hidden;
  /*left: 40%;*/
}

.animated-phone img {
  transform: translate(30px, 0);
}

#wrapper {
  position: relative;
  height: 600px;
  /*width: 800px;*/
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  transform: translate(40px, 10px);
}

#lottie {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  /*width: 40px;
  height: 40px;*/
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

#lane3 {
  background: url("../telefon-01.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.lane {
  position: absolute;
  width: 100%;
  /*height:95%;*/
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  /*display:none;*/
}

/* Section Vivo */
.section--vivo {
  /*padding: 50px 0 0;*/
  padding: 0;
  position: relative;
  z-index: 2;
}

.vivo-left {
  flex: 0 0 60%;
  max-width: 60%;
}

.vivo-right {
  flex: 0 0 40%;
  max-width: 40%;
}

.section-heading {
  font-size: 2.8125em;
  font-family: 'blogger_sansregular';
  font-weight: normal;
  line-height: 1.4;
  color: #000;
  margin: 0;
  letter-spacing: 0.03em;
}

.section-desc {
  font-size: 1.25em;
  line-height: 1.3;
  color: #595959;
  font-weight: normal;
  margin: 0 0 30px;
}

.process__item {
  position: relative;
  padding: 30px 0 30px 100px;
}

.process__item img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.process__item span {
  font-size: 1.25em;
  font-weight: normal;
  color: #000;
}

/* Section Logo */
.section--logo {
  padding: 100px 0 50px 0;
  position: relative;
  overflow: hidden;
  /*background: linear-gradient(140.21deg, #FD9021 1.61%, rgba(255, 255, 255, 0) 71.41%), #FFD701;*/
}

.morph_svg--yellow {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 11%) scale(1.2);
}

.section--logo .container {
  position: relative;
}

.section--logo .section-heading {
  color: #383F46;
  margin: 0 0 0.75em;
}

.logo__list {
  margin: 0 -10px;
  max-width: 970px;
  margin: 0 auto;
}

.slick-initialized .logo__item-inner {
  background: #fff;
  height: 105px;
  margin: 0 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 15px;
}

.logo__item:active,
.logo__item:focus,
.slick-slide:active,
.slick-slide:focus {
  outline: none;
}

.slick-dots li button {
  height: 12px !important;
}

.logo__list .slick-dots {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 10px 0;
  padding: 0;
}

.logo__list .slick-dots li {
  display: flex;
  width: 12px;
  height: 12px;
  margin: 0 4px;
}

.logo__list .slick-dots button {
  background: #FF9300;
  display: block;
  width: 100%;
  text-indent: -9999px;
  border: 0;
  outline: 0;
  transition: background 350ms ease;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
}

.logo__list .slick-active button {
  background: #fff;
}

.section--logo .btn-container {
  margin: 30px 0;
}

/* Section Form */
.section--form {
  /*background: url('../img/bg-form.png') no-repeat top center;
  background-size: cover;*/
  position: relative;
  padding: 65px 0 50px;
}

.form {
  background: #fff;
  padding: 34px 20px;
  box-shadow: 5px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  max-width: 435px;
  margin-left: auto;
  position: relative;
  z-index: 3;
}

.form__title {
  font-family: 'blogger_sansregular';
  font-size: 1.875em;
  color: #383F46;
  font-weight: normal;
  margin: 0 0 0.35em;
}

.form__title:before {
  content: url('../img/ico-tag.svg');
  display: block;
  float: left;
}

.form__desc {
  color: #545F6A;
  font-weight: normal;
}

.form .row {
  margin-right: -8px;
  margin-left: -8px;
}

.form__group {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 20px;
  padding-right: 8px;
  padding-left: 8px;
}

.form__group label {
  display: block;
  font-size: 0.875em;
  color: #555555;
  margin: 0 0 3px;
}

.form__group input,
.form__group textarea {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
  outline: 0;
  padding: 4px 10px;
  width: 100%;
}

.form__group--half {
  flex: 0 0 50%;
  max-width: 50%;
}

.input-invalid {
  border-color: #ff4736 !important;
}

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

/* Section Newsletter */
.section--newsletter {
  background: #7400F1;
  color: #fff;
  padding: 50px 0;
}

.newsletter__title {
  font-family: 'blogger_sansregular';
  font-size: 1.875em;
  font-weight: normal;
  margin: 0 0 0.125em;
}

.newsletter__desc {
  margin: 0.5em 0 2em;
  font-weight: normal;
}

.form__inline {
  max-width: 370px;
  margin: 0 auto;
  display: flex;
}

.form__inline input {
  flex: 1;
  padding: 13px 20px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  border: 0;
  outline: 0;
  color: #545F6A;
  font-size: 1.125em;
}

.form__inline input::placeholder {
  color: #C4C4C4;
}

.form__inline-btn {
  outline: 0;
  border: 0;
  background: #FF3700;
  padding: 10px 35px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  font-size: 1.25em;
  font-weight: bold;
}


/* Section Footer Links */
.section--footer-links {
  background: #383F46;
  padding: 40px 0 60px;
}

.footer-desc {
  color: #808D99;
  font-size: 0.8125em;
  line-height: 1.387;
  font-weight: normal;
  max-width: 375px;
}

.footer-left {
  flex: 0 0 40%;
  max-width: 40%;
}

.footer-link__item {
  color: #fff;
  text-decoration: underline;
  font-size: 0.875em;
  font-weight: normal;
  margin: 0 20px 0 0;
}

.footer-link__item:last-child {
  margin: 0;
}

.footer-right {
  flex: 0 0 40%;
  max-width: 40%;
  margin-left: auto;
}

.social-title {
  font-weight: bold;
  color: #fff;
  margin: 0 0 1em;
}

.social__cont {
  display: flex;
}

.social__item {
  margin: 0 8px 0 0;
}


/* Inview animation */
.animate.in-view {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.animate {
  -webkit-transform: translateY(20%) scale(0.9);
  transform: translateY(20%) scale(0.9);
  opacity: 0;
  transition: opacity 700ms ease, -webkit-transform 1050ms cubic-bezier(.14, .82, 0, 1.01);
  transition: transform 1050ms cubic-bezier(.14, .82, 0, 1.01), opacity 700ms ease;
  will-change: transform, opacity;
}

@media screen and (max-width: 1400px) {
  .banner-left {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .animated-phone {
    /*left: 40%;*/
  }

  .animated-phone img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1280px) {
  .morph_svg--purple {
    transform: translate(0, -35%) scale(1.4);
  }

  #wrapper {
    /*width: 670px;*/
    width: 600px;
  }
}

@media screen and (max-width: 1023px) {
  /* Menu activator */
  .menu-activator {
    position: absolute;
    top: 19px;
    right: 10px;
    z-index: 999;
  }

  .lines-button {
    display: block;
    width: 40px;
    height: 32px;
    -webkit-transition: 300ms;
    transition: 300ms;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0.57143rem;
  }

  .lines-button:hover {
    opacity: 1;
  }

  .lines-button:active {
    -webkit-transition: 0;
    transition: 0;
  }

  .lines {
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #435259;
    border-radius: 0.28571rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }

  .lines:before, .lines:after {
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #435259;
    border-radius: 0.28571rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 0;
    content: '';
    -webkit-transform-origin: 0.28571rem center;
    transform-origin: 0.28571rem center;
  }

  .lines:before {
    top: 8px;
  }

  .lines:after {
    top: -8px;
  }

  .lines-button.close {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  .lines-button.x2 .lines {
    -webkit-transition: background 0.3s 0.1s ease;
    transition: background 0.3s 0.1s ease;
  }

  .lines-button.x2 .lines:before,
  .lines-button.x2 .lines:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: top 0.3s 0.2s ease, -webkit-transform 0.3s ease;
    -webkit-transition: top 0.3s 0.2s ease, -webkit-transform 0.3s ease;
    transition: top 0.3s 0.2s ease, transform 0.3s ease;
    transition: top 0.3s 0.2s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .lines-button.x2.close .lines {
    -webkit-transition: background 0.3s 0s ease;
    transition: background 0.3s 0s ease;
    background: transparent;
  }

  .lines-button.x2.close .lines:before,
  .lines-button.x2.close .lines:after {
    transition: top 0.3s ease, -webkit-transform 0.3s 0.2s ease;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s 0.2s ease;
    transition: top 0.3s ease, transform 0.3s 0.2s ease;
    transition: top 0.3s ease, transform 0.3s 0.2s ease, -webkit-transform 0.3s 0.2s ease;
    top: 0;
    width: 30px;
  }

  .lines-button.x2.close .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
  }

  .lines-button.x2.close .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
  }

  .switch-lang {
    margin-right: 40px;
  }

  .vivo-left,
  .vivo-right {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .menu {
    display: block;
    height: 100vh;
    background: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50px;
    transform: translate(120%, 0);
    transition: transform 400ms ease;
    padding: 0 25px;
    box-shadow: 0px 0 2px 0px rgba(0, 0, 0, 0.2);
    padding: 30px 0;
  }

  .menu-on .menu {
    transform: translate(30px, 0);
  }

  .menu__item {
    position: relative;
    padding: 18px 12px 18px 42px;
    transition: background 300ms ease;
    /*border-bottom: 1px solid rgba(0,0,0,0.12);*/
  }

  .menu__item.active {
    background: #F5F5F5;
  }

  .menu__item.active:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    height: 32px;
    width: 3px;
    background: linear-gradient(180deg, #AD06F0 0%, #50EAFF 100.78%);
    border-radius: 2px 2px 2px 2px;

  }

  .menu__item:after {
    content: "";
    display: block;
    height: 1px;
    left: 42px;
    right: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.12);

  }

  .menu__link {
    font-size: 1.25em;
  }

  .menu-container .btn-container {
    display: none;
  }

  .section--banner {
    overflow-x: hidden;
    overflow-y: visible;
    /*background: url('../img/bg-hero-mobile.svg') no-repeat;
    background-position: bottom center;
    background-size: cover;
    padding: 50px 0 30px;*/
    background: none;
    padding: 20px 0 40px 0;
  }

  #wrapper {
    transform: translate(0px, 0px);
    width: 600px;
    margin: 50px auto 0;
  }

  .morph_svg--purple {
    display: none;
  }

  .morph_svg--purple {
    left: 50%;
    /*transform: translate(-50%, 0) scale(1.7);*/
    transform: translate(-50%, -10%) scale(1.05);
    bottom: 0;
    top: auto;
  }

  .morph_svg--mobile {
    display: block;
  }

  .banner-left {
    flex: 0 0 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .video__holder {
    flex-wrap: wrap;
    justify-content: center;
    margin: 35px 0;
  }

  .video__holder .video__text {
    width: 100%;
    text-align: center;
    margin: 20px 0 0;
    display: none;
  }

  .store {
    justify-content: center;
  }

  .animated-phone {
    position: static;
    max-width: 80%;
    margin: 0 auto;
    left: 50%;
  }

  .animated-phone img {
    transform: translate(10px, 0);
    max-width: 110%;
  }

  .vivo-left,
  .vivo-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .vivo-left img {
    max-width: 270px;
  }

  .vivo-right .section-heading {
    text-align: -9999px;
    background: url('../img/vivoapp.svg') no-repeat center center;
    background-size: 180px auto;
  }

  .vivo-right .section-heading span {
    opacity: 0;
    visibility: hidden;
  }

  .section--vivo {
    text-align: center;
    padding: 0px 0 50px;
  }

  .process__item {
    padding: 20px 0;
  }

  .process__item img {
    transform: translate(0);
    position: static;
  }

  .section--logo {
    /*background: url('../img/bg-logo-mobile.svg') no-repeat;
    background-size: cover;
    padding: 70px 0 30px;*/
    background: 0;
  }

  .morph_svg--yellow {
    display: none;
  }

  .morph_svg--mobile {
    display: block;
  }

  .st4mobile {
    opacity: 0;
  }

  .section--form {
    padding: 330px 0 50px;
  }

  .form {
    margin: 0 auto;
  }

  .form .btn {
    width: 100%;
  }

  .footer-left,
  .footer-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer-desc {
    display: none;
  }

  .footer-desc--mobile {
    display: block;
  }

  .footer-link__cont {
    margin: 30px 0;
  }

  .social__cont {
    justify-content: center;
  }

  .social__item {
    margin: 0 18px 0 0;
  }

}

@media screen and (max-width: 768px) {
  .morph_svg--purple {
    left: 50%;
    /*transform: translate(-50%, -64%) scale(1.7);*/
    transform: translate(-50%, -44%) scale(1.7);
  }

  #wrapper {
    max-width: 115%;
    height: 400px;
    margin: 20px auto 0;
  }

  #lottie {
    height: 330px;
    width: 80%;
  }
}

@media screen and (max-width: 520px) {
  .logo img {
    max-width: 132px;
    transition: all 300ms ease;
    transform-origin: left center;
  }

  .header--fix .logo img {
    /*transform: scale(0.9);*/
  }

  #page {
    padding: 85px 0 0;
  }

  .banner-left {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .store__item:last-child {
    margin: 0;
  }

  .animated-phone {
    margin: 30px auto 0;
    max-width: 100%;
    overflow: visible;
  }

  .section--banner {
    padding: 20px 0 0;
    /*background: url(../img/bg-hero-mobile.svg) no-repeat;
    background-position: bottom 40px center;
    background-size: cover;*/
  }

  .morph_svg--purple {
    /*transform: translate(-50%, -19%) scale(1.7);*/
    transform: translate(-50%, -40%) scale(1.7); /* without wideo */
    top: 0;
    width: 100%;
  }

  .process__item {
    padding: 30px 0 30px 150px;
    text-align: left;
  }

  .process__item img {
    position: absolute;
    left: 120px;
    top: 50%;
    transform: translate(-100%, -50%);
  }

  /* Lang selector */
  .switch-lang {
    background: #fff;
  }

  .current-lang {
    color: #383F46;
  }

  .form__inline input {
    padding: 13px 0 13px 20px;
  }

  .form__inline-btn {
    padding: 10px 15px;
    font-size: 1.125em;
  }

  .form__group--half {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .banner-title {
    text-align: center;
  }

  .store__item img {
    max-height: 55px;
  }

  .section-desc {
    max-width: 350px;
    margin: 0 auto;
  }

  #wrapper {
    max-width: 115%;
    height: 320px;
  }
} 



































