@font-face {
  font-family: "Montserrat-Regular";
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-ExtraLight";
  src: url("/fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  height: 100%;
}

body {
  background: #272730 0% 0% no-repeat padding-box;
  min-height: 100%;
}

.separated-block {
  display: flex;
  flex-direction: column;
}
.main-header {
  font: normal normal normal 25px "Montserrat-Medium", sans-serif;
  text-align: center;
}

.common-header {
  font: normal normal normal 25px "Montserrat-Medium", sans-serif;
  color: #FFF;
  position: relative;
}
.common-header--underlined:after {
  content: "";
  background: #5ECFB8;
  height: 3px;
  margin-top: 10px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  position: absolute;
  bottom: -12px;
}
.common-header--underlined-desktop:after {
  display: none;
}
.common-header--underlined-mobile:after {
  content: "";
  background: #5ECFB8;
  height: 3px;
  margin-top: 10px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  position: absolute;
  bottom: -12px;
}
.common-header--behind-text:before {
  content: attr(data-text);
  font-size: 60px;
  position: absolute;
  font-family: "Montserrat-Bold", sans-serif;
  color: #2F2F3A;
  left: 50%;
  top: -26px;
  z-index: -1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.common-paragraph {
  font: 18px "Montserrat-Regular", sans-serif;
  line-height: 1.5555555556;
  color: rgba(255, 255, 255, 0.6);
}

.common-link {
  color: #5ECFB8;
  text-decoration: none;
  word-break: break-all;
}
.common-link:visited {
  color: #5ECFB8;
  text-decoration: none;
}

.hidden-mobile {
  display: none;
}

.desktop-only {
  display: none;
}

.hidden-desktop {
  display: initial;
}

.main {
  width: 100%;
  min-height: 100%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
.main__content {
  flex-grow: 1;
  max-width: 960px;
  width: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.google-button {
  background-repeat: no-repeat;
  overflow: hidden;
  max-height: 5rem;
  max-width: 18rem;
  margin: 0 auto;
}
.google-button__img {
  border-radius: 40px;
  background-color: #ffffff;
}

.green-button {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 22px 27px;
  background: #5ECFB8;
  color: #FFF;
  max-height: 5rem;
  max-width: 18rem;
  border-radius: 40px;
  font-size: 18px;
  font-family: "Montserrat-Semibold", sans-serif;
}

@media only screen and (min-width: 768px) {
  .main {
    min-width: 680px;
    width: 100%;
  }
  .hidden-mobile {
    display: block;
  }
  .main-header {
    font: normal normal normal 42px "Montserrat-Medium", sans-serif;
    text-align: center;
  }
  .common-header {
    font: normal normal normal 42px "Montserrat-Medium", sans-serif;
    color: #FFF;
    position: relative;
  }
  .common-header--underlined:after {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -24px;
  }
  .common-header--underlined-desktop:after {
    content: "";
    display: block;
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -24px;
  }
  .common-header--underlined-mobile:after {
    display: none;
  }
  .common-header--behind-text:before {
    content: attr(data-text);
    font-size: 120px;
    position: absolute;
    font-family: "Montserrat-Bold", sans-serif;
    color: #2F2F3A;
    left: 50%;
    top: -55px;
    z-index: -1;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  .common-paragraph {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) { /* Maybe here must be more 1220px;*/
  .common-header {
    font-family: "Montserrat-Medium", sans-serif;
    font-weight: normal;
  }
  .common-header--behind-text:before {
    display: initial;
    font-size: 147px;
    top: -80px;
  }
  .common-header--underlined:after {
    bottom: -20px;
  }
  .common-header--underlined-mobile:after {
    display: none;
  }
  .common-header--underlined-desktop:after {
    content: "";
    display: block;
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -12px;
  }
  .main {
    max-width: 1200px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  .hidden-mobile {
    display: initial;
  }
  h2.hidden-mobile {
    display: block;
  }
  .hidden-desktop {
    display: none;
  }
  .desktop-only {
    display: initial;
  }
  .separated-block {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .green-button {
    font-size: 14px;
    font-family: "Montserrat-SemiBold", sans-serif;
  }
  .google-button {
    margin: initial;
  }
}
body {
  padding-top: 48px;
}

.header {
  background: #33333D 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1019607843);
  height: 48px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 30;
}
.header__content {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.header__logo {
  width: 36px;
  height: 36px;
  margin-top: 6px;
  float: left;
}
.header__menu {
  float: right;
}

.header-menu {
  display: none;
  font: normal normal normal 18px "Montserrat-Regular", sans-serif;
  letter-spacing: 0px;
  color: #FFFFFF;
  list-style: none;
  height: 80px;
  justify-content: center;
  align-items: center;
}
.header-menu--visible {
  display: flex;
  flex-direction: column;
}
.header-menu__item {
  margin: 0 36px;
}
.header-menu__link, .header-menu__link:visited {
  text-decoration: none;
  color: #FFFFFF;
}

.link-size {
  display: block;
  height: 100%;
  width: 100%;
  padding: 18px 0 19px 20px;
}

.header__mobile-button {
  height: 12px;
  width: 18px;
  margin: 18px 32px;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  z-index: 20;
}

.header__close {
  height: 24px;
  width: 24px;
  margin: 12px 29px;
}
.header__close img {
  height: 24px;
  width: 24px;
}

.header__hamburger span {
  display: block;
  background: #FFF;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 0;
  top: 50%;
}
.header__hamburger:before, .header__hamburger:after {
  content: "";
  display: block;
  background: #FFF;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transform-origin: center center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.header__hamburger:before {
  top: 0;
  margin-top: 0px;
}
.header__hamburger:after {
  bottom: 0px;
  margin-bottom: 0px;
}

.mobile-menu-container {
  display: block;
  position: fixed;
  background: #272730;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
}

.mobile-menu__logo {
  margin-left: 32px;
}

.mobile-menu {
  margin-top: 70px;
  margin-left: 30px;
  list-style: none;
  overflow-y: auto;
  height: 250px;
  height: -webkit-calc(100% - 100px);
  height: -moz-calc(100% - 100px);
  height: calc(100% - 100px);
}
.mobile-menu__item {
  position: relative;
  color: #FFF;
  font-size: 25px;
  padding: 20px 0 20px 50px;
  font-family: "Montserrat-Medium", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__item--numbered:before {
  position: absolute;
  left: 0;
  content: attr(data-number);
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: -10px;
  top: 50%;
}
.mobile-menu__item--active {
  color: #5ECFB8;
}
.mobile-menu__link, .mobile-menu__link:visited {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__submenu-link {
  position: relative;
  color: #FFF;
  font-size: 25px;
  padding: 20px 0 20px 50px;
  font-family: "Montserrat-Medium", sans-serif;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.mobile-menu__submenu-link--numbered:before {
  position: absolute;
  left: 0;
  content: attr(data-number);
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: -10px;
  top: 35px;
}
.mobile-menu__submenu {
  display: none;
  position: relative;
  list-style: none;
  margin-top: 36px;
}
.mobile-menu__submenu--open {
  display: block;
}
.mobile-menu__submenu-item {
  margin: 0 0 34px 0;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__submenu-item:last-child {
  margin-bottom: 0;
}
.mobile-menu__submenu-item--active {
  color: #5ECFB8;
}

.mobile-twitter-link {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 0;
  right: 67px;
  margin: 14px 0;
}

@media only screen and (min-width: 768px) {
  body {
    padding-top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    width: 61px;
    height: 61px;
    margin: 8px 0 0 0;
  }
  .header__mobile-button {
    height: 25px;
    width: 38px;
    margin: 27px 47px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 20;
  }
  .header__close {
    height: 48px;
    width: 48px;
    margin: 18px 42px;
  }
  .header__close img {
    height: 48px;
    width: 48px;
  }
  .header__hamburger span {
    display: block;
    background: #FFF;
    width: 100%;
    height: 5px;
    margin-top: -1px;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .header__hamburger:before, .header__hamburger:after {
    content: "";
    display: block;
    background: #FFF;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }
  .header__hamburger:before {
    top: 0;
    margin-top: 0px;
  }
  .header__hamburger:after {
    bottom: -4px;
    margin-bottom: 0px;
  }
  .mobile-menu-container {
    display: block;
    position: fixed;
    background: #272730;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
  }
  .mobile-menu__logo {
    margin-left: 32px;
  }
  .mobile-menu {
    margin-top: 163px;
    margin-left: 70px;
    list-style: none;
    height: 620px;
    height: -webkit-calc(100% - 163px);
    height: -moz-calc(100% - 163px);
    height: calc(100% - 163px);
  }
  .mobile-menu__item {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 36px 0 36px 130px;
    font-family: "Montserrat-Medium", sans-serif;
  }
  .mobile-menu__item--numbered:before {
    font-size: 36px;
    font-family: "Montserrat-Regular", sans-serif;
    margin-top: -22px;
    top: 50%;
  }
  .mobile-menu__item--active {
    color: #5ECFB8;
  }
  .mobile-menu__link, .mobile-menu__link:visited {
    text-decoration: none;
    color: inherit;
  }
  .mobile-menu__submenu-link {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 36px 0 36px 130px;
    font-family: "Montserrat-Medium", sans-serif;
    cursor: pointer;
  }
  .mobile-menu__submenu-link--numbered:before {
    font-size: 36px;
    font-family: "Montserrat-Regular", sans-serif;
    margin-top: 5px;
  }
  .mobile-menu__submenu {
    display: none;
    position: relative;
    list-style: none;
    margin-top: 55px;
  }
  .mobile-menu__submenu--open {
    display: block;
  }
  .mobile-menu__submenu-item {
    margin: 0 0 55px 0;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.6);
  }
  .mobile-menu__submenu-item:last-child {
    margin-bottom: 0;
  }
  .mobile-menu__submenu-item--active {
    color: #5ECFB8;
  }
  .mobile-twitter-link {
    width: 37px;
    height: 37px;
    right: 111px;
    margin: 27px 0;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    padding-top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    width: 155px;
    height: 55px;
    margin: 12px 0 0 0;
  }
  .header__hamburger {
    display: none;
  }
  .header-menu {
    display: flex;
    flex-direction: row;
  }
  .header-menu__item {
    position: relative;
  }
  .header-menu__item--active:after {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120%;
    position: absolute;
    bottom: -10px;
  }
  .header-menu__submenu-link {
    margin: 0 36px;
    position: relative;
    cursor: pointer;
  }
  .header-menu__submenu-link:after {
    content: "";
    display: inline-block;
    top: 8px;
    position: absolute;
    right: -27px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: rgba(255, 255, 255, 0.6) transparent transparent transparent;
  }
  .header-menu__submenu-link--active:before {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120%;
    position: absolute;
    bottom: -10px;
  }
  .header-menu__submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    top: calc(100% + 39px);
    background-color: #33333D;
    border-radius: 5px;
    list-style: none;
  }
  .header-menu__submenu--open {
    display: block;
  }
  .header-menu__submenu-item {
    width: 170px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 18px;
  }
  .header-menu__submenu-item:last-child {
    border-bottom: none;
  }
  .header-menu__submenu-item--active {
    background: rgba(255, 255, 255, 0.05);
  }
  .mobile-menu-container {
    display: none;
  }
}
.footer {
  background: #33333D;
}
.footer__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 90px;
  padding: 20px 0;
}
.footer__menu {
  font-size: 14px;
  font-family: "Montserrat-Regular", sans-serif;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  display: block;
  margin-top: 15px;
  font-size: 12px;
  font-family: "Montserrat-Regular", sans-serif;
}

.bottom-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: rgba(94, 207, 184, 0.6);
  font: normal normal normal 14px "Montserrat-Regular", sans-serif;
  max-width: 445px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-menu__item {
  margin: 0 15px;
}
.bottom-menu__item:last-child {
  margin-top: 15px;
}
.bottom-menu__link, .bottom-menu__link:visited {
  color: rgba(94, 207, 184, 0.6);
  text-decoration: none;
}
.bottom-menu__link:hover {
  color: rgb(94, 207, 184);
}

@media only screen and (min-width: 768px) {
  .footer__content {
    min-height: 70px;
    padding: 26px 30px;
  }
  .footer__menu {
    float: left;
    max-width: initial;
  }
  .footer__copyright {
    float: right;
    margin-top: initial;
  }
  .bottom-menu {
    flex-wrap: nowrap;
    max-width: initial;
    margin-left: initial;
    margin-right: initial;
  }
  .bottom-menu__item:first-child {
    margin-left: 0;
  }
  .bottom-menu__item--first {
    order: 1;
  }
  .bottom-menu__item--second {
    order: 2;
  }
  .bottom-menu__item--twitter {
    order: 4;
  }
  .bottom-menu__item--last {
    order: 3;
  }
  .bottom-menu__item:last-child {
    margin-top: 0px;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1220px) {
  .footer__content {
    max-width: 1200px;
    width: 100%;
    min-height: 70px;
    padding: 26px 0;
  }
  .footer__menu {
    float: left;
    font-size: 12px;
    max-width: initial;
  }
  .footer__copyright {
    float: right;
    margin-top: initial;
  }
  .bottom-menu {
    flex-wrap: nowrap;
  }
  .bottom-menu__item:last-child {
    margin-top: 0px;
    margin-left: 15px;
  }
}
.main-cover {
  margin-top: 41px;
}

.signal-icon {
  width: 245px;
  margin: auto;
  display: block;
}

.signal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #00A7E7;
  width: 270px;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 16px;
  border: 2px solid #00A7E7;
  border-radius: 200px;
  height: 60px;
  margin: 40px auto;
}

.chat {
  padding-bottom: 30px;
}
.chat__sub-header {
  margin-top: 40px;
  margin-bottom: 30px;
}
.chat__paragraph {
  margin-bottom: 20px;
}

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

.content-item__list {
  margin-left: 20px;
}

@media only screen and (min-width: 768px) {
  .signal-icon {
    width: 302px;
  }
  .chat {
    padding-bottom: 75px;
  }
  .chat__main-header {
    margin-top: 65px;
  }
  .common-header {
    font-size: 24px;
    font-family: "Montserrat-SemiBold", sans-serif;
  }
}
@media only screen and (min-width: 1200px) {
  .main-cover {
    margin-top: 87px;
  }
  .chat {
    max-width: 913px;
    padding-bottom: 75px;
  }
  .chat__sub-header {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .chat__paragraph {
    margin-bottom: 20px;
  }
  .padding-bottom {
    padding-bottom: 30px;
  }
  .signal-btn {
    margin: 56px auto 66px;
  }
  .margin-top {
    margin-top: 102px;
  }
}

/*# sourceMappingURL=signal.css.map */
