@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  background-color: var(--canvas-bg);
}
img {
  max-width: 100%;
  height: auto;
}
:root {
  --title: #051E33;
  --text: #2E3E4D;
  --description: #64748B;
  --border: #E2E8F0;
  --canvas-bg: #FAFDFF;
  --white: #FFFFFF;
  --blue: #1781E0;
  --green: #22C55E;
  --orange: #F59E0B;
  --disable: #94A3B8;
  --line: #EEF2F7;
  --blue-hover: #0F6DC6;
  --blue-active: #0956A3;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-20: 20px;
  --line-height: 1.5;
}
.iconfont {
  top: 0;
}
/*banner*/
.banner-one {
  background: linear-gradient(90deg, #F8FBFE 0%, #E8F3FD 100%)
}
.banner-two {
  background: url("../images/banner/android-password-genius-bg.png") no-repeat right center, linear-gradient(90deg, #fcfdf8 0%, #EAF5E1 100%);
  background-size: auto;
}
.banner-three {
  background: #ecf9fb url("../images/banner/clone-bg.png") no-repeat right center;
  background-size: auto;
}
.banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.banner-wrapper {
  display: flex;
  transition: transform .6s ease;
  will-change: transform;
}
.banner-item {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.banner-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 30px;
  box-sizing: border-box;
}
/* Left */
.banner-left {
  width: 100%;
  max-width: 520px;
}
.sub-title {
  display: inline-block;
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
}
.banner-left h2 {
  font-size: 64px;
  line-height: 1.2;
  color: var(--title);
  font-weight: bold;
}
.banner-left p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin: 12px 0 80px;
}
/* Button */
.btn-group {
  display: flex;
  gap: 20px;
}
.btn {
  width: 250px;
  height: 60px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-8);
  font-size: 20px;
  transition: .3s;
}
.btn-down {
  background: var(--blue);
  color: var(--white);
}
.btn-down:hover {
  background: var(--blue-hover);
}
.btn-down::before {
  content: "\e607"
}
.btn-more {
  color: var(--blue);
  box-sizing: border-box;
  border: 2px solid var(--blue);
}
.btn-more:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-more::before {
  content: "\e604"
}
.btn:active {
  background: var(--blue-active);
}
.pro-tag {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  font-size: 16px;
  margin-top: 16px;
}
.span-tag {
  color: var(--green);
}
.span-text {
  color: var(--description);
}
.span-text a {
  color: var(--blue);
}
.span-text a:hover {
  text-decoration: underline;
}
/* Right */
.banner-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.banner-right img {
  mix-blend-mode: multiply;
  max-width: 640px;
  width: 100%;
  height: auto;
}
/* Prev Next */
.banner-prev, .banner-next {
  top: 50%;
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 32px;
  color: var(--white);
  transition: .3s;
  z-index: 2;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .1);
}
.banner-prev {
  left: 40px;
}
.banner-next {
  right: 40px;
}
.banner-prev:hover, .banner-next:hover {
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}
/* Dots */
.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.dot {
  width: 64px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: .3s;
}
.dot.active-dot {
  width: 64px;
  background: var(--blue);
}
.dot:hover {
  background: rgba(23, 129, 224, .5);
}
/* Animation */
.banner-left {
  animation: fadeLeft .8s ease;
}
.banner-right {
  animation: fadeRight .8s ease;
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive */
/*Tablet*/
@media (max-width:1200px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }
  .banner-left {
    max-width: 100%;
  }
  .banner-right {
    justify-content: center;
  }
  .banner-left h2 {
    font-size: 46px;
  }
  .banner-left p {
    margin: 20px 0 40px;
  }
  .btn-group {
    justify-content: center;
  }
  .pro-tag {
    margin: auto;
    margin-top: 16px;
  }
  .banner-prev, .banner-next {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}
/*Mobile*/
@media (max-width:768px) {
  .banner-container {
    padding: 40px 20px 60px;
    gap: 30px;
  }
  .sub-title {
    font-size: 16px;
  }
  .banner-left h2 {
    font-size: 34px;
    line-height: 1.3;
  }
  .banner-left p {
    font-size: 16px;
    margin: 16px 0 30px;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 320px;
    height: 52px;
    font-size: 17px;
  }
  .banner-right img {
    max-width: 340px;
  }
  .banner-prev, .banner-next {
    display: none;
  }
  .banner-dots {
    bottom: 15px;
  }
  .dot {
    width: 36px;
  }
  .dot.active-dot {
    width: 36px;
  }
}
/*Small Mobile*/
@media (max-width:480px) {
  .banner-container {
    padding: 30px 16px 50px;
  }
  .banner-left h2 {
    font-size: 28px;
  }
  .banner-left p {
    font-size: 15px;
  }
  .banner-right img {
    max-width: 260px;
  }
  .btn {
    height: 48px;
    font-size: 16px;
  }
  .pro-tag {
    font-size: 14px;
  }
}
/*Trusted by Top Medias*/
.media {
  width: 100%;
  padding: 40px 0;
  background: var(--white);
}
.media-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.media-title {
  width: 260px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: bold;
  color: var(--title);
}
.media-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
/* left and right gradually disappearing */
.media-slider::before, .media-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.media-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.media-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}
.media-track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.logo {
  flex-shrink: 0;
  margin: 0 40px;
}
.logo img {
  display: block;
  opacity: .75;
  transition: .3s;
}
.logo img:hover {
  opacity: 1;
}
.wrapper {
  width: 100%;
  margin: 100px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container h1, .container h2 {
  text-align: center;
  font-size: 48px;
  color: var(--title);
  font-weight: bold;
}
/*Title*/
.new-title, .hot-title {
  margin-bottom: 80px;
}
/*new product*/
.new-box{
    position: relative;
}
.new-box::before{
    content: url("../images/common/new-left.png");
    position: absolute;
    top: -9px;
    left: -9px;
}
.new-box, .popular-one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: .3s;
  position: relative;
  border-radius: var(--radius-20);
  background: var(--white);
  border: 1px solid var(--border);
}
.left-content {
  width: 100%;
  max-width: 520px;
  padding: 40px 0 40px 40px;
}
.pro-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.pro-info span {
  color: var(--text);
}
.pro-info p {
  color: var(--title);
  font-size: 20px;
  font-weight: bold;
}
.left-content h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 32px 0 0;
  color: var(--title);
}
.left-content>p {
  font-size: 16px;
  margin: 12px 0 20px;
  color: var(--text);
  line-height: var(--line-height);
}
.left-content a {
  color: var(--blue);
}
.left-content a::after {
  content: "\e606";
  margin-left: 8px;
}
.left-content a:hover {
  color: var(--blue-hover);
  text-decoration: underline;
}
.fill-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  text-decoration: none;
}
/*popular products*/
.explain {
  font-size: 20px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 12px;
  margin-bottom: 80px;
}
.new-explain {
  color: var(--text);
}
.popular-box, .choose-box {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}
.popular-box > div {
  border-radius: var(--radius-20);
  background: var(--white);
  border: 1px solid var(--border);
}
.popular-one {
  grid-column: span 12;
}
.popular-two, .popular-three {
  position: relative;
  grid-column: span 6;
  padding: 40px;
  transition: .3s;
}
.popular-two h3, .popular-three h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 32px 0 0;
  color: var(--title);
}
.popular-two>p, .popular-three>p {
  font-size: 16px;
  margin: 12px 0 20px;
  color: var(--text);
  line-height: var(--line-height);
}
.new-box:hover, .popular-one:hover, .popular-two:hover, .popular-three:hover {
  transition: .3s;
  transform: translateY(-5px);
}
/*why choose*/
.why-container {
  margin: 0 auto;
  max-width: 94%;
  padding: 100px 0;
  border-radius: var(--radius-20);
  background: linear-gradient(90deg, #1781E0, #6C63FF);
}
.why-container h2, .why-container p {
  color: var(--white);
}
.choose-box div {
  display: grid;
  justify-items: center;
  grid-column: span 3;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-20);
}
.choose-box div h4 {
  color: var(--blue);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 20px 0 8px;
}
.choose-box div p {
  color: var(--text);
}
/*What Our Customers Said*/
.why-box {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
}
.said-box {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-20);
  border: 1px solid var(--border);
}
.top-column {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}
.top-column span{
  font-size: 24px;
  color: var(--orange);
}
.top-column > span {
  font-size: 14px;
  font-style: italic;
  color: var(--disable);
}
.said-box p {
  color: var(--text);
  margin: 20px 0 40px;
}
.said-box > span {
  color: var(--description);
  font-style: italic;
  float: right;
}
/*Hot How-Tos*/
.hot-howtos {
  padding: 80px 0;
  background: var(--white);
}
/* Tabs */
.tabs {
  display: flex;
  gap: 80px;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.tab {
  cursor: pointer;
  padding: 0 40px 8px;
  color: var(--description);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  transition: .3s;
}
.tab:hover {
  color: var(--blue-hover);
}
.tab.active-tab {
  color: var(--blue);
}
.tab.active-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--blue);
}
/* Panel */
.tab-content {
  position: relative;
}
.panel {
  display: none;
  animation: fade .35s ease;
}
.panel.active-panel {
  display: block;
}
/* Article List */
.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 40px;
}
.article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: .3s;
  min-width: 0;
}
.article:hover {
  transform: translateY(-5px);
}
.article-icon {
  font-size: 24px;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 28px;
}
.info {
  flex: 1;
  min-width: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.info h4 {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: var(--title);
  margin-bottom: 8px;
  transition: .3s;
}
.article:hover h4 {
  color: var(--blue);
}
.info p {
  font-size: 16px;
  color: var(--description);
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Animation */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
/* Tablet */
@media (max-width:1200px) {
  .container {
    padding: 0 24px;
    box-sizing: border-box;
  }
  .media-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 16px;
  }
  .media-title {
    width: auto;
  }
  .new-box::before{
    display: none;
  }
  .new-box::after{
    content: url("../images/common/new-right.png");
    position: absolute;
    top: -9px;
    right: -9px;
  }
  .new-box, .popular-one {
    flex-direction: column;
  }
  .left-content {
    max-width: -webkit-fill-available;
    padding: 40px;
  }
  .right-img {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .right-img img {
    max-width: 100%;
    height: auto;
  }
  .popular-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .popular-one {
    grid-column: span 2;
  }
  .popular-two, .popular-three {
    grid-column: span 1;
  }
  .choose-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose-box div {
    grid-column: auto;
  }
  .why-box {
    grid-template-columns: 1fr;
  }
}
/* Mobile */
@media (max-width:768px) {
  .wrapper {
    margin: 60px 0;
  }
  .container h1, .container h2 {
    font-size: 34px;
  }
  .new-title, .hot-title {
    margin-bottom: 40px;
  }
  .explain {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .media {
    padding: 16px 0;
  }
  .media-slider{
    padding: 20px 0;
  }
  .media-slider::before, .media-slider::after {
    width: 100px;
  }
  .logo {
    margin: 0 20px;
  }
  .logo img {
    max-height: 32px;
    width: auto;
  }
  /* NEW PRODUCT */
  .new-box {
    flex-direction: column;
  }
  .left-content {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
  }
  .left-content h4 {
    font-size: 24px;
    margin: 24px 0 0;
  }
 .left-content>p {
   margin: 8px 0 20px;
 }
  .right-img {
    text-align: center;
  }
  .right-img img {
    width: 100%;
    max-width: 320px;
  }
  /* Popular */
  .popular-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .popular-two h4, .popular-three h4{
    font-size: 24px;
    margin: 24px 0 0;
  }
  .popular-two, .popular-three {
    padding: 30px;
  }
  .popular-two img, .popular-three img {
    width: 100%;
    height: auto;
  }
  /* Why */
  .why-container {
    max-width: 100%;
    border-radius: 0;
    padding: 60px 0;
  }
  .why-box {
    margin-top: 40px;
  }
  .choose-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .choose-box div {
    padding: 30px 20px;
  }
  .choose-box img {
    width: 60px;
  }
  /* testimonial */
  .why-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .said-box {
    padding: 24px;
  }
  .top-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  /* tabs */
  .tabs {
    gap: 10px;
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }
  .tab {
    width: auto;
    padding: 0 20px 10px;
    flex-shrink: 0;
    font-size: 16px;
  }
  /* article */
  .article-list {
    grid-template-columns: 1fr;
  }
  .article {
    gap: 10px;
  }
  .info h4 {
    white-space: normal;
    font-size: 18px;
  }
  .info p {
    -webkit-line-clamp: 3;
    font-size: 14px;
  }
}
/* Small Mobile */
@media (max-width:480px) {
  .container {
    padding: 0 16px;
  }
  .container h1, .container h2 {
    font-size: 28px;
  }
  .left-content {
    padding: 24px;
  }
  .left-content h3 {
    font-size: 20px;
  }
  .pro-info {
    gap: 12px;
  }
  .pro-info img {
    width: 48px;
  }
  .pro-info p {
    font-size: 18px;
  }
  .popular-two, .popular-three {
    padding: 24px;
  }
  .popular-two h4, .popular-three h4 {
    font-size: 20px;
  }
  .choose-box div h4 {
    font-size: 24px;
  }
  .logo img {
    max-height: 26px;
  }
  .said-box {
    padding: 20px;
  }
}