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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

ul {
  list-style: none;
}

button {
  outline: none;
  border: none;
}

a {
  text-decoration: none;
}

html, body {
  overflow-x: clip;
}

body {
  font-family: Regular;
  color: #0D122F;
}

.menu-placeholder {
  height: 76px;
}

.accent {
  color: #FA4946;
}

@media (max-width: 768px) {
  .menu-placeholder {
    height: 72px;
  }
}
.h1 {
  font-size: min(60px, 4vw);
  font-family: Bold;
  line-height: 1.2;
}

.h2 {
  font-size: 48px;
  line-height: 1.3;
  font-family: Bold;
}

.h3 {
  font-size: 36px;
  font-family: Bold;
  line-height: 1.4;
}

.h4 {
  font-size: 24px;
  font-family: Bold;
  line-height: 1.4;
}

.h5 {
  font-size: 20px;
  font-family: Bold;
  line-height: 1.4;
}

.h6 {
  font-size: 16px;
  font-family: Bold;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 24px;
    line-height: 1.4;
  }
  .h3 {
    font-size: 24px;
  }
  .h4 {
    font-size: 14px;
  }
  .h5 {
    font-size: 16px;
  }
}
.body {
  font-size: 20px;
  line-height: 1.5;
}

.text1 {
  line-height: 1.5;
  font-size: 20px;
}

.text2 {
  line-height: 1.5;
}

.text3 {
  line-height: 1.5;
  font-size: 14px;
  color: rgba(13, 18, 47, 0.8);
}

@media (max-width: 768px) {
  .text1 {
    font-size: 16px;
  }
  .text2 {
    font-size: 14px;
  }
  .text3 {
    line-height: 1.4;
    font-size: 12px;
  }
}
.btn {
  display: flex;
  justify-content: center;
  background-color: #FA4946;
  width: max-content;
  transition: ease 0.3s;
  padding: 20px 48px;
  border-radius: 12px;
  color: white;
  font-family: Semi;
  border: 1px solid #FA4946;
  height: fit-content;
}
.btn:hover {
  background-color: #dd3e3c;
  border: 1px solid #dd3e3c;
}

.btn-outlined {
  border: 1px solid white;
  background-color: transparent;
}
.btn-outlined:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid white;
}

.text-link {
  color: #FA4946;
  font-family: Medium;
  position: relative;
  width: fit-content;
  transition: ease 0.3s;
}
.text-link::before {
  height: 1px;
  width: 0;
  left: 50%;
  content: "";
  position: absolute;
  bottom: -1px;
  transition: ease 0.5s;
  background-color: #FA4946;
}
.text-link::after {
  content: url("data:image/svg+xmlcharset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='11' viewBox='0 0 15 11'><path fill='%23FA4946' d='M14.471 5.02 9.805.354a.667.667 0 0 0-.943.942l3.529 3.53H.667a.667.667 0 0 0 0 1.332H12.39l-3.529 3.53a.667.667 0 1 0 .943.942l4.666-4.667a.667.667 0 0 0 0-.943Z'/></svg>");
  display: inline-block;
  width: 24px;
  height: 24px;
  right: -32px;
  position: absolute;
  transition: ease 0.4s;
}
.text-link:hover::before {
  width: 100%;
  left: 0;
}
.text-link:hover::after {
  right: -36px;
}

.text-link-simple {
  display: flex;
  color: #FA4946;
  font-size: 14px;
  position: relative;
  width: fit-content;
  transition: ease 0.3s;
}
.text-link-simple::before {
  height: 1px;
  width: 0;
  left: 50%;
  content: "";
  position: absolute;
  bottom: -1px;
  transition: ease 0.5s;
  background-color: #FA4946;
}
.text-link-simple:hover::before {
  width: 100%;
  left: 0;
}

.text-link-grey {
  text-decoration: underline;
  color: rgba(13, 18, 47, 0.5);
}
.text-link-grey:visited {
  color: rgba(13, 18, 47, 0.5);
}

@media (max-width: 1100px) {
  .btn {
    padding: 16px 24px;
  }
}
@media (max-width: 460px) {
  .btn {
    width: 100%;
  }
}
label {
  display: block;
  margin-bottom: 6px;
  line-height: 1.5;
}

.input {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #F6F6F6;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.2;
  box-sizing: border-box;
  margin-bottom: 24px;
  font-family: Regular;
  outline: none;
  border: 0;
}
.input::placeholder {
  transition: ease 0.6s;
}

.input:focus::placeholder {
  opacity: 0;
}

.agreement-checkbox {
  font-size: 14px;
  line-height: 1.5;
  color: #0D122F;
  margin-bottom: 16px;
}
.agreement-checkbox .text-link-simple {
  display: inline;
}

.agreement-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  transform: translateY(-1px);
  vertical-align: middle;
  accent-color: #FA4946;
  cursor: pointer;
  outline: unset;
  -webkit-appearance: checkbox;
}

.iti__selected-country-primary {
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}

@font-face {
  font-family: "Bold";
  src: url("../fonts/inter_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Semi";
  src: url("../fonts/inter_semi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/inter_medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Regular";
  src: url("../fonts/inter_regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
header {
  max-width: 1920px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  background-color: white;
}

.header {
  background-color: white;
  height: 76px;
  max-width: 1384px;
  padding: 0 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.he-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
}

.he-line {
  width: 1px;
  height: 35px;
  background-color: rgba(200, 211, 240, 0.7);
  margin: 0 24px;
}

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

.nav-item:hover .submenu {
  display: block;
}
.nav-item:hover .nav-link {
  color: #FA4946;
}
.nav-item:hover .nav-link svg {
  transform: rotate(-180deg);
  fill: #FA4946;
}

.nav-link {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #0D122F;
  transition: ease 0.3s;
  padding: 28px 0;
}
.nav-link:visited {
  color: #0D122F;
}

.he-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.he-btns {
  display: flex;
  gap: 12px;
}
.he-btns .btn {
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
}
.he-btns .btn-outlined {
  border: 1px solid #E6E6E6;
  color: #0D122F;
}
.he-btns .btn-outlined:hover {
  background-color: #F9FBFF;
  border: 1px solid #D9E0F5;
}

.lang-switcher {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 6px;
  cursor: pointer;
  transition: ease 0.3s;
}
.current-lang span {
  transition: ease 0.3s;
}

.country-flag {
  width: 24px;
  height: 24px;
}

.drop-icon {
  width: 9px;
  height: 6px;
  transition: ease 0.3s;
  fill: rgba(13, 18, 47, 0.5);
  transition: ease 0.3s;
}

.lang-dropdown {
  position: absolute;
  background-color: white;
  left: -1px;
  right: -8px;
  width: 100%;
  padding: 3px;
  border-radius: 6px;
  flex-direction: column;
  padding-top: 4px;
  width: calc(100% + 2px);
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px;
  color: #0D122F;
  border-radius: 3px;
  transition: ease 0.3s;
  border: 1px solid white;
}
.lang-option:visited {
  color: #0D122F;
}

.lang-switcher:hover .current-lang {
  border-radius: 4px;
  background-color: rgba(250, 73, 70, 0.08);
}
.lang-switcher:hover .current-lang span {
  color: #FA4946;
}
.lang-switcher:hover .lang-dropdown {
  display: flex;
}
.lang-switcher:hover .drop-icon {
  transform: rotate(-180deg);
  fill: #FA4946;
}

.lang-option:hover {
  background-color: #F9FBFF;
  border: 1px solid #D9E0F5;
}

.burger {
  border: 1px solid #E6E6E6;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  display: none;
}
.burger span {
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background-color: #0D122F;
  transition: ease 0.3s;
}

.submenu {
  position: absolute;
  background-color: white;
  width: 100%;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  padding: 48px 0;
  border-top: 2px solid rgba(13, 18, 47, 0.15);
  display: none;
  box-shadow: 0 40px 50px 0 rgba(0, 0, 0, 0.05);
}

.submenu-wrap {
  max-width: 1384px;
  padding: 0 32px;
  margin: 0 auto;
}

.submenu-items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 24px;
}

.mob-menu-btns {
  display: none;
}

.nav-sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0D122F;
  font-family: Medium;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: ease 0.3s;
  width: calc((100% - 72px) / 4);
}
.nav-sublink:visited {
  color: #0D122F;
}

.nav-sublink2 {
  display: flex;
  gap: 10px;
  color: #0D122F;
  font-family: Medium;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: ease 0.3s;
  width: calc((100% - 48px) / 3);
}
.nav-sublink2:visited {
  color: #0D122F;
}
.nav-sublink2:hover {
  background-color: #F9FBFF;
  border: 1px solid #D9E0F5;
}

.sublink-ico {
  background-color: rgba(242, 244, 255, 0.6);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}
.sublink-ico svg {
  width: 20px;
  height: 20px;
  fill: #0D122F;
  transition: ease 0.3s;
}

.sublink-ico2 {
  width: 24px;
  min-width: 24px;
  height: 24px;
  fill: #FA4946;
}

.nav-sublink:hover {
  background-color: #F9FBFF;
  border: 1px solid #D9E0F5;
}
.nav-sublink:hover .sublink-ico {
  background-color: #FA4946;
}
.nav-sublink:hover svg {
  fill: white;
}

.submenu-title {
  margin-bottom: 24px;
}

.nav-sublink2-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-sublink2-wrap .text3 {
  font-family: Regular;
}

@media (max-width: 1100px) {
  .he-btns {
    display: none;
  }
}
@media (max-width: 900px) {
  .he-line {
    display: none;
  }
  .burger {
    display: flex;
  }
  .menu {
    border-top: 2px solid rgba(200, 211, 240, 0.7);
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 72px;
    right: 0;
    background-color: white;
    align-items: flex-start;
    padding: 0 16px;
    height: calc(100vh - 72px);
    gap: 0;
  }
  .nav-link {
    padding: 16px 6px;
    justify-content: space-between;
  }
  .nav-item {
    width: 100%;
    overflow: clip;
    border-top: 1px solid rgba(200, 211, 240, 0.7);
  }
  .nav-item:first-child {
    border-top: 0;
  }
  .nav-item:nth-child(5) {
    border-bottom: 1px solid rgba(200, 211, 240, 0.7);
  }
  .nav-item:hover .nav-link {
    color: #0D122F;
  }
  .nav-item:hover .nav-link svg {
    transform: unset;
    fill: #0D122F;
  }
  .header.is-open .menu {
    display: flex;
    overflow-y: scroll;
  }
  .header.is-open .menu .nav-link {
    font-family: Bold;
  }
  .header.is-open .burger {
    padding-top: 1px;
  }
  .header.is-open .burger span:nth-child(1) {
    transform: translate(0, 1.5px) rotate(45deg);
  }
  .header.is-open .burger span:nth-child(2) {
    display: none;
  }
  .header.is-open .burger span:nth-child(3) {
    transform: translate(0, -3.5px) rotate(-45deg);
  }
  .submenu-title {
    display: none;
  }
  .submenu {
    position: unset;
    transform: unset;
    padding: 0;
    border-top: 0;
    box-shadow: unset;
    display: block;
    height: 0;
  }
  .nav-item-is-open .submenu {
    height: 100%;
  }
  .nav-item-is-open .nav-link {
    color: #FA4946 !important;
  }
  .nav-item-is-open .nav-link svg {
    transform: rotate(-180deg) !important;
    fill: #FA4946 !important;
  }
  .nav-sublink {
    width: 100%;
  }
  .submenu-wrap {
    padding: 0;
  }
  .nav-sublink2 {
    width: 100%;
    padding: 6px;
  }
  .submenu-items {
    padding-bottom: 8px;
  }
  .mob-menu-btns {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding: 16px 0 32px;
    width: 100%;
    border-top: 1px solid rgba(200, 211, 240, 0.7);
    transform: translateY(-1px);
  }
  .mob-menu-btns .btn {
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
  }
  .mob-menu-btns .btn-outlined {
    border: 1px solid #E6E6E6;
    color: #0D122F;
  }
  .mob-menu-btns .btn-outlined:hover {
    background-color: rgba(230, 230, 230, 0.5);
  }
  .lang-switcher:hover .current-lang {
    background-color: white;
  }
  .lang-switcher:hover .lang-dropdown {
    border: 1px solid rgba(250, 73, 70, 0.12);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  }
}
@media (max-width: 768px) {
  .header {
    height: 72px;
    padding: 0 16px;
  }
}
footer {
  max-width: 1920px;
  background-color: #0D122F;
}

.footer {
  padding: 74px 32px 32px;
  max-width: 1384px;
  margin: 0 auto;
  color: white;
  display: flex;
  justify-content: space-between;
}

.foo-col-logo {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-right: auto;
}

.foo-logo {
  width: 184px;
  height: 55px;
  object-fit: contain;
}

.foo-socials {
  display: flex;
  gap: 26px;
}

.social {
  width: 20px;
  height: 20px;
}
.social svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: white;
  transition: ease 0.3s;
}
.social:hover svg {
  fill: #FA4946;
}

.foo-col-title {
  margin-bottom: 16px;
}

.foo-menu-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foo-menu-link {
  color: white;
  transition: ease 0.3s;
}
.foo-menu-link:visited {
  color: white;
}
.foo-menu-link:hover {
  color: #FA4946;
}

.foo-col-menus {
  display: flex;
  gap: 56px;
}

.foo-col-menu {
  min-width: 150px;
}

.foo-btn-wrap {
  position: relative;
  height: fit-content;
  margin-left: 48px;
}
.foo-btn-wrap:hover .foo-btn-icon {
  transform: translate(-50%, -50%) scale(0.9);
}

.foo-btn {
  position: relative;
  background-color: white;
  height: fit-content;
  border-radius: 12px;
  padding: 20px 35px;
  color: #0D122F;
  font-size: 16px;
  font-family: Semi;
  transition: ease 0.3s;
  line-height: 1.5;
  cursor: pointer;
  z-index: 1;
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
.foo-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.foo-btn-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: ease 0.6s;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 32px;
  max-width: 1384px;
  margin: 0 auto;
  gap: 48px;
}

.aws {
  width: 159px;
  height: 37px;
  object-fit: contain;
  display: flex;
}

@media (max-width: 1300px) {
  .foo-col-menu {
    min-width: unset;
  }
}
@media (max-width: 1200px) {
  .foo-col-menus {
    gap: 32px;
  }
  .foo-btn-wrap {
    margin-left: 16px;
  }
}
@media (max-width: 1100px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 40px 16px 0;
  }
  .foo-col-logo {
    order: 1;
    margin-bottom: 64px;
    margin-right: unset;
    align-items: center;
  }
  .foo-btn-wrap {
    order: 2;
    width: 100%;
  }
  .foo-col-menu {
    text-align: center;
  }
  .foo-col-title {
    text-align: center;
    margin: 0 auto 16px;
  }
  .foo-col-menus {
    flex-direction: column;
    align-items: center;
    margin: 64px auto 0;
    order: 3;
  }
  .foo-menu-link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    padding: 32px 16px 24px;
    gap: 6px;
  }
}
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  transition: opacity 0.6s ease, background-color 0.3s ease, visibility 0.3s ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-window {
  background-color: white;
  padding: 32px 48px;
  border-radius: 8px;
  width: calc(100% - 32px);
  max-width: 600px;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.6s ease;
}
.modal-window .h3 {
  text-align: center;
  margin-bottom: 16px;
}

.modal.open .modal-window {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  transition: ease 0.3s;
  color: #333;
}

.modal-close:hover {
  color: #ff0000;
}

.pass-field-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.pass-field-wrap label {
  margin-bottom: 0;
}

.open-registration {
  text-align: center;
  margin: 16px auto 32px;
}

.or-log-in {
  position: relative;
  margin: 48px auto 32px;
  width: fit-content;
  font-size: 14px;
}
.or-log-in::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -70px;
  width: 40px;
  height: 2px;
  background-color: rgba(200, 211, 240, 0.7);
}
.or-log-in::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -70px;
  width: 40px;
  height: 2px;
  background-color: rgba(200, 211, 240, 0.7);
}

.login-btns {
  margin: 0 auto;
  display: flex;
  gap: 16px;
  width: fit-content;
}

.login-social {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(200, 211, 240, 0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}
.login-social:hover {
  background-color: rgba(250, 73, 70, 0.1);
  border: 1px solid rgba(250, 73, 70, 0.2);
}
.login-social svg {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.authorisation-link {
  margin: 24px auto 0;
}

.tls-special {
  display: inline;
}

.try-agree {
  text-align: center;
  margin: 12px auto 0;
}

@media (max-width: 768px) {
  .modal-window {
    padding: 32px 16px;
    overflow-y: scroll;
    max-height: 90%;
  }
  .open-registration {
    margin: 8px auto 24px;
  }
  .or-log-in {
    margin: 32px auto 24px;
  }
}
.iti__search-input {
  padding-top: 16px;
  padding-bottom: 16px;
}

.air-datepicker-global-container {
  z-index: 1000;
}

.welcome {
  position: relative;
  aspect-ratio: 1320/644;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
}

.welcome-bg-img {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-wrap {
  position: absolute;
  bottom: 64px;
  left: 64px;
  right: 64px;
  color: white;
  max-width: 960px;
}
.welcome-wrap .text1 {
  margin: 16px 0 32px;
  max-width: 700px;
}

.welcome .breadcrumbs {
  position: absolute;
  top: 24px;
  left: 24px;
}

.welcome .breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.welcome .breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  transition: ease 0.3s;
}
.welcome .breadcrumb-link:visited {
  color: rgba(255, 255, 255, 0.8);
}
.welcome .breadcrumb-link:hover {
  color: white;
}

.welcome .breadcrumb-icon {
  color: rgba(255, 255, 255, 0.8);
}

.welcome .breadcrumb-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.welcome-btns {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#modal-video {
  display: flex;
  width: 100%;
}

.modal-window-video {
  padding: 0;
  max-width: 900px;
}

@media (max-width: 1384px) {
  .welcome {
    margin: 0 32px;
  }
}
@media (max-width: 1100px) {
  .welcome-wrap {
    bottom: 32px;
    left: 32px;
    right: 32px;
  }
  .welcome-wrap .h1 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .welcome {
    aspect-ratio: 1;
    border-radius: 16px;
    margin: 0 16px;
  }
  .welcome-bg-img {
    object-position: top;
  }
  .welcome .breadcrumbs {
    top: 16px;
    left: 16px;
  }
  .welcome-wrap {
    bottom: 32px;
    left: 16px;
    right: 16px;
  }
}
@media (max-width: 440px) {
  .welcome {
    aspect-ratio: 323/644;
  }
}
.wall {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}
.wall .h2 {
  text-align: center;
  margin: 0 auto;
}

.wall-btn {
  margin: 0 auto;
}

.logos {
  margin: 48px 0;
}

.logos-row-wrapper {
  transition-timing-function: linear !important;
}

.logos-slide {
  width: 168px;
  height: 100px;
  border: 1px solid rgba(200, 211, 240, 0.7);
  border-radius: 12px;
}
.logos-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logos-row-1 {
  margin-bottom: 24px;
}

@media (max-width: 1300px) {
  .logos {
    margin: 48px -32px;
  }
}
@media (max-width: 768px) {
  .wall {
    padding: 0;
    margin: 64px 0;
  }
  .wall .h2 {
    max-width: calc(100% - 32px);
  }
  .logos {
    margin: 24px 0;
  }
  .logos-row-1 {
    margin-bottom: 8px;
  }
  .wall-btn {
    max-width: calc(100% - 32px);
  }
  .logos-slide {
    border-radius: 8px;
    width: 106px;
    height: 64px;
  }
}
.solutions {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}
.solutions .h2 {
  text-align: center;
  margin: 0 auto;
}

.sol-btn {
  margin: 0 auto;
}

.sol-items {
  margin: 56px 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 56px;
  column-gap: 24px;
}

.sol-item {
  flex: 1 1 30%;
  display: flex;
  gap: 24px;
  max-width: 424px;
}

.sol-icon {
  background-color: #F9FBFF;
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-icon svg {
  fill: #FA4946;
}

.sol-item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sol-item-title {
  font-size: 20px;
  font-family: Semi;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .sol-item {
    flex: 1 1 46%;
  }
}
@media (max-width: 768px) {
  .solutions {
    padding: 0;
    margin: 64px 16px;
  }
  .sol-items {
    margin: 32px 0;
    row-gap: 24px;
  }
  .sol-item {
    flex: 1 1 100%;
    gap: 16px;
  }
  .sol-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
  .sol-icon svg {
    width: 24px;
    height: 24px;
  }
  .sol-item-title {
    font-size: 16px;
  }
}
.regular {
  margin: 56px auto;
  padding: 0 32px;
  max-width: 1384px;
}
.regular .h2 {
  margin-bottom: 48px;
  text-align: center;
}

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

.regular-img-wrap {
  background-color: #F9FBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.regular-img-wrap img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.regular-wrap {
  width: 100%;
  padding: 32px;
}
.regular-wrap p {
  color: rgba(13, 18, 47, 0.8);
}

.regular-row {
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(217, 224, 245);
  margin-bottom: 48px;
}
.regular-row:last-child {
  margin-bottom: 0;
}

.regular-row-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.regular-row-top svg {
  fill: #FA4946;
  min-width: 24px;
}

@media (max-width: 1100px) {
  .regular-content {
    flex-direction: column-reverse;
  }
  .regular-img-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .regular-wrap {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .regular {
    margin: 64px auto;
    padding: 0 16px;
  }
  .regular .h2 {
    margin-bottom: 24px;
  }
  .regular-img-wrap {
    border-radius: 16px;
  }
  .regular-row {
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
  .regular-row .text3 {
    font-size: 14px;
  }
  .regular-row-top .h4 {
    font-size: 16px;
  }
}
.cards {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.section-top .h2 {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.cards-navs {
  position: relative;
  width: 108px;
  min-width: 108px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.cards-prev, .cards-next {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.6s;
  cursor: pointer;
}
.cards-prev svg, .cards-next svg {
  fill: #0D122F;
  transition: ease 0.6s;
}
.cards-prev:hover, .cards-next:hover {
  border: 1px solid #0D122F;
}

.cards-prev svg {
  transform: translateX(-1px);
}

.cards-next svg {
  transform: translateX(1px);
}

.swiper-button-disabled svg {
  fill: #CACACA;
}
.swiper-button-disabled:hover {
  border: 1px solid #E6E6E6;
  cursor: default;
}

.cards-swiper {
  overflow: unset;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cards-bottom {
  display: none;
}

.card {
  border-radius: 20px;
  border: 1px solid rgba(200, 211, 240, 0.7);
  overflow: hidden;
  height: unset;
  max-width: calc((100% - 40px) / 3);
}

.card-top {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px 24px 76px;
}
.card-top .text3 {
  color: rgba(13, 18, 47, 0.8);
}
.card-top svg {
  fill: #FA4946;
  width: 80px;
  min-width: 80px;
}

.card-title {
  font-size: 20px;
  font-family: Semi;
  line-height: 1.4;
  margin-bottom: 8px;
}

.card-bottom {
  background-color: #FFE9E9;
  padding: 16px 24px;
  transition: ease 0.6s;
  display: flex;
  justify-content: space-between;
  color: #FA4946;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.card-bottom:visited {
  color: #FA4946;
}
.card-bottom svg {
  stroke: #FA4946;
  transition: ease 0.6s;
}

.card:hover .card-bottom {
  background-color: #FA4946;
  color: white;
}
.card:hover .card-bottom:hover {
  background-color: #dd3e3c;
}
.card:hover .card-bottom svg {
  stroke: white;
}

@media (max-width: 1200px) {
  .cards-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
  }
  .cards-wrapper {
    flex-wrap: unset;
    gap: 0;
  }
  .card {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .cards {
    margin: 64px auto;
    padding: 0 16px;
  }
  .section-top {
    margin-bottom: 24px;
  }
  .section-top .h2 {
    text-align: left;
  }
  .card {
    border-radius: 16px;
  }
  .card-top {
    padding: 16px 16px 68px;
    align-items: flex-end;
  }
  .card-top svg {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .card-top .card-bottom {
    padding: 16px;
  }
  .card-title {
    font-size: 16px;
  }
}
.mix {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
  text-align: center;
}
.mix .text2 {
  color: rgba(13, 18, 47, 0.8);
  max-width: 600px;
  margin: 24px auto 56px;
}

.mix-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mix-item {
  max-width: calc((100% - 48px) / 3);
  border-radius: 12px;
  border: 1px solid rgba(200, 211, 240, 0.7);
  background-color: #F9FBFF;
  padding: 24px;
}
.mix-item .text3 {
  text-align: left;
}

.mix-item-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.mix-item-img {
  border-radius: 8px;
  width: 72px;
  height: 72px;
  min-width: 72px;
}

.mix-btn {
  max-width: calc((100% - 48px) / 3);
  background-color: transparent;
  background-color: #0D122F;
  border-radius: 12px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}
.mix-btn:visited {
  color: white;
}
.mix-btn:hover .mix-btn-inner {
  transform: scale(0.98);
}
.mix-btn:hover .mix-btn-inner .try-text::after {
  opacity: 0;
}

.mix-btn-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 20px;
  font-family: Medium;
  line-height: 1.4;
  transition: ease 0.3s;
}

.try-text {
  position: relative;
}
.try-text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  left: 0;
  bottom: 0;
  transition: ease 0.3s;
}

.mix-tiles {
  display: flex;
  column-gap: 24px;
  row-gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.mix-tile {
  max-width: calc((100% - 24px) / 2);
  display: flex;
  gap: 16px;
  text-align: left;
}
.mix-tile svg {
  fill: #FA4946;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.mix-tile .text3 {
  color: rgba(13, 18, 47, 0.8);
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .mix-item {
    max-width: calc((100% - 24px) / 2);
  }
  .mix-btn {
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .mix {
    margin: 64px auto;
    padding: 0 16px;
    text-align: left;
  }
  .mix .text2 {
    margin: 12px 0 24px;
  }
  .mix-items {
    gap: 12px;
  }
  .mix-item {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }
  .mix-btn {
    max-width: 100%;
    padding: 16px;
  }
  .mix-item-top {
    margin-bottom: 12px;
    gap: 12px;
  }
  .mix-item-img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .try-text {
    font-size: 16px;
  }
  .try-text svg {
    width: 40px;
    height: 40px;
  }
  .mix-tiles {
    column-gap: 12px;
    row-gap: 24px;
  }
  .mix-tile {
    gap: 12px;
    flex-direction: column;
  }
  .mix-tile .text3 {
    margin-top: 6px;
  }
}
.tech {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}
.tech .h2 {
  text-align: center;
}

.tech-items {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.tech-item {
  border-radius: 12px;
  border: 1px solid rgba(200, 211, 240, 0.7);
  max-width: calc((100% - 48px) / 3);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.tech-item .text2 {
  color: rgba(13, 18, 47, 0.8);
}

.tech-icon {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  background-color: #F9FBFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-icon svg {
  fill: #FA4946;
}

.tech-item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1000px) {
  .tech-items {
    flex-direction: column;
    align-items: center;
  }
  .tech-item {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .tech {
    margin: 64px auto;
    padding: 0 16px;
  }
  .tech .h2 br {
    display: none;
  }
  .tech-items {
    margin-top: 24px;
  }
  .tech-item {
    text-align: left;
    gap: 16px;
    padding: 16px;
  }
  .tech-item-wrap {
    flex-direction: row;
    gap: 16px;
  }
  .tech-item-wrap .h4 {
    font-size: 16px;
  }
  .tech-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .tech-icon svg {
    width: 24px;
    height: 24px;
  }
}
.cases-row {
  margin: 150px auto;
  max-width: 1384px;
  padding: 0 32px;
}

.cases-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-bottom: 32px;
}

.cases-row-navs {
  position: relative;
  width: 108px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.cases-row-prev, .cases-row-next {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.6s;
  cursor: pointer;
}
.cases-row-prev svg, .cases-row-next svg {
  fill: #0D122F;
  transition: ease 0.6s;
}
.cases-row-prev:hover, .cases-row-next:hover {
  border: 1px solid #0D122F;
}

.cases-row-prev svg {
  transform: translateX(-1px);
}

.cases-row-next svg {
  transform: translateX(1px);
}

.swiper-button-disabled svg {
  fill: #CACACA;
}
.swiper-button-disabled:hover {
  border: 1px solid #E6E6E6;
  cursor: default;
}

.swiper-pagination-current {
  font-family: Bold;
}

.cases-row-pagination {
  display: none;
}

.cases-row-swiper {
  overflow: unset;
  width: 100%;
}

.cases-header-alternate {
  display: none;
}

.case-card {
  padding: 16px;
  border-radius: 20px;
  background-color: #F9FBFF;
  border: 1px solid rgba(200, 211, 240, 0.7);
  height: unset;
}
.case-card .text2 {
  color: rgba(13, 18, 47, 0.8);
}

.case-card-img {
  display: flex;
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 392/272;
}

.case-card-logo {
  display: flex;
  width: 100%;
  max-width: 120px;
  aspect-ratio: 120/72;
  object-fit: contain;
  margin: 16px 0;
}

.case-card-link {
  display: flex;
  margin: 16px 0 48px;
}

.case-card-indicators {
  display: flex;
}

.case-card-indicator:first-child {
  padding-right: 16px;
  width: 100%;
}

.case-card-indicator:last-child {
  padding-left: 16px;
  border-left: 1px solid rgba(200, 211, 240, 0.7);
  width: 100%;
}

.case-card-indicator-desc {
  line-height: 1.4;
  font-size: 14px;
  color: rgba(13, 18, 47, 0.8);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .cases-row {
    margin: 64px auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column-reverse;
  }
  .cases-row-pagination {
    display: block;
  }
  .cases-row-top {
    margin: 24px 0 0;
  }
  .cases-row-top .h2 {
    display: none;
  }
  .cases-header-alternate {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }
  .case-card {
    border-radius: 16px;
  }
  .case-card-img {
    border-radius: 12px;
  }
  .case-card-indicator-desc {
    font-size: 12px;
  }
}
.digits {
  margin: 48px auto 150px;
  padding: 0 32px;
  max-width: 1384px;
}
.digits .h2 {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 48px;
  max-width: 840px;
}

.digi-message {
  position: relative;
  margin: 0 0 24px auto;
  line-height: 1.7;
  padding: 26px 36px;
  border-radius: 20px;
  max-width: 340px;
  background-color: #F9FBFF;
  box-shadow: 0 20px 35px 0 rgba(13, 18, 47, 0.05);
}
.digi-message::after {
  position: absolute;
  bottom: -12px;
  background-color: #F9FBFF;
  left: 24px;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  box-shadow: 0 20px 35px 0 rgba(13, 18, 47, 0.05);
  content: "";
}

.digit-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  row-gap: 56px;
}

.digit {
  border-radius: 20px;
  width: 100%;
  max-width: calc((100% - 48px) / 3);
  text-align: center;
}

.digit-lable {
  font-size: 100px;
  font-family: Bold;
  line-height: 1.2;
  color: #FA4946;
  margin-bottom: 32px;
}

.digit-text {
  position: relative;
}
.digit-text::before {
  width: 76px;
  height: 3px;
  background-color: rgb(217, 224, 245);
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
}
.digit-text p {
  max-width: 300px;
  margin: 0 auto;
  padding-top: 32px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .digit {
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .digits {
    padding: 0 16px;
    margin: 48px 0;
  }
  .digits .h2 {
    margin-bottom: 24px;
  }
  .digit {
    max-width: 100%;
  }
  .digi-message {
    margin: 48px auto 12px;
  }
  .digit-items {
    row-gap: 32px;
  }
  .digit-lable {
    font-size: 72px;
    margin-bottom: 16px;
  }
  .digit-text p {
    padding-top: 16px;
  }
}
.testimonials {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}
.testimonials .section-top .h2 {
  margin: 0;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.testi-navs {
  position: relative;
  width: 108px;
  min-width: 108px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.testi-prev, .testi-next {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.6s;
  cursor: pointer;
}
.testi-prev svg, .testi-next svg {
  fill: #0D122F;
  transition: ease 0.6s;
}
.testi-prev:hover, .testi-next:hover {
  border: 1px solid #0D122F;
}

.testi-prev svg {
  transform: translateX(-1px);
}

.testi-next svg {
  transform: translateX(1px);
}

.swiper-button-disabled svg {
  fill: #CACACA;
}
.swiper-button-disabled:hover {
  border: 1px solid #E6E6E6;
  cursor: default;
}

.testi-swiper {
  overflow: unset;
}

.testi-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  transition: ease 0.8s;
}

.testi-slide {
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
}
.testi-slide:hover .testi-slide-img {
  transform: scale(1.06);
}

.testi-info {
  position: absolute;
  left: 16px;
  top: 16px;
  right: 16px;
}

.testi-info .testi-author-img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
}

.testi-info {
  display: flex;
  gap: 12px;
  color: white;
}

.testi-author-name {
  font-family: Bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-author-position {
  color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 312/530;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-video {
  width: 100%;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  color: #FA4946;
  z-index: 10;
}

@media (max-width: 768px) {
  .testimonials {
    margin: 64px auto;
    padding: 0 16px;
  }
  .testi-navs {
    display: none;
  }
  .section-top {
    margin-bottom: 24px;
  }
  .testi-slide {
    border-radius: 16px;
  }
}
.form {
  margin: 150px auto;
  max-width: 1320px;
  box-shadow: 0 0 60px 0 rgba(13, 18, 47, 0.06);
  display: flex;
  border-radius: 16px;
}

.form-left {
  width: 58%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #0D122F;
  display: flex;
  color: white;
  justify-content: flex-end;
}

.form-right {
  width: 42%;
  padding: 48px;
}
.form-right .h4 {
  margin-bottom: 32px;
}

.form-left-col {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 330px;
}
.form-left-col .h2 {
  margin-right: 16px;
}
.form-left-col .text2 {
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
  margin: 16px 16px 0 0;
}

.form-phone-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  max-width: 576px;
  aspect-ratio: 576/688;
  transform: translateX(70px);
}

.form-concept {
  color: rgba(13, 18, 47, 0.5);
  text-align: center;
  margin-top: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  line-height: 1.5;
}

input[type=text], input[type=tel], input[type=date], input[type=time], select[name=time] {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #F6F6F6;
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 24px;
  font-family: Regular;
}

.submit-btn {
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  font-family: Semi;
  line-height: 1.5;
}

.iti {
  width: 100%;
}

.form-date-time {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.form-explainer {
  text-align: center;
  margin: 16px 0;
  font-size: 14px;
}
.form-explainer strong {
  font-family: Semi;
}

.flatpickr-wrapper {
  width: 100%;
}

@media (max-width: 1384px) {
  .form {
    margin: 150px 32px;
  }
}
@media (max-width: 1100px) {
  .form {
    flex-direction: column;
    border-radius: 0;
    box-shadow: unset;
    margin: 150px 0;
  }
  .form-left {
    width: 100%;
    border-radius: 0;
    justify-content: unset;
    flex-direction: column-reverse;
    padding: 48px 16px 0 16px;
    gap: 16px;
    align-items: center;
    overflow: hidden;
  }
  .form-left-col {
    max-width: unset;
  }
  .form-left-col .h2 {
    margin-right: unset;
  }
  .form-left-col .text2 {
    margin: 12px 0 0;
    max-width: unset;
  }
  .form-right {
    height: 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .form-phone-img {
    position: unset;
    margin: 0 auto -160px;
    width: 100%;
    max-width: 400px;
    transform: translateX(40px);
  }
}
@media (max-width: 768px) {
  .form {
    margin: 64px 0;
  }
  .form-right {
    padding: 32px 16px;
  }
  .form-right .h4 {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .form-date-time {
    flex-direction: column;
    gap: 0;
  }
  .form-date-time input:nth-child(2) {
    margin-bottom: 8px;
  }
  .form-date-time #dateHeader {
    margin-bottom: 16px;
  }
  .form-explainer {
    margin: 24px 0 16px;
  }
}
.zmi {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}
.zmi .h2 {
  text-align: center;
  margin-bottom: 48px;
}

.zmi-items {
  display: flex;
  flex-direction: column;
}

.zmi-item {
  padding: 24px 0;
  border-top: 2px solid rgb(242, 244, 255);
  display: flex;
  gap: 24px;
}
.zmi-item:last-child {
  border-bottom: 2px solid rgb(242, 244, 255);
}

.zmi-logo {
  width: 88px;
  height: 88px;
  min-width: 88px;
}
.zmi-logo img {
  display: flex;
  object-fit: contain;
  max-width: 88px;
  width: 100%;
  height: 100%;
}

.zmi-body {
  max-width: 870px;
  margin-right: auto;
}
.zmi-body .text2 {
  margin: 12px 0 24px;
  color: rgba(13, 18, 47, 0.8);
}

.zmi-tag {
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px solid rgb(230, 230, 230);
  width: fit-content;
}

.zmi-btn {
  margin: 48px auto 0;
  background-color: transparent;
  font-size: 16px;
  font-family: Semi;
  line-height: 1.5;
  border: 1px solid #E6E6E6;
  color: #0D122F;
  cursor: pointer;
}
.zmi-btn:hover {
  color: white;
}

@media (max-width: 1000px) {
  .zmi-item {
    flex-direction: column;
  }
  .zmi-logo {
    width: unset;
    height: unset;
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .zmi {
    margin: 64px auto;
    padding: 0 16px;
  }
  .zmi .h2 {
    margin-bottom: 24px;
  }
  .zmi-item {
    gap: 0;
  }
  .zmi-tag {
    margin-bottom: 24px;
  }
  .zmi-body .text2 {
    margin: 8px 0 16px;
  }
  .zmi-btn {
    margin: 24px auto 0;
  }
}
.faq {
  position: relative;
  margin: 150px auto;
  padding: 0 32px;
  max-width: 900px;
}
.faq .h2 {
  text-align: center;
  margin-bottom: 56px;
}

.faq-item {
  border-top: 2px solid #F2F4FF;
  padding-bottom: 12px;
  overflow: hidden;
}
.faq-item:last-child {
  border-bottom: 2px solid #F2F4FF;
}
.faq-item .faq-icon {
  fill: #FA4946;
  transition: ease 0.4s;
}
.faq-item.active {
  padding-bottom: 24px;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  fill: #FFE9E9;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 12px;
  font-size: 18px;
  cursor: pointer;
  gap: 24px;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-heart-1 {
  position: absolute;
  fill: rgba(253, 249, 249, 0.5);
  left: -40%;
  top: -20px;
  z-index: -1;
}

.faq-heart-2 {
  position: absolute;
  fill: rgba(253, 249, 249, 0.5);
  right: -44%;
  bottom: -20px;
  z-index: -1;
}

@media (max-width: 768px) {
  .faq {
    margin: 64px auto;
    padding: 0 16px;
  }
  .faq .h2 {
    margin-bottom: 24px;
  }
  .faq-heart-2 {
    display: none;
  }
}
.hero {
  background-color: #F9FBFF;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}

.hero-wrap {
  max-width: 1384px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  margin-bottom: 48px;
  color: #0D122F;
}

.breadcrumb-icon {
  color: rgba(13, 18, 47, 0.8);
}

.breadcrumb-link {
  color: rgba(13, 18, 47, 0.8);
  transition: ease 0.3s;
}
.breadcrumb-link:visited {
  color: rgba(13, 18, 47, 0.8);
}
.breadcrumb-link:hover {
  color: #0D122F;
}

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

.hero-col {
  flex: 1 1 100%;
}

.breadcrumb-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Medium;
}

.hero-desc {
  margin: 16px 0;
}

.hero-btn {
  margin-top: 32px;
}

.hero-use-img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-cores {
  display: flex;
  max-width: 1384px;
  margin: 0 auto;
  padding: 48px 32px 0;
}

.hero-core {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
  border-left: 1px solid #D9E0F5;
}

.hero-core:first-child {
  padding-left: 0;
  border-left: none;
}

.hero-core:last-child {
  padding-right: 0;
}

@media (max-width: 1000px) {
  .hero-cols {
    flex-wrap: wrap;
    gap: 24px;
  }
  .hero-col br {
    display: none;
  }
  .hero-cores {
    flex-wrap: wrap;
    row-gap: 32px;
  }
  .hero-core {
    flex: 1 1 48%;
  }
  .hero-core:first-child {
    padding-left: 24px;
    border-left: 1px solid #D9E0F5;
  }
  .hero-core:last-child {
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 48px;
  }
  .hero-wrap {
    padding: 0 16px;
  }
  .hero-use-img {
    border-radius: 16px;
  }
  .breadcrumbs-list {
    margin-bottom: 32px;
  }
  .hero-cores {
    padding: 0 16px;
    padding-top: 32px;
  }
  .hero-core {
    padding: 0 16px;
    width: 50%;
  }
  .hero-core .h2 {
    font-size: 36px;
  }
  .hero-core:first-child {
    padding-left: 16px;
  }
  .hero-core:last-child {
    padding-right: 16px;
  }
}
.article-section {
  margin: 72px auto;
  padding: 0 32px;
  max-width: 1384px;
  display: flex;
  gap: 48px;
}

aside {
  position: sticky;
  top: 80px;
  height: fit-content;
  background-color: #F9FBFF;
  border: 1px solid rgba(200, 211, 240, 0.7);
  border-radius: 10px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
}

.aside-block {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aside-block:last-child {
  margin-bottom: 0;
}

.aside-block-title {
  font-family: Bold;
  line-height: 1.4;
}

.aside-block-desc {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aside-link {
  color: #0D122F;
  transition: ease 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-link svg {
  fill: #0D122F;
  transition: ease 0.3s;
}
.aside-link:visited {
  color: #0D122F;
}
.aside-link:hover {
  color: #FA4946;
}
.aside-link:hover svg {
  fill: #FA4946;
}

.aside-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aside-tag {
  background-color: white;
  border: 1px solid rgba(200, 211, 240, 0.7);
  padding: 4px 16px;
  border-radius: 24px;
}

.aside-logo {
  width: 86px;
  height: 72px;
  object-fit: contain;
}

article {
  color: rgba(13, 18, 47, 0.8);
}
article h2 {
  font-size: 36px;
  font-family: Bold;
  line-height: 1.4;
  margin: 48px 0 16px;
  color: #0D122F;
}
article h2:first-child {
  margin-top: 0;
}
article p {
  line-height: 1.5;
  margin-bottom: 16px;
}
article img {
  display: flex;
  max-width: 650px;
  border-radius: 12px;
  margin: 24px 0;
  width: 100%;
}
article ul {
  margin: 16px 0;
  margin-left: 32px;
}
article ul li {
  position: relative;
  line-height: 1.4;
  margin-bottom: 12px;
}
article ul li:last-child {
  margin-bottom: 0;
}
article ul li::before {
  content: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88334 20.6867 5.825 19.9743 4.925 19.075C4.025 18.1757 3.31267 17.1173 2.788 15.9C2.26333 14.6827 2.00067 13.3827 2 12C1.99933 10.6173 2.262 9.31733 2.788 8.1C3.314 6.88267 4.02633 5.82433 4.925 4.925C5.82367 4.02567 6.882 3.31333 8.1 2.788C9.318 2.26267 10.618 2 12 2C13.382 2 14.682 2.26267 15.9 2.788C17.118 3.31333 18.1763 4.02567 19.075 4.925C19.9737 5.82433 20.6863 6.88267 21.213 8.1C21.7397 9.31733 22.002 10.6173 22 12C21.998 13.3827 21.7353 14.6827 21.212 15.9C20.6887 17.1173 19.9763 18.1757 19.075 19.075C18.1737 19.9743 17.1153 20.687 15.9 21.213C14.6847 21.739 13.3847 22.0013 12 22ZM12.2 13L11.3 13.9C11.1167 14.0833 11.025 14.3167 11.025 14.6C11.025 14.8833 11.1167 15.1167 11.3 15.3C11.4833 15.4833 11.7167 15.575 12 15.575C12.2833 15.575 12.5167 15.4833 12.7 15.3L15.3 12.7C15.5 12.5 15.6 12.2667 15.6 12C15.6 11.7333 15.5 11.5 15.3 11.3L12.7 8.7C12.5167 8.51667 12.2833 8.425 12 8.425C11.7167 8.425 11.4833 8.51667 11.3 8.7C11.1167 8.88333 11.025 9.11667 11.025 9.4C11.025 9.68333 11.1167 9.91667 11.3 10.1L12.2 11H9C8.71667 11 8.47933 11.096 8.288 11.288C8.09667 11.48 8.00067 11.7173 8 12C7.99933 12.2827 8.09534 12.5203 8.288 12.713C8.48067 12.9057 8.718 13.0013 9 13H12.2Z' fill='%23FA4946'/></svg>");
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -32px;
}
article .plan-list li::before {
  content: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M8.97266 21.5322C9.11823 20.9657 9.68268 20.605 10.2637 20.7197C10.8242 20.8306 11.4049 20.8887 12 20.8887V22C10.9446 22 9.92775 21.8353 8.97266 21.5322ZM13.7363 20.7197C14.3172 20.605 14.8807 20.9658 15.0264 21.5322C14.0715 21.8351 13.0551 22 12 22V20.8887C12.5951 20.8887 13.1758 20.8306 13.7363 20.7197ZM3.12109 16.5996C3.6247 16.3025 4.27802 16.4464 4.60742 16.9385C5.25664 17.9081 6.09186 18.7434 7.06152 19.3926C7.55345 19.7219 7.69634 20.3744 7.39941 20.8779C5.56939 19.9277 4.07112 18.4298 3.12109 16.5996ZM19.3926 16.9385C19.7218 16.4467 20.3744 16.303 20.8779 16.5996C19.9278 18.4299 18.4299 19.9278 16.5996 20.8779C16.303 20.3744 16.4467 19.7218 16.9385 19.3926C17.9081 18.7434 18.7434 17.9081 19.3926 16.9385ZM2 12C2 10.9447 2.1638 9.92767 2.4668 8.97266C3.03389 9.11786 3.3951 9.68236 3.28027 10.2637C3.16938 10.8242 3.11133 11.4049 3.11133 12C3.11133 12.5951 3.16938 13.1758 3.28027 13.7363C3.39509 14.3176 3.03375 14.8811 2.4668 15.0264C2.16398 14.0716 2 13.055 2 12ZM22 12C22 13.0551 21.8351 14.0715 21.5322 15.0264C20.9658 14.8807 20.605 14.3172 20.7197 13.7363C20.8306 13.1758 20.8887 12.5951 20.8887 12C20.8887 11.4049 20.8306 10.8242 20.7197 10.2637C20.605 9.68268 20.9657 9.11823 21.5322 8.97266C21.8353 9.92775 22 10.9446 22 12ZM7.39941 3.12109C7.6969 3.62475 7.55369 4.27792 7.06152 4.60742C6.09186 5.25664 5.25664 6.09186 4.60742 7.06152C4.27792 7.55369 3.62475 7.6969 3.12109 7.39941C4.07121 5.56946 5.56946 4.07121 7.39941 3.12109ZM16.5996 3.12109C18.4298 4.07112 19.9277 5.56939 20.8779 7.39941C20.3744 7.69634 19.7219 7.55345 19.3926 7.06152C18.7434 6.09186 17.9081 5.25664 16.9385 4.60742C16.4464 4.27802 16.3025 3.6247 16.5996 3.12109ZM12 2C13.055 2 14.0716 2.16398 15.0264 2.4668C14.8811 3.03375 14.3176 3.39509 13.7363 3.28027C13.1758 3.16938 12.5951 3.11133 12 3.11133C11.4049 3.11133 10.8242 3.16938 10.2637 3.28027C9.68236 3.3951 9.11786 3.03389 8.97266 2.4668C9.92767 2.1638 10.9447 2 12 2Z' fill='%23FA4946'/></svg>");
}
article strong {
  font-family: Semi;
}

.article-testimonial {
  background-color: #F9FBFF;
  border: 1px solid rgba(200, 211, 240, 0.7);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 24px;
}

.art-testimonial-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-body {
  font-size: 20px;
  font-family: Medium;
}

.testi-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-name {
  font-family: Bold;
  line-height: 1.4;
}

.testi-position {
  color: rgba(13, 18, 47, 0.8);
}

.testi-author-img {
  margin: 0;
  aspect-ratio: 1;
  max-width: 216px;
  height: 100%;
  width: 100%;
}

@media (max-width: 1000px) {
  .article-section {
    flex-direction: column;
    gap: 32px;
  }
  aside {
    position: unset;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .article-section {
    margin: 32px 0;
    padding: 0 16px;
  }
  aside {
    padding: 16px;
  }
  article h2 {
    font-size: 24px;
    margin: 32px 0 12px;
  }
  article p {
    font-size: 14px;
  }
  article img {
    border-radius: 8px;
  }
  article ul li {
    font-size: 14px;
  }
  .article-testimonial {
    border-radius: 16px;
    flex-direction: column;
  }
  .testi-author-img {
    max-width: 420px;
  }
  .testi-author {
    margin-top: 24px;
  }
  .testi-body {
    margin-bottom: 0;
    font-size: 16px;
  }
  .testi-position {
    font-size: 14px;
  }
}
.hero {
  background-color: #F9FBFF;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}

.hero-wrap {
  max-width: 1384px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  margin-bottom: 48px;
  color: #0D122F;
}

.breadcrumb-icon {
  color: rgba(13, 18, 47, 0.8);
}

.breadcrumb-link {
  color: rgba(13, 18, 47, 0.8);
  transition: ease 0.3s;
}
.breadcrumb-link:visited {
  color: rgba(13, 18, 47, 0.8);
}
.breadcrumb-link:hover {
  color: #0D122F;
}

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

.hero-col {
  flex: 1 1 100%;
  width: 50%;
}

.breadcrumb-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Medium;
}

.hero-desc {
  margin: 16px 0;
}

.hero-btn {
  margin-top: 32px;
}

.hero-use-img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-left-col {
  position: relative;
  z-index: 1;
}

.cases-swiper {
  overflow: unset;
  width: 100%;
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transition: ease 0.3s;
}

.swiper-slide-active, .swiper-slide-next {
  opacity: 1;
}

.hero-controls {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-navs {
  position: relative;
  width: 108px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.hero-prev, .hero-next {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.6s;
  cursor: pointer;
}
.hero-prev svg, .hero-next svg {
  fill: #0D122F;
  transition: ease 0.6s;
}
.hero-prev:hover, .hero-next:hover {
  border: 1px solid #0D122F;
}

.hero-prev svg {
  transform: translateX(-1px);
}

.hero-next svg {
  transform: translateX(1px);
}

.swiper-button-disabled svg {
  fill: #CACACA;
}
.swiper-button-disabled:hover {
  border: 1px solid #E6E6E6;
  cursor: default;
}

.swiper-pagination-current {
  font-family: Bold;
}

.hero-slide-snipet {
  position: absolute;
  background-color: white;
  left: 12px;
  bottom: 12px;
  right: 12px;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-snipet-text {
  line-height: 1.5;
}

.hero-snipet-logo {
  border: 1px solid rgba(200, 211, 240, 0.7);
  border-radius: 6px;
  background-color: #F9FBFF;
  padding: 8px;
  max-width: 120px;
  aspect-ratio: 92/56;
  height: fit-content;
}
.hero-snipet-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-snipet-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1000px) {
  .hero-cols {
    flex-wrap: wrap;
    gap: 24px;
  }
  .hero-col br {
    display: none;
  }
  .hero-desc br {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 48px;
  }
  .hero-wrap {
    padding: 0 16px;
  }
  .hero-use-img {
    border-radius: 0;
  }
  .breadcrumbs-list {
    margin-bottom: 32px;
  }
  .hero-slide {
    opacity: 1;
    border: 1px solid rgba(200, 211, 240, 0.7);
    border-radius: 16px;
    overflow: hidden;
  }
  .hero-slide-snipet {
    position: unset;
    padding: 12px;
    background-color: white;
    gap: 16px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .hero-snipet-text {
    font-size: 14px;
  }
  .hero-snipet-logo {
    max-width: 92px;
  }
}
.cases-full {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}

.cases-full-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.cases-full-top .text2 {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(13, 18, 47, 0.8);
}

.cases-full-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.case-full-card {
  padding: 16px;
  border-radius: 20px;
  background-color: #F9FBFF;
  border: 1px solid rgba(200, 211, 240, 0.7);
  height: unset;
  max-width: calc((100% - 48px) / 3);
}
.case-full-card .text2 {
  color: rgba(13, 18, 47, 0.8);
}

.case-full-card-img {
  display: flex;
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 392/272;
}

.case-full-card-logo {
  display: flex;
  width: 100%;
  max-width: 120px;
  aspect-ratio: 120/72;
  object-fit: contain;
  margin: 16px 0;
}

.case-full-card-link {
  display: flex;
  margin: 16px 0 48px;
}

.case-full-card-indicators {
  display: flex;
}

.case-full-card-indicator:first-child {
  padding-right: 16px;
  width: 100%;
}

.case-full-card-indicator:last-child {
  padding-left: 16px;
  border-left: 1px solid rgba(200, 211, 240, 0.7);
  width: 100%;
}

.case-full-card-indicator-desc {
  line-height: 1.4;
  font-size: 14px;
  color: rgba(13, 18, 47, 0.8);
  margin-top: 4px;
}

.case-full-card-big {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 16px;
  max-width: calc((100% - 12px) / 3 * 2);
  width: 100%;
}
.case-full-card-big .case-full-card-img {
  aspect-ratio: 378/636;
  max-width: 378px;
}

.case-full-card-wrap {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-full-card-wrap .h4 {
  margin-bottom: 16px;
}

.case-full-card-main {
  max-width: 400px;
}

@media (max-width: 1200px) {
  .case-full-card {
    max-width: calc((100% - 24px) / 2);
  }
  .case-full-card-big {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .cases-full {
    margin: 64px auto;
    padding: 0 16px;
  }
  .case-full-card {
    border-radius: 16px;
    max-width: unset;
  }
  .case-full-card-img {
    border-radius: 12px;
  }
  .case-full-card-indicator-desc {
    font-size: 12px;
  }
  .case-full-card-big {
    display: unset;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 16px;
    max-width: 100%;
    width: 100%;
  }
  .case-full-card-big .case-full-card-img {
    aspect-ratio: 392/272;
    max-width: unset;
    object-position: center 20%;
  }
  .case-full-card-wrap {
    padding: unset;
    display: unset;
    flex-direction: column;
    justify-content: space-between;
  }
  .case-full-card-wrap .h4 {
    margin-bottom: 8px;
  }
  .case-full-card-main {
    max-width: unset;
  }
  .cases-full-list {
    gap: 12px;
  }
  .cases-full-top {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 24px;
  }
  .cases-full-top .text2 {
    margin-top: 12px;
  }
}
.cards-row {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.section-top .h2 {
  max-width: 900px;
}

.cards-navs {
  position: relative;
  width: 108px;
  min-width: 108px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.cards-row-prev, .cards-row-next {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.6s;
  cursor: pointer;
}
.cards-row-prev svg, .cards-row-next svg {
  fill: #0D122F;
  transition: ease 0.6s;
}
.cards-row-prev:hover, .cards-row-next:hover {
  border: 1px solid #0D122F;
}

.cards-prev svg {
  transform: translateX(-1px);
}

.cards-row-next svg {
  transform: translateX(1px);
}

.swiper-button-disabled svg {
  fill: #CACACA;
}
.swiper-button-disabled:hover {
  border: 1px solid #E6E6E6;
  cursor: default;
}

.cards-row-swiper {
  overflow: unset;
}

.card {
  border-radius: 20px;
  border: 1px solid rgba(200, 211, 240, 0.7);
  overflow: hidden;
  height: unset;
}

.card-top {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px 24px 76px;
}
.card-top .text3 {
  color: rgba(13, 18, 47, 0.8);
}
.card-top svg {
  fill: #FA4946;
  width: 80px;
  min-width: 80px;
}

.card-title {
  font-size: 20px;
  font-family: Semi;
  line-height: 1.4;
  margin-bottom: 8px;
}

.card-bottom {
  background-color: #FFE9E9;
  padding: 16px 24px;
  transition: ease 0.6s;
  display: flex;
  justify-content: space-between;
  color: #FA4946;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.card-bottom:visited {
  color: #FA4946;
}
.card-bottom svg {
  stroke: #FA4946;
  transition: ease 0.6s;
}

.card:hover .card-bottom {
  background-color: #FA4946;
  color: white;
}
.card:hover .card-bottom:hover {
  background-color: #dd3e3c;
}
.card:hover .card-bottom svg {
  stroke: white;
}

@media (max-width: 768px) {
  .cards-row {
    margin: 64px auto;
    padding: 0 16px;
  }
  .section-top {
    margin-bottom: 24px;
  }
  .cards-navs {
    display: none;
  }
  .card {
    border-radius: 16px;
  }
  .card-top {
    padding: 16px 16px 68px;
    align-items: flex-end;
  }
  .card-top svg {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .card-top .card-bottom {
    padding: 16px;
  }
  .card-title {
    font-size: 16px;
  }
}
.hero {
  background-color: #F9FBFF;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.hero-wrap {
  max-width: 1384px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  margin-bottom: 48px;
  color: #0D122F;
}

.breadcrumb-icon {
  color: rgba(13, 18, 47, 0.8);
}

.breadcrumb-link {
  color: rgba(13, 18, 47, 0.8);
  transition: ease 0.3s;
}
.breadcrumb-link:visited {
  color: rgba(13, 18, 47, 0.8);
}
.breadcrumb-link:hover {
  color: #0D122F;
}

.hero-cols {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 60px;
}

.breadcrumb-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Medium;
}

.hero-desc {
  margin: 16px 0;
}

.hero-btn {
  margin-top: 32px;
}

.hero-use-img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 1000px) {
  .hero-cols {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .hero-wrap {
    padding: 0 16px;
  }
  .hero-use-img {
    border-radius: 16px;
  }
  .breadcrumbs-list {
    margin-bottom: 32px;
  }
  .hero-cols {
    padding-bottom: 48px;
  }
}
.standard {
  margin: 56px auto;
  padding: 0 32px;
  max-width: 1384px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.standard-img-wrap {
  background-color: #F9FBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.standard-img-wrap img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.standard-wrap {
  width: 100%;
  padding: 32px;
}
.standard-wrap .h2 {
  margin-bottom: 24px;
}
.standard-wrap p {
  color: rgba(13, 18, 47, 0.8);
}

.standard-text {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.5;
}

.standard-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 1100px) {
  .standard {
    flex-direction: column;
  }
  .standard-img-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .standard-wrap {
    padding: 0;
  }
  .standard-wrap .h2 {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .standard {
    margin: 64px auto;
    padding: 0 16px;
  }
  .standard-wrap .h2 br {
    display: none;
  }
  .standard-text {
    font-size: 16px;
  }
  .standard-img-wrap {
    border-radius: 16px;
  }
}
.duo {
  margin: 150px auto;
  padding: 0 32px;
  max-width: 1384px;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.duo-navs {
  position: relative;
  width: 108px;
  min-width: 108px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.duo-prev, .duo-next {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.6s;
  cursor: pointer;
}
.duo-prev svg, .duo-next svg {
  fill: #0D122F;
  transition: ease 0.6s;
}
.duo-prev:hover, .duo-next:hover {
  border: 1px solid #0D122F;
}

.duo-prev svg {
  transform: translateX(-1px);
}

.duo-next svg {
  transform: translateX(1px);
}

.swiper-button-disabled svg {
  fill: #CACACA;
}
.swiper-button-disabled:hover {
  border: 1px solid #E6E6E6;
  cursor: default;
}

.duo-swiper {
  overflow: unset;
  width: 100%;
}

.duo-slide {
  border: 1px solid rgb(217, 224, 245);
  border-radius: 20px;
  overflow: hidden;
}

.duo-top {
  padding: 24px;
  border-bottom: 1px solid rgb(217, 224, 245);
  background-color: #F9FBFF;
}
.duo-top svg {
  width: 48px;
  height: 48px;
  fill: #FA4946;
  margin-bottom: 24px;
}
.duo-top .h5 {
  margin-bottom: 8px;
}

.duo-body {
  padding: 24px 20px;
}
.duo-body .h6 {
  margin-bottom: 8px;
}
.duo-body .text3 {
  color: rgba(13, 18, 47, 0.8);
}

.checklist {
  margin-bottom: 24px;
}
.checklist li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  color: rgba(13, 18, 47, 0.8);
  align-items: flex-start;
}
.checklist li img {
  display: flex;
  min-width: 24px;
}

.duo-header-alternative, .duo-pagination {
  display: none;
}

@media (max-width: 768px) {
  .duo {
    margin: 64px auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column-reverse;
  }
  .section-top {
    margin: 24px 0 0;
  }
  .section-top .h2 {
    display: none;
  }
  .duo-header-alternative {
    display: block;
    margin-bottom: 24px;
  }
  .duo-pagination {
    display: block;
  }
  .duo-top {
    padding: 16px;
  }
  .duo-body {
    padding: 16px;
  }
  .duo-top-wrap {
    display: flex;
    gap: 12px;
  }
  .duo-top-wrap svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-bottom: 12px;
  }
  .checklist {
    margin-bottom: 16px;
  }
}
.hero-price {
  padding: 80px 32px 150px;
  background-color: #F9FBFF;
}

.hero-price-wrap {
  max-width: 1320px;
  margin: 0 auto;
}

.hero-price-top {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-price-top .text1 {
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-price {
    padding: 64px 16px 32px;
  }
}
.price-table {
  background-color: rgb(242, 244, 249);
  padding: 8px;
  border-radius: 24px;
  margin-top: 64px;
}

.price-table-tabs {
  display: flex;
  justify-content: center;
}

.price-table-tab {
  position: relative;
  padding: 16px 24px;
  cursor: pointer;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  flex: 1 1 100%;
  max-width: 300px;
  transition: ease 0.3s;
  color: #5F5F74;
}
.price-table-tab:hover {
  background-color: white;
  border-left: 1px solid rgba(200, 211, 240, 0.7);
  border-top: 1px solid rgba(200, 211, 240, 0.7);
  border-right: 1px solid rgba(200, 211, 240, 0.7);
  color: #0D122F;
}
.price-table-tab:hover .price-table-label {
  background-color: #FFF6F6;
}
.price-table-tab:hover .price-table-title svg {
  width: 0;
  height: 0;
  margin-right: 0;
}

.price-table-tab.active {
  background-color: white;
  border-left: 1px solid rgba(200, 211, 240, 0.7);
  border-top: 1px solid rgba(200, 211, 240, 0.7);
  border-right: 1px solid rgba(200, 211, 240, 0.7);
  color: #0D122F;
}
.price-table-tab.active .price-table-label {
  background-color: #FFF6F6;
}
.price-table-tab.active .price-table-title svg {
  width: 14px;
  height: 14px;
  margin-right: 12px;
}

.price-table-label {
  position: absolute;
  background-color: white;
  border-radius: 30px;
  color: #FA4946;
  font-size: 12px;
  line-height: 1.4;
  padding: 2px 12px;
  right: 9px;
  top: 8px;
  transition: ease 0.3s;
}

.price-table-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.price-table-title svg {
  width: 0;
  height: 0;
  margin-right: 0;
  transition: ease 0.3s;
}

.price-table-desc {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}
.price-table-desc .text3 {
  line-height: 2.2;
}

.price-table-body {
  position: relative;
  display: none;
  padding: 24px;
  border-radius: 16px;
  background-color: white;
  border: 1px solid rgba(200, 211, 240, 0.7);
  min-height: 420px;
}
.price-table-body .price-table-label {
  display: none;
}

.price-table-body.active {
  display: flex;
}

.price-table-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(200, 211, 240, 0.7);
  padding-right: 24px;
  width: 100%;
  max-width: 326px;
}

.price-table-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.price-table-price .text3 {
  line-height: 2.5;
}

.price-table-col-header {
  font-family: Bold;
  line-height: 1.5;
}

.price-table-list-simple {
  list-style-type: disc;
  padding-left: 24px;
}

.price-table-btn {
  margin-top: 32px;
  width: 100%;
}

.price-table-list-better {
  padding: 0 24px 0 48px;
  column-count: 3;
  column-gap: 48px;
  list-style: none;
  column-fill: auto;
  margin: 0;
  max-height: 300px;
}
.price-table-list-better li {
  position: relative;
  break-inside: avoid-column;
  margin-bottom: 16px;
  line-height: 1.5;
  padding-left: 32px;
}
.price-table-list-better li::before {
  position: absolute;
  content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><rect width='24' height='24' fill='%23f3f3f5' rx='12'/><path fill='%230d122f' fill-opacity='.5' d='m18 8.667-8 8L6.335 13l.94-.94 2.727 2.72 7.06-7.053z'/></svg>");
  left: 0;
  top: 0;
}

.price-table-info-mob {
  display: none;
}

.price-table-show-more-les {
  display: none;
}

@media (max-width: 1320px) {
  .price-table-tab {
    max-width: 22vw;
  }
  .price-table-list-better {
    padding: 0 16px;
    column-gap: 24px;
  }
}
@media (max-width: 1100px) {
  .price-table {
    margin-top: 48px;
  }
  .price-table {
    padding: 0;
  }
  .price-table-tabs {
    display: none;
  }
  .price-table-body {
    flex-direction: column;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    margin-bottom: 16px;
  }
  .price-table-body .price-table-label {
    display: flex;
    background-color: #FFF6F6;
    right: 10px;
    top: 10px;
  }
  .price-table-price .h3 {
    font-size: 36px;
  }
  .price-table-price .text3 {
    font-size: 14px;
  }
  .price-table-col {
    border: unset;
    padding-right: 0;
    gap: 8px;
  }
  .price-table-btn {
    margin-top: 16px;
  }
  .price-table-list-better {
    padding: 24px 0 0;
    column-count: 1;
    max-height: unset;
  }
  .price-table-list-better li {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
  }
  .price-table-list-better li.hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .price-table-info-mob {
    display: flex;
    border-top: 1px solid rgba(200, 211, 240, 0.7);
    border-bottom: 1px solid rgba(200, 211, 240, 0.7);
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-top: 24px;
    padding: 20px 16px;
  }
  .price-table-desc {
    gap: 6px;
  }
  .price-table-desc .h4 {
    font-size: 20px;
  }
  .price-table-desc .text3 {
    line-height: 1.8;
  }
  .price-table-body:nth-child(4) {
    border: 1px solid #FA4946;
  }
  .price-table-show-more-les {
    display: flex;
    background-color: transparent;
    text-align: left;
    font-size: 16px;
    text-decoration: underline;
    font-family: Semi;
    padding-left: 0;
  }
}
.price-banner {
  background-color: #0D122F;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  gap: 120px;
  margin-top: 64px;
}

.price-banner-col {
  color: white;
}
.price-banner-col .h2 {
  margin-top: 16px;
}

.price-banner-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-banner-label-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #FA4946;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-banner-label-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.price-banner-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

@media (max-width: 1100px) {
  .price-banner {
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .price-banner {
    margin-top: 48px;
    border-radius: 12px;
    padding: 16px;
  }
  .price-banner-text {
    margin-bottom: 24px;
  }
}