@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Ubuntu:wght@300&display=block"); /*
* Header
*/
header a:visited {
  color: #fff;
}

.header {
  width: 100%;
  background-color: #327bba;
  position: relative;
}

.main-header .content {
  padding-top: 110px;
}

.search-header {
  padding-bottom: 60px;
  min-height: 252px;
}
.search-header .content {
  padding-top: 120px;
}

/*
* Panel
*/
.panel-top {
  transition: background-color 0.5s ease, top 0.5s ease;
  min-height: 72px;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #327bba;
}
.panel-top.fixed {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: background-color 0.5s ease, top 0.5s ease;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}
.panel-top.fixed .panel__logo svg path {
  fill: #2F363F;
}
.panel-top.fixed .panel .menu-main > a {
  display: flex;
}
.panel-top.fixed .panel .menu-main li.dropdown svg path {
  fill: #2F363F;
}
.panel-top.fixed .panel .menu-main a {
  color: #2F363F;
}
.panel-top.fixed .panel .menu-main li:hover::after {
  background-color: #2F363F;
}
.panel-top.fixed .panel .menu-main .features > .sub-menu a,
.panel-top.fixed .panel .menu-main .integration > .sub-menu a {
  color: #333;
}
.panel-top.fixed .panel .menu-main .features > .sub-menu a:hover,
.panel-top.fixed .panel .menu-main .integration > .sub-menu a:hover {
  color: #327bba;
}

.panel-top.fixed .panel .panel__sign a {
  color: #2F363F;
}
.panel-top.fixed .panel .signup a {
  /*border-color: #fd9a1e;
  background-color: #fd9a1e;*/
  color: #fff;
}

.panel-top.fixed .panel .signin:hover ~ li a {
  border-color: transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background-color: transparent;
  color: #2f363f;
}
.panel-top.fixed .panel .signin a:hover {
  border-color: #067be0;
  background-color: #067be0;
  color: #fff;
}
.panel-top.fixed .panel__mobile .btn-burger span {
  background-color: #327bba;
}

.panel {
  width: 100%;
  min-height: 72px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel__logo {
  max-width: 88px;
  text-decoration: none;
  position: relative;
  z-index: 99999999;
  display: inline-block;
}
.panel__logo svg path {
  transition: fill 0.5s ease;
}
.panel__nav {
  display: none;
}
.panel__mobile {
  display: flex;
  min-height: 44px;
  align-items: center;
}
.panel__mobile .btn-burger {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  outline: none;
  position: relative;
  z-index: 99999999;
}
.panel__mobile .btn-burger span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #FFFFFF;
  transition: background-color 0.5s ease;
  position: relative;
  transition: top 0.5s ease, transform 0.5s ease;
}
.panel__mobile .btn-burger span:nth-child(2) {
  margin: 5px 0;
  /*opacity: 0;*/
}
.panel__mobile .btn-burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.panel__mobile .btn-burger.active span:nth-child(2) {
  opacity: 0;
}
.panel__mobile .btn-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -4px;
}
@media only screen and (min-width: 992px) {
  .panel__mobile {
    display: none;
  }
  .panel__nav {
    margin-left: 30px;
    display: flex;
  }
}
@media only screen and (min-width: 1200px) {
  .panel__nav {
    margin-left: 140px;
  }
}

@keyframes menuBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.menu-main {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-main > a {
  display: flex;
}
.menu-main > li {
  margin-right: 15px;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.menu-main > li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.menu-main > li:hover::after {
  opacity: 0.6;
}
.menu-main .dropdown {
  position: relative;
}
.menu-main .dropdown > .sub-menu {
  min-width: 200px;
  position: absolute;
  left: -100%;
  display: none;
  top: 40px;
  background-color: #FFFFFF;
  padding: 1.25em 2em;
  box-shadow: 0px 8px 40px rgba(50, 123, 186, 0.16), 0px 4px 4px rgba(50, 123, 186, 0.08);
  z-index: 99999999;
  border-radius: 2px;
}
.menu-main .dropdown > .sub-menu li {
  display: block;
  margin-right: 0;
  min-height: auto;
}
.menu-main .dropdown > .sub-menu a {
  color: #327bba;
  display: block;
  text-decoration: none;
}
.menu-main .dropdown:hover::after {
  opacity: 0.6;
}
.menu-main .dropdown:hover > .sub-menu {
  display: block;
  opacity: 0;
  animation: menuBottom 0.7s ease forwards;
}
.menu-main li {
  сursor: pointer;
}
.menu-main li .carret {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 8px;
  margin-left: 3px;
}
.menu-main li:hover svg {
  opacity: 0.6;
}
.menu-main li:hover > a {
  opacity: 0.6;
}
.menu-main a {
  letter-spacing: 0.02px;
  display: flex;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.5s ease, color 0.5s ease;
}
.menu-main li .sub-menu li:hover a {
  opacity: 1;
}
.menu-main .features > .sub-menu li {
  margin-bottom: 5px;
}
.menu-main .features > .sub-menu a {
  color: #333;
}
.menu-main .features > .sub-menu a:hover {
  color: #327bba;
}
.menu-main .integration > .sub-menu li {
  margin-bottom: 5px;
}
.menu-main .demos > .sub-menu {
  margin: 0;
  left: -280px;
  list-style: none;
  display: none;
  min-width: 500px;
}
.menu-main .demos > .sub-menu li {
  min-width: 180px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu-main .demos > .sub-menu li:last-child {
  margin-right: 0;
}
.menu-main .demos > .sub-menu a {
  display: block;
  margin-bottom: 10px;
}
.menu-main .demos > .sub-menu .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-main .demos > .sub-menu .sub-menu a {
  color: #333;
}
.menu-main .demos > .sub-menu .sub-menu a:hover {
  color: #327bba;
}
.menu-main .demos:hover > .sub-menu {
  display: flex;
}
.menu-main .demos:hover > .sub-menu .sub-menu {
  display: block;
}
.menu-main .integration > .sub-menu {
  margin: 0;
  left: -160px;
  list-style: none;
  display: none;
  min-width: 450px;
  justify-content: space-between;
}
.menu-main .integration > .sub-menu > li > a, .menu-main .integration > .sub-menu > li > a:hover {
  opacity: 0 !important;
  height: 0;
}
.menu-main .integration > .sub-menu a {
  color: #333;
}
.menu-main .integration > .sub-menu a:hover {
  color: #327bba;
}
.menu-main .integration:hover > .sub-menu {
  display: flex;
}
.menu-main .integration:hover > .sub-menu .sub-menu {
  display: block;
}
.menu-main .integration > .sub-menu .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-main .integration > .sub-menu .sub-menu a:hover {
  color: #327bba;
}
.menu-main .helper > .sub-menu {
  margin: 0;
  left: -160px;
  list-style: none;
  display: none;
  min-width: 450px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.menu-main .helper > .sub-menu .fullwidth {
  width: 100%;
  margin-bottom: 20px;
}
.menu-main .helper > .sub-menu .fullwidth .sub-menu a {
  color: #333;
}
.menu-main .helper > .sub-menu .halfwidth {
  width: 50%;
}
.menu-main .helper > .sub-menu .halfwidth > a {
  margin-bottom: 10px;
}
.menu-main .helper > .sub-menu .halfwidth .sub-menu a {
  color: #333;
}
.menu-main .helper:hover > .sub-menu {
  display: flex;
}
.menu-main .helper:hover > .sub-menu .sub-menu {
  display: block;
}
.menu-main .helper > .sub-menu .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-main .helper > .sub-menu .sub-menu a:hover {
  color: #327bba;
}
@media only screen and (min-width: 1200px) {
  .menu-main li {
    margin-right: 28px;
  }
}

.panel__sign {
  display: none;
  align-items: center;
  min-height: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.panel__sign .btn {
  padding: 0;
  font-size: inherit;
}
.panel__sign a {
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  transition: color 0.5s ease;
}
.panel__sign .btn a {
  border-radius: 100px;
  border: 1px solid transparent;
  /*margin: 0 3px;*/
}
.panel__sign .signin a {
  padding: 5px 24px;
  transition: border-color 0.3s ease;
}
.panel__sign .signin a:hover {
  border-color: #FFFFFF;
}
.panel__sign .signin:hover ~ li a {
  border-color: transparent;
  transition: border-color 0.3s ease;
}
.panel__sign .signup a {
  padding: 5px 30px;
  border-color: #FFFFFF;
  transition: border-color 0.3s ease;
}
@media only screen and (min-width: 992px) {
  .panel__sign {
    display: flex;
  }
}

/*
* Mobile Menu
*/
@keyframes mobilemenu {
  0% {
    right: -100%;
    width: 100%;
  }
  100% {
    right: 0;
    width: 100%;
  }
}
.mobile_menu_container {
  width: 100%;
  height: calc(100vh - 72px);
  overflow-y: scroll;
  padding: 0 30px;
}

.mobile_menu_bl .mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.mobile_menu_bl .mobile-menu li {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 246, 249, 0.2);
}

.mobile_menu_bl {
  position: fixed;
  right: -100%;
  display: none;
  width: 100%;
  min-height: 100vh;
  background-color: #327bba;
  z-index: 9998;
  padding-top: 90px;
}
.mobile_menu_bl .mobile-menu {
  margin: 0;
  width: 100%;
  min-height: calc(100% - 72px);
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mobile_menu_bl .mobile-menu li {
  display: inline-block;
}
.mobile_menu_bl .mobile-menu a {
  color: #FFFFFF;
  text-decoration: none;
}
.mobile_menu_bl.fixed {
  position: fixed;
  top: 0px;
  padding-top: 90px;
}
.mobile_menu_bl.active {
  display: flex;
  animation: mobilemenu 0.3s linear forwards;
}
@media only screen and (min-width: 360px) and (min-height: 400px) {
  .mobile_menu_bl .mobile-menu li {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 992px) {
  .mobile_menu_bl {
    display: none;
  }
  .mobile_menu_bl.active {
    display: none;
  }
}

/*
* Awesome desigin for canceled delete class awesome-helps
*/
.awesome-helps .content.fixed {
  position: relative;
  top: 0;
}
@media only screen and (min-width: 1200px) {
  .awesome-helps .content h1 {
    line-height: 1.25;
    margin-top: 10px;
  }
  .awesome-helps .content .descr {
    line-height: 1;
    margin-bottom: 40px;
  }
  .awesome-helps .content.fixed {
    position: relative;
    top: 0;
  }
  .awesome-helps .helps {
    padding: 0;
    position: relative;
  }
  .awesome-helps .helps .container.wide {
    position: relative;
    top: -80px;
  }
}

/*
* Footer
*/
.main-footer {
  padding: 60px 0;
  background-color: #F5F6F9;
}
@media only screen and (min-width: 768px) {
  .main-footer {
    padding: 80px 0;
  }
}

.footer_wr {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer_wr .success {
  color: #327bba;
  display: inline-block;
  margin: 10px 0;
}
.footer_wr .error {
  color: red;
  display: inline-block;
  margin: 10px 0;
}
@media only screen and (min-width: 992px) {
  .footer_wr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.widgets {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.widgets__item {
  width: 100%;
  margin-bottom: 40px;
}
.widgets__item:last-child {
  margin-bottom: 0;
}
.widgets__title {
  font-weight: bold;
  line-height: 24px;
  font-size: 18px;
  color: #6c7683;
  margin-bottom: 30px;
}
.widgets__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widgets__list li {
  margin-bottom: 10px;
}
.widgets__list a {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  font-size: 18px;
  color: #6c7683;
  text-decoration: none;
  transition: color 0.5s ease;
}
.widgets__list a:hover {
  color: #327bba;
}
.widgets__list a:visited {
  color: #6c7683;
}
.widgets__list-icon {
  width: 15px;
}
.widgets .social a {
  display: flex;
}
.widgets .social svg {
  margin-right: 15px;
}
@media only screen and (min-width: 480px) {
  .widgets {
    justify-content: center;
  }
  .widgets__item {
    width: 40%;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .widgets__item {
    width: 50%;
    padding-left: 80px;
    margin-bottom: 40px;
  }
  .widgets__list a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .widgets {
    margin-bottom: 0;
  }
  .widgets__item {
    width: 25%;
    padding-left: 0;
  }
  .widgets__list a {
    font-size: 14px;
  }
}

.subscribe {
  width: 280px;
}
.subscribe__form {
  width: 280px;
  margin-bottom: 15px;
}
.subscribe__title {
  font-weight: 600;
  font-size: 16px;
  color: #6c7683;
  margin-bottom: 15px;
}
.subscribe .input_field {
  max-width: 384px;
  position: relative;
  height: 48px;
}
.subscribe__email {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 100px;
  outline: none;
  box-shadow: 16px 16px 64px rgba(50, 123, 186, 0.16), 4px 4px 16px rgba(50, 123, 186, 0.08);
  transition: border-color 0.5s ease;
  font-size: 16px;
  color: #6c7683;
  font-family: 16px/26px "Source Sans Pro", sans-serif;
  padding-left: 25px;
}
.subscribe__email:focus {
  border: 1px solid #327bba;
}
.subscribe__email::placeholder {
  color: #6c7683;
}
.subscribe__submit {
  display: block;
  right: 3px;
  padding: 6px 25px;
  color: #FFFFFF;
  border: 1px solid transparent;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: #327bba;
  border-radius: 100px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}
.subscribe__submit:hover {
  border: 1px solid #327bba;
  background-color: #FFFFFF;
  color: #327bba;
}
@media only screen and (min-width: 768px) {
  .subscribe {
    width: 384px;
  }
  .subscribe__form {
    width: 384px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 826px) {

}
.home-page__row-first-image {
  max-width: 592px;
}

.careers-page__intro-title {
  font-size: 72px !important;
  line-height: 72px !important;
  font-weight: 700 !important;
  margin-bottom: 40px !important;
  color: #1b1d1f !important;
}

.text-page .careers-page__intro-title,
.demos-page__intro-text {
  text-align: center;
}

.text-page .demos-page__intro-text {
  margin-bottom: 30px;
  font-size: 24px;
  color: #1b1d1f;
}

.text-page .careers-text {
  margin: 17px 0px 17px 0px;
}

.text-page .careers-page__row-title {
  font-weight: 600 !important;
  color: #1b1d1f !important;
}

.text-page .careers-text-role {
  font-size: 45px !important;
  font-weight: 600 !important;
  color: #1b1d1f !important;
}

.text-page .careers-text-desc {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #1b1d1f !important;
}

.text-page li::marker {
  color: #1b1d1f !important;
}

.careers-page__intro-heading {
  font-weight: 600;
}

#wpcf7-f12479-o1 > form > p:nth-child(7) > input {
  cursor: pointer;
}