@import 'https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap';
@import url("https://fonts.googleapis.com/css2?family=Handlee&amp;display=swap");
:root {
  --white: #fff;
  --black: #000;
  --green-bold-color: #00bf64;
  --green-normal-back: linear-gradient(
      225.13deg,
      #034d8f 0%,
      #111161 77.53%,
      #2f165b 97.52%
  );
  --green-normal-color: #14296e;
  --overlay-black: #343239;
  --overlay-white: #fbf9f8;
  --overlay-blue: linear-gradient(
      225.13deg,
      rgba(3, 77, 143, 0.1) 0%,
      rgba(17, 17, 97, 0.1) 77.53%,
      rgba(47, 22, 91, 0.1) 97.52%
  );
  --main-color: linear-gradient(
      225.13deg,
      #034d8f 0%,
      #111161 77.53%,
      #2f165b 97.52%
  );
  --border-color: #657562;
  --font-family: "Poppins", Helvetica,Arial,sans-serif;
  --main: #006eba;
}

* {
  box-sizing: border-box;
}

html,
body * {
  font-family: var(--font-family);
}

#synctrack ul,
#synctrack ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  background-color: var(--white);
}

.button {
  position: relative;
  width: fit-content;
  margin: 0;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  transition: all 0.5s linear;
  z-index: 2;
}
.button#btn-header {
  transition: none;
}
.button.button-home-primary, .button.button-home-secondary {
  padding: 8px 40px;
  border-radius: 8px;
}
.button.button-primary::after, .button.button-secondary::after, .button.button-normal::after, .button.button-home-primary::after, .button.button-home-secondary::after {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background: var(--green-normal-back);
  border-radius: 4px;
}
.button.button-primary {
  background-color: var(--white);
  color: var(--green-normal-color);
  border: 1px solid var(--green-normal-color);
}
.button.button-primary:hover {
  color: var(--white);
  border: 1px solid var(--white);
}
.button.button-secondary {
  background: var(--green-normal-back);
  color: var(--white);
  border: 1px solid var(--white);
}
.button.button-secondary::after {
  background: var(--white);
}
.button.button-secondary:hover {
  color: var(--green-normal-color);
  border: 1px solid var(--green-normal-color);
}
.button.button-normal {
  background-color: var(--white);
  color: var(--overlay-black);
  border: 1px solid var(--overlay-black);
}
.button.button-normal::after {
  background-color: var(--overlay-black);
}
.button.button-normal:hover {
  color: var(--white);
  border: 1px solid var(--white);
}
.button.button-home-primary {
  background: #b6e0ff;
  color: #11347b;
  border: 1px solid #b6e0ff;
}
.button.button-home-primary::after {
  background: #11347b;
  border-radius: 8px;
}
.button.button-home-primary:hover {
  color: #b6e0ff;
  border: 1px solid #b6e0ff;
}
.button.button-home-secondary {
  background: var(--white);
  color: #11347b;
  border: 1px solid var(--white);
}
.button.button-home-secondary::after {
  background: #11347b;
  border-radius: 8px;
}
.button.button-home-secondary:hover {
  color: var(--white);
  border: 1px solid var(--white);
}
.button.button-primary:hover::after, .button.button-secondary:hover::after, .button.button-normal:hover::after, .button.button-home-primary:hover::after, .button.button-home-secondary:hover::after {
  width: 100%;
  opacity: 1;
}
.button.button-rounded {
  border-radius: 2rem;
}
.button.button-rounded::after {
  border-radius: 2rem;
}

.link {
  text-decoration: none;
  position: relative;
  font-size: 16px;
  color: var(--green-normal-color);
  font-weight: 600;
  padding-block: 0.5rem;
  transition: all 0.2s linear;
  cursor: pointer;
}
.link::before {
  bottom: 4px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}
.link.overlay-black::before {
  background-color: var(--overlay-black);
}
.link.overlay-white::before {
  background-color: var(--overlay-white);
}
.link.green-normal-color::before {
  background-color: var(--green-normal-color);
}
.link:hover::before {
  transform: scaleX(1);
  transform-origin: center left;
}
.link.selected::before {
  transform: scaleX(1);
}

/* fix row bootstrap margin -24px => scroll ngang */
.container {
  margin: 0 auto;
}

.container > .row,
.container .row {
  margin: 0 !important;
}

@media (max-width: 576px) {
  .row > * {
    padding: 0;
  }
}
.scroll-animation {
  opacity: 0;
  transition: opacity 1s ease;
}

.scroll-animation.init-load {
  opacity: 1;
}

h1 {
  font-size: 64px;
  line-height: 73.6px;
  font-weight: 700;
  text-align: center;
}
@media (width <= 768px) {
  h1 {
    font-size: 52px;
  }
}
@media (width <= 482px) {
  h1 {
    font-size: 36px;
    line-height: 1.4;
  }
}
h1.home {
  font-size: 54px;
}

h2 {
  color: var(--green-normal-color);
  font-size: 54px;
  font-weight: 700;
}
h2.comparison-title {
  font-size: 40px;
}
h2.home {
  font-size: 46px;
}
@media (width <= 992px) {
  h2 {
    font-size: 44px;
  }
  h2.comparison-title {
    font-size: 36px;
  }
  h2.home {
    font-size: 36px;
  }
}
@media (width <= 576px) {
  h2 {
    font-size: 32px;
  }
  h2.comparison-title {
    font-size: 32px;
  }
  h2.home {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  line-height: 27.6px;
  font-weight: 600;
}
@media (width <= 576px) {
  h3 {
    font-size: 20px;
  }
}

.omg-card {
  height: auto;
  width: auto;
  border-radius: 20px;
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.title-small {
  font-weight: bold;
  font-size: 20px;
}

.float-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ptb-3rem {
  padding: 6rem 0 3rem 0;
}

.circle {
  background-color: var(--main);
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

.subtitle-1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.auto-text {
  display: flex;
  text-align: justify;
}

.vertical-auto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svg-effect {
  color: var(--main);
  position: relative;
  z-index: 0;
  height: 54px;
  display: flex;
  align-items: flex-end;
}
.svg-effect svg:nth-child(1) {
  position: absolute;
  z-index: -1;
}

.collapse-effect {
  transition: max-height 1s ease;
  overflow: hidden;
}

/**remember set position relative for parent element*/
.omg-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
}

/**------------card--------------*/
.small-card {
  border-radius: 20px;
  height: 100%;
  background-color: #fff;
  padding: 2rem;
}

/**---------typography----------*/
/**---------typography common-----------*/
/**----------------xs---------------*/
@media screen and (max-width: 575px) {
  .hero-title {
    font-family: "Poppins";
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
  }
  .display-1 {
    font-family: "Poppins";
    font-size: 36.5714285714px;
    font-weight: 600;
    line-height: 51.2px;
  }
  .display-2 {
    padding: 0 0.5rem;
    font-family: "Poppins";
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
  }
  .st-h1 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 35.2px;
    font-size: 25.1428571429px;
  }
  .st-h2 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 32px;
    font-size: 22.8571428571px;
  }
  .st-h3 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 25.6px;
    font-size: 18.2857142857px;
  }
  .st-h4 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 22.4px;
    font-size: 16px;
  }
  .st-h5 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 22.4px;
    font-size: 16px;
  }
  .st-h6 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 22.4px;
    font-size: 16px;
  }
  .body-xxs {
    font-size: 10px;
  }
  .body-xs {
    font-size: 14px;
    font-weight: 400;
    line-height: 25.2px;
    opacity: 0.95;
  }
  .body-sm {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    opacity: 0.95;
  }
  .body-lg {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    opacity: 0.95;
  }
  .body-xxl {
    font-size: 13.3333333333px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.95;
  }
  .link-sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
  }
  .auto-rem {
    margin-bottom: 1.5rem;
  }
  .btn-main,
  .btn-second {
    width: max-content;
    font-size: 16px;
  }
  .btn-main svg,
  .btn-second svg {
    width: auto;
    height: 20px;
  }
  .subtitle-customer {
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    font-family: "Poppins";
  }
  .st-inter-1 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
  }
  .p-inter {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
  }
}
/**---------------sm---------------*/
@media screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-family: "Poppins";
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
  }
  .display-1 {
    font-family: "Poppins";
    font-size: 51.2px;
    font-weight: 600;
    line-height: 71.68px;
  }
  .display-2 {
    font-family: "Poppins";
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
  }
  .st-h1 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 49.28px;
    font-size: 35.2px;
  }
  .st-h2 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 44.8px;
    font-size: 32px;
  }
  .st-h3 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 35.84px;
    font-size: 25.6px;
  }
  .st-h4 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 26.88px;
    font-size: 19.2px;
  }
  .st-h5 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 28px;
    font-size: 20px;
  }
  .st-h6 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 22.4px;
    font-size: 16px;
  }
  .body-xs {
    font-size: 14px;
    font-weight: 400;
    line-height: 25.2px;
    opacity: 0.95;
  }
  .body-sm {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    opacity: 0.95;
  }
  .body-lg {
    font-size: 18px;
    font-weight: 400;
    line-height: 32.4px;
    opacity: 0.95;
  }
  .body-xxl {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    opacity: 0.95;
  }
  .subtitle-customer {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    font-family: "Poppins";
  }
  .link-sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
  }
  .auto-rem {
    margin-bottom: 2.5rem;
  }
  .btn-main,
  .btn-second {
    font-size: 12.8px;
  }
  .ptb-3rem {
    padding: 2rem 0 2rem 0;
  }
  .st-inter-1 {
    font-family: "Inter", sans-serif;
    font-size: 18;
    line-height: 27;
    font-weight: 600;
  }
  .p-inter {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
  }
}
/**---------------md--------------*/
@media screen and (min-width: 768px) {
  .hero-title {
    font-family: "Poppins";
    font-size: 50px;
    font-weight: 600;
    line-height: 70px;
  }
  .display-1 {
    font-family: "Poppins";
    font-size: 64px;
    font-weight: 600;
    line-height: 89.6px;
  }
  .display-2 {
    font-family: "Poppins";
    font-size: 45px;
    font-weight: 700;
    line-height: 54px;
  }
  .st-h1 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 61.6px;
    font-size: 44px;
  }
  .st-h2 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 56px;
    font-size: 40px;
  }
  .st-h3 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 44.8px;
    font-size: 32px;
  }
  .st-h4 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 33.6px;
    font-size: 24px;
  }
  .st-h5 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 28px;
    font-size: 20px;
  }
  .st-h6 {
    font-family: "Poppins";
    font-weight: 700;
    line-height: 22.4px;
    font-size: 16px;
  }
  .body-xs {
    font-size: 14px;
    font-weight: 400;
    line-height: 25.2px;
    opacity: 0.95;
  }
  .body-lg {
    font-size: 18px;
    font-weight: 400;
    line-height: 32.4px;
    opacity: 0.95;
  }
  .body-xxl {
    font-size: 24px;
    font-weight: 400;
    line-height: 43.2px;
    opacity: 0.95;
  }
  .subtitle-customer {
    font-size: 24px;
    font-weight: 500;
    line-height: 43.2px;
    font-family: "Poppins";
  }
  .body-sm {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    opacity: 0.95;
  }
  .link-sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
  }
  .auto-rem {
    margin-bottom: 3.5rem;
  }
  .btn-main,
  .btn-second {
    font-size: 16px;
  }
  .body-xxs {
    font-size: 12px;
  }
  .st-inter-1 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
  }
  .p-inter {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
}
.scroll-top {
  background-color: transparent;
  border: 2px solid var(--green-normal-color);
  border-radius: 50%;
  bottom: 80px;
  cursor: pointer;
  height: 50px;
  margin: 15px;
  opacity: 0.75;
  position: fixed;
  right: 16px;
  transition: all 0.2s linear;
  width: 50px;
  z-index: 99;
  display: none;
}
.scroll-top.visible {
  display: block;
}
.scroll-top .arrow {
  position: absolute;
  border: solid var(--green-normal-color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  top: 40%;
  left: 40%;
}
.scroll-top .arrow.up {
  transform: rotate(-135deg);
}
.scroll-top:hover {
  background: var(--green-normal-back);
  border: none;
}
.scroll-top:hover .arrow {
  border: solid var(--white);
  border-width: 0 3px 3px 0;
}

.header {
  margin: auto;
  background-color: var(--white);
  height: 84px;
  padding-block: 20px;
  position: sticky;
  overflow: hidden;
  top: 0;
  z-index: 10;
  transition: all 0.2s linear;
  border-bottom: 1px solid #e4e3e3;
}
.header .nav-mobile {
  font-size: 28px;
  color: var(--green-normal-color);
  cursor: pointer;
  display: none;
  position: absolute;
  right: 20px;
  top: 30px;
  transition: all 0.2s linear;
}
.header .nav-mobile:hover {
  opacity: 0.9;
}
.header-content {
  height: 100%;
}
.header-navigate {
  width: 100%;
}
.header-left-logo {
  text-decoration: none;
  width: fit-content;
}
.header-left-logo > img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}
.header-left-logo > div {
  min-width: 180px;
  font-size: 28px;
  color: var(--green-normal-color);
  font-weight: 800;
  transition: all 0.2s linear;
}
.header-left-item {
  position: relative;
  top: 1px;
  font-weight: 700;
  line-height: 24px;
}
.header-left-item.multiple-tab .chevron {
  position: relative;
  top: 1px;
}
.header-left-item.multiple-tab .fa-chevron-down {
  display: block;
}
.header-left-item.multiple-tab .fa-chevron-up {
  display: none;
}
.header-left-item.multiple-tab::after {
  z-index: 10;
  content: "";
  position: absolute;
  top: -60%;
  left: -40px;
  background-color: transparent;
  display: block;
  width: 190px;
  height: 100px;
}
@media (width > 992px) {
  .header-left-item.multiple-tab:hover .fa-chevron-down {
    display: none;
  }
  .header-left-item.multiple-tab:hover .fa-chevron-up {
    display: block;
  }
}
.header-left-item.multiple-tab.selected .fa-chevron-down {
  display: none;
}
.header-left-item.multiple-tab.selected .fa-chevron-up {
  display: block;
}
@media (width <= 992px) {
  .header-left-item.multiple-tab::after {
    display: none;
  }
}

.header-right .button {
  position: relative;
}
.header-right .button:first-child::before {
  content: "";
  display: block;
  position: absolute;
  height: 20px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: -34px;
  background-color: transparent;
  border-right: 1px solid var(--green-normal-color);
  transition: all 0.2s linear;
}

.sub-menu {
  position: sticky;
  margin: 0;
  padding-block: 40px;
  z-index: 10;
  display: none;
  opacity: 0;
  width: 100%;
  margin: 0;
  font-size: 1rem;
  color: var(--green-normal-color);
  text-align: left;
  background: var(--white);
  box-shadow: 0 1px 2px #8e8787;
  top: 38px;
  visibility: hidden;
  left: 0;
  right: 0;
  transition: opacity 0.2s ease-out, top 0.25s ease-out, visibility 0.12s ease-out;
}
.sub-menu-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
  top: 100%;
  height: 100%;
}
.sub-menu.selected {
  visibility: visible;
  top: 84px;
  display: block;
  opacity: 1;
}
.sub-menu .left {
  line-height: 1.4;
  font-weight: normal;
}
.sub-menu .right {
  height: 100%;
  background-color: #e6e6e6;
  border-radius: 8px;
  padding-inline: 20px;
}
.sub-menu .right .banner {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sub-menu .right .navigation-btn {
  width: 100%;
  text-decoration: none;
  color: var(--green-normal-color);
  background-color: transparent;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s linear;
  font-size: 15px;
}
.sub-menu .right .navigation-btn .icon {
  background-color: var(--green-normal-color);
  color: var(--white);
  width: 32px;
  height: 32px;
  padding: 0.5rem 0.65rem;
  font-size: 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-menu .right .navigation-btn > div {
  width: 100%;
}
.sub-menu .right .navigation-btn .arrow {
  opacity: 0;
  transition: all 0.2s linear;
}
.sub-menu .right .navigation-btn:hover {
  background-color: var(--overlay-white);
}
.sub-menu .right .navigation-btn:hover .arrow {
  opacity: 1;
}

.sub-menu .middle,
.sub-menu-mobile .middle {
  padding-inline: 30px;
  border-left: 1px solid var(--green-normal-color);
}
.sub-menu .middle-item,
.sub-menu-mobile .middle-item {
  text-decoration: none;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--green-normal-color);
  cursor: pointer;
  position: relative;
}
.sub-menu .middle-item-logo,
.sub-menu-mobile .middle-item-logo {
  min-width: 52px;
  min-height: 52px;
  width: 52px;
  height: 52px;
  padding: 0.25rem;
  border-radius: 28%;
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  top: 3px;
}
.sub-menu .middle-item-logo img,
.sub-menu-mobile .middle-item-logo img {
  width: 86%;
  height: 86%;
  border-radius: 28%;
  object-fit: contain;
}
.sub-menu .middle-item .key,
.sub-menu-mobile .middle-item .key {
  color: var(--green-normal-color);
  font-weight: 700;
}
.sub-menu .middle-item .value,
.sub-menu-mobile .middle-item .value {
  color: var(--green-normal-color);
  line-height: 1.4;
  font-weight: normal;
  font-size: 15px;
}
.sub-menu .middle-item .square-icon,
.sub-menu-mobile .middle-item .square-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--green-normal-color);
  font-size: 18px;
  opacity: 0;
  transition: all 0.2s linear;
}
.sub-menu .middle-item:hover .square-icon,
.sub-menu-mobile .middle-item:hover .square-icon {
  opacity: 1;
}

.sub-menu-mobile {
  width: 100%;
  display: none;
  opacity: 0;
  transition: all 0.2s linear;
}
.sub-menu-mobile.selected-mobile {
  opacity: 1;
  display: block;
}
.sub-menu-mobile .middle {
  padding-inline: 0;
  border-left: none;
}
.sub-menu-mobile .middle-item {
  width: 100%;
  padding: 0.5rem;
}
.sub-menu-mobile .middle-item-logo {
  flex: 1;
  max-width: 36px;
  min-width: 36px;
  max-height: 36px;
  min-height: 36px;
}
.sub-menu-mobile .middle-item .key,
.sub-menu-mobile .middle-item .value {
  font-size: 14px;
}
.sub-menu-mobile .middle-item .square-icon {
  font-size: 16px;
}

@media (width <= 992px) {
  .header {
    max-height: calc(100vh - 3rem);
    padding-block: 20px;
  }
  .header-content {
    max-width: 100%;
    margin: 0;
    padding-inline: 1rem;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 24px !important;
  }
  .header-content .nav-mobile {
    display: block;
  }
  .header-navigate {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .header-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0 !important;
  }
  .header-left-item {
    width: 100%;
    padding-block: 1rem;
  }
  .header-left-item:not(:last-child)::before {
    bottom: 0;
    transform: scaleX(1);
    opacity: 0.4;
  }
  .header-left-item:last-child::before {
    display: none;
  }
  .header-right {
    justify-content: flex-start !important;
  }
  .header-right .button:first-child::before {
    display: none;
  }
  .header .multiple-tab > div {
    width: 100%;
  }
  .sub-menu,
  .sub-menu.selected {
    display: none;
    opacity: 0;
  }
}
@media (width <= 768px) {
  .header-content {
    max-width: 100%;
  }
}
@media (width <= 576px) {
  .header-content {
    max-width: 100%;
  }
}
.header.visible {
  background-color: var(--green-normal-color);
  border-bottom: none;
}
.header.visible .header-left-logo > div,
.header.visible .nav-mobile,
.header.visible .link {
  color: var(--white);
}
.header.visible .header-right .button:first-child::before {
  border-right: 1px solid var(--white);
}
.header.visible .sub-menu-mobile .middle-item {
  border: 1px solid var(--white);
}
.header.visible .sub-menu-mobile .middle-item-logo {
  background-color: var(--overlay-white);
  align-items: center;
}
.header.visible .sub-menu-mobile .middle-item .key {
  color: var(--white);
}
.header.visible .sub-menu-mobile .middle-item .value {
  color: var(--white);
}
.header.visible .sub-menu-mobile .middle-item .square-icon {
  color: var(--white);
}

.footer {
  background-color: var(--overlay-blue);
  padding-block: 40px;
}
.footer > * {
  color: var(--overlay-black);
}
.footer-badge {
  padding-top: 30px;
}
.footer-badge div {
  text-align: center;
  margin: auto 0;
}
.footer-badge a {
  color: var(--overlay-black);
}
.footer-vision {
  line-height: 1.4;
}
.footer-content {
  position: relative;
  padding-block: 20px;
}
.footer-content-feature {
  padding-left: 160px;
}
.footer-content-feature-item > div {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 16px;
}
.footer-content-feature-item a {
  line-height: 24px;
  color: var(--overlay-black);
}
.footer-content-feature-item a::before {
  background-color: var(--overlay-black) !important;
}
.footer-content .footer-icon,
.footer-content .footer-logo a {
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}
.footer-content .footer-icon > img,
.footer-content .footer-logo a > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}
.footer-content .footer-icon > div,
.footer-content .footer-logo a > div {
  min-width: 200px;
  font-size: 24px;
  color: var(--overlay-black);
  font-weight: 700;
}
.footer-content .footer-logo-item {
  width: 46px;
  height: 46px;
  background-color: var(--white);
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1019607843);
}
.footer-content .footer-logo-item:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.footer-content::before {
  background-color: #d0d8e5;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
}

@media (width <= 1200px) {
  .footer-content-feature {
    padding-left: 100px;
  }
}
@media (width <= 992px) {
  .footer-content-feature {
    padding-left: 0;
    padding-top: 40px;
  }
}
@media (width <= 576px) {
  .footer-content-feature-item > div {
    padding-bottom: 4px;
  }
  .footer-vision {
    text-align: center;
  }
}
#synctrack .pricing-page {
  background-color: var(--overlay-white);
  padding-block: 40px;
}
#synctrack .pricing-page .apps-tab__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  transition: all 0.3s ease-in-out;
  border-bottom: 4px solid #cecfd1;
}
#synctrack .pricing-page .apps-tab__item img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
#synctrack .pricing-page .apps-tab__item:hover, #synctrack .pricing-page .apps-tab__item.selected {
  border-bottom: 4px solid #005ee8;
}
@media (width <= 769px) {
  #synctrack .pricing-page .apps-tab__item {
    justify-content: center;
  }
  #synctrack .pricing-page .apps-tab__item > div {
    display: none;
  }
}
#synctrack .pricing-page .page__title {
  padding: 4rem 0;
  text-align: center;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .card-container {
  padding: 0 2rem;
  margin: 2rem auto;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #synctrack .pricing-page .card-container {
    flex-wrap: wrap;
  }
}
#synctrack .pricing-page .card h2 {
  margin: 0;
  font-size: 1em;
}
#synctrack .pricing-page .detail {
  margin-top: 12px;
  font-size: 14px;
}
#synctrack .pricing-page .price {
  font-size: 2em;
  margin-block: 6px;
}
#synctrack .pricing-page .description {
  color: var(--green-normal-color);
  margin-bottom: 12px;
  font-size: 14px;
}
#synctrack .pricing-page .current-price {
  opacity: 0;
}
#synctrack .pricing-page .current-price span {
  font-size: 14px;
}
#synctrack .pricing-page .current-price .line-through {
  padding-left: 6px;
  color: rgb(142, 31, 11);
  text-decoration: line-through;
}
#synctrack .pricing-page .card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  text-align: start;
  width: 360px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .card .button,
#synctrack .pricing-page .card .button::after {
  padding: 0.5rem 1.25rem;
}
#synctrack .pricing-page .card:hover, #synctrack .pricing-page .card.selected {
  background: var(--green-normal-back);
  color: var(--overlay-white);
}
#synctrack .pricing-page .card:hover h2, #synctrack .pricing-page .card.selected h2 {
  color: var(--overlay-white);
}
#synctrack .pricing-page .card:hover .description, #synctrack .pricing-page .card.selected .description {
  color: var(--overlay-white);
}
#synctrack .pricing-page .card:hover .btn-charge, #synctrack .pricing-page .card.selected .btn-charge {
  border-top: 1px solid rgba(141, 16, 141, 0.8666666667);
}
#synctrack .pricing-page .card:hover .current-price span:nth-child(2), #synctrack .pricing-page .card.selected .current-price span:nth-child(2) {
  color: #f45847;
}
#synctrack .pricing-page .content {
  min-height: 520px;
}
@media (width <= 768px) {
  #synctrack .pricing-page .content {
    height: auto;
    min-height: auto;
  }
}
#synctrack .pricing-page .btn-charge {
  border-top: 1px solid #c4cde9;
  width: 100%;
  padding-top: 30px;
  margin-top: 1rem;
}
#synctrack .pricing-page .features {
  width: 100%;
  text-align: left;
  font-size: 0.9em;
  min-height: 400px;
}
@media (width <= 768px) {
  #synctrack .pricing-page .features {
    height: auto;
    min-height: auto;
  }
}
#synctrack .pricing-page .features .features-title {
  height: 2rem;
  margin: 0.25rem 0;
}
#synctrack .pricing-page .features ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#synctrack .pricing-page .features li:first-child i {
  margin-right: 0.25rem;
}
#synctrack .pricing-page .features li:not(:first-child) i {
  margin-right: 0.5rem;
}
#synctrack .pricing-page .features .pricing-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}
#synctrack .pricing-page .toggle-container {
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  width: 500px; /* Adjust width as needed */
  max-width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.25rem;
}
@media screen and (max-width: 768px) {
  #synctrack .pricing-page .toggle-container {
    width: 360px; /* Adjust width as needed */
  }
}
#synctrack .pricing-page .toggle-button {
  flex: 1;
  padding: 15px;
  background-color: var(--white); /* Dark background for inactive button */
  color: var(--green-normal-color); /* Light color for inactive text */
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1em;
  position: relative;
}
#synctrack .pricing-page .toggle-button.active {
  background-color: var(--green-normal-color); /* Light green for active button */
  color: var(--overlay-white); /* Dark color for active text */
}
#synctrack .pricing-page .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Adjust width based on number of buttons */
  height: 100%;
  background-color: #d1f7d1; /* Light green for slider */
  transition: left 0.3s ease;
  border-radius: 30px; /* Match button shape */
}
#synctrack .pricing-page .toggle-button:not(:last-child) {
  border-right: 1px solid #ccc; /* Divider between buttons */
}
#synctrack .pricing-page .feature-list {
  padding-block: 100px;
}
#synctrack .pricing-page .feature-list .text-small {
  font-size: 0.8rem;
}
#synctrack .pricing-page .feature-list .plan-comparison {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .feature-list .container {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 1200px;
  margin: auto;
  background-color: white;
  border-radius: 10px;
  position: relative;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .feature-list .cards-container {
  position: sticky;
  padding: 10px 20px;
  background-color: var(--overlay-white);
  top: 84px;
  height: 215px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #synctrack .pricing-page .feature-list .cards-container {
    display: none;
  }
}
#synctrack .pricing-page .feature-list .cards-container-table {
  width: 100%;
  background-color: var(--overlay-white);
}
#synctrack .pricing-page .feature-list .cards-container-table td {
  padding: 10px;
}
#synctrack .pricing-page .feature-list .cards-container-table td:nth-child(1) {
  width: 40%;
}
#synctrack .pricing-page .feature-list .cards-container-table td:nth-child(2), #synctrack .pricing-page .feature-list .cards-container-table td:nth-child(3), #synctrack .pricing-page .feature-list .cards-container-table td:nth-child(4), #synctrack .pricing-page .feature-list .cards-container-table td:nth-child(5) {
  text-align: center;
  width: 12%;
}
#synctrack .pricing-page .feature-list h1 {
  text-align: center;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .feature-list .pricing-table {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}
#synctrack .pricing-page .feature-list .pricing-card {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  flex: 1;
  margin: 0 10px;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .feature-list .pricing-card h2 {
  margin: 0;
  color: var(--green-normal-color);
}
#synctrack .pricing-page .feature-list .features-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
#synctrack .pricing-page .feature-list .features-table th,
#synctrack .pricing-page .feature-list .features-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  line-height: 1.4;
}
#synctrack .pricing-page .feature-list .features-table th:nth-child(1),
#synctrack .pricing-page .feature-list .features-table td:nth-child(1) {
  width: 40%;
}
#synctrack .pricing-page .feature-list .features-table th:nth-child(2), #synctrack .pricing-page .feature-list .features-table th:nth-child(3), #synctrack .pricing-page .feature-list .features-table th:nth-child(4), #synctrack .pricing-page .feature-list .features-table th:nth-child(5),
#synctrack .pricing-page .feature-list .features-table td:nth-child(2),
#synctrack .pricing-page .feature-list .features-table td:nth-child(3),
#synctrack .pricing-page .feature-list .features-table td:nth-child(4),
#synctrack .pricing-page .feature-list .features-table td:nth-child(5) {
  text-align: center;
  width: 15%;
}
#synctrack .pricing-page .feature-list .features-table th {
  background: linear-gradient(#eaebec 0%, var(--overlay-white) 98%);
}
#synctrack .pricing-page .feature-list .features-group {
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  #synctrack .pricing-page .feature-list .features-group {
    overflow-x: auto;
  }
}
#synctrack .pricing-page .feature-list .features-group thead {
  top: 84px;
  position: sticky;
  z-index: 1;
}
#synctrack .pricing-page .feature-list .features-group thead tr {
  height: 60px;
}
#synctrack .pricing-page .feature-list .features-group thead tr th:first-child {
  vertical-align: middle !important;
  font-weight: bold;
  margin: auto;
  font-size: 18px;
}
#synctrack .pricing-page .feature-list .checkmark {
  color: rgb(41, 132, 90); /* Green for checkmark */
}
#synctrack .pricing-page .feature-list .cross {
  color: #e74c3c; /* Red for cross */
}
#synctrack .pricing-page .feature-list .features-table tr:hover {
  background-color: #f9f9f9; /* Highlight on hover */
}
#synctrack .pricing-page.paypal {
  background-color: var(--white);
}
@media screen and (min-width: 1024px) {
  #synctrack .pricing-page.paypal .card-container {
    flex-wrap: wrap;
  }
}
#synctrack .pricing-page.paypal span.bold-text {
  font-weight: bold !important;
}
#synctrack .pricing-page.paypal .content {
  min-height: 0;
}
#synctrack .pricing-page.paypal .content .features {
  min-height: 240px;
}
#synctrack .pricing-page.paypal .content .features li i {
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  #synctrack .pricing-page.paypal .content .features {
    min-height: unset;
  }
}
#synctrack .pricing-page.estimated .content .features {
  min-height: 408px;
}
#synctrack .pricing-page.estimated .content .features li {
  height: unset;
  line-height: unset;
}
#synctrack .pricing-page.estimated .content .features li i {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #synctrack .pricing-page.estimated .content .features {
    min-height: unset;
  }
}
#synctrack .pricing-page.order .content {
  min-height: 0;
}
#synctrack .pricing-page.order .content .features {
  min-height: 360px;
}
#synctrack .pricing-page.order .content .features li i {
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  #synctrack .pricing-page.order .content .features {
    min-height: unset;
  }
}

#synctrack .simplify {
  margin: auto;
  background-color: var(--white);
  padding-top: 140px;
}
#synctrack .simplify > * {
  color: var(--green-normal-color);
}
#synctrack .simplify .title {
  gap: 32px;
}
#synctrack .simplify .title .tick span {
  color: var(--overlay-black);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
#synctrack .simplify .title .des {
  text-align: center;
  font-weight: 600;
  color: var(--overlay-black);
  max-width: 1000px;
  line-height: 25.6px;
}
#synctrack .simplify .img {
  margin-bottom: 120px;
  padding-top: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
#synctrack .simplify .img .return-main,
#synctrack .simplify .img .return-left,
#synctrack .simplify .img .return-right,
#synctrack .simplify .img .return-management-frame {
  position: relative;
  object-fit: contain;
  z-index: 2;
}
#synctrack .simplify .img .return-main {
  position: relative;
  max-width: 68%;
}
@media (width >= 1400px) {
  #synctrack .simplify .img .return-main {
    width: 979px;
    height: 824px;
  }
}
#synctrack .simplify .img .return-left {
  position: absolute;
  max-width: 24%;
  width: 359px;
  aspect-ratio: 359/160;
  top: 76%;
  left: 8%;
  z-index: 3;
}
#synctrack .simplify .img .return-right {
  position: absolute;
  max-width: 24%;
  width: 359px;
  aspect-ratio: 359/160;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
  z-index: 3;
}
#synctrack .simplify .img .return-management-frame {
  position: absolute;
  z-index: 0;
  top: -20%;
  left: 0;
  right: 0;
  width: 100%;
}
#synctrack .simplify .img.order {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 80px;
}
#synctrack .simplify .img.order img {
  object-fit: contain;
}
#synctrack .simplify .img.order .order-main {
  z-index: 2;
  max-width: 36%;
  width: 414px;
  height: auto;
}
@media (width >= 1200px) {
  #synctrack .simplify .img.order .order-main {
    height: 418px;
  }
}
#synctrack .simplify .img.order .order-left {
  z-index: 2;
  max-width: 26%;
  width: 317px;
  height: auto;
}
@media (width >= 1200px) {
  #synctrack .simplify .img.order .order-left {
    height: 353px;
  }
}
#synctrack .simplify .img.order .order-right {
  z-index: 2;
  max-width: 26%;
  width: 317px;
  height: auto;
}
@media (width >= 1200px) {
  #synctrack .simplify .img.order .order-right {
    height: 287px;
  }
}
#synctrack .simplify .img.order .order-bottom {
  z-index: 2;
  margin: 0 auto;
  max-width: 57%;
  width: 879px;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}
#synctrack .simplify .img.order .order-frame {
  position: absolute;
  z-index: 0;
  top: -60%;
  left: 0;
  right: 0;
  width: 100%;
}
#synctrack .simplify .redefine {
  padding-bottom: 60px;
}
#synctrack .simplify .redefine .estimated-img-container {
  position: relative;
  width: 100%;
  height: 725px;
}
#synctrack .simplify .redefine .estimated-img-container .estimated-top {
  position: absolute;
  top: -11px;
  left: 11px;
  width: 63%;
  z-index: 1;
}
#synctrack .simplify .redefine .estimated-img-container .estimated-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
}
#synctrack .simplify .redefine .redefine-img {
  max-height: 640px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (width >= 1400px) {
  #synctrack .simplify .redefine .redefine-img {
    width: 624px;
    height: 640px;
  }
  #synctrack .simplify .redefine .redefine-img.paypal {
    height: 554px;
  }
  #synctrack .simplify .redefine .redefine-img.order {
    height: 515px;
  }
}
@media (width >= 1200px) and (width < 1400px) {
  #synctrack .simplify .redefine .redefine-img {
    width: 534px;
    height: 475px;
  }
  #synctrack .simplify .redefine .redefine-img.return {
    height: 575px;
  }
  #synctrack .simplify .redefine .redefine-img.estimated {
    height: 616px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  #synctrack .simplify .redefine .redefine-img {
    width: 444px;
    height: 395px;
  }
  #synctrack .simplify .redefine .redefine-img.return {
    height: 478px;
  }
  #synctrack .simplify .redefine .redefine-img.estimated {
    height: 512px;
  }
}
@media (width >= 768px) and (width < 992px) {
  #synctrack .simplify .redefine .redefine-img {
    width: 672px;
    height: 597px;
  }
  #synctrack .simplify .redefine .redefine-img.order {
    height: 554px;
  }
}
@media (width >= 576px) and (width < 768px) {
  #synctrack .simplify .redefine .redefine-img {
    width: 492px;
    height: 437px;
  }
  #synctrack .simplify .redefine .redefine-img.return {
    height: 529px;
  }
  #synctrack .simplify .redefine .redefine-img.estimated {
    height: 568px;
  }
  #synctrack .simplify .redefine .redefine-img.order {
    height: 406px;
  }
}
#synctrack .simplify .redefine .redefine-container {
  padding-left: 40px;
  margin-bottom: 30px;
}
#synctrack .simplify .redefine .redefine-container .des {
  font-size: 16px;
  line-height: 25.6px;
  color: var(--overlay-black);
}
@media (width <= 992px) {
  #synctrack .simplify .redefine .redefine-container {
    padding-inline: 12px;
  }
}
#synctrack .simplify .redefine .redefine-container .item img {
  width: 51px;
  height: 51px;
  object-fit: contain;
}
#synctrack .simplify .redefine .redefine-container .item .des {
  color: var(--overlay-black);
  font-size: 14px;
  line-height: 22.4px;
}
#synctrack .simplify .order-redefine-integration {
  width: 100%;
  padding-top: 60px;
  border-top: 1px solid var(--border-color);
}
#synctrack .simplify .retailer {
  width: 100%;
  padding-block: 60px;
  border-top: 1px solid var(--border-color);
}
#synctrack .simplify .retailer .title {
  text-align: center;
}
#synctrack .simplify .retailer .slider {
  width: 100%;
  min-height: 50px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  background: none;
}
#synctrack .simplify .retailer .slider::before, #synctrack .simplify .retailer .slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background-image: linear-gradient(to right, var(--white), transparent);
}
#synctrack .simplify .retailer .slider:after {
  left: auto;
  right: 0;
  background-image: linear-gradient(to left, var(--white), transparent);
}
#synctrack .simplify .retailer .slider .marquee {
  width: fit-content;
  height: auto;
  display: inline-block;
  animation: 28s marquee-animation infinite linear;
}
#synctrack .simplify .retailer .slider .marquee .item {
  padding: 4px;
  border-radius: 4px;
  width: auto;
  height: 50px;
  object-fit: contain;
  background-color: var(--white);
  margin-right: 30px;
  filter: grayscale(1);
}
#synctrack .simplify .retailer .slider .marquee .item:hover {
  filter: none;
}
@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#synctrack .simplify .retailer.pricing-page .item {
  background-color: var(--overlay-white);
}
#synctrack .simplify .retailer.pricing-page .slider::before {
  background-image: linear-gradient(to right, var(--overlay-white), transparent);
}
#synctrack .simplify .retailer.pricing-page .slider::after {
  background-image: linear-gradient(to left, var(--overlay-white), transparent);
}
#synctrack .simplify .retailer.order {
  border-top: none;
}
#synctrack .interactions {
  background-color: var(--overlay-white);
  padding-block: 100px;
}
#synctrack .interactions > * {
  color: var(--overlay-black);
}
#synctrack .interactions .title {
  text-align: center;
}
#synctrack .interactions .des {
  width: 100%;
  line-height: 25.6px;
  text-align: center;
}
#synctrack .interactions .features {
  margin-top: -30px;
  width: 100%;
}
#synctrack .interactions .features .item {
  border-radius: 16px;
  background: var(--overlay-blue);
  padding: 50px 60px;
  height: 560px;
  cursor: pointer;
  transition: all 0.2s linear;
}
#synctrack .interactions .features .item:hover {
  transform: translateY(-10px);
}
#synctrack .interactions .features .item .title {
  font-size: 18px;
  line-height: 25.92px;
  text-align: center;
  font-weight: 600;
  color: var(--overlay-black);
}
#synctrack .interactions .features .item .des {
  font-size: 14px;
  line-height: 20.16px;
  text-align: center;
  font-weight: 600;
}
#synctrack .interactions .features .item .img {
  max-width: 100%;
  width: 480px;
  height: 354px;
  object-fit: contain;
}
@media (width >= 1200px) and (width < 1400px) {
  #synctrack .interactions .features .item .img {
    width: 390px;
    height: 288px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  #synctrack .interactions .features .item .img {
    width: 300px;
    height: 222px;
  }
}
@media (width < 576px) {
  #synctrack .interactions .features .item .img {
    height: auto;
  }
}
@media (width <= 992px) {
  #synctrack .interactions .features .item {
    height: auto !important;
  }
}
@media (width <= 1200px) and (width > 992px) {
  #synctrack .interactions .features .item {
    height: 460px;
  }
}
@media (width <= 576px) {
  #synctrack .interactions .features .item {
    padding: 50px 30px;
  }
}
#synctrack .interactions .features.paypal .item {
  justify-content: space-between;
  height: 550px;
}
#synctrack .interactions .features.paypal .item .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#synctrack .interactions .features.paypal .item .img {
  width: 336px;
  height: 336px;
}
@media (width <= 1200px) and (width > 992px) {
  #synctrack .interactions .features.paypal .item {
    height: 500px;
  }
  #synctrack .interactions .features.paypal .item .img {
    width: 240px;
    height: 240px;
  }
}
@media (width > 1200px) and (width < 1400px) {
  #synctrack .interactions .features.paypal .item {
    height: 560px;
  }
  #synctrack .interactions .features.paypal .item .img {
    width: 312px;
    height: 336px;
  }
}
@media (width < 576px) {
  #synctrack .interactions .features.paypal .item .img {
    height: auto;
  }
}
#synctrack .interactions .features.estimated .item {
  justify-content: space-between;
  height: 100%;
}
#synctrack .interactions .features.estimated .item .content {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#synctrack .interactions .features.estimated .item .img.w-80 {
  width: 80%;
}
#synctrack .interactions .features.estimated .item .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (width <= 1200px) and (width > 992px) {
  #synctrack .interactions .features.estimated .item {
    padding: 30px 40px;
  }
}
#synctrack .interactions .features.order .item .img {
  max-height: 387px;
  height: 440px;
}
#synctrack .interactions .features.order div:nth-child(1) .item .img,
#synctrack .interactions .features.order div:nth-child(2) .item .img {
  max-height: 440px;
}
#synctrack .interactions .features.order div .item {
  height: 580px;
}
#synctrack .interactions .features.order div:nth-child(1) .item,
#synctrack .interactions .features.order div:nth-child(2) .item {
  height: 620px;
}
@media (width <= 1200px) and (width > 992px) {
  #synctrack .interactions .features.order div .item {
    height: 570px;
  }
  #synctrack .interactions .features.order div:nth-child(1) .item,
  #synctrack .interactions .features.order div:nth-child(2) .item {
    height: 510px;
  }
}
@media (width <= 992px) {
  #synctrack .interactions .features.order .item .img {
    max-height: none;
  }
}
#synctrack .interactions.paypal {
  background-color: var(--white);
  border-top: unset;
}
#synctrack .frictions {
  background-color: var(--white);
  padding-block: 80px;
}
#synctrack .frictions > * {
  color: var(--overlay-black);
  font-weight: 600;
}
#synctrack .frictions .title {
  text-align: center;
}
#synctrack .frictions .des {
  width: 100%;
  line-height: 25.6px;
  text-align: center;
}
#synctrack .frictions .img {
  margin-top: 40px;
  max-width: 100%;
  width: 1296px;
  height: 695px;
  object-fit: contain;
}
@media (width >= 1200px) and (width < 1400px) {
  #synctrack .frictions .img {
    width: 1116px;
    height: 599px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  #synctrack .frictions .img {
    width: 936px;
    height: 502px;
  }
}
@media (width >= 768px) and (width < 992px) {
  #synctrack .frictions .img {
    width: 696px;
    height: 373px;
  }
}
@media (width >= 576px) and (width < 768px) {
  #synctrack .frictions .img {
    width: 516px;
    height: 277px;
  }
}
@media (width < 576px) {
  #synctrack .frictions .img {
    height: auto;
  }
}
#synctrack .frictions .features .icon {
  position: relative;
  background-color: var(--white);
  width: 50px;
  height: 50px;
  padding: 8px 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#synctrack .frictions .features .icon:hover {
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
#synctrack .frictions .features .title {
  padding-top: 8px;
  font-size: 18px;
  line-height: 25.92px;
  text-align: left;
}
@media (width <= 576px) {
  #synctrack .frictions .features .title {
    text-align: center;
  }
}
#synctrack .frictions .features .des {
  font-size: 14px;
  line-height: 20.16px;
  text-align: left;
}
@media (width <= 576px) {
  #synctrack .frictions .features .des {
    text-align: center;
  }
}
#synctrack .frictions.paypal {
  background-color: var(--overlay-white);
}
#synctrack .frictions.paypal .des {
  font-size: 16px;
}
#synctrack .frictions.paypal .item {
  border-radius: 16px;
  background: var(--overlay-blue);
  padding: 0px 30px;
  height: 560px;
  cursor: pointer;
  transition: all 0.2s linear;
}
#synctrack .frictions.paypal .item:hover {
  transform: translateY(-10px);
}
#synctrack .frictions.paypal .item .img {
  margin-top: 16px;
  width: 350px;
  height: 200px;
}
@media (width >= 992px) and (width < 1400px) {
  #synctrack .frictions.paypal .item .img {
    width: 288px;
  }
}
#synctrack .frictions.paypal .item .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#synctrack .frictions.paypal .item .content .title {
  font-size: 22.74px;
  line-height: 32.75px;
  text-align: center;
  font-weight: 600;
  color: var(--overlay-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#synctrack .frictions.paypal .item .content .des {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  font-weight: 600;
}
@media (width > 992px) and (width <= 1200px) {
  #synctrack .frictions.paypal .item {
    height: 640px;
  }
  #synctrack .frictions.paypal .item .title {
    min-height: 115px;
  }
}
@media (width <= 992px) {
  #synctrack .frictions.paypal .item {
    height: auto;
  }
  #synctrack .frictions.paypal .item .des {
    margin-bottom: 2rem;
  }
}
#synctrack .frictions.order .features .item {
  border-radius: 16px;
  background: var(--overlay-blue);
  padding: 30px 20px;
  height: 330px;
  cursor: pointer;
  transition: all 0.2s linear;
}
#synctrack .frictions.order .features .item:hover {
  transform: translateY(-10px);
}
#synctrack .frictions.order .features .item .title {
  font-size: 18px;
  line-height: 25.92px;
  text-align: center;
  font-weight: 600;
  color: var(--overlay-black);
}
#synctrack .frictions.order .features .item .des {
  font-size: 14px;
  line-height: 20.16px;
  text-align: center;
  font-weight: 600;
}
#synctrack .frictions.order .features .item .img {
  max-width: 100%;
  width: 268px;
  height: 168px;
  margin: 0;
  object-fit: contain;
}
@media (width <= 1400px) {
  #synctrack .frictions.order .features .item .img {
    height: 148px;
  }
}
@media (width <= 992px) {
  #synctrack .frictions.order .features .item .img {
    height: auto !important;
  }
}
@media (width <= 1200px) and (width > 992px) {
  #synctrack .frictions.order .features .item {
    height: 300px;
  }
}
#synctrack .reviews {
  background-color: var(--overlay-black);
  padding-block: 100px;
}
#synctrack .reviews > * {
  color: var(--overlay-white);
  font-weight: 600;
}
#synctrack .reviews .title {
  text-align: center;
  color: var(--overlay-white);
}
#synctrack .reviews .des {
  width: 100%;
  line-height: 25.6px;
  text-align: center;
  font-weight: normal;
}
#synctrack .reviews .features {
  width: 100%;
  margin-block: 30px;
  padding: 10px;
  background-color: var(--black);
  border-radius: 4px;
}
#synctrack .reviews .carousel {
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 12px);
  gap: 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
#synctrack .reviews .carousel::-webkit-scrollbar {
  display: none;
}
#synctrack .reviews .carousel.dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
}
#synctrack .reviews .carousel.dragging .reviews-card {
  cursor: grab;
  user-select: none;
}
#synctrack .reviews .carousel.no-transition {
  scroll-behavior: auto;
}
#synctrack .reviews .card {
  scroll-snap-align: start;
  list-style: none;
  background-color: var(--overlay-black);
  color: var(--overlay-white);
  border-radius: 4px;
  height: 360px;
  cursor: pointer;
  padding: 40px 30px;
}
#synctrack .reviews .card-title {
  font-size: 14px;
  margin-top: 4px;
  font-weight: bold;
  font-style: unset;
}
#synctrack .reviews .card-des {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
#synctrack .reviews .card-star {
  color: #ffda55;
  font-size: 12px;
  margin-right: 2px;
}
#synctrack .reviews .card-user-img {
  background-color: var(--overlay-white);
  width: 42px;
  height: 42px;
  padding: 6px 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(213, 204, 204, 0.1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#synctrack .reviews .card-user-img:hover {
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(161, 151, 151, 0.3);
}
#synctrack .reviews .card-user-container .name {
  font-size: 14px;
  font-weight: 800;
  color: var(--overlay-white);
  text-decoration: none;
}
#synctrack .reviews .card-user-container .name:hover {
  text-decoration: underline;
}
#synctrack .reviews .card-user-container .location {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}
#synctrack .reviews .carousel-btn {
  width: 100%;
}
#synctrack .reviews .carousel-btn .left,
#synctrack .reviews .carousel-btn .right {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--overlay-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#synctrack .reviews .comparison {
  padding-block: 60px;
}
#synctrack .reviews .comparison > * {
  color: var(--overlay-white);
}
#synctrack .reviews .comparison-title {
  color: var(--overlay-white);
  text-align: left;
}
#synctrack .reviews .comparison .des {
  line-height: 22.4px;
  text-align: left;
}
#synctrack .reviews .comparison-container {
  width: 100%;
  padding-left: 40px;
}
#synctrack .reviews .comparison-container > div:nth-child(1) {
  margin-right: 40px;
}
#synctrack .reviews .comparison-container .item {
  padding: 0 0 20px;
  border-bottom: 1px solid #5d5d5d;
}
#synctrack .reviews .comparison-container .item div:nth-child(1) {
  font-size: 48px;
  color: var(--white);
  line-height: 55.2px;
  font-weight: 700;
}
#synctrack .reviews .comparison-container .item div:nth-child(2) {
  font-weight: 700;
  line-height: 18.4px;
  color: var(--overlay-white);
}
#synctrack .reviews.paypal .carousel img.card-user-img {
  padding: 0;
}
#synctrack .reviews.paypal .carousel .card {
  height: 100%;
}
#synctrack .reviews.paypal .carousel .card-title {
  font-weight: bold;
  font-style: unset;
}
#synctrack .reviews.estimated .container > .title {
  color: transparent;
  background: linear-gradient(225.13deg, #0f8bfa 0%, #186ab3 77.53%, #2f165b 97.52%);
  -webkit-background-clip: text;
  background-clip: text;
}
@media (width <= 992px) {
  #synctrack .reviews .carousel {
    grid-auto-columns: calc(50% - 8px);
  }
  #synctrack .reviews .comparison-title,
  #synctrack .reviews .comparison .des {
    text-align: center;
  }
  #synctrack .reviews .comparison-container {
    padding-left: 50px;
  }
}
@media (width <= 576px) {
  #synctrack .reviews .carousel {
    grid-auto-columns: 100%;
  }
  #synctrack .reviews .card {
    height: 340px;
  }
  #synctrack .reviews .comparison.title {
    text-align: center;
  }
  #synctrack .reviews .comparison .des {
    text-align: center;
  }
  #synctrack .reviews .comparison-container {
    padding-inline: 20px;
  }
  #synctrack .reviews .comparison-container > div:nth-child(1) {
    margin-right: 0;
  }
  #synctrack .reviews .comparison-container .item {
    margin: 0 0 20px;
  }
}

.omg-customer-page {
  background-color: white;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.omg-customer-page * {
  font-family: Poppins, sans-serif;
}
.omg-customer-page * span {
  font-weight: 400;
}
.omg-customer-page * b,
.omg-customer-page * strong {
  font-weight: bolder;
}
.omg-customer-page h2 {
  color: var(--bs-heading-color);
}
.omg-customer-page .btn-second {
  border-radius: 40px;
  background: #abdaf0;
  font-size: 16px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: none;
  box-sizing: border-box;
  color: #006eba;
  transition: 0.5s;
}

.omg-customer-banner-wrapper {
  position: relative;
}
.omg-customer-banner-wrapper .omg-customer-banner-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 60%;
  height: 100%;
}
.omg-customer-banner-wrapper .omg-customer-vector-top {
  position: absolute;
  top: 218px;
  right: "";
  bottom: "";
  left: 165px;
  z-index: 2;
}
.omg-customer-banner-wrapper .omg-customer-vector-bottom {
  position: absolute;
  top: "";
  right: 0;
  bottom: 30px;
  left: "";
  z-index: 2;
}
.omg-customer-banner-wrapper .container {
  position: relative;
  z-index: 2;
}
.omg-customer-banner-wrapper .container .omg-customer-gird {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 19px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.omg-customer-banner-wrapper .container .omg-customer-gird > div img {
  width: 100%;
  height: auto;
  max-height: 516px;
}
@media screen and (min-width: 1400px) {
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img {
    width: 239px;
    height: 239px;
  }
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img.omg-customer-people-4 {
    height: 510px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img {
    width: 203px;
    height: 203px;
  }
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img.omg-customer-people-4 {
    height: 433px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img {
    width: 167px;
    height: 167px;
  }
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img.omg-customer-people-4 {
    height: 357px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img {
    width: 119px;
    height: 119px;
  }
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img.omg-customer-people-4 {
    height: 254px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img {
    width: 83px;
    height: 83px;
  }
  .omg-customer-banner-wrapper .container .omg-customer-gird > div img.omg-customer-people-4 {
    height: 177px;
  }
}
.omg-customer-banner-wrapper .container .omg-customer-gird > div:nth-child(2) {
  display: grid;
  gap: 21px 0;
}
.omg-customer-banner-wrapper .container .omg-customer-gird > div:nth-child(4) {
  display: grid;
  gap: 21px 0;
}
.omg-customer-banner-wrapper .container .omg-customer-post-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 12px;
}
.omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post {
  width: auto;
  max-width: 438px;
  z-index: 3;
}
.omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post p {
  font-family: "Handlee", cursive;
  font-size: 18px;
}
.omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post .omg-customer-post-signature {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: auto;
  max-width: 169px;
  margin-top: -10px;
}
.omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post .omg-customer-post-signature img {
  position: absolute;
  z-index: -1;
  width: 100%;
  bottom: 5px;
  left: -12%;
}
.omg-customer-banner-wrapper .container .omg-customer-vector-bottom-rg {
  position: absolute;
  top: 250px;
  right: 0;
  bottom: "";
  left: "";
  z-index: 2;
}

.omg-success-wrapper {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.omg-success-wrapper .omg-success-bg {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.omg-success-wrapper .omg-success-card-container a {
  color: var(--main);
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img {
  border-radius: 30px 0 0 30px;
  background-color: #dedede;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img {
  border-radius: 30px 0 0 30px;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img {
  width: 100%;
  height: auto;
}
@media (width >= 1400px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img {
    width: 817px;
    height: 1071px;
  }
}
@media (width >= 1200px) and (width < 1400px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img {
    width: 677px;
    height: 887px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img {
    width: 489px;
    height: 641px;
  }
}
@media (width >= 768px) and (width < 992px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img {
    width: 351px;
    height: 460px;
  }
}
@media (width >= 576px) and (width < 768px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img {
    width: 516px;
    height: 676px;
  }
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img.jordan {
  width: 100%;
  height: auto;
}
@media (width >= 1400px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img.jordan {
    width: 777px;
    height: 1018px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  .omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-img img.omg-success-card-img.jordan {
    width: 449px;
    height: 589px;
  }
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(1) .card-substance {
  border-radius: 0 30px 30px 0;
  border-left: none;
  position: relative;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(2) {
  margin-top: 135px;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-img {
  background-color: #e0e0e0;
  border-radius: 0 30px 30px 0;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-img img {
  border-radius: 0 30px 30px 0;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-substance {
  border-radius: 30px 0 0 30px;
  border-right: none;
}
.omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-point-top {
  right: 0;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card {
  position: relative;
  z-index: 3;
  display: flex;
  width: auto;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-point-top {
  position: absolute;
  top: -10%;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-point-top img {
  width: 100%;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-img img {
  width: 100%;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance {
  border: 1px solid #f3b634;
  background-color: white;
  padding-right: 10px;
  padding-left: 10px;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-context {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-context .card-icon {
  width: auto;
  height: auto;
  max-width: 65px;
  max-height: 65px;
  position: relative;
  margin: 10px;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-context .card-icon img {
  width: 100%;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-context span {
  max-width: 643px;
  font-size: 25px;
  font-family: "Poppins";
  line-height: 45px;
  margin-top: -20px;
  margin-left: 30px;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  border: 1px solid #e0e0e0;
  width: auto;
  max-width: 691px;
  border-radius: 30px;
  position: relative;
  margin: 50px 10px;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 33px;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div:nth-child(1) {
  position: relative;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div:nth-child(1)::after {
  content: "";
  border: 1px solid #e0e0e0;
  position: absolute;
  left: 100%;
  height: 80%;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div:nth-child(2) {
  padding-left: 50px;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div h1 {
  font-size: 56px;
  line-height: 67px;
  font-weight: 700;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div span {
  font-size: 30px;
  line-height: 45px;
  font-weight: 500;
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point-number {
  font-size: 54px;
  line-height: 73.6px;
  font-weight: 700;
  text-align: center;
}
@media (width <= 768px) {
  .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point-number {
    font-size: 52px;
  }
}
@media (width <= 482px) {
  .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point-number {
    font-size: 36px;
    line-height: 1.4;
  }
}
.omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance > div:nth-child(3) {
  margin-left: 42px;
  margin-top: 60px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .omg-customer-page .omg-customer-banner-wrapper {
    margin-top: 0;
    padding-top: 1rem;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-vector-top {
    display: none;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-vector-bottom {
    display: none;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-post-container {
    margin-top: 20px;
    flex-direction: column;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post {
    margin-top: 20px;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post p {
    font-size: 18px;
    margin-bottom: 0;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post .omg-customer-post-signature {
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-post-container .omg-customer-post .omg-customer-post-signature img {
    left: 0;
    bottom: 0;
  }
  .omg-customer-page .omg-customer-banner-wrapper .container .omg-customer-vector-bottom-rg {
    display: none;
  }
  .omg-customer-page .omg-success-wrapper {
    padding-top: 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(1) .card-img {
    border-radius: 30px 30px 0 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) {
    margin-top: 50px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) .card-img {
    order: 1;
    border-radius: 30px 30px 0 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) .card-img .card-point-top {
    right: -23%;
    width: 50%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) .card-img .card-point-top img {
    width: 50%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) .card-substance {
    order: 2;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-point-top {
    position: absolute;
    top: 2%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-point-top img {
    width: 70%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-img img {
    border-radius: 30px 30px 0 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance {
    border-radius: 0 0 30px 30px;
    padding-bottom: 15px;
    z-index: -1;
    border: none;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point {
    padding: 10px;
    margin: 20px auto 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point > div {
    padding-left: 18px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point > div h1 {
    font-size: 56px;
    line-height: 67px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point > div span {
    font-size: 30px;
    line-height: 67px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point > div:nth-child(2) {
    margin-left: 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-context span {
    font-size: 25px;
    margin: 0;
    line-height: 32px;
    padding: 0 30px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance > div:nth-child(3) {
    margin-top: 10px;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .omg-customer-page .omg-customer-banner-wrapper {
    margin: 0;
    padding-top: 0;
  }
  .omg-customer-page .omg-success-wrapper {
    position: relative;
    z-index: 3;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) .card-img .card-point-top {
    right: -90px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container > div:nth-child(2) .card-img .card-point-top img {
    width: 50%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-point-top img {
    width: 70%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-context span {
    font-size: 18px;
    line-height: 25px;
    padding: 5px 15px;
    margin: 0;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-context .card-icon {
    margin: 10px 0 0 10px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-context .card-icon img {
    width: 70%;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance > div:nth-child(3) {
    margin: 10px 0 10px 20px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point {
    margin: 15px 2px;
    padding: 10px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .omg-customer-page .omg-success-wrapper .container .omg-success-card-container .omg-success-card .card-substance .card-point span {
    font-size: 16px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .omg-customer-page .omg-customer-banner-wrapper {
    margin-top: 0;
    padding-top: 2rem;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-img .card-point-top {
    right: -50px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-img .card-point-top img {
    width: 80%;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance {
    padding: 0 20px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-context span {
    font-size: 20px;
    line-height: 35px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point {
    margin: 15px 10px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div:nth-child(1) {
    padding: 10px 18px 10px 24px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div:nth-child(2) {
    padding: 10px 18px 10px 37px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div h1 {
    line-height: 67px;
    font-size: 56px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div span {
    line-height: 45px;
    font-size: 30px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance > div:nth-child(3) {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .omg-customer-page .omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-img .card-point-top {
    right: -35px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container > div:nth-child(2) .card-img .card-point-top img {
    width: 80%;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance {
    padding: 0 15px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-context span {
    font-size: 25px;
    line-height: 38px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div h1 {
    font-size: 38px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance .card-point > div span {
    font-size: 22px;
    line-height: 35px;
  }
  .omg-customer-page .omg-success-wrapper .omg-success-card-container .omg-success-card .card-substance > div:nth-child(3) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 992px) {
  .omg-customer-banner-wrapper .body-lg {
    font-size: 20px;
  }
}
.omg-customer-influencers {
  background-color: #f7f8f9;
}
.omg-customer-influencers-content {
  margin-top: 3rem;
}
.omg-customer-influencers-content .influencers-card {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin: 1rem 0;
  transition: 0.5s;
  box-shadow: 0 8px 24px hsla(210, 8%, 62%, 0.2);
  height: 96%;
}
.omg-customer-influencers-content .influencers-card .influencer-img {
  height: 250px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
}
.omg-customer-influencers-content .influencers-card .influencer-img .omg-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}
.omg-customer-influencers-content .influencers-card .influencer-img img {
  width: 100%;
  height: auto;
}
.omg-customer-influencers-content .influencers-card svg {
  margin-top: -12%;
  z-index: 2;
  position: relative;
}
.omg-customer-influencers-content .influencers-card .influencers-content {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}
.omg-customer-influencers-content .influencers-card .influencers-content h6 {
  color: var(--main);
  font-weight: 700;
}
.omg-customer-influencers-content .influencers-card:hover {
  transform: translateY(-12px);
}
.omg-customer-influencers-content .influencers-card:hover svg {
  animation: heartbeat 0.5s infinite;
}
.omg-customer-influencers .influencers-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.omg-customer-influencers .influencers-overlay > div {
  margin-top: 5rem;
  position: relative;
}
.omg-customer-influencers .influencers-overlay > div.iframe-youtube iframe {
  width: 50vw;
  height: 28.125vw;
}
.omg-customer-influencers .influencers-overlay > div.iframe-tiktok iframe {
  height: 80vh;
  width: 45vh;
}
.omg-customer-influencers .influencers-overlay > div div {
  position: absolute;
  color: white;
  top: -25px;
  right: 0;
  font-size: 20px;
}

.omg-customer-talking {
  background-color: #bde3ff;
}
.omg-customer-talking-content {
  margin-top: 3rem;
}
.omg-customer-talking-content .logo-slider {
  padding: 20px;
  overflow: hidden;
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
}
.omg-customer-talking-content .logo-slider:hover div {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.omg-customer-talking-content .logo-slider > div {
  display: flex;
  position: relative;
  animation: scrollText 80s linear infinite;
  justify-content: space-around;
}
.omg-customer-talking-content .logo-slider > div:hover {
  animation-play-state: paused;
}
.omg-customer-talking-content .logo-slider .logo-slide-line:hover {
  animation-play-state: paused;
}
.omg-customer-talking-content .talking-card {
  height: auto;
  margin: 0 1vw;
  width: 372px;
  padding: 2rem;
  border-radius: 30px;
  background-color: #fff;
  box-sizing: 0 1px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.omg-customer-talking-content .talking-card .talking-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
}
.omg-customer-talking-content .talking-card > div {
  text-align: justify;
}
.omg-customer-talking-content .talking-card h6 {
  font-weight: 700;
}
.omg-customer-talking-content .talking-card small {
  font-size: 10px;
}
.omg-customer-talking-content .talking-card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  text-align: initial !important;
  gap: 1rem;
}
.omg-customer-talking-content .talking-card-footer img {
  width: 50px;
  height: auto;
}
.omg-customer-talking-content .talking-card-footer > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}
.omg-customer-talking-content .talking-card-footer > div > div:nth-child(2) span {
  font-weight: 600;
}
.omg-customer-talking-content .logo-slider:nth-child(2) > div {
  -webkit-animation: scrollTextReverse 80s linear infinite;
  animation: scrollTextReverse 80s linear infinite;
}

.omg-customer-bottom-banner {
  margin-bottom: 6rem;
  position: relative;
  overflow-x: hidden;
}
.omg-customer-bottom-banner .background-round {
  border-radius: 50% 50% 50% 50%/0% 0% 100% 100%;
  background-color: #bde3ff;
  height: 10rem;
  width: 100%;
  transform: scale(1.3);
  position: absolute;
  z-index: 0;
}
.omg-customer-bottom-banner .container {
  position: relative;
  z-index: 1;
}
.omg-customer-bottom-banner .row {
  background-color: var(--main);
  color: #fff;
  border-radius: 20px;
  padding: 5rem 4rem;
}
.omg-customer-bottom-banner .row h1 {
  margin-bottom: 1.5rem;
}
.omg-customer-bottom-banner .row > div:nth-child(2) {
  display: flex;
  align-items: center;
}
.omg-customer-bottom-banner .row .btn-second {
  background-color: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
}
.omg-customer-bottom-banner .row .btn-second:hover {
  background-color: #bde3ff;
  color: var(--main);
}

@media screen and (min-width: 768px) {
  .omg-customer-talking-content {
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) calc(0% + 2rem), white calc(0% + 10rem), white calc(100% - 10rem), rgba(255, 255, 255, 0) calc(100% - 2rem));
  }
  .omg-customer-influencers-content .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .omg-customer-bottom-banner .row > div:nth-child(2) {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .omg-customer-bottom-banner {
    margin-bottom: 3rem;
  }
  .omg-customer-bottom-banner .row .btn-second {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .omg-customer-influencers-content {
    margin-top: 1rem;
  }
  .omg-customer-influencers-content svg {
    width: 5rem;
    height: 5rem;
  }
  .omg-customer-influencers-content .influencers-card .influencers-content {
    padding: 1rem;
  }
  .omg-customer-influencers-content .influencers-card .influencers-content .body-xs {
    font-size: 16px;
  }
  .omg-customer-influencers-content .influencers-card .influencers-content .body-xxs {
    font-size: 14px;
  }
  .omg-customer-talking {
    background-color: #bde3ff;
  }
  .omg-customer-talking-content {
    margin-top: 1rem;
  }
  .omg-customer-talking-content .talking-card {
    width: 220px;
    padding: 1.5rem;
  }
  .omg-customer-talking-content .talking-card .body-xs {
    font-size: 8px;
    line-height: 15px;
  }
  .omg-customer-talking-content .talking-card h6 {
    font-weight: 700;
  }
  .omg-customer-talking-content .talking-card small {
    font-size: 7px;
  }
  .omg-customer-talking-content .talking-card img {
    width: 30px;
    height: auto;
  }
  .omg-customer-talking-content .talking-card-footer {
    margin-top: 1.5rem;
  }
  .omg-customer-talking-content .talking-card-footer > div > div:nth-child(2) {
    margin-left: 0.5rem;
  }
  .omg-customer-bottom-banner .row {
    margin-left: 2px;
    margin-right: 2px;
    padding: 2rem;
  }
}
@-webkit-keyframes scrollText {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scrollText {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes scrollTextReverse {
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes scrollTextReverse {
  from {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
#synctrack .overview {
  width: 100%;
  height: auto;
  background: linear-gradient(-145deg, rgba(255, 226, 225, 0.9) 0%, #9ac7e6 16%, #0c3980 80%, #25155e 100%);
  padding-block: 60px;
}
@media (width <= 992px) {
  #synctrack .overview {
    background: linear-gradient(75deg, rgba(255, 226, 225, 0.9) 0%, #9ac7e6 10%, #0c3980 80%, #25155e 100%);
  }
}
#synctrack .overview > * {
  color: var(--white);
}
#synctrack .overview .title {
  color: var(--white);
  text-align: left;
}
@media (width <= 992px) {
  #synctrack .overview .title {
    text-align: center;
  }
}
#synctrack .overview .des {
  font-size: 16x;
  line-height: 1.4;
}
@media (width <= 992px) {
  #synctrack .overview .des {
    text-align: center;
  }
}
#synctrack .overview .eco-img {
  max-width: 90%;
  max-height: 100%;
  width: 560px;
  height: 650px;
  object-fit: contain;
  height: auto;
}
@media (width <= 992px) {
  #synctrack .overview .eco-img {
    max-width: 100%;
  }
}
#synctrack .overview .group-btn {
  margin-block: 40px 20px;
}
#synctrack .overview .ecosystem-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(41, 38, 38, 0.1019607843);
}
#synctrack .overview .ecosystem-icon:hover {
  cursor: pointer;
  box-shadow: 0 6px 8px rgba(217, 195, 195, 0.2);
}
#synctrack .overview .eco-contact {
  margin: 0 auto;
  padding-block: 50px 10px;
}
#synctrack .overview .eco-contact img {
  width: 130px;
  height: 40px;
  object-fit: contain;
  opacity: 2;
  filter: brightness(1.3);
}
#synctrack .overview .eco-contact img:hover {
  cursor: pointer;
  filter: brightness(1.8);
}
#synctrack .journey {
  background-color: #fff;
  padding-block: 60px;
}
#synctrack .journey .journey-img {
  max-width: 100%;
  max-height: 100%;
  width: 588px;
  height: 398px;
  object-fit: contain;
}
#synctrack .journey .title {
  font-size: 17px;
  font-weight: 700;
  color: #3a5f9c;
}
@media (width <= 992px) {
  #synctrack .journey .title {
    text-align: center;
  }
}
#synctrack .journey .des {
  color: #161c2d;
}
@media (width <= 992px) {
  #synctrack .journey .des {
    text-align: center;
  }
}
#synctrack .journey .detail {
  color: var(--overlay-black);
  line-height: 1.4;
  font-weight: normal;
}
@media (width <= 992px) {
  #synctrack .journey .detail {
    text-align: center;
  }
}
#synctrack .journey .line {
  margin-top: 10px;
  width: 100%;
  height: 2px;
  background-color: #929292;
}
#synctrack .journey .explore-btn {
  font-weight: bold;
  padding: 0.5rem 0;
  line-height: 1.4;
  color: var(--overlay-black);
}
#synctrack .journey-circle {
  width: 100%;
  margin-top: 30px;
}
#synctrack .journey-circle .circle-item {
  cursor: pointer;
  background-color: #b2b2b2;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}
#synctrack .product-list {
  background-color: #e2f3ff;
  padding-block: 100px;
  position: relative;
}
#synctrack .product-list .dot.top {
  position: absolute;
  left: 0%;
  width: 60px;
  height: 80px;
  top: 10%;
  object-fit: contain;
}
#synctrack .product-list .dot.bottom {
  position: absolute;
  right: 0%;
  width: 60px;
  height: 80px;
  bottom: 2%;
  object-fit: contain;
}
#synctrack .product-list .title {
  font-size: 17px;
  font-weight: 700;
  color: #f64b4b;
  text-align: center;
}
#synctrack .product-list .des {
  color: #161c2d;
  text-align: center;
  padding-inline: 100px;
}
@media (width <= 1200px) {
  #synctrack .product-list .des {
    padding-inline: 0;
  }
}
#synctrack .product-list .bfs-badge {
  background-color: #e0f0ff;
  padding: 0rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.25rem;
  width: fit-content;
}
#synctrack .product-list .bfs-badge svg {
  width: 0.625rem;
}
#synctrack .product-list .app-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}
#synctrack .product-list .app-title {
  font-size: 24px;
  font-weight: 700;
  color: #094187;
}
#synctrack .product-list .features-item {
  padding: 50px;
  border-radius: 8px;
  border: 1px solid #0476b2;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s linear;
  height: 520px;
}
@media (width <= 1200px) {
  #synctrack .product-list .features-item {
    height: 590px;
  }
}
@media (width <= 992px) {
  #synctrack .product-list .features-item {
    height: auto;
  }
}
#synctrack .product-list .features-item:hover {
  transform: translateY(-10px);
}
@media (width <= 576px) {
  #synctrack .product-list .features-item {
    padding: 50px 30px;
  }
}
#synctrack .product-list .feature-content {
  width: 100%;
  height: 100%;
}
#synctrack .product-list .features-des,
#synctrack .product-list .feature-name {
  font-weight: normal;
  color: #161c2d;
}
#synctrack .product-list .feature-list {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #232323;
}
#synctrack .product-list .tick-blue {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
#synctrack .product-list .explore-btn {
  margin-top: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #0476b2;
}
#synctrack .product-list .explore-btn::before {
  background-color: #0476b2 !important;
}
#synctrack .commercial {
  background-color: #fff;
  padding-block: 40px 100px;
}
#synctrack .commercial-title {
  color: #161c2d;
  text-align: left;
  width: 100%;
}
@media (width <= 992px) {
  #synctrack .commercial-title {
    text-align: center;
  }
}
#synctrack .commercial .commercial-right {
  display: flex;
  align-items: end;
}
#synctrack .commercial .commercial-thumbnail {
  border-radius: 16px;
  padding: 20px;
  background-color: var(--white);
  width: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: 600px;
  height: 630px;
}
#synctrack .commercial .item {
  background-color: #e9f6ff;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.2s linear;
}
#synctrack .commercial .item:hover {
  cursor: pointer;
  transform: translateY(-10px);
}
#synctrack .commercial .item .commercial-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}
#synctrack .commercial .item .title {
  color: #232323;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
#synctrack .commercial .item .des {
  color: #161c2d;
  font-weight: normal;
  line-height: 1.4;
}
#synctrack .best {
  background-color: var(--white);
  padding-block: 100px;
}
#synctrack .best .title {
  color: #161c2d;
  text-align: center;
  padding-inline: 200px;
}
@media (width <= 1200px) {
  #synctrack .best .title {
    padding-inline: 0;
  }
}
#synctrack .best .item-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}
#synctrack .best .item-title {
  text-align: center;
  color: #144c8f;
  font-weight: 700;
  line-height: 1.4;
}
#synctrack .best .item-des {
  text-align: center;
  color: #161c2d;
  font-weight: normal;
  line-height: 1.4;
}
#synctrack .best .best-btn {
  margin-top: 50px;
}
#synctrack .partner,
#synctrack .partner-synctrack {
  background-color: var(--white);
  padding-block: 100px;
}
#synctrack .partner .title,
#synctrack .partner-synctrack .title {
  color: #245292;
  text-align: center;
}
#synctrack .partner .des,
#synctrack .partner-synctrack .des {
  text-align: center;
  font-size: 21px;
  line-height: 1.4;
  font-weight: normal;
  color: #0f0f0f;
}
#synctrack .partner .app-listing,
#synctrack .partner-synctrack .app-listing {
  margin: 0 auto;
  padding-block: 50px 10px;
}
#synctrack .partner .app-listing img,
#synctrack .partner-synctrack .app-listing img {
  width: 160px;
  height: 60px;
  object-fit: contain;
  opacity: 2;
}
#synctrack .partner .app-listing img:hover,
#synctrack .partner-synctrack .app-listing img:hover {
  cursor: pointer;
}
#synctrack .partner-synctrack {
  background-color: #f7f8f9;
}
#synctrack .partner-synctrack .title {
  color: #161c2d;
}
#synctrack .partner-synctrack .des {
  margin-bottom: 2rem;
}
#synctrack .partner-synctrack .app-listing {
  height: auto;
  width: auto;
  border-radius: 20px;
  background-color: #fff;
  padding: 2rem 1rem;
  margin: 2rem auto 0;
}
#synctrack .partner-synctrack .app-listing div {
  display: flex;
  align-items: center;
  justify-content: center;
}
#synctrack .partner-synctrack .app-listing div img {
  width: 90%;
  height: auto;
  object-fit: contain;
  opacity: 2;
  filter: grayscale(1);
}
#synctrack .partner-synctrack .app-listing div img:hover {
  cursor: pointer;
  filter: unset;
}
#synctrack .reviews {
  padding-block: 40px !important;
}
#synctrack .reviews .comparison-logo .app-logo {
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(41, 38, 38, 0.1019607843);
}
#synctrack .reviews .comparison-logo .app-logo:hover {
  cursor: pointer;
  box-shadow: 0 6px 8px rgba(161, 157, 157, 0.1019607843);
}
#synctrack .comment {
  background-color: #e2f3ff;
  padding-block: 100px;
}
#synctrack .comment .carousel-item {
  transition: transform 0.5s ease, opacity 0.5s ease-out;
  min-height: 548px;
}
#synctrack .comment .carousel-item.second .comment-des {
  margin-top: 2.75rem;
}
#synctrack .comment .carousel-indicators {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#synctrack .comment .carousel-indicators button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #9f9e9e;
}
#synctrack .comment .carousel-indicators button.active {
  background-color: #868686;
}
#synctrack .comment .comment-img-container {
  position: relative;
  width: fit-content;
  height: fit-content;
}
#synctrack .comment .comment-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
@media (width >= 1400px) {
  #synctrack .comment .comment-img {
    width: 492px;
    height: 458px;
  }
}
@media (width >= 1200px) and (width < 1400px) {
  #synctrack .comment .comment-img {
    width: 417px;
    height: 388px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  #synctrack .comment .comment-img {
    width: 342px;
    height: 318px;
  }
}
@media (width >= 768px) and (width < 992px) {
  #synctrack .comment .comment-img {
    width: 648px;
    height: 603px;
  }
}
@media (width >= 576px) and (width < 768px) {
  #synctrack .comment .comment-img {
    width: 468px;
    height: 436px;
  }
}
#synctrack .comment .comment-img-1 {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (width >= 1200px) {
  #synctrack .comment .comment-img-1 {
    width: 359px;
    height: 418px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  #synctrack .comment .comment-img-1 {
    width: 342px;
    height: 398px;
  }
}
@media (width >= 576px) and (width < 992px) {
  #synctrack .comment .comment-img-1 {
    width: 359px;
    height: 418px;
  }
}
#synctrack .comment .comment-img__left {
  position: absolute;
  left: 0;
  top: -90px;
}
@media (width >= 1400px) {
  #synctrack .comment .comment-img__left {
    width: 140px;
    height: 140px;
    top: -87px;
  }
}
@media (width >= 1200px) and (width < 1400px) {
  #synctrack .comment .comment-img__left {
    width: 120px;
    height: 120px;
    top: -74px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  #synctrack .comment .comment-img__left {
    width: 100px;
    height: 100px;
    top: -62px;
  }
}
@media (width >= 768px) and (width < 992px) {
  #synctrack .comment .comment-img__left {
    width: 140px;
    height: 140px;
    top: -87px;
  }
}
@media (width >= 576px) and (width < 768px) {
  #synctrack .comment .comment-img__left {
    width: 130px;
    height: 130px;
    top: -82px;
  }
}
#synctrack .comment .comment-img__right {
  position: absolute;
  top: -40px;
  right: -36px;
  z-index: 1;
}
@media (width >= 1400px) {
  #synctrack .comment .comment-img__right {
    right: -40px;
  }
}
@media (width >= 1200px) and (width < 1400px) {
  #synctrack .comment .comment-img__right {
    right: -38px;
  }
}
@media (width <= 576px) {
  #synctrack .comment .comment-img__right {
    display: none;
  }
}
#synctrack .comment .detail-comment {
  position: relative;
  background-color: var(--white);
  padding: 30px 40px;
  border-radius: 16px;
}
#synctrack .comment .detail-comment .number-container {
  width: 100%;
}
#synctrack .comment .detail-comment .number {
  font-size: 44px;
  color: #094187;
  font-weight: bold;
  line-height: 1.4;
}
#synctrack .comment .detail-comment .detail {
  color: #161c2d;
  font-weight: normal;
  line-height: 1.4;
}
#synctrack .comment .detail-comment .comment-des {
  margin-top: 10px;
  position: relative;
  color: #0f0f0f;
  font-size: 21px;
  line-height: 1.4;
  font-weight: normal;
}
@media (width <= 768px) {
  #synctrack .comment .detail-comment .comment-des {
    text-align: center;
  }
}
#synctrack .comment .detail-comment .comment-des .commar-icon {
  position: absolute;
  top: -51px;
  left: -3%;
  width: 54px;
  height: auto;
  object-fit: contain;
}
@media (width <= 576px) {
  #synctrack .comment .detail-comment .comment-des .commar-icon {
    width: 44px;
  }
}
#synctrack .comment .detail-comment .comment-tag {
  width: 100%;
}
#synctrack .comment .detail-comment .comment-tag .tag {
  width: 100%;
  text-align: left;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (width <= 768px) {
  #synctrack .comment .detail-comment .comment-tag .tag {
    text-align: center;
  }
}
#synctrack .comment .detail-comment .comment-tag .tag:nth-child(2) {
  font-weight: normal;
  font-size: 14px;
}
#synctrack .comment .detail-comment .comment-link {
  width: 100%;
}
#synctrack .comment .detail-comment .comment-link .explore-btn {
  padding: 0.5rem 0;
  width: fit-content;
  font-weight: bold;
  line-height: 1.4;
  color: var(--black);
  text-align: left;
}
#synctrack .comment .detail-comment .comment-circle {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
}
#synctrack .comment .detail-comment .comment-circle .circle-item {
  cursor: pointer;
  background-color: #b2b2b2;
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 1;
}
#synctrack .comment .detail-comment .comment-circle .circle-item:nth-child(2) {
  opacity: 0.8;
}
#synctrack .comment .detail-comment .comment-circle .circle-item:nth-child(3) {
  opacity: 0.6;
}
#synctrack .comment .detail-comment .comment-circle .circle-item:nth-child(4) {
  opacity: 0.4;
}

#synctrack .main {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(-145deg, rgba(255, 226, 225, 0.9) 0%, #9ac7e6 16%, #0c3980 80%, #25155e 100%);
  padding-block: 100px;
}
#synctrack .main .title {
  color: var(--white);
}
#synctrack .main .des {
  color: var(--white);
  font-size: 20px;
  line-height: 1.4;
  font-weight: normal;
}
#synctrack .main-thumbnail {
  width: 40%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url("../main.html");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  z-index: 5;
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 17% 100%);
}
@media (width <= 992px) {
  #synctrack .main-thumbnail {
    display: none;
  }
}
#synctrack .story {
  background-color: var(--white);
  padding-block: 40px 80px;
}
#synctrack .story-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: 588px;
  height: 680px;
}
#synctrack .story.two {
  background-color: #e2f3ff;
}
#synctrack .story.two .story-img {
  width: 588px;
  height: 398px;
}
#synctrack .story .title {
  color: #130d3a;
}
@media (width <= 992px) {
  #synctrack .story .title {
    text-align: center;
  }
}
#synctrack .story .detail {
  color: #130d3a;
  line-height: 1.4;
  font-weight: normal;
}
@media (width <= 992px) {
  #synctrack .story .detail {
    text-align: center;
  }
}
#synctrack .story-feature {
  background-color: #fefeff;
  padding-block: 80px 100px;
  border-bottom: 1px solid #d3c0c0;
}
#synctrack .story-feature .elip-container {
  position: relative;
  width: 56px;
  height: 56px;
}
#synctrack .story-feature .feature-img,
#synctrack .story-feature .feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
#synctrack .story-feature .feature-img.commar,
#synctrack .story-feature .feature-icon.commar {
  position: relative;
  left: -24px;
  top: 12px;
}
@media (width <= 992px) {
  #synctrack .story-feature .feature-img.commar,
  #synctrack .story-feature .feature-icon.commar {
    left: 0;
  }
}
#synctrack .story-feature .feature-img.large,
#synctrack .story-feature .feature-icon.large {
  width: 56px;
  height: 56px;
}
#synctrack .story-feature .feature-icon {
  position: absolute;
  top: -12%;
  right: -16%;
}
#synctrack .story-feature .key {
  color: var(--black);
  font-weight: 700;
  font-size: 25px;
}
#synctrack .story-feature .key.small {
  font-size: 20px;
}
#synctrack .story-feature .value {
  color: var(--black);
  line-height: 1.4;
  font-weight: normal;
}
#synctrack .story-feature .lead-comment {
  height: 100%;
  padding-left: 100px;
}
@media (width <= 992px) {
  #synctrack .story-feature .lead-comment {
    padding: 30px 0 0;
  }
}

/*# sourceMappingURL=main.css.map */
