/* general */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

body.fixed {
  width: 100vw;
  position: fixed;
}

a {
  color: var(--white);
  text-decoration: none;
}
a.a_swal {
  color: #35a0ee;
  text-decoration: underline;
}

.badges-wrapper {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--light-blue-additional);
}

/* skeleton */
@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.skeleton-bar {
  height: auto;
  position: relative;
  overflow: hidden;
  color: var(--light-gray-border) !important;
  background-color: var(--light-gray-border) !important;
  background-image: none !important;
  border-radius: 5px;
}

.skeleton-bar::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, rgba(255, 255, 255, 0)),
    color-stop(20%, rgba(255, 255, 255, 0.2)),
    color-stop(60%, rgba(255, 255, 255, 0.5)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  -webkit-animation: shimmer 2s infinite;
  animation: shimmer 2s infinite;
  content: "";
}

.skeleton-bar * {
  visibility: hidden;
}

/* colors */
:root {
  --orange: #f37321;
  --light-orange: #ff8536;
  --light-orange-background: #ffe9ce;
  --white: #fff;
  --black: #000;
  --text-gray: #4f4f4f;
  --gray: #828282;
  --light-gray: #bdbdbd;
  --light-gray-border: #e0e0e0;
  --blue: #35a0ee;
  --light-blue: #e9f5ff;
  --light-blue-additional: #d4e9f8;
  --header-gradient-blue: linear-gradient(35deg, #35a0ee 0%, #2168f3 100%);
  --background-gradient-blue: linear-gradient(
    102.57deg,
    #35a0ee 0%,
    #2168f3 100%
  );
  --dark-blue: #2f80ed;
  --purple: #9b51e0;
  --red: #eb5757;
  --green: #27ae60;
}

/* typography */
@font-face {
  font-family: "Museo";
  src: url("/static/v2/assets/fonts/MuseoSansCyrl_0.woff") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/v2/assets/fonts/MuseoSansCyrl_2.woff") format("opentype");
  font-weight: 700;
  font-display: swap;
}

body {
  font-family: "Museo", sans-serif;
  width: 100%;
  height: auto;
}

input,
textarea {
  font-family: "Museo", sans-serif;
  font-size: 14px;
}

.typography-menu {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}

.typography-h1 {
  margin: 0;
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  letter-spacing: -0.02em;
}

.typography-h2 {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
}

.typography-h3 {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
}

.typography-h4 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.typography-h5 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.typography-body {
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
}

.typography-body-small {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
}

.typography-caption,
.typography-caption-bold {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}

.typography-caption-bold {
  font-weight: 700;
}

/* cookies */
.cookies {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
  background-color: var(--blue);
  z-index: 2;
}

.cookies > div {
  position: relative;
  margin: 0 auto;
  padding: 24px 48px;
  max-width: 1080px;
  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;
}

.cookies p {
  margin: 0 24px 0 0;
  text-align: center;
  color: var(--white);
}

.cookies-button {
  min-width: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  color: var(--white);
  background: var(--orange);
  border-radius: 4px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 58, 100, 0.24);
  box-shadow: 0px 10px 30px rgba(0, 58, 100, 0.24);
  cursor: pointer;
}

.alert-field-red-border {
  border-color: #ff0000 !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .cookies .typography-body {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .cookies p {
    margin: 0 0 16px 0;
  }
  .cookies > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* header */
@-webkit-keyframes arrow-up {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes arrow-up {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@-webkit-keyframes arrow-down {
  from {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes arrow-down {
  from {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes menu-open {
  from {
    width: 0;
  }
  to {
    width: 100vw;
  }
}

@keyframes menu-open {
  from {
    width: 0;
  }
  to {
    width: 100vw;
  }
}

@-webkit-keyframes menu-hidden {
  from {
    width: 100vw;
  }
  to {
    width: 0;
    display: none;
  }
}

@keyframes menu-hidden {
  from {
    width: 100vw;
  }
  to {
    width: 0;
    display: none;
  }
}

@-webkit-keyframes link-orange {
  from {
    color: var(--white);
  }
  to {
    color: var(--orange);
  }
}

@keyframes link-orange {
  from {
    color: var(--white);
  }
  to {
    color: var(--orange);
  }
}

@-webkit-keyframes link-white {
  from {
    color: var(--orange);
  }
  to {
    color: var(--white);
  }
}

@keyframes link-white {
  from {
    color: var(--orange);
  }
  to {
    color: var(--white);
  }
}

header,
header .container,
nav,
.menu,
.login-group,
.login-group-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header {
  top: 0;
  padding: 24px 0;
  position: fixed;
  width: 100vw;
  background: var(--header-gradient-blue);
  z-index: 10;
}

header .container {
  margin: 0 auto;
  max-width: 1244px;
  width: 100%;
}

nav {
  width: 100%;
  max-width: 660px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu {
  width: 100%;
  max-width: 440px;
  color: var(--white);
}

.login-group,
.login-group-mobile {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  padding-bottom: 8px;
  display: none;
  position: absolute;
  z-index: 2;
  background: transparent;
  -webkit-filter: drop-shadow(0px 20px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 20px 50px rgba(0, 58, 100, 0.24));
}

.login,
.login-mobile {
  margin-right: 40px;
  line-height: 44px;
}

.dropdown-content a,
.pricing a,
.login a,
.login-mobile a {
  padding: 4px 0 4px 0;
  width: 100%;
  color: var(--white);
  text-decoration: none;
}

.menu a:hover,
.login a:hover {
  -webkit-animation: link-orange 0.2s linear;
  animation: link-orange 0.2s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.menu a.animated,
.login a.animated {
  -webkit-animation: link-white 0.2s linear;
  animation: link-white 0.2s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.dropdown img {
  margin-left: 10px;
  margin-right: 4px;
  vertical-align: middle;
}

.arrow-down {
  -webkit-animation: arrow-down 0.1s linear;
  animation: arrow-down 0.1s linear;
}

.products {
  margin-left: 8px;
}

.products:hover .products-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--black);
  border-radius: 10px;
}

.products:hover .arrow {
  -webkit-animation: arrow-up 0.1s linear;
  animation: arrow-up 0.1s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes animated_bounce_btn_repeated {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  15% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  25% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  30% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  35% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  40% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  45% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  55% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  60% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  65% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  70% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  75% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  80% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  85% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  90% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  92% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  94% {
    -webkit-transform: rotate(6deg) scale(1.04);
    transform: rotate(6deg) scale(1.04);
  }
  96% {
    -webkit-transform: rotate(-6deg) scale(1.04);
    transform: rotate(-6deg) scale(1.04);
  }
  98% {
    -webkit-transform: rotate(6deg) scale(1.04);
    transform: rotate(6deg) scale(1.04);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}
@keyframes animated_bounce_btn_repeated {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  15% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  25% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  30% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  35% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  40% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  45% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  55% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  60% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  65% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  70% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  75% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  80% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  85% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  90% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  92% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  94% {
    -webkit-transform: rotate(6deg) scale(1.04);
    transform: rotate(6deg) scale(1.04);
  }
  96% {
    -webkit-transform: rotate(-6deg) scale(1.04);
    transform: rotate(-6deg) scale(1.04);
  }
  98% {
    -webkit-transform: rotate(6deg) scale(1.04);
    transform: rotate(6deg) scale(1.04);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

.try-for-free,
.try-for-free-mobile {
  min-width: 179px;
  padding: 0 16px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 0px 8px 30px rgb(0 58 100 / 45%);
  box-shadow: 0px 8px 30px rgb(0 58 100 / 45%);

  -webkit-animation-name: animated_bounce_btn_repeated;
  -webkit-animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
}

.try-for-free:hover,
.try-for-free-mobile:hover {
  border: 2px solid var(--light-orange);
  background-color: var(--light-orange);
}

.try-for-free img,
.try-for-free-mobile img {
  margin-left: 4px;
  width: 13px;
  height: 12px;
}

.hamburger {
  position: relative;
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  will-change: transform;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 3;
}

.hamburger span {
  position: absolute;
  margin: 4px auto;
  width: 30px;
  height: 4px;
  display: block;
  border-radius: 8px;
  background-color: var(--white);
  opacity: 1;
  will-change: transform;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  will-change: transform;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.hamburger.active span {
  background-color: var(--black);
}

.menu a {
  cursor: pointer;
}

.menu-mobile,
.menu-mobile.hidden {
  top: 0;
  left: 0;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  background-color: var(--white);
  -webkit-animation: menu-hidden 0.3s ease-in-out;
  animation: menu-hidden 0.3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 2;
}

.menu-mobile {
  -webkit-animation: menu-hidden 0.3s ease-in-out;
  animation: menu-hidden 0.3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.menu-mobile.hidden {
  display: none;
}

.menu-mobile.active {
  -webkit-animation: menu-open 0.3s ease-in-out;
  animation: menu-open 0.3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.menu-mobile.active {
  position: absolute;
  display: block;
  overflow-y: scroll;
}

.login-group-mobile {
  position: absolute;
  top: 50px;
  left: 96px;
}

.try-for-free-mobile {
  border: 1px solid var(--orange);
}

.login-mobile a {
  color: var(--black);
}

.try-for-free-mobile a {
  color: var(--orange);
}

.dropdown-mobile {
  top: 100px;
  margin-top: 10px;
  padding-bottom: 10px;
  left: 96px;
  position: relative;
  display: block;
  cursor: pointer;
}

.dropdown-content-mobile a {
  padding: 4px 0 4px 0;
  width: 100vw;
  display: block;
  color: var(--black);
  text-decoration: none;
}

.dropdown-content-mobile .typography-menu {
  line-height: 26px;
}

.products-content .products-group {
  margin-top: 21px;
  background-color: var(--white);
  border-radius: 10px 0 0 10px;
}

.products-content .solutions-group {
  margin-top: 21px;
  background-color: var(--light-blue);
  border-radius: 0 10px 10px 0;
}

.products-content .typography-h5 {
  margin: 22px auto 14px 24px;
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
}

.products-content .link {
  margin: 0;
  padding: 10px 10px 10px 24px;
  width: 268px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products-content .products-group .link:last-child {
  border-radius: 0 0 0 10px;
}

.products-content .link:hover {
  background-color: var(--light-blue-additional);
}

.products-content .link img {
  margin-left: 0;
  margin-right: 16px;
  width: 32px;
  height: 32px;
}

.dropdown-content .typography-body {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  line-height: 18px;
}

.dropdown-content .typography-body {
  font-weight: 700;
  font-size: 15px;
}

.dropdown-content .typography-body-small {
  color: var(--gray);
  font-size: 14px;
  line-height: 18px;
}

@media screen and (max-width: 1440px) {
  header {
    padding: 24px 96px;
    /* width: 100%; */
  }
}

@media screen and (max-width: 1280px) {
  .menu a {
    margin: auto 4px;
  }

  .try-for-free {
    padding: 0;
    min-width: 210px;
  }

  .login {
    margin: 0 16px;
  }
}

@media screen and (max-width: 1100px) {
  .menu,
  .login-group {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 24px 40px;
  }

  .login-group-mobile,
  .dropdown-mobile {
    left: 40px;
  }
}

@media screen and (max-width: 480px) {
  .login-group-mobile {
    top: 60px;
  }

  .dropdown-mobile {
    top: 160px;
    left: 24px;
  }

  .login-group-mobile {
    top: 50px;
    left: 0;
    width: inherit;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .login-mobile {
    margin-top: 8px;
    margin-right: 0;
    width: 240px;
    text-align: center;
  }
}

/* presentation */
.presentation {
  margin-top: 92px;
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--background-gradient-blue);
  overflow: hidden;
}

.bubbles {
  right: 0;
  bottom: 0;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .presentation {
    height: auto;
  }
}

/* sw-popup */
.sweet-alert .confirm {
  background-color: #f37321 !important;
}
.sweet-alert .confirm:hover {
  background-color: #ff8536 !important;
}
.sweet-alert .sa-button-container .confirm {
  background-color: #35a0ee !important;
}
.sweet-alert .sa-button-container .confirm:hover {
  background-color: #35a0eebf !important;
}
.popup-wrapper {
  position: fixed;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.sw-popup {
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 220px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100000000002;
  padding: 40px 30px 40px 30px;
  text-align: center;
}
.sw-popup-bottom {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sw-popup-bottom .btn_orange,
.sw-popup-bottom .btn_white_orange_border,
.sw-popup-bottom .btn_white {
  height: 40px;
}
.sw-popup-content {
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0 auto;
}
.sw-popup-content-sm {
  max-width: 400px;
}
.sw-popup-content-md {
  max-width: 520px;
}
.sw-popup-content-lg {
  max-width: 640px;
}
.sw-popup-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.sw-popup-d-flex-left {
  margin-right: 25px;
}
.sw-popup h5 {
  margin: 0px;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-bottom: 20px;
}
.sw-popup p {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-family: "Museo", sans-serif;
  color: #4b5056;
  margin-bottom: 15px;
}
.sw-popup a {
  color: #f57215;
  font-family: "Museo", sans-serif;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 15px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sw-popup a:hover {
  color: #fea006;
}
.sw-popup .fa-times {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #d0d0d0;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sw-popup .fa-times:hover {
  color: coral;
}
.sw-popup-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: "Museo", sans-serif;
  margin-bottom: 20px;
}
.sw-popup .sw-popup-input label {
  color: #333;
  font-size: 14px;
  margin-bottom: 2px;
  font-family: "Museo", sans-serif;
  opacity: 0.9;
}
.sw-popup .sw-popup-input input {
  height: 40px;
  width: -webkit-fill-available;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 16px;
  color: #333;
}
.sw-popup .alert-error {
  display: none;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  margin-bottom: 20px;
  padding-top: 5px;
  color: #ff0000;
  font-family: "Museo", sans-serif;
}
.sw-overlay {
  display: none;
  position: fixed;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.4);
}
.sw-popup-content-top {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
.sw-popup-content-top h6 {
  margin-bottom: 0px;
}
.sw-popup-content-top .fa-times {
  color: #c4c4c4;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sw-popup-content-top .fa-times:hover {
  color: coral;
}
.sw-popup-content-center {
  margin-bottom: 25px;
  padding: 10px 0;
}

.btn_white_orange_border,
.btn_white_green_border {
  cursor: pointer;
  height: 42px;
  border-radius: 5px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: #fff;
  border: 2px solid #f57215;
  color: #f57215 !important;
  text-decoration: none !important;
  margin: 0 auto;
  font-family: "Museo", sans-serif !important;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
}
.btn_white_orange_border .fa-arrow-right,
.btn_white_green_border .fa-arrow-right {
  font-size: 14px;
  margin-left: 8px;
}
.btn_white_green_border {
  border-color: #2ecc40 !important;
  color: #2ecc40 !important;
}
.btn_white_orange_border:hover {
  border-color: #35a0eebf;
  color: #35a0eebf !important;
}
.sw-popup-bottom .btn_orange,
.sw-popup-bottom .btn_white_orange_border,
.sw-popup-bottom .btn_white {
  height: 40px;
}
.thx_block .btn_white_orange_border {
  margin-bottom: 50px;
}
.thx_block .btn_white_orange_border i {
  margin-left: 12px;
  margin-top: 1px;
  font-size: 14px;
}
.sw-popup .fa-times {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #d0d0d0;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sw-popup .fa-times:hover {
  color: coral;
}

#error_message {
  margin: 16px 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: var(--red);
}

.lds-dual-ring-small-orange {
  width: 17px;
  height: 17px;
  margin: 0px auto;
}
.lds-dual-ring-small-orange:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin: 0px;
  border-radius: 50%;
  border: 2px solid #25a0ee;
  border-color: #35a0ee transparent #35a0ee transparent;
  -webkit-animation: lds-dual-ring 1s linear infinite;
  animation: lds-dual-ring 1s linear infinite;
}
.lds-dual-ring-small-white {
  width: 17px;
  height: 17px;
  margin: 0px auto;
}
.lds-dual-ring-small-white:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin: 0px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: lds-dual-ring 1s linear infinite;
  animation: lds-dual-ring 1s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lds-dual-ring {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto !important;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: static;
}

.lds-dual-ring:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0px;
  border-radius: 50%;
  border: 3px solid white;
  border-color: white transparent white transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
}

@media screen and (min-width: 769px) {
  .popup-wrapper {
    display: none !important;
  }
}

@media screen and (max-width: 680px) {
  .sw-popup {
    width: 70%;
  }
}

/* how-do-we-compare */
.how-do-we-compare {
  padding: 108px 54px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.how-do-we-compare .description {
  text-align: center;
}

.source-contact-data .description p {
  color: var(--gray);
}

.how-do-we-compare .data-coverage {
  margin: 24px auto;
  min-width: 664px;
  width: 664px;
}

.how-do-we-compare .comparison {
  margin-top: 24px;
  max-width: 1880px;
  width: 100%;
  -webkit-box-shadow: 0 0 50px 0 var(--blue);
  box-shadow: 0 0 50px 0 var(--blue);
  border-radius: 5px;
}

@media screen and (max-width: 1280px) {
  .how-do-we-compare video {
    min-width: 570px;
    width: 570px;
  }
}

@media screen and (max-width: 1024px) {
  .how-do-we-compare {
    padding: 84px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .how-do-we-compare .data-coverage {
    min-width: auto;
    width: 70%;
  }

  .how-do-we-compare .comparison {
    width: 90%;
  }

  .how-do-we-compare .description {
    margin: 20px auto 0 auto;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}

@media screen and (max-width: 767px) {
  .how-do-we-compare .mobile_version,
  .bubbles {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .how-do-we-compare .data-coverage {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .how-do-we-compare .comparison {
    min-width: auto;
  }
}

/* testimonials-full */
.testimonials-full {
  padding: 80px 20px 68px 20px;
  text-align: center;
  background-color: var(--light-blue);
}

.testimonials-full .items {
  margin: 53px auto 0 auto;
  width: 100%;
  max-width: 824px;
}

.testimonials-full .item {
  position: relative;
  margin-bottom: 32px;
  padding: 32px 32px 44px 32px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 5px 15px rgba(0, 58, 100, 0.08);
  box-shadow: 0px 5px 15px rgba(0, 58, 100, 0.08);
  border-radius: 8px;
}

.testimonials-full h2 {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.testimonials-full .typography-h4 {
  margin-bottom: 8px;
}

.testimonials-full .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonials-full .about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonials-full .about .avatar {
  margin-right: 24px;
}

.testimonials-full .quote-left {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 26px;
  height: 20px;
}

.testimonials-full .about .text {
  text-align: left;
  -ms-flex-item-align: center;
  align-self: center;
}

.testimonials-full .about .text img {
  max-height: 25px;
}

.testimonials-full .typography-body-small {
  color: var(--gray);
}

.testimonials-full .comment {
  margin: 24px 0 0 0;
  text-align: left;
}

@media screen and (max-width: 400px) {
  .testimonials-full .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .testimonials-full .about .text {
    margin-top: 16px;
    text-align: center;
  }
}

/* email */
@-webkit-keyframes glow {
  0% {
    color: var(--orange);
    background-color: #88b9ff;
  }
  50% {
    color: var(--white);
    background-color: var(--orange);
  }
  100% {
    color: var(--orange);
    background-color: #88b9ff;
  }
}
@keyframes glow {
  0% {
    color: var(--orange);
    background-color: #88b9ff;
  }
  50% {
    color: var(--white);
    background-color: var(--orange);
  }
  100% {
    color: var(--orange);
    background-color: #88b9ff;
  }
}

@-webkit-keyframes changeOpacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes changeOpacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.email {
  position: relative;
  padding: 48px 20px 68px 20px;
  background: var(--background-gradient-blue);
}
.email.email-heartbeat {
  padding: 68px 20px 100px 20px;
}

.email .content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
}

.email .logo {
  margin-bottom: 24px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    center no-repeat url("/static/v2/assets/images/logo-min.svg"),
    var(--black);
}

.email h3 {
  text-align: center;
}

.email .content .typography-body-small {
  margin-top: 16px;
  margin-bottom: 0;
}

.email .highlighted-text {
  margin: 8px auto 29px auto;
  width: 226px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--purple);
  border-radius: 4px;
}

.email form {
  width: 100%;
  max-width: 425px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.email .email-input {
  padding: 15px 16px;
  width: 240px;
  height: 18px;
  color: var(--gray);
  background-color: var(--white);
  border: none;
  border-radius: 4px;
}

.email .submit-button {
  padding: 0;
  width: 145px;
  height: 48px;
  color: var(--white);
  background-color: var(--orange);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.email .submit-button:hover {
  background-color: var(--light-orange);
}

.bubbles-email-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.bubbles-email-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.email .large-button {
  margin-top: 60px;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  border-radius: 4px;
  border: 2px solid var(--orange);
  -webkit-animation: glow 2.5s infinite ease-in-out;
  animation: glow 2.5s infinite ease-in-out;
  -webkit-box-shadow: 0px 8px 30px rgb(0 58 100 / 45%);
  box-shadow: 0px 8px 30px rgb(0 58 100 / 45%);
}

.large-button:hover {
  background: var(--light-orange);
}

.email .large-button img {
  margin-left: 4px;
  width: 13px;
  height: 12px;
  -webkit-animation: changeOpacity 4s infinite ease-in-out;
  animation: changeOpacity 4s infinite ease-in-out;
}

.email .large-button img:nth-child(1) {
  width: 24px;
  height: 24px;
}
.email .large-button img:nth-child(2),
.email .welcome-google-link-mobile.large-button img {
  width: 13px;
  height: 12px;
}

.email .large-button span {
  margin: 0 8px;
  text-align: center;
}

.email .welcome-link,
.email .welcome-link-mobile,
.email .welcome-google-link-mobile,
.heartbeat-link,
.heartbeat-link-mobile {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.email .welcome-link,
.email .heartbeat-link {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.email .welcome-link-mobile,
.email .heartbeat-link-mobile,
.email .welcome-google-link-mobile {
  margin-top: 27px;
  display: none;
}

/* .email .welcome-link, .email .welcome-link-mobile,
.heartbeat-link, .heartbeat-link-mobile {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
} */

/* .email .welcome-link-mobile, .email .heartbeat-link-mobile {
  margin-top: 27px;
  display: none;
} */

@media screen and (max-width: 1024px) {
  .email .bubbles-email-left,
  .email .bubbles-email-right {
    display: none;
  }
  .email.email-heartbeat {
    padding: 48px 20px 68px 20px;
  }
}

@media screen and (max-width: 768px) {
  .email .welcome-link,
  .email .heartbeat-link {
    display: none;
  }

  .email .welcome-link-mobile,
  .email .heartbeat-link-mobile,
  .email .welcome-google-link-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 480px) {
  .email form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .email .submit-button {
    margin-top: 8px;
    width: 272px;
  }
}

/* footer */
footer.blue {
  padding: 64px 96px;
  background-color: var(--light-blue);
}

footer.blue .container {
  margin: 0 auto;
  display: block;
  width: auto;
  max-width: 1248px;
}
footer.blue .container:not(:first-of-type) {
  margin-top: 60px;
}

footer.blue .secondary-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 16px;
}

footer.blue .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer.blue .title {
  margin-top: 0;
  margin-bottom: 15px;
}
footer.blue .contact_us_margin {
  margin-top: 15px;
}
footer.blue .item {
  margin-top: 14px;
  color: var(--gray);
  cursor: pointer;
}

footer.blue .item:hover {
  color: var(--orange);
  text-decoration: none !important;
}

footer.blue .social {
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer.blue .social a img {
  width: 24px;
  height: 24px;
}

footer.blue .copyright {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer.blue .copyright img {
  width: 120px;
  height: 19px;
}

footer.blue .copyright img {
  margin-right: 26px;
}

footer.blue .extension-image {
  padding: 4px 4px 0 4px;
  margin-top: 16px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  background-color: var(--blue);
  border-radius: 4px;
}

footer.blue .extension-image img {
  width: 170px;
  height: 37px;
}

@media screen and (max-width: 1024px) {
  footer.blue .secondary-menu {
    -ms-grid-columns: 1fr 20% 1fr 20% 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr 32px 170px;
  }
  footer.blue .secondary-menu > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer.blue .secondary-menu > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  footer.blue .secondary-menu > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  footer.blue .secondary-menu > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  footer.blue .secondary-menu > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  footer.blue .secondary-menu > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }

  footer.blue .copyright {
    margin: 40px auto 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  footer.blue .copyright img {
    height: 19px;
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  footer.blue {
    padding: 40px;
  }
}

@media screen and (max-width: 680px) {
  footer.blue .secondary-menu {
    -ms-grid-columns: 1fr 20% 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 32px 170px 32px 140px;
    grid-column-gap: 20%;
    grid-row-gap: 32px;
  }
  footer.blue .secondary-menu > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer.blue .secondary-menu > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  footer.blue .secondary-menu > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  footer.blue .secondary-menu > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  footer.blue .secondary-menu > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  footer.blue .secondary-menu > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  footer.blue .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  footer.blue .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 90%;
  }

  footer.blue .copyright img {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 525px) {
  footer.blue {
    padding: 20px;
  }

  footer.blue .social {
    width: 180px;
  }

  footer.blue .secondary-menu {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 32px 170px 32px 140px;
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }

  footer.blue .secondary-menu > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  footer.blue .secondary-menu > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  footer.blue .secondary-menu > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  footer.blue .secondary-menu > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  footer.blue .secondary-menu > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  footer.blue .secondary-menu > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
}

@media screen and (max-width: 385px) {
  footer.blue .secondary-menu {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: repeat(5, 1fr);
    grid-gap: 24px;
  }
}

/* welcome */
.welcome {
  margin: 0 auto;
  padding: 0 96px;
  max-width: 1248px;
  height: 80vh;
  min-height: 570px;
  position: relative;
  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;
  overflow: hidden;
  color: var(--white);
  z-index: 1;
}

.welcome.extension {
  min-height: 454px;
}

.welcome.file-upload {
  min-height: 444px;
}

.welcome.api {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  min-height: 468px;
}

.welcome.email-automation {
  min-height: 475px;
}

.welcome.fraud-prevention .description {
  max-width: 620px;
}

.welcome .description {
  margin-right: 20px;
  max-width: 610px;
  width: 100%;
}

.welcome .title {
  margin: 32px 0 32px 0;
  color: var(--white);
}

.welcome .typography-body {
  margin-top: 0;
  margin-bottom: 41px;
}

.welcome .typography-h3 {
  margin-bottom: 20px;
}

.welcome.solutions-pages .typography-body {
  margin-top: 0;
  margin-bottom: 24px;
}

.welcome .image-container {
  width: 100%;
  height: auto;
  max-width: 612px;
  max-height: 494px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.welcome.extension .image-container {
  width: 560px;
  background-image: url("/static/v2/assets/images/background-welcome-extension.svg");
  background-size: 318px 399px;
  background-repeat: no-repeat;
  background-position-x: center;
}

.welcome.file-upload .image-container {
  width: 568px;
  background-image: url("/static/v2/assets/images/background-welcome-file-upload.svg");
  background-size: 393px 399px;
  background-repeat: no-repeat;
  background-position-x: center;
}

.welcome.api .image-container {
  width: 544px;
  background-image: url("/static/v2/assets/images/background-welcome-file-upload.svg");
  background-size: 476px 488px;
  background-repeat: no-repeat;
  background-position-x: center;
}

.welcome.api .image-container video {
  margin-top: 40px;
  height: 470px;
  border-radius: 5px;
}

.welcome.extension .image-extension {
  margin-top: 32px;
  height: 399px;
  -webkit-filter: drop-shadow(0px 15px 30px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 15px 30px rgba(0, 58, 100, 0.24));
  border-radius: 5px;
}

.welcome.healthcare .image-container,
.welcome.sales .image-container,
.welcome.recruitment .image-container {
  width: 42vw;
  max-width: 556px;
  background-image: url("/static/v2/assets/images/background-welcome-file-upload.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}
.welcome.healthcare img.image-extension,
.welcome.healthcare video.image-extension {
  margin-top: 44px;
  width: 612px;
  height: auto;
}

.welcome.sales video,
.welcome.recruitment video {
  margin-top: 44px;
  height: 484px;
  border-radius: 8px;
}

.welcome.file-upload .image-file-upload {
  margin-top: 32px;
  height: 390px;
  -webkit-filter: drop-shadow(0px 15px 30px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 15px 30px rgba(0, 58, 100, 0.24));
  border-radius: 5px;
}

.welcome .welcome-link,
.welcome .welcome-link-mobile,
.welcome .welcome-google-link-mobile {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.welcome .welcome-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 8px 30px rgb(0 58 100 / 45%);
  box-shadow: 0px 8px 30px rgb(0 58 100 / 45%);
}

.welcome .welcome-link-mobile.large-button,
.welcome .welcome-google-link-mobile.large-button {
  display: none;
}

.welcome .large-button a {
  width: 100%;
}

.welcome .large-button {
  padding: 0 34px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  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;
  background: var(--orange);
  border-radius: 4px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 58, 100, 0.24);
  box-shadow: 0px 10px 30px rgba(0, 58, 100, 0.24);
  cursor: pointer;
}

.welcome .large-button img {
  margin-left: 4px;
}

.welcome .large-button a {
  margin: 0 8px;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.welcome .large-button span {
  margin: 0 8px;
  text-align: center;
}

.large-button:hover {
  background: var(--light-orange);
}

.welcome.solutions-pages .description {
  width: 100%;
  max-width: 664px;
}

.welcome.extension .description {
  max-width: 620px;
}

.welcome.solutions-pages .image-container {
  margin-right: 106px;
  max-width: 350px;
}

.email-button-circle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: center no-repeat url("/static/v2/assets/icons/email.svg")
    var(--orange);
  border-radius: 50%;
  display: none;
  z-index: 2;
}

.welcome.file-upload .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.welcome.file-upload .buttons .large-button:first-child {
  margin-right: 24px;
}

.welcome.healthcare .image-container {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.welcome.healthcare .description {
  margin: 0 0 0 54px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.welcome.sales .image-container,
.welcome.recruitment .image-container {
  margin-right: 56px;
  max-width: 580px;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.welcome.sales .description,
.welcome.recruitment .description {
  max-width: 530px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

/*

.welcome.sales .image-container {
  width: 664px;
}

.welcome.sales .swordfish-image {
  width: inherit;
  max-width: 560px;
  -webkit-filter: drop-shadow(0px 15px 50px rgba(0, 58, 100, 0.1));
  filter: drop-shadow(0px 15px 50px rgba(0, 58, 100, 0.1));
  border-radius: 5px;
}*/

@media screen and (min-width: 769px) {
  .email-button-circle {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .welcome .title {
    margin: 0px 0 20px 0;
  }

  .welcome .image-container img:not(.fraud-prevention img),
  .welcome.healthcare video.image-extension {
    width: 45vw;
  }

  .welcome .image-container .image-employee-directory,
  .welcome .image-container .about {
    width: 32vw;
  }

  .welcome.file-upload .image-container {
    width: 38vw;
    height: auto;
    background-size: 38vw auto;
  }

  .welcome .image-container .image-file-upload {
    width: 40vw;
    height: auto;
  }

  .welcome .description {
    margin-right: 20px;
    max-width: 35vw;
  }

  .welcome .description.about {
    margin-right: 20px;
    max-width: 44vw;
  }

  .welcome .description.data-quality {
    width: 54vw;
  }

  .welcome .image-container.data-quality {
    max-width: 40vw;
  }

  .welcome.solutions-pages .description {
    width: 100%;
    max-width: 664px;
  }

  .welcome.solutions-pages .image-container,
  .welcome.solutions-pages .image-container img {
    margin-right: 0;
  }

  .welcome.file-upload .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .welcome.file-upload .buttons .large-button:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .welcome.file-upload .buttons .large-button {
    width: -webkit-fill-available;
  }

  .welcome.api .typography-h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: -0.02em;
  }

  .welcome.sales .description {
    max-width: 500px;
  }

  .welcome.sales .image-container {
    width: 35vw;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .welcome.recruitment .image-container {
    margin-right: 56px;
    width: 37vw;
    height: auto;
  }
  .welcome.recruitment video {
    width: 40vw;
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .welcome.api,
  .welcome.email-automation {
    height: auto;
    padding: 20px 40px 20px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .welcome .title {
    text-align: center;
  }

  .welcome.fraud-prevention .title,
  .welcome.healthcare .title {
    text-align: left;
  }

  .welcome.healthcare .image-container {
    width: 43vw;
    min-width: auto;
    background-size: cover;
  }

  .welcome.healthcare.image-extension {
    margin-top: 36px;
    width: 63vw;
    max-width: unset;
  }

  .welcome.email-automation .image-container img {
    margin-top: 20px;
    width: 450px;
  }

  .welcome.api .image-container {
    margin-top: 20px;
  }

  .welcome.api .description,
  .welcome.email-automation .description {
    margin: 0;
    max-width: initial;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .welcome.api .typography-body,
  .welcome.email-automation .typography-body {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .typography-h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: -0.02em;
  }

  .typography-h2 {
    margin: 0;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.02em;
  }

  .typography-h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }

  .email h3 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.02em;
  }

  .welcome .typography-body {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
  }

  .welcome.solutions-pages .image-container,
  .welcome.solutions-pages .image-container img {
    margin-right: 0;
  }

  .welcome.extension .image-container {
    width: 300px;
    background-size: 300px 356px;
  }

  .welcome .image-container .image-extension {
    width: 300px;
    height: 342px;
  }

  .welcome.healthcare .image-container {
    background-size: cover;
  }

  .welcome.recruitment .image-container {
    margin-right: 40px;
  }

  .welcome.recruitment .description .title {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .welcome {
    height: auto;
    padding: 20px 40px 20px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .welcome.file-upload .typography-body {
    margin-bottom: 16px;
  }

  .welcome.file-upload .buttons {
    margin-bottom: 16px;
  }

  .welcome .welcome-link {
    display: none;
  }

  .welcome .welcome-link-mobile.large-button,
  .welcome .welcome-google-link-mobile.large-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .welcome.file-upload .buttons .large-button:first-child {
    margin: 0 auto 16px auto;
    max-width: 250px;
  }

  .welcome .welcome-link-mobile,
  .welcome .welcome-google-link-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .welcome .description,
  .welcome .description.about {
    margin: 0;
    max-width: 80%;
  }

  .welcome .title {
    margin-right: 0;
    text-align: center;
  }

  .welcome .typography-body {
    text-align: center;
  }

  .welcome .image-container {
    margin-top: 20px;
    min-width: 100%;
  }

  .welcome .image-container img,
  .welcome .image-container .file-upload {
    width: 70vw;
  }

  .welcome.solutions-pages .title {
    max-width: 100%;
    text-align: center;
  }

  .welcome .image-container .image-employee-directory {
    width: 45vw;
  }

  .welcome.extension .image-extension {
    margin-top: 28px;
  }

  .welcome .large-button {
    margin: 0 auto;
    max-width: 250px;
  }

  .watch-button {
    width: 100%;
    max-width: 250px;
  }

  .welcome.file-upload .image-container {
    margin-top: 0;
    width: 48vw;
    background-size: 48vw auto;
  }

  .welcome .image-container .image-file-upload {
    width: 50vw;
  }

  .welcome.healthcare .title {
    text-align: center;
  }

  .welcome.healthcare .image-container {
    width: 62vw;
    background-size: cover;
  }

  .welcome.healthcare .image-container img.image-extension,
  .welcome.healthcare .image-container video.image-extension {
    margin-top: 38px;
    width: 66vw;
  }

  .welcome.healthcare .image-container,
  .welcome.recruitment .image-container {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .welcome.healthcare .description,
  .welcome.recruitment .description {
    margin: 0;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .welcome.sales .image-container {
    width: 65vw;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .welcome.recruitment .image-container {
    margin-right: 0;
    background-size: contain;
  }

  .welcome.recruitment video {
    margin-top: 30px;
    width: 58vw;
  }

  .welcome.recruitment .description .title {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .welcome.api .image-container,
  .welcome.api .image-container video {
    width: 85vw;
    height: auto;
    background-position: top;
    background-size: 85vw auto;
  }

  .welcome.api .image-container video {
    margin-top: 32px;
    width: 90vw;
  }

  .welcome.file-upload .image-container {
    width: 78vw;
    background-size: 78vw auto;
  }

  .welcome .image-container .image-file-upload {
    width: 80vw;
  }

  .welcome.healthcare .image-container {
    width: 81vw;
    background-size: cover;
  }

  .welcome.healthcare .image-container img.image-extension,
  .welcome.healthcare .image-container video.image-extension {
    width: 90vw;
  }

  .welcome.sales .image-container {
    width: 90vw;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .welcome.recruitment video {
    margin-top: 30px;
    width: 80vw;
  }
}

@media screen and (max-width: 480px) {
  .welcome.email-automation .image-container img {
    width: 84vw;
  }

  .typography-body {
    font-size: 16px;
  }
}

@media screen and (max-width: 425px) {
  .welcome .description,
  .welcome .description.about,
  .welcome .description.data-quality {
    width: 100%;
    max-width: 100%;
  }

  .welcome.solutions-pages .image-container {
    margin-right: 0;
    max-width: 80%;
  }

  .welcome.solutions-pages .image-container img {
    width: 60vw;
  }

  .welcome.file-upload .image-container {
    margin-top: 20px;
    width: 300px;
    background-size: 268px 255px;
  }

  .welcome.file-upload .image-file-upload {
    margin-top: 28px;
    width: 300px;
    height: 265px;
  }

  .welcome.file-upload .typography-body {
    margin-bottom: 0;
  }

  .welcome.file-upload .buttons {
    margin-top: 16px;
  }

  .welcome.file-upload .buttons .large-button:first-child,
  .welcome.file-upload .buttons .large-button {
    width: -webkit-fill-available;
  }
}

@media screen and (max-width: 375px) {
  .welcome.healthcare .image-container img.image-extension,
  .welcome.healthcare .image-container video.image-extension {
    margin-top: 28px;
  }
}

/* advantages */
.advantages {
  padding: 80px 96px;
  margin: 0 auto;
  max-width: 1248px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.advantages > div {
  width: 100%;
  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;
}

.advantages.solutions-pages > div {
  margin-top: 56px;
}

.advantages.solutions-pages.recruitment > div video,
.advantages.solutions-pages.recruitment > div .swordfish-image,
.advantages.solutions-pages.sales > div video,
.advantages.solutions-pages.sales > div .swordfish-image {
  width: 40vw;
  max-width: 600px;
  border-radius: 8px;
}
.advantages.solutions-pages.sales > div .swordfish-image,
.advantages.solutions-pages.recruitment > div .swordfish-image {
  -webkit-box-shadow: 0px 20px 50px rgba(0, 58, 100, 0.24);
  box-shadow: 0px 20px 50px rgba(0, 58, 100, 0.24);
}

.advantages h3 {
  margin-top: 20px;
  margin-bottom: 24px;
}

.advantages h2 {
  margin-bottom: 32px;
}

.advantages h5 {
  color: var(--light-gray);
}

.advantages .typography-body {
  margin-bottom: 27px;
  color: var(--gray);
}

.advantages .description {
  margin-left: 24px;
  max-width: 506px;
}

.advantages a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.advantages .small-button {
  width: 128px;
  height: 48px;
  background: var(--orange);
  border-radius: 4px;
  -webkit-box-shadow: 0px 5px 30px rgb(0 58 100 / 45%);
  box-shadow: 0px 5px 30px rgb(0 58 100 / 45%);
}

.advantages .small-button img {
  width: 13px;
  height: 12px;
  margin: 0 0 0 4px;
}

.small-button:hover {
  background: var(--light-orange);
}

.advantages .advantages-1,
.advantages .advantages-2,
.advantages .advantages-3,
.advantages .advantages-4,
.advantages .advantages-5,
.advantages .advantages-6 {
  position: relative;
  z-index: 1;
}

.advantages .advantages-1 {
  width: 540px;
  -webkit-filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
}

.advantages .advantages-2 {
  width: 477px;
  -webkit-filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
}

.advantages .advantages-3 {
  width: 564px;
  margin-right: 106px;
  -webkit-filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  border-radius: 8px;
}

.advantages .advantages-4 {
  width: 364px;
  max-width: 364px;
  -webkit-filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
}

.advantages .advantages-5 {
  width: 606px;
  -webkit-filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
}

.advantages .advantages-6 {
  width: 574px;
  -webkit-filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
  filter: drop-shadow(0px 25px 50px rgba(0, 58, 100, 0.24));
}

.advantages.healthcare .image-container {
  position: relative;
  height: 543px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.advantages.healthcare > div {
  position: relative;
  height: 644px;
}

.advantages.healthcare .bubbles {
  position: absolute;
  display: block;
  top: 0;
  right: -222px;
  z-index: 0;
}

.advantages.healthcare .image-container .bubbles {
  left: -77px;
}

@media screen and (max-width: 1280px) {
  .advantages.healthcare .image-container {
    width: 40%;
  }
  .advantages.healthcare .advantages-1,
  .advantages.healthcare .advantages-2,
  .advantages.healthcare .advantages-3,
  .advantages.healthcare .advantages-4,
  .advantages.healthcare .advantages-5,
  .advantages.healthcare .advantages-6 {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .advantages.healthcare .bubbles {
    display: none;
  }

  .advantages.healthcare > div {
    height: 350px;
  }

  .advantages.healthcare .image-container {
    height: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .advantages {
    padding: 40px 20px;
  }

  .advantages > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .advantages h2 {
    text-align: center;
  }

  .advantages img:not(.large-button img) {
    margin-bottom: 8px;
    width: 50%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .advantages.healthcare > div {
    height: auto;
    margin-bottom: 16px;
  }

  .advantages .description {
    margin: 20px auto 0 auto;
    text-align: center;
    width: 100%;
    max-width: 506px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .advantages.sales img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .advantages.sales .description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .advantages.healthcare .image-container {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .advantages.healthcare .description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .advantages.healthcare .advantages-3 {
    margin-right: 0;
  }

  .small-button {
    margin: 0 auto;
  }

  .advantages.solutions-pages div {
    margin-top: 24px;
  }
}

@media screen and (max-width: 680px) {
  .advantages.healthcare img:not(.bubbles) {
    display: block;
    width: 100%;
  }

  .advantages.healthcare .image-container {
    width: 100%;
  }

  .advantages img:not(.large-button img),
  .advantages.solutions-pages > div video,
  .advantages.solutions-pages.recruitment > div video,
  .advantages.solutions-pages.recruitment > div .swordfish-image {
    width: 80vw;
  }
}

/* questions */
@-webkit-keyframes arrow-right {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@keyframes arrow-right {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@-webkit-keyframes arrow-down {
  from {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes arrow-down {
  from {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.questions {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.questions a {
  color: var(--orange);
}

.questions a:hover {
  text-decoration: underline;
}

.questions {
  position: relative;
  margin: 0 auto;
  padding: 80px 96px;
  max-width: 1248px;
  z-index: 1;
}

.questions .accordion {
  position: relative;
  margin: 57px auto 0 auto;
  width: 100%;
  background-color: transparent;
}

.questions .accordion .accordion-item {
  max-width: 546px;
}
.contact_us_margin {
  margin-top: 15px;
}
.questions h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.questions .accordion-question {
  margin-bottom: 8px;
  padding: 15px 16px 13px 24px;
  max-width: 506px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--light-blue);
  border-radius: 6px;
  cursor: pointer;
}

.questions .accordion-question.active {
  background-color: var(--blue);
}

.questions .icon {
  margin-left: 8px;
  min-width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: url("/static/v2/assets/icons/arrow-down-blue.svg"),
    var(--light-blue-additional);
  background-repeat: no-repeat;
  background-position: center;
}

.questions .accordion-question .icon.dynamic {
  -webkit-animation: arrow-down 0.1s linear;
  animation: arrow-down 0.1s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.questions .accordion-question.active .icon {
  -webkit-animation: arrow-right 0.1s linear;
  animation: arrow-right 0.1s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.questions .accordion-answer {
  position: absolute;
  right: 0;
  top: 0;
  width: 612px;
  height: 100%;
  display: none;
  background-color: transparent;
}

.accordion-answer-sticky {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.questions .accordion-answer.active {
  display: block;
}

.questions .typography-body {
  color: var(--gray);
}

@media screen and (max-width: 1380px) {
  .questions .accordion .accordion-item,
  .questions .accordion-question {
    max-width: 100%;
  }

  .questions .accordion-answer {
    margin: 24px 0;
    position: initial;
    width: 100%;
  }

  .questions .typography-body {
    margin: 16px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .questions {
    padding: 40px 20px;
  }

  .questions .accordion {
    margin: 24px auto 0 auto;
  }
}

.modal-signup-email {
  display: none;
  max-width: 540px;
  width: 100%;
  padding: 40px 40px 40px 40px;
  background: #fff;
  -webkit-box-shadow: 0px 20px 40px rgba(75, 80, 86, 0.2);
  box-shadow: 0px 20px 40px rgba(75, 80, 86, 0.2);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2001;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal-signup-email h5 {
  margin: 0 0 60px 0;
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  font-family: Museo, sans-serif;
  letter-spacing: 0.1px;
  color: #000;
}
.modal-signup-email input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15) !important;
  border-radius: 3px;
  padding-left: 20px;
  outline: none;
  font-family: Museo, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fcfcfc;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal-signup-email label {
  font-size: 13px;
}
.modal-signup-email input:focus {
  border-color: #f57215;
}
.modal-signup-email .form_reg_sign {
  margin-bottom: 30px;
}
.modal-signup-email .login_in_signup {
  position: static;
  text-align: center;
  margin: 0px !important;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  line-height: 22px;
}
#modal-signup-email-submit {
  font-weight: bold;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
  white-space: nowrap;
  padding-bottom: 2px;
  width: 100%;
  border-radius: 5px;
  height: 62px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f57215;
  border: 0px;
  color: #fff;
  -webkit-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-size: 20px;
  letter-spacing: 0.1px;
  /* box-shadow: 0 2px 0px rgb(0 0 0 / 0%), inset 0 0px 8px rgb(0 0 0 / 20%) !important; */
  -webkit-box-shadow:
    0 2px 4px 0 rgb(0 0 0 / 20%),
    inset 0 -5px 0 rgb(0 0 0 / 20%);
  box-shadow:
    0 2px 4px 0 rgb(0 0 0 / 20%),
    inset 0 -5px 0 rgb(0 0 0 / 20%);
  -webkit-transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  -o-transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal-signup-email {
    width: 90%;
    padding: 40px 25px;
  }
  .modal-signup-email h5 {
    font-size: 20px;
  }
}

/* style.css */

.modal-upgrade-plan,
.modal-block-starter {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2001;
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 50px 30px;
  text-align: center;
  -webkit-box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.3);
}
.modal-upgrade-plan-buttons {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal-upgrade-plan-buttons div {
  margin: 0 10px;
}

/* login-modal */

.forgot_pass_p {
  font-family: "Museo", sans-serif;
  font-size: 13px;
  margin-bottom: 25px;
  margin-top: 10px;
}

.label_signup_input {
  position: absolute;
  font-family: "Museo", sans-serif;
  font-size: 14px;
  color: #333;
  opacity: 0.9;
  top: -23px;
  left: 0;
}

.registration_form > div input:focus,
.login_form > div input:focus {
  border-color: #f57215;
}

.login_form .form_reg_sign > button {
  font-weight: bold;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
  white-space: nowrap;
  padding-bottom: 2px;
  width: 100%;
  border-radius: 5px;
  height: 62px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f57215;
  border: 0px;
  color: #fff;
  font-family: MuseoSansCyrl0, sans-serif;
  -webkit-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-size: 20px;
  letter-spacing: 0.1px;
  /* box-shadow: 0 2px 0px rgb(0 0 0 / 0%), inset 0 0px 8px rgb(0 0 0 / 20%) !important; */
  -webkit-box-shadow:
    0 2px 4px 0 rgb(0 0 0 / 20%),
    inset 0 -5px 0 rgb(0 0 0 / 20%);
  box-shadow:
    0 2px 4px 0 rgb(0 0 0 / 20%),
    inset 0 -5px 0 rgb(0 0 0 / 20%);
  -webkit-transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  -o-transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
  position: relative;
}

div.form_reg_sign > button {
  padding: 0px;
  font-family: "Museo", sans-serif;
  font-weight: 700;
  -webkit-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
  position: relative;
  -webkit-transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  -o-transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
}

.form_reg_sign > button {
  width: 100%;
  border-radius: 5px;
  height: 62px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f57215;
  border: 0px;
  color: #fff;
  font-family: MuseoSansCyrl0, sans-serif;
  -webkit-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-size: 20px;
  letter-spacing: 0.1px;
  /* box-shadow: 0 2px 0px rgb(0 0 0 / 0%), inset 0 0px 8px rgb(0 0 0 / 20%) !important; */
  -webkit-box-shadow:
    0 2px 4px 0 rgb(0 0 0 / 20%),
    inset 0 -5px 0 rgb(0 0 0 / 20%);
  box-shadow:
    0 2px 4px 0 rgb(0 0 0 / 20%),
    inset 0 -5px 0 rgb(0 0 0 / 20%);
  -webkit-transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    -webkit-box-shadow 0.02s linear;
  -o-transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  transition:
    all 0.2s ease,
    box-shadow 0.02s linear,
    -webkit-box-shadow 0.02s linear;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
}

.form_reg_sign > button {
  margin-bottom: 10px;
}

.login_form .form_reg_sign button:hover {
  background: #fea006;
}

.have_an_acc_block > h1 {
  text-align: center;
  font-family: "Museo", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #333;
  margin: 0px;
  line-height: 22px;
}

.have_an_acc_block > h1 > a {
  display: block;
  padding-top: 5px;
  color: #f57215;
  -webkit-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.form_reg_group {
  position: relative;
}

.form_reg_group label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
}

.login_in_signup a {
  color: #f57215;
}

.thanks_banner {
  margin-top: 110px;
  width: 100%;
  /*height: 60px;*/
  padding-top: 16px;
  padding-bottom: 15px;
  background: #93cf79;
  text-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.thanks_banner img {
  height: 26px;
  margin-right: 10px;
}

.thanks_banner p {
  /*padding-left: 10px;*/
  display: block;
  margin: 0px;
  font-family: MuseoSansCyrl1, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .thanks_banner {
    margin-top: 100px;
  }
}

.thx_block {
  padding: 30px 0px 40px 0px;
  background: #ffffff;
  text-align: center;
}
.thx_block h4 {
  font-family: MuseoSansCyrl1, sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  text-align: center;
  margin: 0 0 25px 0;
}
.thx_block .btn_white_orange_border {
  margin-bottom: 50px;
}
.thx_block .btn_white_orange_border i {
  margin-left: 12px;
  margin-top: 1px;
  font-size: 14px;
}
.thx_block img {
  margin-bottom: 16px;
}
.thx_block_contact {
  padding: 120px 0 110px 0;
}

/* Loading bar */
.lds-ring {
  display: inline-block;
  position: absolute;
  width: 144px;
  height: 144px;
  top: 50%;
  left: 50%;
  margin-top: -72px;
  margin-left: -72px;
}
.lds-ring div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 131px;
  height: 131px;
  margin: 10px;
  border: 10px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.modal_w {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
/* end loading bar */

.logo-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #97c5f8;
}
.logo-text:not(:last-child) {
  margin-right: 16px;
}
.data-in-bulk .logo-text {
  margin: 0;
}
