* {
  -webkit-animation: fadein 0.2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.2s; /* Firefox < 16 */
  -ms-animation: fadein 0.2s; /* Internet Explorer */
  -o-animation: fadein 0.2s; /* Opera < 12.1 */
  animation: fadein 0.2s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  flex-direction: column;
}

.app {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100vh;
  height: -webkit-fill-available;
  height: 100svh;
  background-size: cover;
  background-position: center;
  min-height: 1050px;
}
@media (max-width: 768px) {
  .app {
    min-height: initial;
  }
}

.other-content {
  height: 100%;
  width: 100%;
  margin-top: calc(100vh + 50px) !important;
  margin-top: max(1100px, calc(100vh + 50px)) !important;
  /*margin-top: calc(var(--viewport-height) + 50px);*/
}

@media (max-width: 768px) {
  .other-content {
    margin-top: 30px !important;
    /*margin-top: calc(var(--viewport-height) + 20px);*/
  }
  .section.is-hero {
    min-height: 100vh;
  }
}


button.is-loading::after,
.button.is-loading::after {
  -webkit-animation: spinAround 500ms infinite linear;
  animation: spinAround 500ms infinite linear;
  border: 2px solid #FE3F13;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.list-enter-active, .list-leave-active {
  transition: all 0.3s;
}

.list-enter {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.list-leave-active {
  position: absolute;
  display: none !important;
}

@media screen and (max-width: 768px) {
  .list-enter {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
}
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

img,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

html {
  background-color: #000;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  height: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif";
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  min-height: 100%;
  background: #000;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.4) 100%), url(/images/landings/mimai/desk.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

body > video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  height: 100%;
  height: -webkit-fill-available;
}
@media screen and (max-width: 768px) {
  body > video {
    min-width: 100%;
    min-height: 100%;
  }
}

a {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #fff;
}

code {
  background-color: #333;
  color: #fff;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: #333;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

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

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  color: #fff;
  font-weight: 700;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  text-align: left;
  vertical-align: top;
}
table th {
  color: #9798B0;
}

.has-text-centered {
  text-align: center;
  clear: both;
}

.has-text-right {
  text-align: right;
  clear: both;
}

.is-hidden {
  display: none !important;
}

.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  body {
    display: flex;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.4) 100%), url(/images/landings/mimai/mob.jpg);
  }

  .app {
    display: flex;
    flex: 1;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  html.has-cookie-policy body {
    flex-flow: column nowrap;
    justify-content: space-between;
  }
}

button.is-login,
.button.is-login {
  position: absolute;
  top: 40px;
  right: 50px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  margin-bottom: 8px;
  line-height: 24px;
  padding: 8px 13px 9px 13px;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
button.is-login:hover,
.button.is-login:hover {
  background-color: #FE3F13;
  color: white;
}
button.is-loading,
.button.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
button.is-loading::after,
.button.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}

.app .title {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  margin: 0 0 56px;
}

input,
select {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input:not([type=radio]):not([type=checkbox]),
.input {
  display: block;
  border: none;
  font-size: 18px;
  outline: none;
  width: 80%;
  color: #333333;
}
input::-moz-placeholder,
.input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.85);
}
input::-webkit-input-placeholder,
.input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.85);
}
input:-moz-placeholder,
.input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.85);
}
input:-ms-input-placeholder,
.input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.85);
}
input.has-error,
.input.has-error {
  border-color: #FE1313;
}

.label {
  cursor: pointer;
  font-weight: 600;
}

.help {
  display: block;
  font-size: 12px;
  line-height: 18px;
}
.help.has-error {
  margin: 8px 0 0;
  color: #FE1313;
  font-size: 14px;
  font-weight: 500;
}
.help.is-notice {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}
.help.is-notice a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.messenger-footer .actions-container .button.is-loading::after {
  animation: spinAround 500ms infinite linear;
  border: 2px solid #F5F5F5;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em; }

@keyframes blink {
  /**
   * At the start of the animation the dot
   * has an opacity of .2
   */
  0% {
    opacity: .2; }
  /**
   * At 20% the dot is fully visible and
   * then fades out slowly
   */
  20% {
    opacity: 1; }
  /**
   * Until it reaches an opacity of .2 and
   * the animation can start again
   */
  100% {
    opacity: .2; } }

@keyframes spinAround {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }


code {
  background-color: #000000;
  color: #FF0000;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em; }

hr {
  background-color: #B8B8BA;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0; }

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

input[type="checkbox"],
input[type="radio"] {
  vertical-align: baseline; }

small {
  font-size: 0.875em; }

span {
  font-style: inherit;
  font-weight: inherit; }

strong {
  color: #B8B8BA;
  font-weight: 700; }

pre {
  -webkit-overflow-scrolling: touch;
  background-color: #000000;
  color: #333333;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal; }
  pre code {
    background-color: transparent;
    color: currentColor;
    font-size: 1em;
    padding: 0; }

table td,
table th {
  text-align: left;
  vertical-align: top; }

table th {
  color: #333333; }

.has-text-centered {
  text-align: center; }

.is-font-regular {
  font-weight: 400 !important; }

.is-hidden {
  display: none !important; }

.container {
  margin: 0 auto;
  position: relative; }
  @media screen and (min-width: 1020px) {
    .container {
      max-width: 1020px; }
      .container.is-fluid {
        max-width: none;
        width: auto; } }
a.button {
  color: #FFFFFF; }

.button {
  display: inline-block;
  appearance: none;
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #FFFFFF;
  background-color: #43C923;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  outline: none; }
  .button.is-call-to-action {
    margin: 70px auto 65px;
    padding: 0;
    font-size: 24px;
    line-height: 75px;
    text-align: center;
    padding-left: 93px;
    padding-right: 93px;
    height: 75px;
    max-width: 100%;
    border-radius: 10px; }
    @media screen and (max-width: 768px) {
      .button.is-call-to-action {
        padding-left: 103px;
        padding-right: 103px;
        max-width: 100%;
        height: 65px;
        line-height: 65px;
        font-size: 20px;
        margin: 20px auto 25px; } }
  .button.is-login {
    background-color: rgba(0, 0, 0, 0.49);
    color: #FFFFFF;
    border-radius: 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 100%; }
    @media screen and (max-width: 768px) {
      .button.is-login {
        display: none !important; } }
  .button.is-pink {
    background-color: #EF4184; }
  .button.is-blue, .button.is-info {
    background-color: #02A9FF; }

.title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px; }
  @media screen and (max-width: 768px) {
    .title {
      font-size: 28px;
      line-height: 56px; } }
  .title.is-spaced {
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .title.is-spaced {
        margin-bottom: 0; } }
.is-testimonial {
  height: 100%;
  padding: 30px 20px;
  background-color: #1C1B21;
  border-radius: 17px;
  text-align: center; }
  .is-testimonial .avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 290486px; }
    @media screen and (max-width: 768px) {
      .is-testimonial .avatar {
        width: 65px;
        height: 65px; } }
    .is-testimonial .avatar .image {
      vertical-align: middle; }
  .is-testimonial .text {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 10px; }
    @media screen and (max-width: 768px) {
      .is-testimonial .text {
        font-size: 16px;
        line-height: 25px; } }
  .is-testimonial .info {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px; }
    @media screen and (max-width: 768px) {
      .is-testimonial .info {
        font-size: 16px;
        line-height: 25px; } }
    .is-testimonial .info .age {
      font-weight: 400; }

.is-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .is-feature:not(:first-child) {
    margin-top: 128px; }
    @media screen and (max-width: 768px) {
      .is-feature:not(:first-child) {
        margin-top: 44px; } }
  @media screen and (max-width: 768px) {
    .is-feature:nth-child(n + 1) .text-container {
      order: 2; } }
  .is-feature .image-container {
    border-radius: 17px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 325px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex: 0 0 325px; }
    @media screen and (max-width: 768px) {
      .is-feature .image-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 10px; } }
    .is-feature .image-container .image {
      vertical-align: top; }
    .is-feature .image-container ~ .text-container {
      margin-left: 20px; }
      @media screen and (max-width: 768px) {
        .is-feature .image-container ~ .text-container {
          margin-left: 0; } }
  .is-feature .title {
    margin-bottom: 24px; }
    @media screen and (max-width: 768px) {
      .is-feature .title {
        margin-bottom: 0;
        line-height: 32px;
        font-size: 25px;
        padding-bottom: 11px; } }
  .is-feature .text-container {
    max-width: calc(55% - 20px);
    font-weight: normal;
    font-size: 24px;
    line-height: 30px; }
    @media screen and (max-width: 768px) {
      .is-feature .text-container {
        max-width: none;
        font-size: 16px;
        line-height: 27px; } }
    .is-feature .text-container ~ .image-container {
      margin-left: 20px; }
      @media screen and (max-width: 768px) {
        .is-feature .text-container ~ .image-container {
          margin-left: 0; } }
.custom-select {
  position: relative;
  margin-right: 10px; }
  .custom-select.has-error .select-selected {
    border: 1px solid #FF0000;
    background-color: #FFF6F6; }
  .custom-select:nth-child(1) {
    width: 125px; }
  .custom-select:nth-child(3) {
    width: 155px; }
  .custom-select:nth-child(2) {
    width: 175px; }

.custom-select select {
  display: none;
  /*hide original SELECT element: */ }

.select-selected {
  background: #F5F5F5 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADqSURBVHgBldLBDYIwFAbgvprAtSMwgiMoGziBOoF6hUs9AEcdQSfQoydwBEdgBK9wAP+XYGy0WPgT8ii8fqG0JJAkSaZSykNVVWutdSlGBP3K9/1L0zS7OI4fxBgRFXincJV1Xc+HolmWBShF27Zcn6hzyV/WYZzA87wCYDAS4yi2JJa5wOBq9DpRC8Y5s0XvUZqmJ5Sl0WBdfh8WRdGKb8hsdqEu7Af8h2InhQuzghzs/BE7vzFRjIUL40xsYJ7ntzAMYdCse6TE5yQwvMeZ29rmWsEOvX+hJqb75vWCNtSFDQ7+qeZrSO8LDaOUqSQNFb4AAAAASUVORK5CYII=") no-repeat calc(100% - 10px) center;
  background-size: 10px 6px;
  border: 1px solid #E2DEDE; }

.select-selected {
  height: 55px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 55px;
  border-radius: 10px; }

.select-items div,
.select-selected {
  color: #444444;
  padding: 8px 16px;
  cursor: pointer; }

.select-items {
  position: absolute;
  margin-top: 10px;
  background: #FFFFFF;
  border: 1px solid #E2DEDE;
  box-sizing: border-box;
  border-radius: 10px;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  height: 265px;
  overflow: auto; }

.select-hide {
  display: none; }

.select-items div:hover,
.same-as-selected {
  background-color: #EBEBEB; }

.icons {
  font-size: 0; }

.icon {
  display: inline-block;
  width: 19px;
  height: 19px; }
  .icon.is-star {
    background-image: url("../../images/chat_v2/icons/star.svg");
    background-size: 19px; }

.messenger {
  background: #FFFFFF;
  max-width: 610px;
  margin: 0 auto -87px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  border-radius: 12px; }
  @media screen and (max-width: 610px) {
    .messenger {
      margin-left: -10px;
      margin-right: -10px;
      width: calc(100% + 20px);
      margin-bottom: 20px;
    } }
.messenger-header {
  box-shadow: 0 1px 0 rgba(202, 202, 202, 0.5), 2px 1px 15px rgba(202, 202, 202, 0.2);
  border-radius: 12px 12px 0 0;
  padding: 16px 25px; }
  @media screen and (max-width: 768px) {
    .messenger-header {
      padding: 15px; } }
  .messenger-header .person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .messenger-header .person .avatar {
      margin-right: 10px; }
      .messenger-header .person .avatar .image {
        max-width: 55px;
        max-height: 55px;
        vertical-align: middle;
        border-radius: 50%;
      }
        @media screen and (max-width: 768px) {
          .messenger-header .person .avatar .image {
            max-width: 45px;
            max-height: 45px; } }
    .messenger-header .person .name,
    .messenger-header .person .age {
      color: #333333;
      font-size: 20px;
      line-height: 25px; }
      @media screen and (max-width: 768px) {
        .messenger-header .person .name,
        .messenger-header .person .age {
          font-size: 18px;
          line-height: 22px; } }
    .messenger-header .person .job-position {
      color: #A3A3A3;
      font-size: 16px;
      line-height: 25px; }
      @media screen and (max-width: 768px) {
        .messenger-header .person .job-position {
          font-size: 15px;
          line-height: 22px; } }
.messenger-chat {
  padding: 0 25px;
  height: 510px;
  overflow: auto; }
  @media screen and (max-width: 768px) {
    .messenger-chat {
      height: 406px; } }
  @media screen and (max-width: 768px) {
    .messenger-chat {
      padding: 0 15px; } }
  .messenger-chat .message {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .messenger-chat .message {
        margin-top: 15px; } }
    .messenger-chat .message:last-child {
      margin-bottom: 25px; }
      @media screen and (max-width: 768px) {
        .messenger-chat .message:last-child {
          margin-bottom: 15px; } }
    .messenger-chat .message.is-response {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
      .messenger-chat .message.is-response .text {
        background-color: #FC3710;
        color: #FFFFFF;
        padding: 23px 15px; }
        @media screen and (max-width: 768px) {
          .messenger-chat .message.is-response .text {
            padding: 18px 15px; } }
    .messenger-chat .message .avatar {
      border-radius: 290486px;
      margin-right: 15px;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 55px;
      -ms-flex: 0 0 55px;
      flex: 0 0 55px; }
      @media screen and (max-width: 768px) {
        .messenger-chat .message .avatar {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 45px;
          -ms-flex: 0 0 45px;
          flex: 0 0 45px; } }
      .messenger-chat .message .avatar .image {
        vertical-align: top;
        border-radius: 50%;
      }
    .messenger-chat .message .text {
      padding: 20px;
      line-height: 25px;
      background-color: #F5F5F5;
      color: #333333;
      border-radius: 10px;
      max-width: 413px; }
      @media screen and (max-width: 768px) {
        .messenger-chat .message .text {
          padding: 13px;
          font-size: 15px;
          line-height: 20px; } }
    .messenger-chat .message.is-loading .text {
      min-height: 65px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      @media screen and (max-width: 768px) {
        .messenger-chat .message.is-loading .text {
          min-height: 45px; } }
      .messenger-chat .message.is-loading .text span {
        width: 8px;
        height: 8px;
        display: block;
        background-color: #797979;
        border-radius: 290486px;
        animation-name: blink;
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        animation-fill-mode: both; }
        .messenger-chat .message.is-loading .text span:nth-child(2) {
          animation-delay: .2s; }
        .messenger-chat .message.is-loading .text span:nth-child(3) {
          animation-delay: .4s; }
        .messenger-chat .message.is-loading .text span:not(:last-child) {
          margin-right: 6px; }

.messenger-footer {
  background: #FFFFFF;
  border-top: 1px solid #E2DEDE;
  padding: 15px 20px;
  min-height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px; }
  .messenger-footer.has-error {
    border-color: #FF0000; }
  @media screen and (max-width: 768px) {
    .messenger-footer {
      padding: 10px;
      min-height: 65px; } }
  .messenger-footer .input {
    border: none;
    font-size: 18px;
    outline: none;
    width: 80%;
    color: #333333; }
    .messenger-footer .input[disabled] {
      opacity: .6; }
    .messenger-footer .input.has-error {
      color: #FF0000; }
    @media screen and (max-width: 768px) {
      .messenger-footer .input {
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px; } }
    .messenger-footer .input::-moz-placeholder {
      color: #AFAFAF; }
    .messenger-footer .input::-webkit-input-placeholder {
      color: #AFAFAF; }
    .messenger-footer .input:-moz-placeholder {
      color: #AFAFAF; }
    .messenger-footer .input:-ms-input-placeholder {
      color: #AFAFAF; }
  .messenger-footer .actions-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .messenger-footer .actions-container .date-inputs {
      display: flex;
      justify-content: stretch;
      align-items: center; }
      .messenger-footer .actions-container .date-inputs .input {
        height: 35px;
        line-height: 35px;
        color: #333333;
        font-size: 15px;
        border-radius: 0; }
        .messenger-footer .actions-container .date-inputs .input.has-error {
          color: #FF0000; }
          .messenger-footer .actions-container .date-inputs .input.has-error::-moz-placeholder {
            color: #FF0000; }
          .messenger-footer .actions-container .date-inputs .input.has-error::-webkit-input-placeholder {
            color: #FF0000; }
          .messenger-footer .actions-container .date-inputs .input.has-error:-moz-placeholder {
            color: #FF0000; }
          .messenger-footer .actions-container .date-inputs .input.has-error:-ms-input-placeholder {
            color: #FF0000; }
        .messenger-footer .actions-container .date-inputs .input:not(:last-child) {
          border-right: 1px solid #E2DEDE; }
        .messenger-footer .actions-container .date-inputs .input:not(:first-child) {
          margin-left: 10px; }
        .messenger-footer .actions-container .date-inputs .input::-moz-placeholder {
          color: #666666; }
        .messenger-footer .actions-container .date-inputs .input::-webkit-input-placeholder {
          color: #666666; }
        .messenger-footer .actions-container .date-inputs .input:-moz-placeholder {
          color: #666666; }
        .messenger-footer .actions-container .date-inputs .input:-ms-input-placeholder {
          color: #666666; }
    .messenger-footer .actions-container.buttons {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .messenger-footer .actions-container.buttons .button {
        width: 100%;
        padding: 17px 18px;
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-weight: 400; }
        .messenger-footer .actions-container.buttons .button:nth-child(1) {
          margin-right: 5px; }
        .messenger-footer .actions-container.buttons .button:nth-child(2) {
          margin-left: 5px; }
    .messenger-footer .actions-container .button {
      font-weight: 700;
      font-size: 18px;
      line-height: 21px;
      padding: 17px 22px;
      text-align: center;
      border: none;
      border-radius: 11px; }
      @media screen and (max-width: 768px) {
        .messenger-footer .actions-container .button {
          font-size: 16px;
          padding: 12px 19px;
          border-radius: 8px; } }
      .messenger-footer .actions-container .button.is-loading {
        position: relative;
        opacity: 0.6;
        pointer-events: none;
        color: transparent !important; }
        .messenger-footer .actions-container .button.is-loading::after {
          position: absolute;
          left: calc(50% - (1em / 2));
          top: calc(50% - (1em / 2));
          position: absolute !important; }
      .messenger-footer .actions-container .button.is-submit {
        font-weight: 500; }

.header {
  padding: 30px 10px 42px; }
  @media screen and (max-width: 768px) {
    .header {
      padding: 17px 0 20px; } }
  .header .column:last-child {
    text-align: right; }
  .header .logo {
    text-align: center; }
    .header .logo .image {
      display: inline-block;
      vertical-align: middle;
      width: 178px;
      height: 46px; }
    @media screen and (max-width: 768px) {
      .header .logo .image {
        width: 108px;
        height: 28px; } }
.section {
  padding: 3rem 20px; }
  .section.is-hero {
    padding-top: 0;
    padding-bottom: 0;
 }
    @media screen and (max-width: 768px) {
      .section.is-hero { }
        .section.is-hero .title {
          display: none; } }
    .section.is-hero .title {
      font-size: 68px;
      font-weight: 700;
      line-height: 76px;
      max-width: 882px;
      margin: 0 auto 46px;
      text-align: center; }
      @media screen and (max-width: 768px) {
        .section.is-hero .title {
          letter-spacing: -1px; } }
      @media screen and (max-width: 768px) {
        .section.is-hero .title {
          font-size: 33px;
          line-height: 38px;
          margin-bottom: 20px; } }
  .section.is-features {
    padding-top: 121px;
    padding-bottom: 0; }
    .section.is-features .container {
      max-width: 927px; }
    @media screen and (max-width: 768px) {
      .section.is-features {
        padding-top: 30px; } }
  .section.is-testimonials {
    padding-top: 161px; }
    @media screen and (max-width: 768px) {
      .section.is-testimonials {
        padding-top: 52px;
        padding-bottom: 0; } }
    .section.is-testimonials .titles-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center; }
      .section.is-testimonials .titles-container .title {
        margin-right: 1rem; }
        @media screen and (max-width: 768px) {
          .section.is-testimonials .titles-container .title {
            margin-right: 6px;
            line-height: 34px; } }
      .section.is-testimonials .titles-container .icon {
        background-size: 13px;
        width: 13px;
        height: 13px; }
      .section.is-testimonials .titles-container .subtitle {
        width: 100%;
        font-size: 24px;
        line-height: 30px;
        margin: 24px 0 54px; }
        @media screen and (max-width: 768px) {
          .section.is-testimonials .titles-container .subtitle {
            font-size: 16px;
            line-height: 27px;
            margin: 0 0 21px; } }
    .section.is-testimonials .column {
      padding-bottom: 10px; }
      @media screen and (max-width: 768px) {
        .section.is-testimonials .column {
          padding-bottom: 0; } }
.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px; }
  .columns:last-child {
    margin-bottom: -20px; }
  .columns.is-centered {
    -webkit-justify-content: center;
    justify-content: center; }
  .columns.is-gapless {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0; }
    .columns.is-gapless > .column {
      margin: 0;
      padding: 0 !important; }
    .columns.is-gapless:not(:last-child) {
      margin-bottom: 40px; }
    .columns.is-gapless:last-child {
      margin-bottom: 0; }
  .columns.is-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex; }
  .columns.is-multiline {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }
  .columns .column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 20px; }
    .columns .column.is-6 {
      width: 50%;
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none; }
    .columns .column.is-12 {
      width: 100%;
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none; }
    @media screen and (max-width: 768px) {
      .columns .column .columns {
        display: block; }
      .columns .column.is-6-touch {
        width: 50%; }
      .columns .column.is-12-touch {
        width: 100%; } }

.messenger button.agreement {
  background-color: #ccc;
  width: 48%;
  padding: 13px;
  line-height: 28px;
}
.messenger button.agreement svg {
  height: 28px;
  vertical-align: middle;
}

.messenger button.agreement:hover,
.messenger button.agreement:active {
  background-color: #FF0000;
}

.faq .title h1,
.faq .title h2,
.faq .title h3 {
  margin-top: 40px;
}