/*
	Variables
*/
/*
	Mixins
*/
/* Main */
html {
  font-size: 10px !important;
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

main {
  background-color: #fff;
  margin: auto;
  font-family: "Rubik", sans-serif;
  color: #243859;
}

a.button {
  text-decoration: none;
  padding: 16px 36px;
  background-color: #243859;
  color: #fff;
  border-radius: 5px;
  transition: all 0.15s;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.4px;
  font-weight: 500;
}
@media (max-width: 500px) {
  a.button {
    font-size: 1.2rem;
    letter-spacing: 0.7px;
    padding: 12px 25px;
  }
}
a.button.green {
  padding: 11px 36px;
  text-align: center;
  background-color: #4BB34B;
}

span.big-brandname {
  display: block;
  font-size: 5rem;
  letter-spacing: -0.2px;
  font-weight: 500;
  padding: 10px;
}

.wrapper {
  position: relative;
}

.w-limit {
  width: 100%;
  max-width: 1366px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 5px 25px;
}
@media (max-width: 500px) {
  .w-limit {
    padding: 5px 15px;
  }
}

.container {
  max-width: 1000px;
  margin: auto;
}

.gradient {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-image: radial-gradient(#64bdd8 -20%, #07224e 100%);
}
@media (max-width: 850px) {
  .gradient {
    padding: 80px 0px 0px;
  }
}

.svg-border {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}
.svg-border:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 600px;
  width: 100%;
  background: url("../assets/border.svg") no-repeat;
  background-position: bottom;
}
@media (min-width: 2380px) {
  .svg-border:after {
    height: 120%;
  }
}

.svg-bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.08;
  z-index: 20;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2378abe4' fill-opacity='0.49'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

header.navbar {
  position: fixed;
  width: 100%;
  left: 0;
  min-height: 80px;
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0px 30px -15px #243859;
  z-index: 100;
}
@media (max-width: 500px) {
  header.navbar {
    min-height: auto;
  }
}
header .navbar__left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
header .navbar__right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
header .navbar__logo {
  width: 40px;
  height: 100%;
  padding: 10px 25px;
}
header .navbar__logo img {
  max-height: 100%;
  max-width: 100%;
  margin-top: 5px;
}
header .navbar__brandname {
  display: none;
  align-items: center;
  font-size: 3rem;
  letter-spacing: -0.2px;
  font-weight: 500;
}
@media (max-width: 500px) {
  header .navbar__brandname {
    display: none;
  }
}
header .navbar__top-button {
  display: flex;
  align-items: center;
}

.navbar {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: transparent;
  transition: all 0.3s;
}
.hide {
  display: none;
}
.navbar__menu {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 850px) {
  .navbar__menu {
    display: none;
  }
}
.navbar__menu .navbar__menu-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.scroll .navbar__menu .navbar__menu-icon svg {
  fill: #000;
}
.navbar__menu .navbar__menu-list {
  position: absolute;
  top: 76px;
  padding: 24px;
  min-width: 110px;
  border-radius: 6px;

  background-color: rgba(255, 255, 255, 0.04);
}
.scroll .navbar__menu-list{
  background-color: rgba(244, 248, 255, 0.9);
  transition: all 0.3s;
}
.navbar__menu .navbar__menu-list .navbar__menu-list-item {
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  color: #fff;
}
.navbar__menu .navbar__menu-list .navbar__menu-list-item:not(:last-child) {
  display: block;
  margin-bottom: 16px;
}
.navbar__menu .navbar__menu-list .navbar__menu-list-item:hover {
  opacity: 0.8;
}
.scroll .navbar__menu-list-item{
  color: #000 !important;
}
.navbar .navbar__list {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
@media (max-width: 850px) {
  .navbar .navbar__list {
    display: none;
  }
}
.navbar .navbar__list .navbar__list-item {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
}
.scroll .navbar__list .navbar__list-item {
  color: #000 !important;
}
.navbar .navbar__list .navbar__list-item:not(:last-child) {
  margin-right: 24px;
}
.navbar .navbar__list .navbar__list-item:hover {
  opacity: 0.8;
}
.navbar.scroll {
  background-color: rgba(244, 248, 255, 0.9);
  transition: all 0.3s;
  min-height: 60px;
}
.navbar.scroll .navbar__logo {
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .navbar.scroll .navbar__logo {
    padding: 0px 25px;
  }
}

section.face {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 900px;
  padding: 25px 100px;
  z-index: 20;
}
@media (max-width: 850px) {
  section.face {
    flex-direction: column;
    align-items: center;
    padding: 80px 25px 25px;
  }
}
@media (max-width: 500px) {
  section.face {
    min-height: auto;
  }
}
section.face .face__image {
  display: flex;
  align-items: center;
  width: 60%;
  padding: 60px;
  z-index: 10;
}
@media (max-width: 850px) {
  section.face .face__image {
    width: 100%;
    padding: 25px;
  }
}
section.face .face__image img {
  width: 100%;
}
section.face .face__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  color: #fff;
  z-index: 10;
}
@media (max-width: 850px) {
  section.face .face__description {
    width: 100%;
    align-items: center;
    padding: 25px;
  }
}
section.face .face__description .wrapper {
  margin-bottom: 60px;
}
section.face .face__description p {
  padding: 10px;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 0.2px;
}
section.face .face__description .button {
  margin: 10px;
}
@media (max-width: 850px) {
  section.face .face__description .wrapper.first {
    text-align: center;
  }
}

section.features {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 25px 100px;
  background-color: #fbfdff;
}
@media (max-width: 850px) {
  section.features {
    padding: 25px;
  }
}
section.features .features__n {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 60px 100px;
}
@media (max-width: 1100px) {
  section.features .features__n {
    padding: 60px 40px;
  }
}
@media (max-width: 650px) {
  section.features .features__n {
    flex-wrap: wrap;
  }
  section.features .features__n:nth-child(2) {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 500px) {
  section.features .features__n {
    padding: 20px 10px;
  }
}
section.features .features__n img {
  width: 100%;
}
section.features .features__n .features__image {
  padding: 25px;
  width: 45%;
}
@media (max-width: 650px) {
  section.features .features__n .features__image {
    width: 100%;
    padding: 0px 50px;
    box-sizing: border-box;
  }
}
section.features .features__n .features__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 55%;
  text-align: center;
}
@media (max-width: 650px) {
  section.features .features__n .features__description {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 500px) {
  section.features .features__n .features__description {
    padding: 20px 0px;
  }
}
section.features .features__n .features__description h2 {
  color: #243859;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 30px;
}
section.features .features__n .features__description p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
}
section.features .features__n .features__description a {
  padding: 20px;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  transition: all 1s;
  color: #8cc4ff;
}
section.features .features__n .features__description a:hover {
  color: #243859;
}

section.price-table {
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 0 0 0;
}
section.price-table .calc-link {
  float: right;
  color: #90C6F9;
  text-decoration: none;
}
section.price-table h2 {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 500;
  margin: 0 15px;
  text-align: center;
}
section.price-table > p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 16px 0 40px 0;
}
section.price-table .slider {
  margin: 30px 0 0 0;
}
section.price-table .slider .noUi-base {
  width: auto;
  margin: 0 15px;
}
section.price-table .price-table__wrapper {
  font-size: 14px;
  line-height: 14px;
}
section.price-table .price-table__wrapper .price-table__input {
  margin: 0 15px;
}
section.price-table .price-table__wrapper .price-table__input input {
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid #b1bbcc;
  border-radius: 6px;
  line-height: 54px;
  font-size: 30px;
  padding: 0;
  margin: 10px 0 0 0;
}
section.price-table .price-table__wrapper .price-table__input span {
  font-size: 1.5rem;
}
section.price-table .price-table__wrapper .price-table__input .price {
  display: inline-block;
  margin: 30px 0 0 0;
  font-size: 24px;
  font-weight: 500;
}
section.price-table .price-table__wrapper .price-table__input .one-price {
  color: #858585;
  float: right;
  margin: 30px 0 0 0;
}
section.price-table .price-table__wrapper ul.price-table__result {
  margin: 40px 15px 0 15px;
  padding: 42px 33px 30px 33px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  background: #F4F9FF;
  border-radius: 6px;
  list-style-position: inside;
  list-style-image: url("/landing/assets/tick.svg");
  line-height: 30px;
}
section.price-table .price-table__wrapper ul.price-table__result li > span {
  display: inline-block;
  margin: 0 0 0 10px;
  transform: translateY(-6px);
}
section.price-table .price-table__wrapper ul.price-table__result li.cross {
  list-style-image: url("/landing/assets/cross.svg");
}
section.price-table .price-table__wrapper ul.price-table__result li a {
  color: black;
  text-decoration: none;
  border-bottom: 1px solid #D9D9D9;
}
section.price-table .price-table__wrapper ul.price-table__result #result {
  padding: 20px 0px;
  font-size: 7rem;
}
section.price-table .spoiler {
  text-align: center;
}

@media (min-width: 780px) {
  section.price-table {
    padding: 100px 0;
    border-bottom: 1px solid #EBEBEB;
  }
  section.price-table h2 {
    margin: auto;
  }
  section.price-table .price-table__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    padding: 0 24px;
  }
  section.price-table .price-table__wrapper ul.price-table__result {
    margin: 0 0 0 22px;
  }
}
.explanation {
  margin: 0 auto;
  padding: 30px 0 0 0;
}
.explanation h2 {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 500;
  text-align: center;
  margin: 0 15px 30px 15px;
}
.explanation ul.cases {
  padding: 0 15px;
  list-style-type: none;
  font-size: 5vw;
  line-height: 7vw;
}
.explanation ul.cases img {
  display: block;
  width: 100%;
}
.explanation ul.cases .button {
  font-size: 15px;
  display: block;
  margin: 10vw 0 0 0;
}
.explanation ul.cases li {
  margin: 0 0 14vw 0;
}

@media (min-width: 780px) {
  .explanation {
    padding: 100px 0;
  }
  .explanation h2 {
    margin: auto auto 60px;
  }
  .explanation ul.cases {
    font-size: 16px;
    line-height: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px;
  }
  .explanation ul.cases .button {
    margin: 23px 0 0 0;
  }
  .explanation ul.cases li {
    margin: 0;
  }
}
@media (min-width: 1015px) {
  .explanation ul.cases {
    padding: 0;
  }
}
footer {
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  display: flex !important;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #8992A6;
  background-color: #243859;
  padding: 30px 15px;
}
footer p {
  margin: 0 0 15px 0;
  color: white;
  font-size: 15px;
}
footer a {
  display: block;
  text-decoration: unset;
  line-height: 25px;
}
footer a:visited {
  color: #8992A6;
}

@media (min-width: 780px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    min-height: 72px;
  }
  footer p {
    margin: 0;
  }
  footer a {
    display: inline;
    margin: 0 0 0 12px;
  }
  footer a:visited {
    color: #8992A6;
  }
}
@media (min-width: 1000px) {
  footer {
    padding: 0 63px;
  }
  footer a {
    margin: 0 0 0 26px;
  }
  footer a:visited {
    color: #8992A6;
  }
}
.svg-bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.08;
  z-index: 20;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2378abe4' fill-opacity='0.49'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.using-cookie-notification {
  padding: 16px;
  max-width: 360px;
  z-index: 99;

  animation: usingCookieAnimation 0.3s;

  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background-color: #fff;
}

@keyframes usingCookieAnimation{
  from {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0%);
  }
}

.using-cookie-notification__content {
  display: flex;
}

.using-cookie-notification__close {
  cursor: pointer;
}

.using-cookie-notification__content p{
  margin: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: #525050;
}

.using-cookie-notification__button-box {
  display: flex;
  margin-top: 16px;
}

.using-cookie-notification__button-box .button {
  padding: 0;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-wrapper {
  position: relative;
}

.sticky-box {
  display: flex;
  flex-direction: column;
  align-items: end;
  position: sticky;
  max-width: fit-content;
  margin-left: auto;
  right: 24px;
  top: calc(100% - 220px);
  margin-bottom: 24px;
  z-index: 999;
}

#vk_community_messages {
  position: static !important;
}

.face__description__links {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.face__description__links a {
  text-decoration: unset !important;
  margin-right: 16px;
}
.face__description__message {
  font-size: 12px !important;
  color: #e0e0e0;
}

.tooltip {
  margin-left: 8px !important;
  position: relative;
}

.tooltip span {
  display: none;
  padding: 8px 12px;
  border-radius: 6px;
  width: 220px;
  font-size: 13px;
}
.tooltip:hover span {
  display: inline;
  position: absolute;
  top: 36px;
  right: 0;
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #6c6c6c;
}
/*# sourceMappingURL=main.css.map */

.auth-box {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  max-width: 100%;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4); 
  align-items: center;
  justify-content: center; 
}

.auth-box-content {
  padding: 12px 22px 22px 22px;
  max-width: 360px;
  z-index: 99;
  animation: auth-box-content 0.1s;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background-color: #fff;

  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden; 
}

.login-action {
  display: block;
  width: -webkit-fill-available;
}

a.button.outlet {
  color: #000;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 0px 10px -5px #243859;
  background-color: #ffffff;
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  > img {
    margin: 6px;
  }
}

.login-google{
  margin-top: 12px;
}

@keyframes auth-box-content{
  from {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0%);
  }
}