*,
*::before,
*::after {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
a,
button {
  text-decoration: none;
  cursor: pointer;
  border: none;
}
ol,
ul,
menu {
  list-style: none;
}
img {
  vertical-align: top;
}
table {
  border-collapse: collapse;
}
input,
textarea,
select,
button {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
textarea {
  white-space: revert;
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
  background-color: inherit;
}
body {
  background-color: #F1F4FF;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  position: relative;
}
header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
}
header .main-menu {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  header .main-menu {
    display: none;
  }
}
header .header_logo img {
  width: 223px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  header .header_logo img {
    width: 161px;
    height: 33px;
  }
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  z-index: 9999;
  margin: 24px 140px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  border: 1px solid #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1840px) {
  header .header {
    margin: 24px 16px;
  }
}
@media (max-width: 767px) {
  header .header {
    padding: 16px;
    margin: 20px 16px 0 16px;
  }
}
header .header .header_nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
header .header .header_nav-menu ul li a {
  color: #21344F;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  white-space: nowrap;
}
header .header .header_nav-menu ul li a:active {
  color: #333;
}
header .header .header_nav-menu ul li a:hover {
  opacity: 0.75;
}
header .header .header_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  header .header .header_btn {
    display: none;
  }
}
header .header .nav-mobile {
  display: none;
}
@media (max-width: 1024px) {
  header .header .nav-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header .nav-mobile .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    border-radius: 99px;
    width: 32px;
    height: 32px;
  }
  header .header .nav-mobile .hamburger span {
    width: 26px;
    height: 2px;
    background-color: #496691;
    border-radius: 8px;
    transition: all 0.4s;
  }
  header .header .nav-mobile .mobile_nav-menu {
    background: linear-gradient(0deg, var(--bg-action, #F1F4FF) 0%, var(--bg-action, #F1F4FF) 100%), #FFF;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
    height: 100vh;
    display: none;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    z-index: -1;
  }
  header .header .nav-mobile .mobile_nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-top: 102px;
    position: relative;
  }
  header .header .nav-mobile .mobile_nav-menu ul:after {
    display: none;
  }
  header .header .nav-mobile .mobile_nav-menu ul li {
    width: 100%;
  }
  header .header .nav-mobile .mobile_nav-menu ul li a {
    padding: 16px;
    color: #21344F;
    border-radius: 20px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    width: 100%;
    display: block;
    text-align: center;
  }
  header .header .nav-mobile .mobile_nav-menu .mobile_btn {
    padding-top: 56px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  header .header .nav-mobile .mobile_nav-menu .mobile_btn .btn {
    justify-content: center;
  }
  header .header .nav-mobile .show_menu {
    display: flex;
    padding-top: 20px;
    overflow-x: scroll;
  }
  header .header .nav-mobile .active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-135deg);
  }
  header .header .nav-mobile .active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header .nav-mobile .active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(135deg);
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  header .header .nav-mobile .mobile_nav-menu ul:after {
    display: flex;
    content: "";
    background-image: url("/assets/dist/images/Ellipse.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 300px;
    height: 300px;
    left: -200px;
    top: 60px;
  }
}
hr {
  width: 100%;
  border: none;
  height: 1px;
  background: #E9EFF5;
  margin: 24px 0;
}
main {
  padding-top: 110px;
}
@media (max-width: 768px) {
  main {
    padding-top: 75px;
    overflow-x: hidden;
  }
}
main .purple {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main h1 {
  font-size: 78px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: #21344F;
  padding-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  main h1 {
    font-size: 36px;
    line-height: 130%;
  }
}
main h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 768px) {
  main h2 {
    font-size: 22px;
  }
}
main h3 {
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #fff;
}
@media (max-width: 768px) {
  main h3 {
    font-size: 34px;
  }
}
main p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  main p {
    font-size: 18px;
  }
}
main .main-hero {
  position: relative;
}
@media (max-width: 1024px) {
  main .main-hero {
    padding: 0 16px;
  }
}
main .main-hero:before {
  content: "";
  background-image: url("/assets/dist/images/Vector1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -133px;
  left: 0;
  width: 1320px;
  height: 1320px;
  z-index: 1;
}
@media (max-width: 768px) {
  main .main-hero:before {
    width: 629px;
    height: 630px;
    left: -143.5px;
    top: -74px;
  }
}
main .main-hero:after {
  content: "";
  background-image: url("/assets/dist/images/Ellipse10.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -191px;
  right: -154px;
  width: 586px;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .main-hero:after {
    display: none;
  }
}
main .main-hero .main_bg {
  background-color: #F1F4FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1024px) {
  main .main-hero .main_bg {
    padding-top: 30px;
  }
}
main .main-hero .main_bg .main_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9;
  width: 70%;
}
main .main-hero .main_bg .main_info .text-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}
main .main-hero .main_bg .main_info .text-info p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
}
@media (max-width: 1840px) {
  main .main-hero .main_bg .main_info {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  main .main-hero .main_bg .main_info {
    width: 100%;
  }
}
main .main-hero .main_bg .main_info p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #3B475A;
  text-align: center;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info p {
    font-size: 18px;
  }
}
main .main-hero .main_bg .main_info .main-chat {
  border-radius: 32px;
  border: 1px solid #fff;
  background: #D3E2FE;
  box-shadow: 0 20px 24px -4px rgba(160, 173, 209, 0.4);
  padding: 10px;
  max-width: 700px;
  min-width: 700px;
  width: 100%;
  margin-top: 46px;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat {
    margin-top: 32px;
    max-width: 100%;
    min-width: 100%;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box {
  display: flex;
  justify-content: center;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form {
  display: flex;
  width: 100%;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea {
  border-radius: 24px;
  border: 1px solid #fff;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.3) 7.59%, rgba(255, 255, 255, 0.5) 102.04%);
  backdrop-filter: blur(11px);
  width: 100%;
  height: 100%;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .file-box {
  display: none;
  width: 100%;
  flex-wrap: wrap;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .file-box .file-block {
  border-radius: 12px;
  background: #F1F4FF;
  padding: 12px;
  margin: 24px 0 0 24px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  max-width: 85%;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .file-box .file-block::before {
  display: inline-block;
  width: 32px;
  height: 32px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 19 20' fill='none'><path d='M12.7151 14.2236H5.49512' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12.7151 10.0371H5.49512' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M8.25109 5.86035H5.49609' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path fill-rule='evenodd' clip-rule='evenodd' d='M12.908 0.75C12.908 0.75 5.231 0.754 5.219 0.754C2.459 0.771 0.75 2.587 0.75 5.357V14.553C0.75 17.337 2.472 19.16 5.256 19.16C5.256 19.16 12.932 19.157 12.945 19.157C15.705 19.14 17.415 17.323 17.415 14.553V5.357C17.415 2.573 15.692 0.75 12.908 0.75Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  padding: 6px;
  border-radius: 6px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .file-box .file-block .filename {
  border: none;
  background: transparent;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #21344F;
  width: 0;
  min-width: 10px;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .file-box .file-block .mirror {
  position: absolute;
  visibility: hidden;
  white-space: pre;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  padding: 0;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .file-box .file-block .close {
  cursor: pointer;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .placeholder {
  top: 24px;
  left: 24px;
  position: absolute;
  display: block;
  font-size: 20px;
  line-height: 150%;
  color: #496691;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #496691;
  animation: typingErase 9s steps(33, end) infinite, blink 0.8s step-end infinite;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .placeholder {
    font-size: 18px;
    top: 20px;
    left: 12px;
    right: 12px;
  }
}
@media (max-width: 767px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .placeholder {
    animation: none;
    white-space: normal;
    border: none;
  }
}
@keyframes typingErase {
  0% {
    width: 0;
  }
  /* початок */
  40% {
    width: 33ch;
  }
  /* друкує */
  50% {
    width: 33ch;
  }
  /* пауза */
  90% {
    width: 0;
  }
  /* стирає */
  100% {
    width: 0;
  }
  /* пауза перед новим циклом */
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea textarea {
  padding: 20px;
  border-radius: 24px;
  background: transparent;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 136px;
  resize: none;
  text-overflow: ellipsis;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
  color: #3B475A;
  text-transform: capitalize;
  vertical-align: top;
  overflow: auto;
  text-align: left;
  text-indent: 0;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea textarea {
    min-height: 136px;
    max-height: 136px;
    font-size: 18px;
    padding: 20px 12px 0 12px;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info {
    flex-direction: column;
    padding: 0 12px 20px 12px;
    gap: 16px;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block {
  display: flex;
  justify-content: end;
  align-items: end;
  margin: 0 0 24px 24px;
  gap: 8px;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block {
    justify-content: start;
    align-items: stretch;
    margin: 0;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .file-upload {
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  border: 1px solid #C2D2E9;
  background: rgba(255, 255, 255, 0.6);
  width: 44px;
  height: 44px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .file-upload:hover {
  border: 1px solid #6488BB;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .file-upload input[type="file"] {
  display: none;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .file-upload label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .file-upload label span {
  display: flex;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block {
  display: flex;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown {
  position: relative;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #C2D2E9;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown:hover {
  border: 1px solid #6488BB;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .tabs-color {
  display: flex;
  gap: 2px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .tabs-color .color_tab {
  height: 4px;
  width: 100%;
  border-radius: 100px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .tabs-color .color_tab--yellow {
  background: #b98713;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .tabs-color .color_tab--green {
  background: #1d9f42;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .tabs-color .color_tab--purple {
  background: #b2439a;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .tabs-color .color_tab--blue {
  background: #486eb6;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .dropdown-label-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .dropdown-label-box p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #496691;
  white-space: nowrap;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-label .dropdown-label-box .icon {
  transition: all 0.2s ease;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9;
  opacity: 0;
  width: 100%;
  min-width: 308px;
  overflow: hidden;
  text-align: start;
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 16px;
  border: 1px solid #C2D2E9;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(196, 206, 241, 0.56);
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu {
    left: -60px;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-bottom: 1px solid #DDE3ED;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item.active .item-block p {
  color: #21344F;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .item-block {
  display: flex;
  justify-content: space-between;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .item-block p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(33, 52, 79, 0.5);
  text-align: left;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .tabs {
  display: flex;
  gap: 8px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .tabs .tab {
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  background: #fff;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .tabs .tab--yellow {
  color: #b98713;
  border: 1px solid rgba(185, 135, 19, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .tabs .tab--green {
  color: #1d9f42;
  border: 1px solid rgba(29, 159, 66, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .tabs .tab--purple {
  color: #b2439a;
  border: 1px solid rgba(178, 67, 154, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item .tabs .tab--blue {
  color: #486eb6;
  border: 1px solid rgba(72, 110, 182, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item.active .tab--yellow {
  border: 2px solid rgba(185, 135, 19, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item.active .tab--green {
  border: 2px solid rgba(29, 159, 66, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item.active .tab--purple {
  border: 2px solid rgba(178, 67, 154, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-menu .dropdown-item.active .tab--blue {
  border: 2px solid rgba(72, 110, 182, 0.3);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown .dropdown-item.active {
  background: #ECF1F9;
  border-bottom: none;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown.is-active .dropdown-menu {
  opacity: 1;
  transform: scaleY(1);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block .dropdown.is-active .icon {
  transform: rotate(180deg);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second {
  display: flex;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown {
  position: relative;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #C2D2E9;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown:hover {
  border: 1px solid #6488BB;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .tabs-img {
  display: flex;
  gap: 2px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .tabs-img .img_tab:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
}
@media (max-width: 767px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .tabs-img .img_tab:before {
    width: 20px;
    height: 20px;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .tabs-img .img_tab--one:before {
  background-image: url("/assets/images/level1.svg");
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .tabs-img .img_tab--two:before {
  background-image: url("/assets/images/level2.svg");
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .tabs-img .img_tab--three:before {
  background-image: url("/assets/images/level3.svg");
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .dropdown-label-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .dropdown-label-box p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #496691;
  white-space: nowrap;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-label .dropdown-label-box .icon {
  transition: all 0.2s ease;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9;
  opacity: 0;
  width: 100%;
  min-width: 308px;
  overflow: hidden;
  text-align: start;
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 16px;
  border: 1px solid #C2D2E9;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(196, 206, 241, 0.56);
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu {
    left: -170px;
  }
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-bottom: 1px solid #DDE3ED;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item.active .item-block p {
  color: #21344F;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item .item-block {
  display: flex;
  justify-content: start;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item .item-block p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(33, 52, 79, 0.5);
  text-align: left;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item .tabs {
  display: flex;
  gap: 8px;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item .tabs .tab--one {
  color: #b98713;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item .tabs .tab--two {
  color: #1d9f42;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item .tabs .tab--three {
  color: #b2439a;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item.active .tab--one {
  color: #b98713;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item.active .tab--two {
  color: #1d9f42;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-menu .dropdown-item.active .tab--three {
  color: #b2439a;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown .dropdown-item.active {
  background: #F5F6F9;
  border-bottom: none;
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown.is-active .dropdown-menu {
  opacity: 1;
  transform: scaleY(1);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown.is-active .icon {
  transform: rotate(180deg);
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown.is-active .img_tab--one:before {
  background-image: url("/assets/images/level1-ac.svg");
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown.is-active .img_tab--two:before {
  background-image: url("/assets/images/level2-ac.svg");
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .info-block .dropdown-block-second .dropdown.is-active .img_tab--three:before {
  background-image: url("/assets/images/level3-ac.svg");
}
main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .main_btn {
  display: flex;
  justify-content: end;
  margin: 0 24px 24px 0;
}
@media (max-width: 768px) {
  main .main-hero .main_bg .main_info .main-chat .chat-box form .textarea .chat-info .main_btn {
    margin: 0 ;
    width: 100%;
  }
}
main .main-video {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  padding: 100px 220px;
  margin: 240px 340px 0 340px;
  border-radius: 80px;
  position: relative;
}
@media (max-width: 1840px) {
  main .main-video {
    margin: 240px 140px 0 140px;
    padding: 100px;
  }
}
@media (max-width: 1024px) {
  main .main-video {
    border-radius: 24px;
    padding: 64px 16px;
    margin: 100px 0 0 0 ;
  }
}
main .main-video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/dist/images/bg-1.svg');
  background-size: cover;
  display: block;
}
@media (max-width: 767px) {
  main .main-video:before {
    background-size: 694px;
  }
}
main .main-video .main_title-video {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
main .main-video .main_title-video h3 {
  text-align: center;
}
main .main-video .video-bg {
  margin: 52px 0 37px 0;
  min-height: 570px;
  width: 872px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  position: relative;
}
@media (max-width: 1024px) {
  main .main-video .video-bg {
    margin: 24px 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  main .main-video .video-bg {
    min-height: 300px;
  }
}
main .main-video .video_btn {
  display: flex;
  align-items: center;
}
main .main-why {
  display: flex;
  flex-direction: column;
  margin: 440px 340px 200px 340px;
  position: relative;
}
@media (max-width: 1840px) {
  main .main-why {
    margin: 440px 140px 200px 140px;
  }
}
@media (max-width: 1024px) {
  main .main-why {
    margin: 100px 16px 0 16px ;
    padding: 0;
  }
}
main .main-why:before {
  content: "";
  background-image: url("/assets/dist/images/section3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 1600px;
  height: 1600px;
}
@media (max-width: 767px) {
  main .main-why:before {
    top: -20px;
    left: -20%;
  }
}
main .main-why h3 {
  color: #21344F;
  padding-bottom: 52px;
}
@media (max-width: 1024px) {
  main .main-why h3 {
    padding-bottom: 32px;
  }
}
@media (max-width: 768px) {
  main .main-why h3 {
    display: none;
  }
}
main .main-why .mobile {
  display: none;
}
@media (max-width: 768px) {
  main .main-why .mobile {
    display: block;
  }
}
main .main-why b {
  font-weight: 600;
}
main .main-why .why-box {
  display: flex;
  justify-content: center;
  gap: 52px;
}
@media (max-width: 1024px) {
  main .main-why .why-box {
    flex-direction: column;
    gap: 32px;
  }
}
main .main-why .why-box .why_card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-radius: 52px;
  border: 1px solid #225AC9;
  background: rgba(255, 255, 255, 0.4);
  padding: 52px;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card {
    padding: 32px 20px;
    border-radius: 24px;
  }
}
main .main-why .why-box .why_card .why-title {
  position: relative;
  display: flex;
  width: 100%;
}
main .main-why .why-box .why_card .why-title:before {
  content: "";
  background-image: url("/assets/dist/images/excel2.svg");
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card .why-title:before {
    width: 32px;
    height: 32px;
  }
}
main .main-why .why-box .why_card .why-title h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #21344F;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card .why-title h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }
}
main .main-why .why-box .why_card .why_block {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-left: 68px;
  position: relative;
  gap: 8px;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card .why_block {
    padding-left: 48px;
  }
}
main .main-why .why-box .why_card .why_block:before {
  content: "";
  background-image: url("/assets/dist/images/mdi_stop-remove.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  padding: 10px;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: #E7F1FF;
  background-size: 32px;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card .why_block:before {
    width: 32px;
    height: 32px;
    background-size: 18px;
  }
}
main .main-why .why-box .why_card .why_block h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #3B475A;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card .why_block h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }
}
main .main-why .why-box .why_card .why_block p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #3B475A;
}
@media (max-width: 1024px) {
  main .main-why .why-box .why_card .why_block p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
main .main-why .why-box .estim {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  border: none;
}
main .main-why .why-box .estim .why-title:before {
  background-image: url("/assets/dist/images/estim2.svg");
}
main .main-why .why-box .estim .why-title h4 {
  color: #fff;
}
main .main-why .why-box .estim .why_block:before {
  background-image: url("/assets/dist/images/like2.svg");
  background-color: rgba(255, 255, 255, 0.2);
}
main .main-why .why-box .estim .why_block h2 {
  color: #fff;
}
main .main-why .why-box .estim .why_block p {
  color: #fff;
}
main .main-who {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 240px 340px 0 340px;
  padding-top: 100px;
  padding-bottom: 190px;
  position: relative;
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  border-radius: 80px;
}
@media (max-width: 1840px) {
  main .main-who {
    margin: 240px 140px 0 140px;
  }
}
@media (max-width: 1024px) {
  main .main-who {
    border-radius: 24px;
    margin: 100px 0 0 0 ;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
main .main-who .main_title {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .main-who .main_title:after {
  content: "";
  background-image: url("/assets/images/Group1svg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: 45px;
  width: 200px;
  height: 130px;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .main-who .main_title:after {
    top: -90px;
    left: 0;
  }
}
main .main-who .main_title:before {
  content: "";
  background-image: url("/assets/images/Group2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  right: 45px;
  width: 150px;
  height: 100px;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .main-who .main_title:before {
    display: none;
  }
}
main .main-who .main_title h3 {
  padding-bottom: 52px;
  text-align: center;
}
@media (max-width: 1024px) {
  main .main-who .main_title h3 {
    padding: 0 16px 32px 16px;
  }
}
main .main-who .who_block_card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 100px;
}
@media (max-width: 1024px) {
  main .main-who .who_block_card {
    gap: 16px;
    padding: 0 16px;
  }
}
main .main-who .who_block_card .who_box:nth-child(2) .who_card {
  width: 33.3%;
}
@media (max-width: 1024px) {
  main .main-who .who_block_card .who_box:nth-child(2) .who_card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  main .main-who .who_block_card .who_box:nth-child(2) .who_card:nth-child(2),
  main .main-who .who_block_card .who_box:nth-child(2) .who_card:nth-child(3) {
    display: none;
  }
}
main .main-who .who_block_card .who_box {
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  main .main-who .who_block_card .who_box {
    flex-direction: column;
    gap: 16px;
  }
}
main .main-who .who_block_card .who_box .who_card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  main .main-who .who_block_card .who_box .who_card:nth-child(n + 4) {
    display: none;
  }
}
main .main-who .who_block_card .who_box .who_card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(311deg, #4A69C6 6.05%, #CACDF2 93%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
main .main-who .who_block_card .who_box .who_card .card_title {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .main-who .who_block_card .who_box .who_card .card_title img {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 12px;
  width: 44px;
  height: 44px;
}
main .main-who .who_block_card .who_box .who_card .card_title h2 {
  color: #fff;
}
@media (max-width: 767px) {
  main .main-who .who_block_card .who_box .who_card .card_title h2 {
    font-size: 20px;
  }
}
main .main-who .who_block_card .who_box .who_card .card_info p {
  color: #fff;
  text-align: left;
}
main .main-who .who_block_card .show-btn {
  z-index: 2;
}
main .main-who .who_img {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
main .main-who .who_img img {
  width: 100%;
}
main .main-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin: 240px 340px 0 340px;
}
@media (max-width: 1840px) {
  main .main-features {
    margin: 240px 140px 0 140px;
  }
}
@media (max-width: 1024px) {
  main .main-features {
    margin: 100px 16px 0 16px ;
  }
}
main .main-features:after {
  content: "";
  background-image: url("/assets/dist/images/Ellipse.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: -311px;
  width: 440px;
  height: 540px;
  z-index: 1;
}
@media (max-width: 768px) {
  main .main-features:after {
    width: 225px;
    height: 225px;
    left: -65px;
    bottom: 175px;
  }
}
main .main-features:before {
  content: "";
  background-image: url("/assets/dist/images/Vectorsmallstar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  right: -210px;
  width: 350px;
  height: 350px;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .main-features:before {
    display: none;
  }
}
main .main-features .features-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .main-features .features-title h3 {
  color: #21344F;
  padding-bottom: 52px;
  width: 50%;
}
@media (max-width: 1024px) {
  main .main-features .features-title h3 {
    padding-bottom: 32px;
    width: 100%;
  }
}
main .main-features .features-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
}
@media (max-width: 1024px) {
  main .main-features .features-box {
    flex-direction: column;
    gap: 40px;
  }
}
main .main-features .features-box:last-child {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  main .main-features .features-box:last-child {
    padding-top: 64px;
    flex-direction: column-reverse;
  }
}
main .main-features .features-box .info-features {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 8px;
}
main .main-features .features-box .info-features h2 {
  color: #212529;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-align: left;
}
@media (max-width: 1024px) {
  main .main-features .features-box .info-features h2 {
    font-size: 26px;
  }
}
main .main-features .features-box .info-features p {
  color: #3B475A;
  text-align: start;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
main .main-features .features-box .features-img {
  z-index: 2;
}
main .main-features .features-box .features-img img {
  width: 716px;
  height: 512px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  main .main-features .features-box .features-img img {
    width: 100%;
    height: 100%;
  }
}
main .main-how {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 52px;
  margin: 240px 140px 0 140px;
  padding: 100px;
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  border-radius: 80px;
  position: relative;
}
main .main-how:after {
  content: "";
  background-image: url("/assets/images/Vectorhow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -121px;
  top: 58px;
  width: 396px;
  height: 396px;
  z-index: 1;
}
@media (max-width: 768px) {
  main .main-how:after {
    width: 180px;
    height: 180px;
    right: -90px;
    top: -47px;
  }
}
main .main-how:before {
  content: "";
  background-image: url("/assets/images/starsmall.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 100px;
  left: 40px;
  width: 174px;
  height: 174px;
  z-index: 1;
}
@media (max-width: 768px) {
  main .main-how:before {
    display: none;
  }
}
@media (max-width: 1024px) {
  main .main-how {
    margin: 100px 0 0 0;
    border-radius: 24px;
    padding: 64px 16px;
    gap: 16px;
  }
}
main .main-how .main_title-how {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
main .main-how .main_title-how h3 {
  color: #fff;
}
@media (max-width: 1024px) {
  main .main-how .main_title-how h3 {
    text-align: center;
  }
}
main .main-how .main_title-how p {
  color: #fff;
  width: 65%;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 1024px) {
  main .main-how .main_title-how p {
    width: 100%;
    font-size: 22px;
  }
}
main .main-how .img_how img {
  max-width: 100%;
}
main .main-steps {
  position: relative;
  min-height: 860px;
  margin: 240px 0;
  background-image: url("/assets/dist/images/steps-bg.png");
  width: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  main .main-steps {
    margin: 100px 0;
    min-height: auto;
  }
}
main .main-steps .steps-box {
  padding: 100px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  main .main-steps .steps-box {
    padding: 0 16px;
  }
}
main .main-steps .steps-box .step-title {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
main .main-steps .steps-box .step-title h3 {
  color: #21344F;
  padding-bottom: 52px;
  text-align: left;
}
@media (max-width: 1024px) {
  main .main-steps .steps-box .step-title h3 {
    padding-bottom: 32px;
    text-align: center;
  }
}
main .main-steps .steps-box .steps-block {
  display: flex;
  position: relative;
  min-height: 550px;
  max-width: 1920px;
  width: 100%;
}
@media (max-width: 1024px) {
  main .main-steps .steps-box .steps-block {
    flex-direction: column;
    gap: 52px;
  }
}
main .main-steps .steps-box .steps-block:before {
  content: url("/assets/dist/images/how-bg.svg");
  position: absolute;
  top: 114px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  main .main-steps .steps-box .steps-block:before {
    display: none;
  }
}
main .main-steps .steps-box .steps-block .steps-img {
  z-index: 2;
  max-width: 300px;
  position: absolute;
}
main .main-steps .steps-box .steps-block .steps-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 228px;
  height: 225px;
  border-radius: 40px;
  backdrop-filter: blur(12.8px);
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
@media (max-width: 1024px) {
  main .main-steps .steps-box .steps-block .steps-img:before {
    display: none;
  }
}
main .main-steps .steps-box .steps-block .steps-img img {
  max-width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  main .main-steps .steps-box .steps-block .steps-img img {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  main .main-steps .steps-box .steps-block .steps-img {
    display: flex;
    align-items: center;
    max-width: 100%;
    position: static;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  main .main-steps .steps-box .steps-block .steps-img {
    flex-direction: column;
    align-items: stretch;
  }
}
main .main-steps .steps-box .steps-block .steps-img .steps-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
}
@media (max-width: 768px) {
  main .main-steps .steps-box .steps-block .steps-img .steps-info {
    padding-top: 16px;
  }
}
main .main-steps .steps-box .steps-block .steps-img .steps-info h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #21344F;
  text-align: left;
}
@media (max-width: 1024px) {
  main .main-steps .steps-box .steps-block .steps-img .steps-info h2 {
    font-size: 20px;
  }
}
main .main-steps .steps-box .steps-block .steps-img .steps-info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #3B475A;
  text-align: left;
}
main .main-steps .steps-box .steps-block .steps-img:first-child {
  left: 0;
  top: 36px;
}
@media (max-width: 1840px) {
  main .main-steps .steps-box .steps-block .steps-img:first-child {
    left: -100px;
  }
}
main .main-steps .steps-box .steps-block .steps-img:first-child:before {
  width: 300px;
}
main .main-steps .steps-box .steps-block .steps-img:nth-child(2) {
  left: 30%;
  bottom: 41px;
}
@media (max-width: 1840px) {
  main .main-steps .steps-box .steps-block .steps-img:nth-child(2) {
    left: 25%;
  }
}
main .main-steps .steps-box .steps-block .steps-img:nth-child(2):before {
  width: 270px;
}
main .main-steps .steps-box .steps-block .steps-img:nth-child(3) {
  left: 60%;
}
@media (max-width: 1840px) {
  main .main-steps .steps-box .steps-block .steps-img:nth-child(3) {
    left: 55%;
  }
}
main .main-steps .steps-box .steps-block .steps-img:nth-child(3):before {
  width: 270px;
  right: 0;
  left: auto;
}
main .main-steps .steps-box .steps-block .steps-img:last-child {
  right: 0;
  bottom: 56px;
}
@media (max-width: 1840px) {
  main .main-steps .steps-box .steps-block .steps-img:last-child {
    right: -120px;
  }
}
main .main-steps .steps-box .steps-block .steps-img:last-child:before {
  width: 228px;
  left: 50%;
  transform: translateX(-50%);
}
main .main-plan {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #225AC9;
  border-radius: 80px;
  margin: 240px 340px 0 340px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1840px) {
  main .main-plan {
    margin: 240px 140px 0 140px;
  }
}
@media (max-width: 1024px) {
  main .main-plan {
    margin: 100px 0 0 0;
    border-radius: 24px;
    padding: 64px 0;
  }
}
main .main-plan .plan-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 52px;
  gap: 16px;
}
@media (max-width: 1024px) {
  main .main-plan .plan-title {
    padding: 0 16px 20px 16px;
  }
}
main .main-plan .plan-title h3 {
  color: #21344F;
  text-align: center;
}
main .main-plan .plan-title p {
  color: #3B475A;
  width: 80%;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 1024px) {
  main .main-plan .plan-title p {
    width: 100%;
    font-size: 22px;
  }
}
main .main-plan .sub-type {
  border: 1px solid #C2D2E9;
  background: #F5F6F9;
  padding: 14px 0;
  border-radius: 30px;
  margin-bottom: 32px;
  cursor: pointer;
}
main .main-plan .sub-type span {
  color: #6488BB;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 14px 24px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  main .main-plan .sub-type span {
    font-size: 16px;
  }
}
main .main-plan .sub-type .active {
  background-color: #5479C0;
  border-radius: 30px;
  border: 1px solid #C2D2E9;
  color: #fff;
}
main .main-plan .plan-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 16px;
}
@media (max-width: 1024px) {
  main .main-plan .plan-box {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding: 0 16px;
  }
}
main .main-plan .plan-box .plan-card {
  color: #3B475A;
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-color: transparent;
  padding: 55px 20px 32px 20px;
  border-radius: 24px;
  width: 100%;
  border: 1px solid transparent;
}
main .main-plan .plan-box .plan-card:hover {
  border: 1px solid #C2D2E9;
}
@media (max-width: 1024px) {
  main .main-plan .plan-box .plan-card {
    padding: 32px 20px;
    min-width: 334px;
    white-space: nowrap;
    flex: 0 0 80%;
    scroll-snap-align: center;
    border: 1px solid #C2D2E9;
  }
}
main .main-plan .plan-box .plan-card .card_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}
main .main-plan .plan-box .plan-card .card_price p {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #21344F;
}
main .main-plan .plan-box .plan-card .card_price span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #496691;
}
main .main-plan .plan-box .plan-card .card_title h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 14px;
}
main .main-plan .plan-box .plan-card .card_title p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
  white-space: normal;
  color: #3B475A;
}
@media (max-width: 767px) {
  main .main-plan .plan-box .plan-card .card_title p {
    font-size: 14px;
  }
}
main .main-plan .plan-box .plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .main-plan .plan-box .plan-card ul li {
  list-style-type: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-left: 30px;
  position: relative;
  color: #3B475A;
}
@media (max-width: 767px) {
  main .main-plan .plan-box .plan-card ul li {
    font-size: 16px;
  }
}
main .main-plan .plan-box .plan-card ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='12' viewBox='0 0 15 12' fill='none'><path d='M13.929 2.19878L7.08395 11.4878C6.92071 11.7044 6.67728 11.8463 6.40838 11.8816C6.13947 11.917 5.86764 11.8428 5.65395 11.6758L0.765955 7.76778C0.33462 7.4226 0.264777 6.79311 0.609955 6.36178C0.955133 5.93044 1.58462 5.8606 2.01595 6.20578L6.09196 9.46678L12.319 1.01578C12.5231 0.709368 12.8792 0.539961 13.2458 0.574816C13.6123 0.609671 13.9301 0.843148 14.0729 1.18255C14.2156 1.52195 14.1604 1.91236 13.929 2.19878Z' fill='url(%23paint0_linear_3212_46660)'/><defs><linearGradient id='paint0_linear_3212_46660' x1='13.1682' y1='11.346' x2='2.66447' y2='0.135236' gradientUnits='userSpaceOnUse'><stop stop-color='%23225AC9'/><stop offset='1' stop-color='%236E77F5'/></linearGradient></defs></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
main .main-plan .plan-box .plan-card .buy-btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
main .main-plan .plan-box .plan-card .buy-btn .btn {
  width: 100%;
}
main .main-plan .plan-box .popular {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  color: #fff;
  position: relative;
}
main .main-plan .plan-box .popular:hover {
  box-shadow: 0 24px 34px 0 #CDD9F9;
}
main .main-plan .plan-box .popular:before {
  content: "MOST POPULAR";
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 13.5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 7px;
}
@media (max-width: 1024px) {
  main .main-plan .plan-box .popular:before {
    display: none;
  }
}
main .main-plan .plan-box .popular ul li {
  position: relative;
  padding-left: 35px;
  color: #fff;
}
main .main-plan .plan-box .popular ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><g clip-path='url(%23clip0_3212_46679)'><path opacity='0.1' d='M12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C23.9923 5.37578 18.6242 0.00771476 12 0Z' fill='white'/><path d='M18.929 8.19878L12.084 17.4878C11.9207 17.7044 11.6773 17.8463 11.4084 17.8816C11.1395 17.917 10.8676 17.8428 10.654 17.6758L5.76595 13.7678C5.33462 13.4226 5.26478 12.7931 5.60995 12.3618C5.95513 11.9304 6.58462 11.8606 7.01595 12.2058L11.092 15.4668L17.319 7.01578C17.5231 6.70937 17.8792 6.53996 18.2458 6.57482C18.6123 6.60967 18.9301 6.84315 19.0729 7.18255C19.2156 7.52195 19.1604 7.91236 18.929 8.19878Z' fill='url(%23paint0_linear_3212_46679)'/></g><defs><linearGradient id='paint0_linear_3212_46679' x1='18.1682' y1='17.346' x2='7.66447' y2='6.13524' gradientUnits='userSpaceOnUse'><stop stop-color='%23225AC9'/><stop offset='1' stop-color='%236E77F5'/></linearGradient><clipPath id='clip0_3212_46679'><rect width='24' height='24' fill='white'/></clipPath></defs></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
main .main-plan .plan-box .popular .card_price p {
  color: #fff;
}
main .main-plan .plan-box .popular .card_price span {
  color: #fff;
}
main .main-plan .plan-box .popular .card_title p {
  color: #fff;
}
main .main-plan .plan-box .popular .card_title h4 {
  color: #fff;
}
main .main-about {
  margin: 240px 200px 0 200px;
  padding: 0 140px;
  position: relative;
}
main .main-about:after {
  content: "";
  background-image: url("/assets/images/Vectorabout.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -175px;
  right: -175px;
  width: 700px;
  height: 600px;
  z-index: 1;
}
@media (max-width: 767px) {
  main .main-about:after {
    width: 278px;
    height: 278px;
    right: -85.5px;
    top: 2px;
  }
}
@media (max-width: 1840px) {
  main .main-about {
    margin: 240px 140px 0 140px;
    padding: 0 140px;
  }
}
@media (max-width: 1024px) {
  main .main-about {
    margin: 100px 0 0 0;
    padding: 0;
  }
}
main .main-about h3 {
  text-align: center;
  color: #21344F;
  padding-bottom: 16px;
}
main .main-about h3 .purple {
  font-weight: 600;
}
main .main-about p {
  color: #3B475A;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 1024px) {
  main .main-about p {
    font-size: 20px;
  }
}
main .main-about p b {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 1024px) {
  main .main-about p b {
    font-size: 22px;
  }
}
main .main-about:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 111px;
  height: 72px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='111' height='72' viewBox='0 0 111 72' fill='none'><g clip-path='url(%23clip0_3212_46735)'><path d='M41.8496 10.4941C41.6281 10.148 41.4065 9.80189 41.1603 9.46815C41.1111 9.39399 41.0619 9.30747 41.0126 9.24566C40.9265 9.12206 40.828 9.02317 40.7418 8.91193C36.6061 3.51039 30.0579 0 22.648 0C10.1424 0 0 9.97493 0 22.2736C0 34.5724 10.1424 44.5473 22.648 44.5473C26.2053 44.5473 29.5532 43.7191 32.5566 42.2853C31.5842 48.342 29.0855 53.6446 24.5313 56.1044C24.1866 55.7954 23.8297 55.5111 23.4235 55.2391C22.1434 54.3986 20.3586 53.9784 18.857 53.9784C16.8752 53.9784 15.0782 54.6829 13.5396 55.8819C12.6411 56.5741 11.9148 57.464 11.3609 58.4529C10.6224 59.6024 10.0439 61.543 10.1055 62.9645C10.4747 70.5785 17.7615 71.9505 21.1464 71.9876C33.7505 72.136 42.145 62.5813 45.8623 50.4803C49.321 39.2199 48.5948 20.9016 41.8496 10.4817V10.4941Z' fill='url(%23paint0_linear_3212_46735)' fill-opacity='0.5'/><path d='M104.945 10.4941C104.723 10.148 104.502 9.80189 104.255 9.46815C104.206 9.39399 104.157 9.30747 104.108 9.24566C104.022 9.12206 103.923 9.02317 103.837 8.91193C99.7012 3.51039 93.153 0 85.7555 0C73.2498 0 63.1074 9.97493 63.1074 22.2736C63.1074 34.5724 73.2498 44.5473 85.7555 44.5473C89.3127 44.5473 92.6606 43.7191 95.664 42.2853C94.6916 48.342 92.1929 53.6446 87.6387 56.1044C87.294 55.7954 86.9371 55.5111 86.5309 55.2391C85.2508 54.3986 83.466 53.9784 81.9644 53.9784C79.9827 53.9784 78.1856 54.6829 76.647 55.8819C75.7485 56.5741 75.0223 57.464 74.4684 58.4529C73.7298 59.6024 73.1513 61.543 73.2129 62.9645C73.5821 70.5785 80.8689 71.9505 84.2538 71.9876C96.8579 72.136 105.252 62.5813 108.97 50.4803C112.428 39.2199 111.702 20.9016 104.957 10.4817L104.945 10.4941Z' fill='url(%23paint1_linear_3212_46735)' fill-opacity='0.5'/></g><defs><linearGradient id='paint0_linear_3212_46735' x1='44.4709' y1='68.5283' x2='-13.8367' y2='34.4702' gradientUnits='userSpaceOnUse'><stop stop-color='%23225AC9'/><stop offset='1' stop-color='%236E77F5'/></linearGradient><linearGradient id='paint1_linear_3212_46735' x1='107.578' y1='68.5283' x2='49.2707' y2='34.4702' gradientUnits='userSpaceOnUse'><stop stop-color='%23225AC9'/><stop offset='1' stop-color='%236E77F5'/></linearGradient><clipPath id='clip0_3212_46735'><rect width='111' height='72' fill='white'/></clipPath></defs></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1024px) {
  main .main-about:before {
    width: 60px;
    height: 39px;
  }
}
@media (max-width: 768px) {
  main .main-about:before {
    top: -50px;
  }
}
main .main-testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 240px 340px 0 340px;
}
@media (max-width: 1840px) {
  main .main-testimonial {
    margin: 240px 140px 0 140px;
  }
}
@media (max-width: 1024px) {
  main .main-testimonial {
    margin: 100px 16px 0 16px;
  }
}
main .main-testimonial h3 {
  color: #21344F;
  padding-bottom: 52px;
  text-align: center;
}
@media (max-width: 1024px) {
  main .main-testimonial h3 {
    padding-bottom: 32px;
  }
}
main .main-testimonial .test-box {
  display: flex;
  align-items: stretch;
  justify-content: end;
  gap: 24px;
  padding-bottom: 24px;
}
@media (max-width: 1024px) {
  main .main-testimonial .test-box {
    padding-bottom: 12px;
    gap: 12px;
    flex-direction: column;
  }
}
main .main-testimonial .test-box .test-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  width: 33.3%;
}
@media (max-width: 1024px) {
  main .main-testimonial .test-box .test-card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  main .main-testimonial .test-box .test-card {
    display: none;
  }
  main .main-testimonial .test-box .test-card:first-child {
    display: flex;
  }
}
main .main-testimonial .test-box .test-card hr {
  margin: 24px 0;
}
main .main-testimonial .test-box .test-card .title h2 {
  color: #21344F;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767px) {
  main .main-testimonial .test-box .test-card .title h2 {
    font-size: 20px;
  }
}
main .main-testimonial .test-box .test-card .title p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #496691;
  text-align: center;
}
main .main-testimonial .test-box .test-card .info {
  padding-bottom: 16px;
}
main .main-testimonial .test-box .test-card .info p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #496691;
  text-align: center;
}
main .main-testimonial .test-box .test-card .stars {
  display: flex;
  gap: 2px;
}
main .main-testimonial .test-box .test-card .stars img {
  width: 24px;
  height: 24px;
}
main .main-testimonial .test-box .join {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid #4A69C6;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.1) 7.59%, rgba(255, 255, 255, 0.2) 102.04%);
  box-shadow: 0 20px 24px -4px rgba(48, 104, 216, 0.08), 0 8px 8px -4px rgba(48, 104, 216, 0.03);
}
@media (max-width: 1024px) {
  main .main-testimonial .test-box .join {
    padding: 32px 24px;
    order: 3;
  }
}
main .main-testimonial .test-box .join h2 {
  color: #21344F;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 768px) {
  main .main-testimonial .test-box .join h2 {
    font-size: 20px;
  }
}
main .main-testimonial .test-box .join .test-join-btn {
  display: flex;
}
main .main-join {
  display: flex;
  justify-content: space-between;
  margin: 240px 200px 0 200px;
  padding: 82px 167px;
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  position: relative;
  border-radius: 40px;
  gap: 140px;
}
main .main-join:after {
  content: "";
  background-image: url("/assets/images/starsmall.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -50px;
  width: 200px;
  height: 220px;
  z-index: 1;
}
@media (max-width: 768px) {
  main .main-join:after {
    display: none;
  }
}
main .main-join:before {
  content: "";
  background-image: url("/assets/images/Fram1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 600px;
  z-index: 1;
}
@media (max-width: 768px) {
  main .main-join:before {
    height: 168px;
    width: 168px;
    top: 0;
    right: -75px;
  }
}
@media (max-width: 1840px) {
  main .main-join {
    margin: 240px 140px 0 140px;
    padding: 82px;
  }
}
@media (max-width: 1024px) {
  main .main-join {
    margin: 100px 0 0 0 ;
    padding: 64px 16px;
    gap: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
  }
}
main .main-join h3 {
  color: #fff;
  white-space: nowrap;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 1024px) {
  main .main-join h3 {
    display: none;
  }
}
main .main-join .mobile {
  display: none;
}
@media (max-width: 1024px) {
  main .main-join .mobile {
    display: flex;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    white-space: pre-wrap;
    text-align: center;
  }
}
main .main-join .join_info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
@media (max-width: 1024px) {
  main .main-join .join_info {
    align-items: center;
  }
}
main .main-join .join_info p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}
@media (max-width: 1024px) {
  main .main-join .join_info p {
    text-align: center;
    font-size: 22px;
  }
}
footer {
  padding: 260px 140px 78px 140px;
  position: relative;
  overflow: hidden;
}
footer:after {
  content: "";
  background-image: url("/assets/dist/images/Ellipse9.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -385px;
  left: -120px;
  width: 1000px;
  height: 869px;
  z-index: 1;
}
@media (max-width: 1024px) {
  footer:after {
    display: none;
  }
}
@media (max-width: 1840px) {
  footer {
    padding: 260px 16px 78px 16px;
  }
}
@media (max-width: 1024px) {
  footer {
    padding: 100px 0 58px 0;
  }
}
footer .footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 70px 50px 45px 60px;
  border-radius: 40px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1024px) {
  footer .footer {
    padding: 44px 16px;
  }
}
footer .footer .footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  footer .footer .footer-info {
    flex-direction: column;
    gap: 44px;
  }
}
footer .footer .footer-info .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20%;
}
@media (max-width: 1024px) {
  footer .footer .footer-info .footer-logo {
    width: 100%;
  }
}
footer .footer .footer-info .footer-logo p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #496691;
}
footer .footer .footer-info .footer-block-menu {
  display: flex;
  gap: 100px;
  z-index: 999;
}
@media (max-width: 768px) {
  footer .footer .footer-info .footer-block-menu {
    display: none;
  }
}
footer .footer .footer-info .footer-block-menu .footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer .footer-info .footer-block-menu .footer-menu ul li a {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #21344F;
  cursor: pointer;
}
footer .footer .footer-info .footer-block-menu .footer-menu ul li a:active {
  color: #333;
}
footer .footer .footer-info .footer-block-menu .footer-menu ul li a:hover {
  opacity: 0.75;
}
footer .footer .footer-info .mobile-footer {
  display: none;
}
@media (max-width: 768px) {
  footer .footer .footer-info .mobile-footer {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer .footer .footer-info .mobile-footer .footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
footer .footer .footer-info .mobile-footer .footer-menu ul li a {
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #21344F;
}
footer .footer .footer-info .mobile-footer .footer-menu ul li a:active {
  color: #333;
}
footer .footer .footer-info .mobile-footer .footer-menu ul li a:hover {
  opacity: 0.75;
}
footer .footer .footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer .footer-copy {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
  }
}
footer .footer .footer-copy p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #496691;
}
@media (max-width: 768px) {
  footer .footer .footer-copy .footer-terms {
    display: flex;
    width: 100%;
  }
}
footer .footer .footer-copy .footer-terms ul {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .footer .footer-copy .footer-terms ul {
    gap: normal;
    justify-content: space-between;
    width: 100%;
  }
}
footer .footer .footer-copy .footer-terms ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #21344F;
}
.text-info p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
}
.btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 8px;
  text-align: center;
  padding: 14px 16px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn_transparent {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn_transparent:hover {
  background: linear-gradient(311deg, rgba(34, 90, 201, 0.1) 6.05%, rgba(110, 119, 245, 0.1) 93%);
  color: #225AC9;
  background-clip: initial;
  -webkit-text-fill-color: #225AC9;
}
.btn_black {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(40, 95, 205, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_black:hover {
  border-radius: 8px;
  background: radial-gradient(189.21% 70.1% at 15.34% 39.06%, rgba(131, 113, 243, 0.5) 0%, rgba(69, 156, 236, 0) 100%), radial-gradient(132.71% 129.73% at 63.64% -12.5%, #4477DC 0%, #3947C5 100%), linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 20px 0 rgba(40, 95, 205, 0.45);
}
.btn_white {
  background: #fff;
  color: #225AC9;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}
.btn_white:hover {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  color: #fff;
  border: 1px solid #BECEFF;
}
.show-btn-test {
  width: 100%;
  display: none;
}
@media (max-width: 768px) {
  .show-btn-test {
    display: flex;
  }
}
.show-btn-test .btn_transparent {
  position: relative;
  width: 100%;
}
.show-btn-test .btn_transparent:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* товщина бордера */
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.show-btn {
  width: 100%;
  display: none;
}
@media (max-width: 768px) {
  .show-btn {
    display: flex;
  }
}
.show-btn .btn_black {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  color: #fff;
  border: 1px solid #BECEFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.mobile_btn .btn_transparent {
  position: relative;
}
.mobile_btn .btn_transparent:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.main_btn input {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
}
.main_btn .btn_black {
  position: relative;
  gap: 10px;
}
@media (max-width: 768px) {
  .main_btn .btn_black {
    width: 100%;
  }
}
.main_btn .btn_black:before {
  content: "";
  background-image: url("/assets/dist/images/star-white.svg");
  background-size: 24px;
  width: 24px;
  height: 24px;
}
.main_btn .btn_black:hover:before {
  background-image: url("/assets/images/icon-hover.svg");
  background-size: 24px;
}
@media (max-width: 767px) {
  .video_btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.video_btn .btn_white {
  position: relative;
  gap: 10px;
}
.video_btn .btn_white:before {
  content: "";
  background-image: url("/assets/dist/images/star-purple.svg");
  background-size: 24px;
  width: 24px;
  height: 24px;
}
.video_btn .btn_white:hover:before {
  content: url("/assets/images/icon-hover-purple.svg");
}
@media (max-width: 767px) {
  .video_btn .btn_white {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .how_btn {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .how_btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.how_btn .btn_white {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .how_btn .btn_white {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.buy-btn {
  display: flex;
  border-radius: 8px;
  text-align: center;
}
.buy-btn:hover {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
}
.buy-btn .btn_transparent {
  border: 1px solid #C2D2E9;
}
.buy-btn .btn_transparent:hover {
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}
.popular .buy-btn:hover {
  background: #fff;
}
.popular .buy-btn .btn_white {
  background: transparent;
  color: #fff;
  border: 1px solid #C2D2E9;
}
.popular .buy-btn .btn_white:hover {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.join_btn {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  display: flex;
  border: 1px solid #fff;
}
.join_btn:hover {
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  border: 1px solid #BECEFF;
}
@media (max-width: 767px) {
  .join_btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .join_btn .btn_transparent {
    width: 100%;
    display: block;
  }
}
.join_btn .btn_transparent:hover {
  color: #fff;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}
.footer-btn {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer-btn {
    flex-direction: column;
    width: 100%;
  }
}
.footer-btn .btn_transparent {
  position: relative;
}
.footer-btn .btn_transparent:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* товщина бордера */
  background: linear-gradient(311deg, #225AC9 6.05%, #6E77F5 93%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@font-face {
  font-family: "Poppins";
  src: url('/assets/dist/fonts/Poppins-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

