:root {
  --gray-50: #F9F9FA;
  --gray-300: #C4C6CA;
  --gray-600: #72777F;
  --ultramarine-50: #F9FAFF;
  --ultramarine-100: #F1F3FE;
  --ultramarine-150: #f1f3fe;
  --ultramarine-200: #DBE2FD;
  --ultramarine-300: #BAC7FD;
  --ultramarine-400: #47476A;
  --ultramarine-600: #637EF7;
  --ultramarine-700: #4D6CF6;
  --ultramarine-800: #031876;
  --ultramarine-900: #2F2F67;
  --aqua-600: #00E6BD;
  --header-height: 101px;
  --header-height-mobile: 83px;
}

body {
  font-family: Montserrat, sans-serif;
  color: #2F2F6B;
  min-width: 360px;
  padding-top: var(--header-height);
}

body.menu-is-opened {
  overflow: hidden;
}

.menu-is-opened .alterra-widget-container {
  display: none;
}

input, textarea {
  font-family: Montserrat, sans-serif;
  outline: none;
}

input::placeholder {
  color: #9B9BB8;
}

.hidden {
  display: none;
}

.content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-animation="fadeIn"],
[data-animation="fadeInUp"]{
  animation-fill-mode: forwards;
  opacity: 0;
}

.title2 {
  margin-bottom: 24px;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #FFF;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding: 24px 100px;
}

.header__left {
  flex-shrink: 0;
  position: relative;
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
}

.header__menu__toggler {
  display: none;
  position: absolute;
  width: 32px;
  height: 22px;
  top: 42px;
  right: 25px;
  user-select: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .3s ease-in-out;
}

.header__menu__toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--ultramarine-900);
  border-radius: 16px;
  opacity: 1;
  left: 0;
  transition: .25s ease-in-out;
}

.header__menu__toggler span:nth-child(1) {
  top: 0;
}

.header__menu__toggler span:nth-child(2),
.header__menu__toggler span:nth-child(3) {
  top: 8px;
}

.header__menu__toggler span:nth-child(4) {
  top: 16px;
}

header.opened .header__menu__toggler span:nth-child(1) {
  top: 8px;
  width: 0;
  left: 50%;
}

header.opened .header__menu__toggler span:nth-child(2) {
  transform: rotate(45deg);
}

header.opened .header__menu__toggler span:nth-child(3) {
  transform: rotate(-45deg);
}

header.opened .header__menu__toggler span:nth-child(4) {
  top: 12px;
  width: 0;
  left: 50%;
}

.desktop-nowrap {
  white-space: nowrap;
}

.navigation {
  display: flex;
  align-items: center;
}

.navigation a {
  text-decoration: none;
}

.navigation__item {
  margin-right: 50px;
  position: relative;
  font-weight: bold;
  font-size: 12px;
  line-height: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navigation__item:last-child {
  margin-right: 0;
}

.navigation__item > a,
.navigation__item-inner {
  display: inline-flex;
  align-items: center;
  color: #2F2F6B;
  white-space: nowrap;
  cursor: pointer;
}

.navigation__item:hover .navigation__item-inner,
.navigation__item:hover > a {
  color: var(--ultramarine-700);
}

.navigation__item:hover .navigation-submenu {
  visibility: visible;
  animation: fadeIn 0.5s;
}

.navigation__item:hover .navigation__item-arrow {
  transform: rotate(180deg);
  background-image: url(../images/icons/arrow-bottom-active.svg);
}

.navigation__item-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  margin-top: -2px;
  background: url(../images/icons/arrow-bottom.svg) center no-repeat;
  background-size: 20px;
  transition: 0.3s;
}

.navigation-submenu {
  visibility: hidden;
  width: 360px;
  position: absolute;
  top: 100%;
  z-index: 99;
  margin-top: 24px;
  padding: 16px;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 40px 50px 0 rgba(0, 0, 0, 0.05), 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

.navigation-submenu_wide {
  width: 724px;
}

.navigation-submenu__sections {
  display: flex;
  gap: 20px;
}

.navigation-submenu__section {
  flex-basis: 50%;
}

.navigation-submenu__section-title {
  margin: 16px 0 12px 16px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.navigation-submenu::before {
  content: '';
  position: absolute;
  left: 0;
  height: 24px;
  width: 100%;
  top: 0;
  transform: translateY(-100%);
}

.navigation-submenu__item:last-child {
  margin-bottom: 0;
}

.navigation-submenu__item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #FFF;
  text-transform: none;
  transition: background 0.3s;
}

.navigation-submenu__item.is-align-start {
  align-items: flex-start;
}

.navigation-submenu__item:hover {
  background: var(--ultramarine-50);
}

.navigation-submenu__item:active {
  background: var(--ultramarine-150);
}

.navigation-submenu__item:hover .navigation-submenu__item-icon {
  background: var(--ultramarine-100);
}

.navigation-submenu__item-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-right: 12px;
  border-radius: 12px;
  background: var(--gray-50);
  transition: background 0.3s;
}

.navigation-submenu__item-icon_v2 {
  width: 34px;
  height: 34px;
  padding: 0;
}

.navigation-submenu__item-content {
  text-align: left;
}

.navigation-submenu__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: var(--ultramarine-900);
}

.navigation-submenu__item-desc {
  margin-top: -2px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: var(--ultramarine-400);
}

.header__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 60px;
}

.header__buttons .header__button.button {
  height: 46px;
  min-width: 150px;
  margin-left: 16px;
  padding: 0 16px;
  font-size: 14px;
}

.header__buttons .header__button.button:first-child {
  margin-left: 0;
}

h1 {
  font-weight: bold;
  font-size: 72px;
  line-height: 82px;
}

h2 {
  font-weight: bold;
  font-size: 60px;
  line-height: 73px;
}

h3 {
  font-weight: bold;
  font-size: 35px;
  line-height: 42px;
}

p,
.section.section--plaintext ul {
  font-size: 20px;
  line-height: 32px;
  margin-top: 64px;
}

.learn-more-button {
  display: flex;
  width: 240px;
  height: 55px;
  border: 2px solid #00ECBB;
  box-sizing: border-box;
  border-radius: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #00ECBB;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}

.learn-more-button:hover {
  color: #fff;
  background: linear-gradient(109.33deg, #05E5BD 37.01%, #05E1AC 99.04%);
}

button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  background: linear-gradient(145.72deg, #05E5BD 37.01%, #05E1AC 99.04%);
  border-radius: 16px;
  color: #fff;
  border: 2px solid;
  cursor: pointer;
  outline: 0;
  flex-shrink: 0;
  height: 55px;
  letter-spacing: 0.05rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  min-width: 276px;
  background: #2F2F6B;
  border-color: #2F2F6B;
  color: #FFF;
}

.button-dark:hover {
  box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.15);
}

.button-blue {
  border-radius: 16px;
  color: #FFF;
  border: 0;
  background: var(--ultramarine-700);
}

.button-outlined {
  background: #FFF;
  border: 2px solid var(--ultramarine-900);
  color: var(--ultramarine-900);
}


.data-columns {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 -20px;
}

.data-column {
  padding: 0 20px;
}

.data-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: #2F2F6B;
}

.data-item:before {
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
  top: 3px;
  background: #446DFF url(../images/icons/checked.svg) center no-repeat;
  background-size: 20px;
  border-radius: 50%;
}

.round-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #446DFF;
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.round-icon.is-small {
  height: 50px;
  width: 50px;
}

/* ======= */
.section,
.guide-block {
  align-self: center;
  max-width: 1920px;
  width: 100%;
  padding: 140px 220px;
  transition: 0.5s ease;
}

.section.section--plaintext,
.guide-block {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section--split {
  display: flex;
  flex-direction: row;
}

.section--split > div {
  width: 50%;
}

.section--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--centered h2 {
  max-width: 1100px;
  text-align: center;
}

.section--left-highlighted,
.section--right-highlighted,
.section--right-bottom-highlighted,
.section--full-highlighted {
  position: relative;
}

.section--full-highlighted::before,
.section--right-highlighted::before,
.section--right-bottom-highlighted::before,
.section--left-highlighted::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100vw;
  max-width: calc(50vw + 960px);
  height: 100%;
  background: linear-gradient(130.73deg, #05E5BD 37.01%, #05E1AC 99.04%);
  transition: transform,  border-radius 0.5s ease;
  z-index: -1;
}

.section--full-highlighted::before {
  max-width: 100%;
  border-radius: 48px;
  transform: rotate(-1deg);
  left: 0;
  background: linear-gradient(312.14deg, #05E5BD 8.55%, #05E1AC 63.01%);
}

.section--full-highlighted.is-gray::before {
  background: var(--gray-50);
}

.section--full-highlighted.is-light-blue::before {
  background: var(--ultramarine-50);
}

.section--left-highlighted::before {
  right: 0;
  border-radius: 0 48px 48px 0;
  transform: rotate(-2deg) translateX(-60px);
  background: linear-gradient(130.73deg, #05E5BD 37.01%, #05E1AC 99.04%);
}

.section--left-highlighted.is-gray::before {
  background: var(--gray-50);
}

.section--right-highlighted::before {
  left: 0;
  border-radius: 48px 0 0 48px;
  transform: rotate(2deg) translateX(60px);
  background: linear-gradient(296.5deg, #05E5BD 8.55%, #05E1AC 63.01%);
}

.section--right-highlighted.is-gray::before {
  background: var(--gray-50);
}

.section--right-highlighted.is-blue::before {
  background: var(--ultramarine-100);
}

.section--right-bottom-highlighted::before {
  left: 0;
  border-radius: 48px 0 0 48px;
  transform: rotate(-2deg) translateX(60px);
  background: linear-gradient(103.11deg, #05E5BD 31.01%, #05E1AC 98.95%);
}

.section--right-bottom-highlighted.is-gray::before {
  background: var(--gray-50);
}

.mobile-highlighted::before {
  display: none;
}

.section-full-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 160px 150px;
}

.section-full-wrapper .section {
  padding: 120px;
}

.section-full-wrapper .section h2 {
  max-width: none;
}

.section__content-inner {
  max-width: 600px;
}

.section__content-icon {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
}

.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 8px;
  margin-bottom: 35px;
  padding: 15px;
  font-size: 16px;
}

.form-group textarea {
  min-height: 200px;
  resize: vertical;
}
/* ======= */
.guide-block ul,
.guide-block ol,
.guide-block p {
  font-size: 20px;
  line-height: 32px;
  margin-top: 12px;
}

.guide-block ul {
  list-style-type: disc;
}

.guide-block ol {
  list-style: decimal inside;
}

.guide-block h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 27px;
  margin: 50px 0 30px;
}

.guide-block ul {
  list-style-position: outside;
}

.guide-block hr {
  margin-top: 24px;
  border: none;
  height: 1px;
  color: #E6E6ED;
  background-color: #E6E6ED;
}

.guide-block .video {
  margin-top: 24px;
}

.guide-block .tip {
  margin-bottom: 12px;
}

.guide-block {
  text-align: left;
}

.guide-block div img {
  margin-top: 5px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .guide-block ol,
  .guide-block ul {
    font-size: 18px;
    line-height: 28px;
  }

  .common-review {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ======= */

.live-transcription {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  user-select: none;
  transition: 1s ease;
}

.live-transcription__header {
  background: #698CFF;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  padding: 26px 38px 30px;
  border-radius: 16px 16px 0 0;
}

.live-transcription__header--centered {
  text-align: center;
}

.live-transcription__header__participants {
  font-size: 12px;
  line-height: 19px;
  font-weight: normal;
  margin-top: 5px;
}

.live-transcription__dialog {
  padding: 40px 0 0 20px;
  flex-grow: 1;
  color: #000;
}

.live-transcription__dialog__item {
  display: flex;
  margin-bottom: 40px;
}

.live-transcription__dialog__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}

.live-transcription__dialog__header__time {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
}


.live-transcription__dialog__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  background-repeat: no-repeat;
  background-size: 35px;
  background-position: center top;
  flex-shrink: 0;
  flex-grow: 0;
  color: #fff;
  margin-right: 22px;
}

.live-transcription__dialog__avatar.sara {
  background-image: url(../images/sara.png);
}

.live-transcription__dialog__avatar.tom {
  background-image: url(../images/tom.png);
  background-position: center center;
}

.live-transcription__dialog__avatar--text {
  width: 39px;
  height: 39px;
}

.live-transcription__dialog__message {
  font-size: 18px;
  line-height: 24px;
}

.live-transcription__dialog__message__highlighted {
  background: #a9bdfe;
}

.live-transcription__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
}

.live-transcription__controls__duration {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  min-width: 50px;
}

.live-transcription__controls__stop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #DE5C47;
  margin-right: 20px;
}

.live-transcription__controls__stop__icon {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 3px;
}

.live-transcription__controls__highlight {
  width: 19px;
  height: 19px;
  background: url(../images/highlight.svg) no-repeat center center;
}

.live-transcription__cursor {
  display: inline-block;
  background-color: #05E5BD;
  width: 2px;
  height: 28px;
  margin-left: 3px;
  position: absolute;
}

.transcript-message {
  display: flex;
}

/* ======= */
.transcript-message {
  border-radius: 8px;
  background: #fff;
  padding: 20px 25px;
  box-shadow: 0 40px 50px rgba(0, 0, 0, 0.05), 0 0 50px rgba(0, 0, 0, 0.05);
}

.works-well-block {
  margin-top: 60px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.1em;
}

.works-well-block__company-list {
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 620px;
}

.works-well-block__company-list__item {
  width: 84px;
  height: 84px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-origin: content-box;
  background-size: contain;
  padding: 12px;
  box-shadow: 0 40px 50px rgba(0, 0, 0, 0.07), 0 0 50px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

.works-well-block__company-list__break {
  flex-basis: 100%;
  height: 60px;
}

.works-well-block__company-list__item.bluejeans {
  background-image: url(../images/companies/bluejeans.svg);
}

.works-well-block__company-list__item.zoom {
  background-image: url(../images/companies/zoom.svg);
}

.works-well-block__company-list__item.webex {
  background-image: url(../images/companies/webex.svg);
}

.works-well-block__company-list__item.msteams {
  background-image: url(../images/companies/msteams.svg);
}

.works-well-block__company-list__item.google-meet {
  background-image: url(../images/companies/google-meet.svg);
}

.works-well-block__company-list__item.ring-central {
  background-image: url(../images/companies/ring-central.svg);
}

.works-well-block__company-list__item.gotomeeting {
  background-image: url(../images/companies/gotomeeting.svg);
}

.works-well-block__company-list__item.join-me {
  background-image: url(../images/companies/join-me.svg);
}

.works-well-block__company-list__item.global-meet {
  background-image: url(../images/companies/global-meet.svg);
}

.works-well-block__company-list__item.uberconference {
  background-image: url(../images/companies/uberconference.svg);
}

.works-well-block__company-list__item.mp3 {
  background-image: url(../images/formats/mp3.svg);
}

.works-well-block__company-list__item.wav {
  background-image: url(../images/formats/wav.svg);
}

.works-well-block__company-list__item.mp4a {
  background-image: url(../images/formats/m4a.svg);
}

.works-well-block__company-list__item.mp4 {
  background-image: url(../images/formats/mp4.svg);
}

.works-well-block__company-list__item.mic {
  padding: 20px;
  background-image: url(../images/icons/mic.svg);
}

.works-well-block__company-list__item.msteams,
.works-well-block__company-list__item.global-meet,
.works-well-block__company-list__item.google-meet,
.works-well-block__company-list__item.gotomeeting,
.works-well-block__company-list__item.uberconference {
  padding: 20px;
}

/* ======= */
.what-achieve {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 56px;
  margin-top: 20px;
}

/* ======= */
.ready-smarter__wrapper {
  display: flex;
  justify-content: center;
  margin: -120px 210px 0;
  transition: 0.5s ease;
}

.ready-smarter {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  padding: 100px;
}

.ready-smarter h2 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 50px;
}

.ready-smarter__highlight {
  background: url(../images/smarter-bg.svg) left center no-repeat;
  background-size: contain;
  color: #fff;
  padding: 0 10px;
}

/* ======= */
footer {
  max-width: 100%;
  margin-top: 100px;
  border: 0;
  padding: 20px 40px;
  color: var(--ultramarine-900);
  background: var(--gray-50);
}

.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 30px auto;
}

.footer__column-title {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 14px;
  line-height: 32px;
}

.footer__links li {
  margin-bottom: 20px;
}

.footer__link {
  font-size: 14px;
  line-height: 24px;
  color: #2F2F6B;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__link:hover {
  color: #446DFF;
}

.footer__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 12px;
}

.footer__privacy-policy a {
  margin-left: 30px;
  color: #2F2F6B;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__privacy-policy a:hover {
  color: #446DFF;
}

.footer__privacy-policy a:first-child {
  margin-left: 0;
}

.section__image--slack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slack-window {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  max-width: 500px;
  position: relative;
  user-select: none;
  transition: 1s ease;
}

.slack-window__content {
  padding: 15px 0px 25px 20px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05), 0px 40px 50px rgba(0, 0, 0, 0.05);
}

.slack-window__thread-header .slack-window__bold {
  line-height: 18px;
}

.slack-window__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  height: 55px;
  padding: 10px 15px;
  border-radius: 16px 16px 0 0;
  background-color: #350D36;
}

.slack-window__header img{
  width: 35px;
  height: 35px;
}

.slack-window__dialog__item {
  display: flex;
  margin-top: 15px;
}

.slack-window__dialog__content {
  width: 100%;
}

.slack-window__dialog__item:first-child .slack-window__dialog__content {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 20px;
}

.slack-window__dialog__avatar {
  width: 50px;
  padding: 5px 15px 0 0;
  flex-shrink: 0;
}

.slack-window__dialog__avatar img {
  width: 100%;
}

.slack-window__dialog__avatar__photo {
  width: 36px;
  height: 36px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.slack-window__dialog__avatar__photo--tom {
  background-image: url(../images/tom.png);
}

.slack-window__dialog__avatar__photo--anna {
  background-image: url(../images/slack-woman1-small.jpg);
}

.slack-window__content__tag {
  font-size: 12px;
  line-height: 19px;
  margin-bottom: 15px;
}

.slack-window__dialog__message {
  font-size: 16px;
  line-height: 28px;
}

.slack-window__dialog__message .slack-window__content__tag {
  margin: 5px 0 0 0;
}

.slack-window__bold {
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
}

.slack-window__app-mark {
  color: #575757;
  background: #E2E2E2;
  border-radius: 4px;
  font-size: 10px;
  line-height: 26px;
  font-weight: bold;
  padding: 1px 3px;
  margin-left: 10px;
}

.slack-window__mention {
  color: #2672AA;
  background: #E8F5FA;
  border-radius: 4px;
  padding: 3px 0;
}

.slack-window__dialog__message__link {
  color: #2672AA;
}

.slack-window__dialog__message__like__wrapper {
  display: flex;
}

.slack-window__dialog__message__like {
  display: flex;
  align-items: center;
  border: 2px solid #459ACC;
  border-radius: 25px;
  padding: 2px 8px;
  background: #EAF5F9;
  font-size: 12px;
  line-height: 19px;
  color: #2A649E;
  font-weight: bold;
  margin-top: 5px;
}

.slack-window__dialog__message__like img {
  width: 17px;
  margin-right: 5px;
}

.slack-window__bubbles {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-108px, 0);
  transition: 1s ease;
}

.slack-window__bubbles__tom,
.slack-window__bubbles__woman1,
.slack-window__bubbles__woman2,
.slack-window__bubbles__call {
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

.slack-window__bubbles__woman1,
.slack-window__bubbles__woman2 {
  width: 90px;
  height: 90px;
}

.slack-window__bubbles__tom {
  background-image: url(../images/tom.png);
  width: 126px;
  height: 126px;
  transform: translate(0px, 90px);
}

.slack-window__bubbles__woman1 {
  background-image: url(../images/slack-woman1.jpg);
  transform: translate(130px, 40px);
}

.slack-window__bubbles__woman2 {
  background-image: url(../images/slack-woman2.jpg);
  transform: translate(140px, 155px);
}

.slack-window__bubbles__call {
  display: flex;
  width: 67px;
  height: 67px;
  align-items: center;
  justify-content: center;
  background: url(../images/icons/call.svg), linear-gradient(139.29deg, #05E1AC 24.98%, #05E5BD 170.2%);
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(75px, 230px)
}

/* accordion */
.accordion {
  padding: 60px 0;
  color: #2F2F6B;
}

.accordion__item {
  position: relative;
  font-size: 20px;
  line-height: 32px;
  padding: 0 60px 0 32px;
  margin-bottom: 42px;
  cursor: pointer;
}

.accordion__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  background: url(../images/icons/arrow-bottom.svg) center no-repeat;
  transition: 0.3s;
}

.accordion__item-header {
  font-weight: bold;
}

.accordion__item-body {
  height: 0;
  overflow: hidden;
}

.accordion__item-content {
  padding-top: 14px;
}

.accordion__item-text {
  padding-right: 25px;
}

.accordion__item:hover .accordion__item-header {
  color: var(--ultramarine-600);
}

.accordion__item.is-open {
  cursor: default;
}

.accordion__item.is-open::before {
  content: '';
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #00E6BD;
  border-radius: 6px;
}

.accordion__item.is-open::after {
  transform: rotate(180deg);
}

.common-review {
  position: relative;
  max-width: 550px;
  padding: 48px 24px 24px 24px;
  text-align: left;
  border-radius: 24px;
  background: #FAFAFA;
}

.common-review.is-mobile {
  display: none;
}

.common-review::after {
  content: '';
  width: 78px;
  height: 60px;
  position: absolute;
  right: 20px;
  top: -10px;
  transform: translateY(-25%);
  background: url(../images/icons/brush.svg) no-repeat center;
  background-size: 100%;
}

.common-review__avatar {
  width: 90px;
  height: 90px;
  margin: -70px 0 20px 0;
  border-radius: 50%;
}

.common-review__text {
  margin-bottom: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.common-review__name {
  margin-bottom: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: var(--ultramarine-700);
}

.common-review__position {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 1239px) {
  .slack-window {
    transform: translate(0px, 100px);
  }

  .slack-window__bubbles {
    transform: translate(-240px, -150px);
  }
}

@media (max-width: 1024px) {
  .section__image--slack {
    margin-top: 180px;
  }

  .slack-window__bubbles {
    transform: translate(-340px, -260px);
  }
}

/* ======= Animation */
.animated-dialog-item {
  animation: 1s appearDialogItem;
}

.animated-dialog-item .live-transcription__cursor {
  animation: .4s ease opacityAppear alternate infinite;
}

.animated-dialog-item .animated-word {
  animation: .8s ease opacityAppear;
  display: none;
}

/* ======== */
#alterra-chat-button {
  border-radius: 8px;
}
/* ======== */
@keyframes appearDialogItem {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
  }
}

@keyframes opacityAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 120px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@media (max-width: 1580px) {
  .section {
    padding: 120px 140px;
  }

  .section-full-wrapper {
    margin: 0 100px 120px;
  }

  .header__container {
    padding: 24px 80px;
  }
  
  h1 {
    font-size: 56px;
    line-height: 64px;
  }

  h2 {
    font-size: 45px;
    line-height: 54px;
  }

  .ready-smarter__wrapper {
    margin: -120px 140px 0;
  }

  .ready-smarter {
    padding: 90px 0;
  }

  .section--right-highlighted::before,
  .section--right-bottom-highlighted::before,
  .section--left-highlighted::before,
  .section--full-highlighted::before {
    transition: 0.5s ease;
  }

  .data-item {
    font-size: 19px;
    line-height: 28px;
  }

  .data-item:before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: 14px;
  }
  
}

@media (min-width: 1025px) and (max-width: 1580px) {
  .section__image {
    transform: scale(0.87);
  }
}

@media (max-width: 1239px) {
  .header__container {
    padding: 24px 30px;
  }

  .section {
    padding: 90px 70px;
  }

  .section--right-highlighted::before,
  .section--right-bottom-highlighted::before,
  .section--left-highlighted::before {
    max-width: none;
    width: 100%;
    border-radius: 0;
  }

  .section--left-highlighted::before {
    transform: rotate(-2deg) translateX(20px) scaleX(1.5);
  }
  
  .section--right-highlighted::before {
    transform: rotate(2deg) translateX(-20px) scaleX(1.5);
  }

  .section--right-bottom-highlighted::before {
    transform: rotate(-2deg) translateX(-20px) scaleX(1.5);
  }
}

@media (max-width: 1050px) {
  .ready-smarter__wrapper {
    margin-left: 70px;
    margin-right: 70px;
  }
}

@media (max-width: 1024px) {
  .desktop-nowrap {
    white-space: normal;
  }

  .button {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05rem;
  }

  .section {
    padding: 40px 30px;
  }

  .section-full-wrapper {
    margin: 0 -10px 50px;
  }
  
  .ready-smarter {
    padding: 80px 30px;
  }

  .section--split {
    flex-direction: column;
    align-items: center;
  }

  .section--split > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .section h2,
  .section p,
  .section.section--plaintext ul  {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section p,
  .section.section--plaintext ul {
    font-size: 18px;
    line-height: 28px;
  }

  .section-full-wrapper .section {
    padding: 80px;
  }

  .mobile-highlighted::before {
    display: block;
  }

  .live-transcription {
    position: relative;
    transform: none;
  }

  .h1 {
    font-size: 52px;
    line-height: 60px;
  }

  .section h2 {
    font-size: 48px;
    line-height: 52px;
  }

  .live-transcription--blur {
    display: none;
  }

  .accordion__item {
    padding: 0;
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 28px;
  }

  .accordion__item.is-open::before {
    display: none;
  }

  .accordion__item-body {
    padding-right: 0;
  }

  .accordion__item-header {
    padding-right: 30px;
    font-weight: 600;
  }
}

/* ======= */
.guide-block h1,
.section.section--plaintext h1 {
  font-size: 40px;
  line-height: 54px;
}

.guide-block h2,
.section.section--plaintext h2 {
  font-size: 35px;
  line-height: 38px;
  margin-top: 80px;
}

.section.section--plaintext h4 {
  font-size: 28px;
  line-height: 36px;
  margin-top: 60px;
}


.section.section--plaintext p,
.section.section--plaintext ul {
  margin-top: 24px;
}

.section.section--plaintext ul {
  list-style: disc inside;
}

/* ======= */
.plaintext-hero {
  margin-bottom: 50px;
  text-align: center;
}

.plaintext-hero h1 {
  font-size: 48px;
}
/* ======= */
.section.section--plaintext.support-page h2 {
  font-size: 25px;
  line-height: 35px;
}

#contact-form button {
  display: block;
  margin: 0 auto;
}

#contact-form textarea {
  margin-bottom: 0;
}

#contact-form sub {
  display: block;
  margin: 10px 0 35px;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-hero {
  margin-top: 120px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#support_success,
#support_error {
  text-align: center;
  margin-top: 30px;
}

/* ======= HEADER ======= */
@media (max-width: 1300px) {
  .navigation__item {
    margin-right: 30px;
  }

  .header__buttons {
    margin-left: 40px;
  }
}

@media (max-width: 1024px) {
  header.opened {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: scroll;
  }

  .navigation {
    display: none;
  }

  header.opened .navigation {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
    top: var(--header-height);
    padding: 12px 32px 32px 32px;
    animation: 0.5s fadeInLeft;
  }

  .header__menu__toggler {
    display: block;
  }

  .header__container {
    padding-right: 84px;
  }

  .navigation__item {
    text-align: left;
    width: 100%;
    font-size: 16px;
    margin-bottom: 16px;
    margin-right: 0;
    padding: 8px 0;
  }

  .navigation__item.opened .navigation-submenu {
    display: block;
    visibility: visible;
  }

  .navigation__item:hover .navigation-submenu {
    animation: none;
  }

  .navigation__item.opened .navigation__item-arrow {
    transform: rotate(180deg);
  }

  .navigation__item:not(.opened):hover .navigation__item-arrow {
    transform: none;
  }

  .navigation__item-inner {
    width: 100%;
  }

  .navigation-submenu {
    width: 100%;
    padding: 0;
    margin-top: 12px;
    position: static;
    display: none;
    box-shadow: none;
  }

  .navigation-submenu__sections {
    flex-wrap: wrap;
  }

  .navigation-submenu__section {
    flex-basis: 100%;
  }

  .navigation-submenu__section-title {
    margin-left: 0;
  }

  .navigation-submenu__item {
    margin-bottom: 6px;
  }
}

@media (max-width: 960px) {
  .header__buttons {
    margin-left: 20px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: var(--header-height-mobile);
  }

  header {
    min-width: 360px;
  }

  .header__container {
    padding: 20px 20px 10px;
  }

  .header__buttons {
    display: none;
  }

  .header__menu__toggler {
    top: 26px;
    right: 26px;
  }

  header.opened .header__container {
    flex-direction: column;
    height: 100%;
    padding-bottom: 0;
  }

  header.opened .header__container,
  header.opened .header__right {
    flex-direction: column;
  }

  header.opened .header__left {
    width: 100%;
  }

  header.opened .header__right {
    width: 100%;
    flex-direction: column;
    flex: 1;
  }

  header.opened .navigation {
    position: static;
    padding: 32px 12px 0;
    flex: 1;
  }

  header.opened .header__buttons {
    display: flex;
    width: 100%;
    padding: 20px 0;
    position: sticky;
    bottom: 0;
    left: 0;
    margin: 0;
    background: #FFF;
    animation: 0.5s fadeInUp;
  }
}

@media (max-width: 540px) {
  .navigation-submenu__item {
    padding: 12px 0;
  }
}

@media (max-width: 380px) {
  header.opened .navigation {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ======= END HEADER ======= */

@media (max-width: 849px) {
  .ready-smarter.section--full-highlighted::before {
    height: 90%;
  }

  .ready-smarter__wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 549px) {
  .works-well-block__company-list {
    justify-content: center;
  }

  .works-well-block__company-list__item {
    margin: 0 8px 20px 8px;
  }

  .works-well-block__company-list__break {
    display: none;
  }

  .what-achieve {
    line-height: 42px;
  }
}

.zapp-top-badge-partner {
  width: 115px;
  position: absolute;
  top: -40px;
  left: 170px;
}

header.opened .zapp-top-badge-partner {
  display: none;
}

/* zapp-platforms */
.zapp-platforms {
  width: 100%;
  max-width: 1620px;
  height: 1065px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 50px;
  margin: 0 auto;
  background: url(../images/zapp/apps/apps-collage-l.png) no-repeat center center;
  background-size: 1620px 1065px;
}

.zapp-platforms h3 {
  max-width: 880px;
  text-align: center;
  margin: 100px auto 0;
  font-size: 36px;
  line-height: 1.44em;
}

.zapp-platforms__link {
  color: #2F2F6B;
  white-space: nowrap;
  text-decoration: underline;
}

.zapp-platforms__link:hover {
  text-decoration: none;
}

@media (max-width: 1680px) {
  .zapp-platforms h3 {
    font-size: 32px;
  }
}

@media (max-width: 1300px) {
  .zapp-top-badge-partner {
    width: 100px;
    left: 140px;
  }
}

@media (max-width: 1280px) {
  .zapp-platforms {
    height: 1288px;
    background: url(../images/zapp/apps/apps-collage-m.png) no-repeat center center;
    background-size: 1211px 1288px;
  }

  .zapp-platforms h3 {
    margin-top: 0;
  }

  .common-review {
    max-width: 460px;
  }
}

@media (max-width: 1140px) {
  .zapp-top-badge-partner {
    display: none;
  }
}

@media (max-width: 600px) {
  footer {
    margin-top: 60px;
    border-top: 0;
  }

  .footer__columns {
    flex-wrap: wrap;
    padding: 0;
  }

  .footer__column {
    width: 100%;
    margin-top: 35px;
  }

  .footer__column-title {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer__links li {
    text-align: center;
  }
  
  .footer__info-row {
    flex-wrap: wrap;
  }

  .footer__copyright {
    width: 100%;
    text-align: center;
    order: 2;
  }

  .footer__privacy-policy {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .common-review__text {
    font-weight: 400;
  }
}

@media (max-width: 480px) {
  .zapp-platforms h3 {
    padding-top: 30px;
    font-size: 25px;
  }
}

@media (max-width: 395px) {
  .zapp-platforms {
    height: 1160px;
    background: url(../images/zapp/apps/apps-collage-s.png) no-repeat center center;
    background-size: 375px 1160px;
  }
}