@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Italic.woff2") format("woff2"), url("../fonts/Inter-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-MediumItalic.woff2") format("woff2"), url("../fonts/Inter-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

a {
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ul,
ol,
dd {
  list-style: none;
  list-style-type: none;
}

input,
button,
textarea,
select,
span,
b {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

button {
  color: inherit;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f6fd;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #3463bd;
}

::-webkit-scrollbar-track {
  background-color: #f5f6fd;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #2e3a60;
  background-color: #fff;
}

.bg {
  overflow: hidden;
  background-color: #f5f6fd;
}

.section {
  padding-block: 50px;
}

.icon {
  flex: 0 0 54px;
}

.container {
  max-width: 1320px;
  min-height: 0;
  margin: 0 auto;
  padding-inline: 15px;
}

/**** START BUTTONS  ****/
.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.buttons .button {
  max-width: 300px;
}

@media only screen and (min-width: 576px) {
  .buttons .button {
    max-width: max-content;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: max-content;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .button:hover {
    color: #6d4f00;
    background-color: transparent;
  }
}


.button-1 {
  height: 40px;
  padding: 9px 30px;
  color: #fff;
  background-color: #3463bd;
  border-color: #3463bd;
}

@media (any-hover: hover) {
  .button-1:hover {
    background-color: transparent;
    color: #3463bd;
  }
}

@media (any-hover: hover) {
  .button-1:hover {
    background-color: transparent;
  }
}

.button-2 {
  padding: 14px 24px;
  color: #ffffff;
  background-color: #3463bd;
  border-color: #3463bd;
}

@media (any-hover: hover) {
  .button-2:hover {
    border-color: #3463bd;
    color: #3463bd;
    background-color: transparent;
  }
}

.button-3 {
  padding: 14px 24px;
  color: #3463bd;
  border-color: #3463bd;
}

@media (any-hover: hover) {
  .button-3:hover {
    color: #fff;
    background-color: #3463bd;
  }
}


.list-check li {
  display: flex;
  align-self: start;
}

.list-check li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background-image: url("../img/check-circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.list-number {
  counter-reset: item;
}

.list-number li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 48px;
  align-self: start;
  gap: 16px;
  list-style-type: none;
}

.list-number li::before {
  position: absolute;
  content: counter(item);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #91ead7;
  border-radius: 50px;
  font-size: 20px;
  text-align: center;
  color: #91ead7;
  background: #fff;
  counter-increment: item;
}

@media only screen and (min-width: 790px) {
  .list-number li::before {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media only screen and (min-width: 790px) {
  .list-number li {
    padding: 0 0 0 79px;
  }
}

.font-42 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #222c49;
}

.font-42 span {
  color: #3463bd;
}

@media only screen and (min-width: 790px) {
  .font-42 {
    font-size: 42px;
  }
}

.font-36 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #222c49;
}

@media only screen and (min-width: 790px) {
  .font-36 {
    font-size: 36px;
  }
}

.font-24 {
  font-size: 20px;
}

@media only screen and (min-width: 790px) {
  .font-24 {
    font-size: 24px;
  }
}

.font-18 {
  font-size: 18px;
}

.font-14 {
  font-size: 14px;
}

.description {
  max-width: 1070px;
  margin-inline: auto;
  text-align: center;
  color: #222c49;
}

.description span {
  display: block;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

/**** START header  ****/
.header {
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.header .dropdown {
  position: relative;
}

.header .dropdown__toggle svg {
  fill: #222c49;
}

@media (any-hover: hover) {
  .header .dropdown__toggle:hover {
    color: #3463bd;
  }

  .header .dropdown__toggle:hover svg {
    fill: #3463bd;
  }
}

.header .dropdown__drawer {
  top: 100%;
}

.header .dropdown._is-open {
  color: #3463bd;
}

.header .dropdown._is-open svg {
  fill: #3463bd;
}

@media only screen and (min-width: 790px) {
  .header .dropdown {
    margin-right: 24px;
  }

  .header .dropdown::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -24px;
    width: 1px;
    height: 19px;
    background-color: #edeef3;
    pointer-events: none;
    transform: translateY(-50%);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: block;
  flex-shrink: 0;
  width: 78px;
  height: 23px;
}

.logo img {
  object-fit: contain;
}

/**** END header ****/
/**** START dropdown ****/
.dropdown {
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.dropdown__toggle {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 40px;
  cursor: pointer;
  gap: 8px;
}

.dropdown__toggle svg {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease-in;
}

.dropdown__drawer {
  position: absolute;
  z-index: 2;
  display: none;
  flex-direction: column;
  width: 100%;
  min-width: 100px;
  padding: 10px;
  border-radius: 16px;
  background-color: #fff;
  transition: all 0.5s ease-in;
  animation: slideDown 300ms ease-in-out forwards;
  gap: 14px;
}

.dropdown__drawer a {
  line-height: 2;
  color: #222c49;
}

@media (any-hover: hover) {
  .dropdown__drawer a:hover {
    color: #3463bd;
  }
}

.dropdown._is-open .dropdown__drawer {
  display: flex;
}

.dropdown._is-open .dropdown__toggle svg {
  transform: rotate(180deg);
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/**** START MENU  ****/
.menu-button {
  display: none;
}

@media all and (max-width: 790px) {
  .menu-button {
    position: relative;
    z-index: 10;
    display: block;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in;
  }
}

.menu-lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}

.menu-lines,
.menu-lines::after,
.menu-lines::before {
  position: absolute;
  right: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #222c49;
}

.menu-lines::before {
  content: "";
  top: -8px;
  transition: all 0.3s ease-in;
}

.menu-lines::after {
  content: "";
  top: 8px;
  width: 100%;
  transition: all 0.3s ease-in;
}

.menu-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  transition: 0.5s ease-in-out;
}

@media all and (max-width: 790px) {
  .menu-nav {
    position: absolute;
    right: 16px;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: max-content;
    padding: 16px;
    border-radius: 16px;
    background-color: #fff;
    transition: all 0.5s ease-in;
    animation: slideDown 300ms ease-in-out forwards;
  }
}

@media all and (max-width: 790px) {
  ._is-open .menu-nav {
    display: flex;
  }

  ._is-open .menu-lines {
    background: transparent;
  }

  ._is-open .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  ._is-open .menu-lines::after {
    top: 0;
    width: 100%;
    transform: rotate(-45deg);
  }
}

/**** END MENU ****/
.hero {
  padding-top: 32px;
}

.hero .container {
  position: relative;
  z-index: 0;
  max-width: 1000px;
}

.hero .container::before,
.hero .container::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero .container::before {
  top: -200px;
  right: 40%;
  width: 543px;
  height: 543px;
  opacity: 0.1;
  background: radial-gradient(50% 50% at 50% 50%, #3cb8f0 0%, rgba(60, 184, 240, 0) 100%);
}

@media only screen and (min-width: 790px) {
  .hero .container::before {
    top: -533px;
    right: 60%;
    width: 1086px;
    height: 1086px;
  }
}

.hero .container::after {
  top: 0;
  left: 70%;
  width: 421px;
  height: 421px;
  opacity: 0.4;
  background: radial-gradient(50% 50% at 50% 50%, #91ead7 0%, rgba(145, 234, 215, 0) 100%);
}

@media only screen and (min-width: 790px) {
  .hero .container::after {
    left: 70%;
    width: 841px;
    height: 841px;
  }
}

.hero .list-check {
  padding-block: 30px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 24px;
}

.hero .list-check li {
  max-width: 253px;
  gap: 8px;
}

@media only screen and (min-width: 992px) {
  .hero-pic {
    margin: -20px -80px -30px -60px;
  }
}

.trusted-team {
  padding-block: 50px 0;
  position: relative;
}

.trusted-team__body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 0 4px 17.1px 0 #ccdcf4;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #222c49;
  background: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 8px 12px;
}

.trusted-team__body img {
  vertical-align: middle;
  flex-shrink: 0;
}

.trusted-team__body span {
  display: block;
}

@media only screen and (min-width: 790px) {
  .trusted-team__body {
    font-size: 24px;
  }
}

.built-for-teams * {
  text-align: center;
}

.built-for-teams .description {
  max-width: 870px;
  margin-inline: auto;
}

.cards {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  flex-flow: row wrap;
  gap: 30px;
}

.card {
  position: relative;
  z-index: 2;
  max-width: 410px;
  padding: 45px 30px 30px;
  border: 1px solid #fff;
  border-radius: 8px;
  text-align: center;
  color: #222c49;
  background: #fff;
  filter: drop-shadow(0 0 7.5px rgba(222, 233, 253, 0.6));
}

.card .card-icon {
  margin-bottom: 14px;
}

.card .font-24 {
  margin-bottom: 16px;
  padding: 0 10px;
  line-height: normal;
}

.roi-killer .description {
  color: #222c49;
}

.problem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

@media only screen and (min-width: 992px) {
  .problem:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

.problem__inner {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 30px;
}

.problem__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem__body .font-24,
.problem__body .font-18 {
  color: #000;
}

.problem__body .font-18 {
  margin-bottom: 16px;
}

@media only screen and (min-width: 992px) {
  .problem__body {
    width: calc(50% - 15px);
  }
}

.problem__pic img {
  max-width: 100%;
}

@media only screen and (min-width: 992px) {
  .problem__pic {
    width: calc(50% - 15px);
  }
}

@media only screen and (min-width: 992px) {
  .problem {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 992px) {
  .problem {
    align-items: center;
  }
}

.drop-in .container {
  position: relative;
  z-index: 0;
}

.drop-in .container::before,
.drop-in .container::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 798px;
  height: 798px;
  border-radius: 798px;
  pointer-events: none;
}

.drop-in .container::before {
  top: -109px;
  right: 70%;
  opacity: 0.2;
  background: radial-gradient(50% 50% at 50% 50%, #3cb8f0 0%, rgba(60, 184, 240, 0) 100%);
}

.drop-in .container::after {
  top: 299px;
  left: 60%;
  border-radius: 798px;
  opacity: 0.4;
  background: radial-gradient(50% 50% at 50% 50%, #91ead7 0%, rgba(145, 234, 215, 0) 100%);
}

.drop-in .list-number {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 30px 0;
}

.drop-in .list-number li {
  max-width: 414px;
}

@media only screen and (min-width: 992px) {
  .drop-in .list-number li {
    flex: 1;
  }
}

@media only screen and (min-width: 992px) {
  .drop-in .list-number {
    justify-content: space-between;
  }
}

.drop-in .font-24 {
  line-height: normal;
  color: #000;
}

.drop-in__pic {
  max-width: 1130px;
  margin-inline: auto;
}

.features {
  background: #2e3a60;
}

.features * {
  color: #fff;
}

.features-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  flex-flow: row wrap;
  gap: 30px;
}

.feature {
  position: relative;
  display: flex;
  max-width: 410px;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(261deg, rgba(255, 255, 255, 0.16) 2.69%, rgba(255, 255, 255, 0.02) 96.78%);
  gap: 26px;
}

.feature::before {
  position: absolute;
  content: "";
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(261deg, rgba(255, 255, 255, 0.2), rgba(220, 229, 244, 0.02));
  pointer-events: none;
  inset: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature .font-24 {
  line-height: normal;
}

.tabs {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 24px;
}

@media only screen and (min-width: 992px) {
  .tabs {
    flex-direction: row;
  }
}

@media only screen and (min-width: 1290px) {
  .tabs {
    align-items: flex-start;
  }
}

.tabs__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tabs__left .font-18 {
  color: #222c49;
}

@media only screen and (min-width: 992px) {
  .tabs__left {
    max-width: 515px;
  }
}

.tab {
  border-bottom: 1px dashed #cbdbf2;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active .tab__panel {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.tab.active .tab__num {
  color: #fff;
  background: #91ead7;
}

.tab.active .tab__header {
  color: #3463bd;
}

.tab__header {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  color: #222c49;
  gap: 16px;
  transition: all 0.5s ease;
}

.tab__panel {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tab__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #91ead7;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #91ead7;
  transition: all 0.5s ease;
}

.tab__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
}

@media only screen and (min-width: 992px) {
  .tab__body {
    padding-right: 24px;
  }
}

.tabs__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) {
  .tabs__right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    max-width: 630px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media only screen and (min-width: 1290px) {
  .tabs__right {
    gap: 30px;
    align-self: flex-end;
  }
}

.tab-img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  opacity: 0.3;
  transition: 0.4s ease;
}

.tab-img img {
  border-radius: inherit;
}

.tab-img.active {
  z-index: 1;
  filter: drop-shadow(8px 10px 7.5px rgba(222, 233, 253, 0.6));
  opacity: 1;
  transform: scale(1.1);
  transform-origin: right center;
}

@media only screen and (min-width: 992px) {
  .tab-img.active {
    transform: scale(1.2);
  }
}

@media only screen and (min-width: 1290px) {
  .tab-img.active {
    transform: scale(1.35);
  }
}

@media only screen and (min-width: 992px) {
  .tab-img {
    flex: 0 0 calc(50% - 15px);
  }
}

@media only screen and (min-width: 992px) {
  .tab-img {
    border-radius: 18px;
  }
}

.experience .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 992px) {
  .experience .container {
    position: relative;
    flex-direction: row;
    align-items: flex-end;
  }
}

.experience-content {
  width: 100%;
  max-width: 440px;
  margin-top: 50px;
}

@media only screen and (min-width: 992px) {
  .experience .font-36 {
    padding-right: 20px;
    text-align: left;
  }
}

.experience .list-check {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: 50px;
}

.experience .list-check li {
  gap: 16px;
}

.experience-code {
  z-index: 1;
  width: 100%;
  margin-bottom: 50px;
  padding: 15px 8px 22px;
  border: 1px solid #dce5f4;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(261deg, rgba(255, 255, 255, 0.09) 2.69%, rgba(255, 255, 255, 0.8) 96.78%);
  backdrop-filter: blur(2.64px);
}

.experience-code::before {
  position: absolute;
  content: "";
  top: -8px;
  left: -11px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px 18px 0 0;
  background: #dee9fd;
  pointer-events: none;
  filter: blur(12.5px);
}

@media only screen and (min-width: 460px) {
  .experience-code {
    padding: 30px 20px 22px;
  }
}

@media only screen and (min-width: 992px) {
  .experience-code {
    width: calc(100% - 440px);
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .experience-code {
    padding: 30px 30px 22px;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.codes__link {
  display: flex;
  cursor: pointer;
  gap: 1px;
}

@media only screen and (min-width: 460px) {
  .codes__link {
    gap: 2px;
  }
}

.codes__content {
  max-width: 100%;
  height: 328px;
  padding: 20px 15px;
  border-radius: 3px;
  overflow: auto;
  font-family: Menlo, monospace;
  font-size: 12px;
  background: #fff;
  direction: ltr !important;
  scrollbar-width: none;
}

.codes__content::-webkit-scrollbar {
  display: none;
  width: 6px;
}

.codes__content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #3463bd;
}

@media only screen and (min-width: 576px) {
  .codes__content {
    padding: 20px 30px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 460px) {
  .codes__content {
    padding: 14px;
  }
}

@media (any-hover: hover) {
  .codes__content:hover {
    scrollbar-width: thin;
  }

  .codes__content:hover ::-webkit-scrollbar {
    display: block;
  }
}

code,
pre {
  font-family: Menlo, Consolas, "Courier New", monospace;
}

.code__link {
  padding: 6px 4px;
  border-radius: 8px 8px 0 0;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  line-height: 20px;
  /* 142.857% */
  color: #2e3a60;
  background: rgba(255, 255, 255, 0.5);
}

.code__link._is-open {
  border-radius: 8px 8px 0 0;
  background: #fff;
}

@media only screen and (min-width: 359px) {
  .code__link {
    padding: 10px 6px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) {
  .code__link {
    padding: 10px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 1024px) {
  .code__link {
    padding: 10px 16px;
  }
}

.code__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  color: #222c49;
}

.code__content._is-open {
  position: relative;
  display: inherit;
  max-width: 100%;
  height: auto;
  overflow: visible;
  opacity: 1;
  animation-name: fadeInOut;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.code-comment {
  font-style: italic;
  color: #747f8f;
}

.code-keyword {
  color: #bc7cd8;
}

.code-number {
  color: #e09e53;
}

.code-string {
  color: #92b670;
}

.code-built_in,
.code-function {
  color: #e09e53;
}

.code-title,
.code-meta {
  color: #61aeee;
}

.code-attr,
.code-variable,
.code-type {
  color: #d19a66;
}

.code-literal {
  color: #56b6c2;
}

.code-params,
.code-operator {
  color: #222c49;
}

.code-subst {
  color: #e06c75;
}

.prices .button {
  margin-inline: auto;
  height: 54px;
}

.table {
  margin-block: 30px;
  max-width: 550px;
  margin-inline: auto;
}

.table__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
  padding: 8px 30px;
  border-radius: 8px 8px 0 0;
  background: #f5f6fd;
}

.table__header p {
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #747f8f;
}

@media only screen and (max-width: 991px) {
  .table__header.hide {
    display: none;
  }
}

.table__cell {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
  padding: 12px 15px;
  border-radius: 8px;
  background: #f5f6fd;
}

.table__cell img {
  width: 24px;
  height: 24px;
}

@media only screen and (min-width: 460px) {
  .table__cell img {
    width: 36px;
    height: 36px;
  }
}

@media only screen and (min-width: 460px) {
  .table__cell {
    padding: 12px 30px;
  }
}

.table__cell-solutions {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #222c49;
  gap: 24px;
  max-width: 70%;
}

@media only screen and (min-width: 460px) {
  .table__cell-solutions {
    font-size: 16px;
  }
}

.table__cell-price {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #222c49;
}

@media only screen and (min-width: 460px) {
  .table__cell-price {
    font-size: 16px;
  }
}

.table__notes {
  width: 100%;
  padding: 3px 30px;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: normal;
  color: #747f8f;
}

.table sup {
  font-size: 14px;
  font-weight: 700;
  color: #88e7d3;
}

@media only screen and (min-width: 460px) {
  .table sup {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) {
  .table {
    max-width: 1070px;
  }
}

@media only screen and (min-width: 992px) {
  .table {
    column-count: 2;
    column-gap: 2px;
    break-inside: avoid-column;
  }
}

.security-compliance {
  background: #2e3a60;
}

.security-compliance * {
  color: #fff;
}

.security-compliance .container {
  background-image: url("../img/map.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blocks {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 24px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  .blocks {
    max-width: 650px;
    margin-inline: auto;
  }
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 290px;
  text-align: center;
  gap: 13px;
}

@media only screen and (min-width: 790px) {
  .block {
    width: calc(50% - 20px);
  }
}

@media only screen and (min-width: 1024px) {
  .block {
    width: calc(25% - 20px);
  }
}

.testimonials .container {
  max-width: 1380px;
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
  padding: 0 24px;
}

.testimonials__slider::before,
.testimonials__slider::after {
  position: absolute;
  content: "";
  z-index: 2;
  width: 48px;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
}

.testimonials__slider::before {
  top: 0;
  left: -20px;
}

.testimonials__slider::after {
  top: 0;
  right: -20px;
}

@media only screen and (min-width: 790px) {
  .testimonials__slider {
    padding: 0 48px;
  }
}

.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  height: auto;
  transition-property: transform;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 36px;
  height: 36px;
  fill: #3463bd;
  transition: all 0.3s ease-out;
}

@media (any-hover: hover) {

  .swiper-button-prev:hover svg,
  .swiper-button-next:hover svg {
    fill: #efd148;
  }
}

.swiper-button-prev {
  left: -34px;
}

@media only screen and (min-width: 992px) {
  .swiper-button-prev {
    left: -44px;
  }
}

.swiper-button-next {
  right: -34px;
}

@media only screen and (min-width: 992px) {
  .swiper-button-next {
    right: -44px;
  }
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: #f5f6fd;
  gap: 24px;
}

.slide-icon {
  width: 40px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='35' viewBox='0 0 40 35' fill='none'%3E%3Cpath d='M40 26.9611C40 29.3522 39.2593 31.2898 37.7778 32.7739C36.2963 34.258 34.3621 35 31.9753 35C29.6708 35 27.7366 34.1755 26.1728 32.5265C24.6091 30.7951 23.8272 28.3628 23.8272 25.2297C23.8272 22.0966 24.856 18.3039 26.9136 13.8516C29.0535 9.3993 32.2222 4.7821 36.4198 0L39.2593 2.4735C36.4609 5.7715 34.5267 8.78092 33.4568 11.5018C32.3868 14.1402 31.7695 16.5724 31.6049 18.7986H31.9753C34.3621 18.7986 36.2963 19.5406 37.7778 21.0247C39.2593 22.5088 40 24.4876 40 26.9611ZM16.1728 26.9611C16.1728 29.3522 15.4321 31.2898 13.9506 32.7739C12.4691 34.258 10.535 35 8.14815 35C5.84362 35 3.90947 34.1755 2.34568 32.5265C0.781893 30.7951 0 28.3628 0 25.2297C0 22.0966 1.02881 18.3039 3.08642 13.8516C5.22634 9.3993 8.39506 4.7821 12.5926 0L15.4321 2.4735C12.6337 5.7715 10.6996 8.78092 9.62963 11.5018C8.55967 14.1402 7.94239 16.5724 7.77778 18.7986H8.14815C10.535 18.7986 12.4691 19.5406 13.9506 21.0247C15.4321 22.5088 16.1728 24.4876 16.1728 26.9611Z' fill='url(%23paint0_linear_6026_9267)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6026_9267' x1='0' y1='3.5' x2='35.1805' y2='39.6856' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2388E7D3'/%3E%3Cstop offset='0.480769' stop-color='%233CB8F0'/%3E%3Cstop offset='1' stop-color='%233463BD'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.slide-text {
  flex-grow: 1;
}

.slide .line {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #b9c5d7, #b9c5d7 5px, transparent 5px, transparent 10px);
  background-size: 10px 100%;
}

.slide .text-medium {
  color: #222c49;
}

/**** END slider ****/
.lets-see {
  background: #3463bd;
  background-image: url("../img/lets-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.lets-see .font-36,
.lets-see .description {
  color: #fff;
}

.lets-see .buttons {
  margin-top: 30px;
}

.lets-see .button-2 {
  border-color: #fff;
  color: #3463bd;
  background-color: #fff;
}

@media (any-hover: hover) {
  .lets-see .button-2:hover {
    border-color: #fff;
    color: #fff;
    background-color: #3463bd;
  }
}

.lets-see .button-3 {
  border-color: #fff;
  color: #fff;
}

@media (any-hover: hover) {
  .lets-see .button-3:hover {
    color: #3463bd;
    background-color: #fff;
  }
}

/**** START footer  ****/
.footer {
  font-size: 14px;
  background: #2e3a60;
  padding-block: 24px;
}

.footer * {
  color: #fff;
}

.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media only screen and (min-width: 790px) {
  .footer .container {
    flex-direction: row;
    gap: 30px;
  }
}

.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-nav a {
  font-size: 14px;
  line-height: 40px;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .footer-nav a:hover {
    color: #efd148;
  }
}

@media only screen and (min-width: 460px) {
  .footer-nav {
    gap: 30px;
  }
}

.footer .dropdown__toggle svg {
  fill: #fff;
}

@media (any-hover: hover) {
  .footer .dropdown__toggle:hover {
    color: #efd148;
  }

  .footer .dropdown__toggle:hover svg {
    fill: #efd148;
  }
}

.footer .dropdown__drawer {
  right: 0;
  bottom: 100%;
}

.footer .dropdown._is-open .dropdown__toggle {
  color: #efd148;
}

.footer .dropdown._is-open svg {
  fill: #efd148;
}

/**** END footer ****/