/* variables */

:root {
  --font-main: 'Roboto', sans-serif;
  --font-size: 16px;

  --font-size-big: 4rem;
  --font-size-medium: 1.1875rem;

  --color-black: #000000;
  --color-blue: #0c63f6;
  --color-green: #7ae582;
  --color-yellow: #ffd100;

  --border-radius: 12px;
  --border-radius-bigger: 20px;
  --shadow: 0px 0px 16px 4px rgba(33, 35, 44, 0.05);

  --blue-from-black: invert(0.35) sepia(0.3) hue-rotate(182deg) saturate(2600%);
}

/* reset and defaults */

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: var(--color-main);
  font-size: var(--font-size);
}

body {
  font-family: var(--font-main);
  color: var(--color-black);
}

section,
header,
footer {
  display: flex;
  justify-content: center;
}

.wrapper {
  width: 100%;
  max-width: calc(1360px + 80px);
  padding: 0 40px;
}

.full .wrapper {
  max-width: 100%;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-main);
  font-family: var(--font-main);
}

img {
  display: block;
}

.title {
  text-transform: uppercase;
  font-size: var(--font-size-big);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.hidden {
  display: none !important;
}

.mobile {
  display: none;
}

/* fancy scrollbar */

.fancy-scrollbar::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}

.fancy-scrollbar::-webkit-scrollbar-thumb {
  height: 30px;
  border: 4px solid transparent;
  background-clip: padding-box;
  background-color: #f5f5f5;
  -webkit-border-radius: 7px;
}

.fancy-scrollbar::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.fancy-scrollbar::-webkit-scrollbar-corner {
  background-color: transparent;
}

/* animation */

.ready-to-hide {
  z-index: 2;
  position: absolute;
  position: absolute;
  display: flex !important;
  transition: 1s;
}

.off-to-left {
  transform: translateX(-100vw);
}

.off-to-right {
  transform: translateX(100vw);
}

.ready-from-left {
  transform: translateX(-100vw);
}

.ready-from-right {
  transform: translateX(100vw);
}

.appear {
  z-index: 1;
  position: absolute;
  transform: translateX(0);
  transition: 1s;
}

/* buttons */

a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;

  text-decoration: none;
  color: initial;
}

.button,
button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-family: var(--font-main);
  font-size: var(--font-size);
  background-color: #fff;
  border: 1px solid var(--color-black);
  padding-inline: 23px;
  border-radius: var(--border-radius);
  transition: 0.2s;
  cursor: pointer;
}

.button.green,
button.green {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.button.yellow,
button.yellow {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}

.button:hover,
button:hover {
  color: white;
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.height-52 {
  height: 52px;
}

.height-64 {
  height: 64px;
}

/* cookie consent */

.cookie-consent {
  z-index: 100000;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 112px;
  background: var(--color-black);
  padding-inline: 100px;
  visibility: hidden;
}

.cookie-consent p {
  color: white;
  line-height: 1.5;
}

.cookie-consent .buttons {
  display: flex;
  align-items: center;
}

.cookie-consent a {
  color: white;
  text-decoration: none;
  opacity: 0.75;
  margin-right: 45px;
  transition: 0.2s;
}

.cookie-consent a:hover {
  opacity: 1;
}

.cookie-consent button:hover {
  background-color: var(--color-blue);
  color: white;
}

/* header */

header {
  z-index: 10000;
  position: sticky;
  top: 0;
  height: 112px;
  background: white;
  box-shadow: var(--shadow);
}

header.full .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 100px;
}

header .wrapper.mobile-controls {
  display: none;
}

header nav {
  display: flex;
  align-items: center;
}

header .spacer {
  width: 1px;
  height: 48px;
  background-color: var(--color-black);
  margin-inline: 40px 32px;
}

header .menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

header .menu li {
  margin-right: 33px;
}

header .menu a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.2s;
}

header .menu > li > a:hover {
  color: var(--color-blue);
}

header li.has-submenu {
  position: relative;
}

header li.active > a {
  color: var(--color-blue);
}

header .submenu {
  position: absolute;
  top: 49px;
  display: none;
  grid-template-columns: 200px 212px;
  gap: 40px;
  padding: 40px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 0;
  list-style-type: none;
}

header .submenu.active {
  z-index: 1;
  display: grid;
}

header .submenu li {
  margin: 0;
}

header .submenu a:not(.no-submenu-hover) {
  display: block;
  border-radius: 4px;
  transition: 0.2s;
}

header .submenu a:not(.no-submenu-hover):hover {
  background-color: #f7f4f2;
  box-shadow: 0 0 0 20px #f7f4f2;
}

header .submenu h2 {
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
}

header .submenu p {
  opacity: 0.5;
  margin-top: 12px;
  margin-bottom: 0;
}

header .lang-switcher {
  position: relative;
  margin-right: 9px;
}

header .lang-switcher > a {
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

header .lang-switcher.active > a {
  color: var(--color-blue);
}

header .lang-switcher > a:hover {
  color: var(--color-blue);
}

header .lang-switcher svg {
  vertical-align: middle;
  margin-left: 8px;
}

header .lang-switcher .selector {
  display: none;
}

header .lang-switcher .submenu {
  flex-direction: column;
  padding: 32px;
  gap: 32px;
}

header .lang-switcher .submenu.active {
  display: flex;
}

header .lang-switcher a {
  color: var(--color-black);
  text-decoration: none;
}

header .lang-switcher span {
  display: block;
  margin-top: 8px;
  opacity: 50%;
}

header .button {
  margin-left: 32px;
}

header .mobile-menu .mobile-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* hero */

.hero {
  position: relative;
  height: 779px;
}

.hero .bg {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  margin-top: 108px;
  margin-bottom: 0;
}

.hero h2 {
  text-transform: uppercase;
  font-size: var(--font-size-medium);
  font-weight: 400;
  margin-top: 59px;
}

.hero .search {
  display: flex;
  margin-top: 24px;
}

.hero .search form {
  display: flex;
}

.hero .search .form-group {
  display: flex;
  width: 500px;
  background-color: white;
  border: 1px solid var(--color-black);
  border-radius: var(--border-radius);
}

.hero .search .query {
  position: relative;
  width: 300px;
  border-radius: var(--border-radius);
  background-color: transparent;
  border: 0;
  padding-inline: 24px 28px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.hero ::placeholder {
  color: var(--color-black);
  opacity: 0.3;
}

.hero .search .dropdown {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.hero .search .dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 1px;
  height: 16px;
  background-color: var(--color-black);
}

.hero .search .selected {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 28px;
  cursor: pointer;
}

.hero .search .selected img {
  margin-right: 23px;
  margin-top: 3px;
}

.hero .search .dropdown-items {
  z-index: 9999;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  width: 250px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding-bottom: 10px;
}

.hero .search .dropdown-items.active {
  display: block;
}

.hero .search .dropdown-items .engine {
  margin-block: 10px;
  opacity: 0.4;
  letter-spacing: 0.6px;
}

.hero .search .dropdown-items input {
  width: 100%;
  height: 44px;
  border: 0;
  background-color: #f5f5f5;
  font-size: 1rem;
  padding-inline: 20px;
}

.hero .search .dropdown-items .items {
  height: 240px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow-y: overlay;
}

.hero .search .dropdown-items li {
  display: flex;
  align-items: center;
  height: 40px;
  color: var(--color-blue);
  cursor: pointer;
  padding-inline: 20px;
  transition: 0.2s;
}

.hero .search .dropdown-items li:hover {
  background-color: #f7f4f2;
}

.hero .search .dropdown-items .items p {
  text-align: left;
}

.hero .search .dropdown-items .clear {
  position: absolute;
  top: 54px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s;
  color: var(--black);
  opacity: 0.3;
}

.hero .search .dropdown-items .clear:hover {
  color: var(--color-blue);
  opacity: 1;
}

.hero .search .dropdown-items .clear svg {
  width: 14px;
  height: 14px;
}

.hero .search .dropdown-items img {
  width: 30px;
  height: 20px;
  margin-right: 12px;
  box-shadow: var(--shadow);
  border-radius: 4px;
  object-fit: cover;
}

.hero .search .dropdown-items p {
  margin: 0;
}

.hero .search button {
  width: 154px;
  margin-left: 12px;
}

.hero .reviews {
  display: flex;
  align-items: center;
  width: 656px;
  height: 73px;
  margin-top: 40px;
  background-color: white;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

.hero .reviews .group {
  display: flex;
}

.hero .reviews .stars {
  margin-left: 20px;
}

.hero .reviews p {
  width: 165px;
  opacity: 0.3;
  margin-left: 39px;
}

.hero .reviews .links {
  display: flex;
  margin-left: 51px;
}

.hero .reviews a {
  transition: 0.2s;
}

.hero .reviews a:hover {
  filter: var(--blue-from-black);
}

.hero .reviews a:first-of-type img {
  margin-right: 20px;
}

.hero .reviews .capterra {
  width: 133px;
}

.hero .reviews .g2 {
  width: 30px;
  height: 32px;
}

/* trusted by */

.trusted-by .wrapper {
  max-width: 1650px;
  padding-inline: 40px;
}

.trusted-by h2 {
  font-size: var(--font-size-medium);
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-top: 31px;
}

.trusted-by .logos {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.trusted-by .logos img {
  max-height: 34px;
  max-width: 205px;
}

.trusted-by .logos img.deloitte {
  max-width: 158px;
}

.trusted-by .logos img.rakuten {
  max-width: 108px;
}

/* services and partially review */

.services {
  position: relative;
  overflow: hidden;
}

.services .star-bg {
  z-index: -1;
  position: absolute;
  top: 764px;
  left: 39px;
}

.services h2 {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 0;
}

.services .slide-selector,
.review .slide-selector {
  position: relative;
  margin-top: 47px;
  border-bottom: 1px solid rgb(0 0 0 / 0.2);
}

.services .slide-selector ul,
.review .slide-selector ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.services .slide-selector li,
.review .slide-selector li {
  opacity: 0.3;
  text-transform: uppercase;
  font-size: var(--font-size-medium);
  padding: 28px 36px;
  cursor: pointer;
  transition: 0.2s;
}

.services .slide-selector li.active,
.review .slide-selector li.active {
  color: var(--color-blue);
  opacity: 1;
  cursor: default;
}

.services .slide-selector .underline,
.review .slide-selector .underline {
  position: absolute;
  bottom: -2px;
  height: 3px;
  background-color: var(--color-blue);
  transition: 0.2s;
}

.services .slide {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
}

.services .slide.active {
  display: flex;
}

.services .slide .content {
  position: relative;
  padding-left: 80px;
  margin-top: 40px;
  max-width: 408px;
}

.services .slide .content::before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  width: 1000px;
  height: 100%;
  background-color: white;
  border-radius: var(--border-radius-bigger);
  box-shadow: var(--shadow);
}

.services .slide ul {
  margin-top: 82px;
  padding-left: 32px;
  letter-spacing: 0.1px;
  list-style-type: none;
}

.services .slide li {
  position: relative;
  margin-bottom: 28px;
}

.services .slide li::before {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  left: -33px;
  width: 8px;
  height: 8px;
  background-color: var(--color-black);
  opacity: 0.1;
  border-radius: 100%;
}

.services .slide .content .button {
  margin-top: 60px;
  padding-inline: 51px;
  margin-bottom: 80px;
}

.services .slide img {
  width: 952px;
  height: 696px;
  margin-top: 92px;
  transform: translateX(13px);
  aspect-ratio: 119/87;
}

/* about data */

.about-data h2 {
  text-align: center;
  margin-top: 110px;
}

.about-data .cards {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 333px);
  grid-template-rows: repeat(3, 222px);
  margin-top: 100px;
  gap: 100px;
}

.about-data .card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-bigger);
  box-shadow: var(--shadow);
}

.about-data .card h3 {
  font-size: var(--font-size-big);
  margin: 0;
}

.about-data .card p {
  font-size: 1.25rem;
  margin: 0;
  margin-top: 11px;
}

.about-data .card svg {
  position: absolute;
  transition: 0.2s;
}

.about-data .card svg.layer-1 {
  z-index: -1;
}

.about-data .card svg.layer-2 {
  z-index: 10;
}

.about-data .card svg.layer-3 {
  z-index: 20;
}

.about-data .card:nth-of-type(1),
.about-data .card:nth-of-type(2),
.about-data .card:nth-of-type(3),
.about-data .card:nth-of-type(5) h3,
.about-data .card:nth-of-type(5) p {
  z-index: 15;
}

.about-data .card:nth-of-type(4),
.about-data .card:nth-of-type(6) {
  z-index: 5;
}

/* review */

.review {
  overflow: hidden;
}

.review h2 {
  text-align: center;
  margin-top: 158px;
  margin-bottom: 0;
}

.review .slide-selector {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 46px;
}

.review .tab {
  display: none;
}

.review .tab.active {
  display: block;
}

.review .slider {
  position: relative;
  height: 677px;
  margin-top: 40px;
}

.review .slide {
  display: none;
  width: 100%;
}

.review .slide.active {
  display: flex;
}

.review .slide-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 80px);
  background-color: #f6f9fe;
  max-width: 1360px;
  border-radius: var(--border-radius-bigger);
  min-height: 677px;
  margin: 0 auto;
}

.review .slide .text {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-top: 100px;
  margin-bottom: 0;
}

.review .slide img {
  width: 162px;
  height: 160px;
  margin-top: 41px;
  margin-right: 16px;
}

.review .slide .name,
.review .slide .role {
  font-size: var(--font-size-medium);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
}

.review .slide .name {
  margin-top: 3px;
}

.review .slide .role {
  opacity: 0.3;
  letter-spacing: 0.2px;
  margin-top: 7px;
}

.review .slider .arrows {
  z-index: 5;
  position: absolute;
  top: calc(50% - 22px);
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 40px);
  transform: translateX(-50%);
  max-width: 1720px;
}

.review .slider .next,
.review .slider .prev {
  color: var(--color-blue);
  cursor: pointer;
  transition: 0.2s;
}

.review .slider .next.disabled,
.review .slider .prev.disabled {
  color: var(--color-black);
  cursor: not-allowed;
  opacity: 0.1;
}

.review .slider .dots {
  z-index: 5;
  position: absolute;
  bottom: 60px;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  gap: 16px;
}

.review .slider .dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--color-black);
  opacity: 0.1;
  transition: 0.2s;
}

.review .slider .dot.active {
  width: 16px;
  height: 16px;
  background-color: var(--color-blue);
  opacity: 1;
}

/* aggressive cta  */

.cta {
  position: relative;
  background-color: var(--color-blue);
  margin-top: 100px;
  overflow: hidden;
}

.cta .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 480px;
  padding-bottom: 62px;
}

.cta .star-bg {
  position: absolute;
  top: -233px;
  right: 40px;
  opacity: 0.1;
}

.cta h2 {
  text-align: center;
  color: white;
  margin-top: 100px;
  margin-bottom: 0;
}

.cta .button {
  margin-top: 60px;
  padding-inline: 80px;
}

/* demo */

.demo {
  position: relative;
}

.demo .bg-circle {
  position: absolute;
  top: -74px;
  left: 80px;
}

.demo h2 {
  z-index: 1;
  position: relative;
  text-align: center;
  margin-top: 120px;
}

.demo .card {
  display: flex;
  justify-content: space-between;
  background: white;
  margin-top: 60px;
  min-height: 715px;
  border-radius: var(--border-radius-bigger);
  box-shadow: var(--shadow);
  padding-block: 80px;
  padding-inline: 100px 80px;
}

.demo .content {
  margin-top: 20px;
}

.demo .item {
  display: flex;
}

.demo .item:not(:last-of-type) {
  margin-bottom: 48px;
}

.demo .item .icon {
  margin-right: 40px;
}

.demo .item h3 {
  text-transform: uppercase;
  font-size: var(--font-size-medium);
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
}

.demo .item p {
  margin: 0;
  margin-top: 8px;
  opacity: 0.4;
}

.demo .widget {
  width: 641px;
  max-width: 100%;
  border-radius: 7px;
  border: 1px solid rgb(0 0 0 / 0.1);
}

/* footer */

footer {
  background-color: #f6f9fe;
  overflow: hidden;
}

footer.full .wrapper {
  padding-inline: 100px;
}

footer nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 100px;
  column-gap: 80px;
}

footer .section {
  margin-bottom: 60px;
}

footer h2 {
  font-size: 1rem;
  color: var(--color-blue);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-black);
  margin: 0;
  padding-bottom: 23px;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 24px;
}

footer li {
  margin-bottom: 24px;
}

footer li a {
  color: black;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s;
}

footer li a:hover {
  color: var(--color-blue);
}

footer .bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-black);
  margin-top: 47px;
  min-height: 120px;
}

footer .bottom > div {
  display: flex;
  align-items: center;
  flex: 0 33%;
}

footer .social a {
  margin-right: 24px;
}

footer .copyright {
  position: relative;
  justify-content: center;
}

footer .copyright::after {
  content: '';
  position: absolute;
  top: -80px;
  width: 400px;
  height: 400px;
  background-color: white;
  border-radius: 100%;
}

footer .copyright p {
  z-index: 1;
  text-transform: uppercase;
}

footer .apps {
  justify-content: flex-end;
}

footer .apps p {
  font-size: var(--font-size-medium);
  text-transform: uppercase;
  margin-right: 23px;
}

footer .apps a {
  margin-left: 24px;
}

footer .bottom a {
  transition: 0.2s;
}

footer .bottom a:hover {
  filter: var(--blue-from-black);
}

/* Ukrainian lang fixes */

.lang-uk .services .slide-selector li,
.lang-uk .review .slide-selector li,
.lang-ru .services .slide-selector li,
.lang-ru .review .slide-selector li {
  padding-inline: 20px;
}

@media screen and (max-width: 1460px) {
  header.full .wrapper,
  footer.full .wrapper,
  .cookie-consent {
    padding-inline: 40px;
  }

  footer .apps p {
    font-size: 1rem;
    text-align: right;
    margin-right: 0;
  }
}

@media screen and (max-width: 1600px) {
  .services .slide-selector li,
  .review .slide-selector li {
    padding: 20px;
  }

  .services .slide img {
    width: 777px;
    height: 568px;
  }

  .review .slide-selector {
    max-width: 650px;
  }

  .demo .widget {
    width: 600px;
  }

  footer nav {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Ukrainian lang fixes */

  .lang-uk .services .slide-selector li,
  .lang-uk .review .slide-selector li,
  .lang-ru .services .slide-selector li,
  .lang-ru .review .slide-selector li {
    padding-inline: 0px;
  }
}

@media screen and (max-width: 1300px) {
  .about-data .card svg {
    width: 700px;
    height: 700px;
  }

  .about-data .cards {
    gap: 60px;
  }

  .demo .card {
    z-index: 1;
    position: relative;
    padding-block: 60px;
    padding-inline: 60px;
    min-height: auto;
  }

  .demo .widget {
    width: 550px;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --font-size-big: 3.5rem;
    --font-size-medium: 1rem;
  }

  .cookie-consent p {
    flex: 0 60%;
  }

  .cookie-consent .buttons {
    justify-content: flex-end;
    flex: 0 40%;
  }

  .cookie-consent p br {
    display: none;
  }

  header .spacer {
    margin-inline: 30px;
  }

  .services {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
  }

  .services .star-bg {
    display: none;
  }

  .services .slide img {
    width: 600px;
    height: 439px;
  }

  .services .slide-selector li,
  .review .slide-selector li {
    padding: 20px 0px;
  }

  .about-data .cards {
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: repeat(3, 200px);
    gap: 50px;
  }

  .review .slide-selector {
    max-width: 550px;
  }

  .review .slide .text {
    font-size: 2rem;
  }

  .demo .card {
    flex-direction: column-reverse;
  }

  .demo .widget {
    width: auto;
    max-width: 646px;
  }

  .demo .content {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
  }

  .demo .item {
    display: flex;
    flex: 0 49%;
  }

  footer .copyright::after {
    top: -40px;
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 1100px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: inherit;
  }

  header .wrapper.mobile-controls {
    display: flex;
  }

  header .mobile-controls .burger {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: 0.2s;
  }

  header .mobile-controls .burger::before,
  header .mobile-controls .burger::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    transition: 0.2s;
  }

  header .mobile-controls .burger::after {
    top: unset;
    bottom: 18px;
  }

  header .mobile-controls .burger.active::before {
    top: 24px;
    transform: rotate(45deg);
  }

  header .mobile-controls .burger.active::after {
    bottom: 23px;
    transform: rotate(-45deg);
  }

  header .wrapper.mobile-menu {
    position: fixed;
    top: 112px;
    right: 0;
    display: block;
    width: 400px;
    height: calc(100vh - 112px);
    transform: translateX(100%);
    transition: 0.2s;
    background-color: white;
    max-width: 100%;
    overflow: scroll;
    padding-bottom: 50px;
    box-shadow: -4px 16px 16px 0px rgba(33, 35, 44, 0.05);
  }

  header .mobile-menu .logo,
  header .mobile-menu .spacer {
    display: none;
  }

  header .wrapper.mobile-menu.active {
    transform: translateX(0);
  }

  header .mobile-menu .top-secondary {
    flex-direction: column;
    width: 100%;
  }

  header .mobile-menu .button {
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
  }

  header .mobile-menu .lang-switcher {
    display: block;
    width: 100%;
    margin: 0;
    padding-inline: 24px;
    margin-top: 24px;
  }

  header .mobile-menu .top-main {
    width: 100%;
    padding-inline: 24px;
  }

  header .mobile-menu .menu {
    flex-direction: column;
    width: 100%;
  }

  header .mobile-menu .top-main .has-submenu {
    margin: 0;
  }

  header .mobile-menu .has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
  }

  header .mobile-menu .submenu {
    position: relative;
    top: unset;
    grid-template-columns: 1fr;
    padding: 0;
    box-shadow: none;
    gap: 24px;
    margin-bottom: 40px;
  }

  header .mobile-menu .lang-switcher .submenu a {
    opacity: 0.3;
  }

  header .mobile-menu .mobile-menu-wrapper {
    flex-direction: column-reverse;
  }

  header .has-submenu svg {
    transition: 0.2s;
  }

  header .has-submenu.active svg {
    transform: rotate(180deg);
  }

  .trusted-by .logos {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px 16vw;
  }

  .services .slide.active {
    flex-direction: column-reverse;
  }

  .services .slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 119/87;
    margin-top: 20px;
    transform: scale(1.04);
  }

  .services .slide .content::before {
    display: none;
  }

  .services .slide .content {
    margin: 0;
    padding: 0;
  }

  .services .slide ul {
    margin-top: 36px;
  }

  .about-data {
    position: relative;
    padding-bottom: 55vw;
  }

  .about-data .cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .about-data .card {
    aspect-ratio: 3/2;
  }

  .about-data .card svg {
    display: none;
  }

  .about-data .circle-bg {
    z-index: -1;
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .review .slide .text br {
    display: none;
  }

  .review .slide-bg {
    width: 100%;
    padding-inline: 40px;
    border-radius: 0;
  }
}

@media screen and (max-width: 1000px) {
  .demo .item p br {
    display: none;
  }

  footer .apps p {
    display: none;
  }

  footer nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .services .slide-selector ul,
  .review .slide-selector ul {
    gap: 20px;
    transition: 0.2s;
  }

  .services .slide-selector li,
  .review .slide-selector li {
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-big: 1.5rem;
    --font-size-small: 0.875rem;
  }

  .title {
    line-height: 1.34;
    letter-spacing: 0.1px;
  }

  .wrapper {
    padding-inline: 16px;
  }

  header {
    height: 55px;
  }

  header .mobile-controls img {
    width: 144px;
  }

  header.full .wrapper {
    padding-inline: 16px;
  }

  header .mobile-controls .burger {
    width: 28px;
    height: 28px;
    margin-right: 4px;
  }

  header .mobile-controls .burger::before,
  header .mobile-controls .burger::after {
    height: 1px;
  }

  header .mobile-controls .burger::after {
    top: unset;
    bottom: 16px;
  }

  header .mobile-controls .burger.active::before {
    top: 13px;
  }

  header .mobile-controls .burger.active::after {
    bottom: 14px;
  }

  header .wrapper.mobile-menu {
    height: calc(100vh - 55px);
  }

  header .wrapper.mobile-menu {
    top: 55px;
    padding-top: 16px;
  }

  .hero h1 {
    margin-top: 38px;
  }

  .hero h2 {
    margin-top: 41px;
  }

  .hero .search {
    width: 100%;
    margin-top: 13px;
  }

  .hero .search,
  .hero .search form {
    flex-direction: column;
  }

  .hero .search .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
  }

  .hero .search .query {
    width: 100%;
    height: 46px;
    padding-inline: 16px;
    font-size: var(--font-size-small);
  }

  .hero .search button {
    width: 100%;
    height: 51px;
    margin: 0;
  }

  .hero .search .selected {
    width: 126px;
    margin-left: 15px;
    font-size: var(--font-size-small);
    letter-spacing: 0.1px;
  }

  .hero .search .selected img {
    margin-right: 15px;
  }

  .hero .search .dropdown {
    position: initial;
  }

  .hero .search .dropdown::before {
    right: 140px;
    left: unset;
  }

  .hero .search .dropdown-items {
    left: -1px;
    width: calc(100% + 2px);
  }

  .hero .reviews {
    width: 100%;
    height: 80px;
  }

  .hero .reviews .group {
    flex-direction: column;
  }

  .hero .reviews p {
    width: 144px;
    font-size: 0.75rem;
    margin: 0;
    margin-left: 15px;
    margin-top: 8px;
  }

  .hero .reviews .stars {
    width: 143px;
    margin-left: 16px;
  }

  .hero .reviews .links {
    margin-left: 41px;
  }

  .hero .reviews a:first-of-type img {
    margin-right: 18px;
  }

  .hero .reviews .g2 {
    width: 19px;
  }

  .hero .reviews .capterra {
    width: 86px;
    margin-top: 6px;
  }

  .hero {
    height: 492px;
  }

  .trusted-by {
    box-shadow: var(--shadow);
    padding-bottom: 37px;
  }

  .trusted-by h2 {
    margin-top: 32px;
  }

  .trusted-by .logos {
    gap: 25px 10px;
    margin-top: 32px;
  }

  .trusted-by .logos img {
    height: 19px;
  }

  .trusted-by .logos img.deloitte {
    max-width: 94px;
  }

  .services h2 {
    margin-top: 40px;
  }

  .services .slide-selector,
  .review .slide-selector {
    margin-top: 20px;
  }

  .services .slide img {
    margin-top: 24px;
    transform: scale(1.07);
  }

  .services .slide ul {
    margin-top: 33px;
    padding-left: 24px;
  }

  .services .slide li {
    margin-bottom: 20px;
    font-size: var(--font-size-small);
    line-height: 1.15;
  }

  .services .slide li::before {
    left: -24px;
  }

  .services .slide .content {
    width: 100%;
  }

  .services .slide .content .button {
    width: 100%;
    height: 51px;
    margin-top: 35px;
    margin-bottom: 0;
    padding: 0;
  }

  .about-data h2 {
    margin-top: 10px;
  }

  .about-data .cards {
    margin-top: 40px;
    gap: 20px;
  }

  .about-data .card {
    justify-content: flex-start;
    aspect-ratio: 3/2.2;
  }

  .about-data .card h3 {
    margin-top: 25px;
  }

  .about-data .card p {
    font-size: var(--font-size-small);
    padding-inline: 15px;
    text-align: center;
    line-height: 1.4;
  }

  .review h2 {
    margin-top: 38px;
  }

  .review .slider {
    height: auto;
    margin-top: 28px;
    min-height: 500px;
  }

  .review .slide .text {
    font-size: var(--font-size);
    margin-top: 61px;
    line-height: 1.4;
  }

  .review .slide img {
    margin-top: 30px;
    margin-right: 20px;
  }

  .review .slider .arrows {
    display: none;
  }

  .review .slide-bg {
    min-height: 500px;
  }

  .review .slider .dot.active {
    width: 12px;
    height: 12px;
  }

  .cta {
    margin-top: 41px;
  }

  .cta .wrapper {
    min-height: 276px;
  }

  .cta h2 {
    margin-top: 62px;
  }

  .cta .button {
    width: 100%;
    height: 48px;
    margin-top: 42px;
    padding-inline: 0;
  }

  .cta .star-bg {
    display: none;
  }

  .demo .bg-circle {
    display: none;
  }

  .demo h2 {
    margin-top: 40px;
  }

  .demo .card {
    padding: 0;
    margin-top: 38px;
    box-shadow: none;
  }

  .demo .widget {
    width: auto;
    max-width: 646px;
  }

  .demo .content {
    margin-top: 42px;
  }

  .demo .item {
    display: flex;
    flex: 0 100%;
  }

  .demo .item .icon {
    margin-right: 20px;
  }

  .demo .item .icon img {
    max-width: 72px;
  }

  .demo .item p {
    font-size: var(--font-size-small);
    line-height: 1.1;
  }

  footer {
    margin-top: 43px;
  }

  footer nav {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 39px;
  }

  footer h2 {
    padding-bottom: 19px;
    white-space: nowrap;
  }

  footer ul {
    margin-top: 19px;
  }

  footer li {
    margin-bottom: 20px;
  }

  footer .column {
    display: flex;
    justify-content: space-between;
  }

  footer .section {
    margin-bottom: 21px;
    flex: 0 100%;
  }

  footer .multiple .section {
    flex: 0 45%;
  }

  footer .bottom {
    flex-direction: column;
  }

  footer .bottom a {
    margin: 0;
  }

  footer .bottom > div {
    justify-content: center;
  }

  footer .social,
  footer .apps {
    margin-top: 40px;
    gap: 27px;
  }

  footer .copyright {
    order: 3;
    margin-top: 64px;
  }

  footer .copyright::after {
    top: -24px;
    width: 400px;
    height: 400px;
  }

  .copyright p {
    margin-bottom: 40px;
  }

  .cookie-consent {
    top: 167px;
    bottom: unset;
    left: 50%;
    flex-direction: column;
    width: 335px;
    height: 278px;
    transform: translateX(-50%);
    padding-inline: 20px;
    padding-top: 10px;
    font-size: var(--font-size-small);
    box-shadow: 0 0 0 10000px rgb(0 0 0 / 0.3);
  }

  .cookie-consent p {
    line-height: 1.45;
    flex: unset;
  }

  .cookie-consent .buttons {
    flex-direction: column-reverse;
    flex: unset;
  }

  .cookie-consent a {
    margin: 0;
    font-size: var(--font-size-medium);
    margin-bottom: 28px;
    margin-top: 23px;
  }

  .cookie-consent button {
    width: 298px;
    height: 53px;
  }

  footer li a .lang-uk footer li a,
  .lang-ru footer li a,
  .lang-ru .review .slide-selector li {
    white-space: inherit;
  }
}

@media screen and (max-width: 600px) {
  .review .slide-selector {
    margin-inline: 16px;
  }
}

#credential_picker_container {
  top: 110px !important;
}

body:not(.cookie-is-confirmed) .contact-us-btn {
  color: #a1a7bc;
  pointer-events: none;
}
