:root {
  --white: #fff;
  --text-color: #333;
  /* Text style  */
  --fs-sm: clamp(0.7rem, 1.3vw, 0.8rem);
  --fs-xs: .9rem;
  /* --fs-body: 1.3rem; */
  --fs-body: clamp(1rem, 1.6vw, 1.3rem);
  --fs-md: clamp(1.2rem, 2vw, 1.5rem);
  --fs-lg: clamp(1.4rem, 2.5vw, 1.7rem);
  /* --fs-lg: 1.7rem; */
  /* --fs-xl: 1.9rem; */
  --fs-xl: clamp(1.6rem, 3vw, 1.9rem);

  --col-fs-xxl: clamp(2rem, 3.5vw, 2.6rem);
  --col-fs-xl: clamp(1.8rem, 3vw, 2.3rem);;
  --col-fs-lg: clamp(1.5rem, 2.8vw, 1.6rem);
  --col-fs-md: 1.4rem;
  --col-fs-sm: .7rem;


  --fw-body: 600;
  --hero-bg: linear-gradient(to bottom, #FFFFF9, #FDFFA7);
  --text-success: #176B49;
  --text-error: #FF3131;
  --highlight-bg: #FFF4D5;
  --text-gray: #747474;
  --bg-orange: #FF914C;
  --primary: #549AF2;
}


@media (max-width: 1600px) {
  :root {
    --fs-xl: clamp(1.6rem, 2.8vw, 1.9rem);
    --fs-md: clamp(1.2rem, 1.8vw, 1.5rem);
    --fs-body: clamp(1rem, 1.4vw, 1.3rem);
  }
}

@media only screen and (max-width: 991.98px) {  
   :root { 
    --col-fs-md: 1rem;
    --col-fs-xl: 1.3rem;
    --col-fs-sm: .5rem;
   }
}

@font-face {
  font-family: A-Round-Gothic;
  src: url(../../fonts/Tsukushi-A-Round-Gothic-Regular.woff2);
}

@font-face {
  font-family: 'ZenMaruGothic-Bold';
  src: url('../../fonts/ZenMaruGothic-Bold.woff2') format('woff2'),
       url('../../fonts/ZenMaruGothic-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: FOT-TsukuAOldMin;
  src: url(../../fonts/FOT-TsukuAOldMin-Pr6N.woff) format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


html,
body {
    background-color: var(--white);
    padding: 0;
    margin: 0;
    font-family: A-Round-Gothic;
    font-weight: 500;
    font-size: var(--fs-body);
    color: var(--text-color);
    font-weight: var(--fw-body);
    overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

ol, ul {
	list-style: none;
}

img {
  max-width: 100%;
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex-col-center {
  display: flex;
  align-items: center;
}

.fs-sm {
  font-size: var(--fs-sm);
}

.fs-xs {
  font-size: var(--fs-xs);
}

.fs-md {
  font-size: var(--fs-md);
}

.fs-lg {
  font-size: var(--fs-lg);
}

.fs-xl {
  font-size: var(--fs-xl);
}

.fw-400 {
  font-weight: 400;
}

.fw-700 {
  font-weight: 700;
}

.f-maru-bold {
  font-family: 'ZenMaruGothic-Bold';
}

.text-orange {
  color: var(--bg-orange);
}

.text-white {
  color: var(--white);
}

.text-primary {
  color: var(--primary);
}

.text-error {
  color: var(--text-error);
}

.bg-light-yellow {
  background-color: #FEFFE4;
}

.bg-white {
  background-color: var(--white);
}

.bg-grey-light {
  background-color: #EFEFEF;
}

.bg-grey {
  background-color: #A6A6A6;
}

.bg-dark-grey {
  background-color: #C1C2C5;
} 

.bg-orange {
  background-color: var(--bg-orange);
}

.bg-orange-light {
  background-color: #FFDE59;
} 

.flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.justify-center {
  justify-content: center;
}
.flex-1 {
  flex: 1;
}

.w-100 {
  width: 100%;
}

.w-40 {
  width: 40%;
} 

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-auto  {
  margin-left: auto !important;
}

.mb-2vw {
  margin-bottom: 2vw;
}

.mb-3vw {
  margin-bottom: 3vw;
}

.mb-4vw {
  margin-bottom: 4vw;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.py-4vw {
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.not-allow {
  cursor: not-allowed;
}

.invisible {
  visibility: hidden !important;
}
/* ------------------------------SECTIONS-------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 7px 15px;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out; 
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-bg::before { 
  content: '';
  position: absolute;
  background: var(--hero-bg);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out; 
} 

.header-logo {
  height: 50px;
}

.header-logo img {
  height: 50px;
}

.nav-menu {
  margin: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  border-bottom:2px;
  position: relative;
  outline: none;
}

.nav-menu a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #FFCA2D;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}

.nav-menu a:hover::after { 
  transform: scale(1, 1);
  transform-origin: left top;
}

.btn-menu {
  position: relative;
  z-index: 1;
  display: inline-block;
  cursor: pointer;
  display: none;
}

.btn-menu span {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #333;
  margin: 6px 0;
  transition: .4s;
}

.btn-menu.active span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
}

.btn-menu.active span:nth-child(2) {
  opacity: 0;
}

.btn-menu.active span:nth-child(3) {
  transform: translate(0, -6px) rotate(45deg);
}

.main {
  position: relative;
  flex: 1 1 0;
}

.sec-container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.top-notify {
  position: absolute;
  display: inline-block;
  color: var(--white);
  background-color: #FF4343;
  font-size: var(--fs-lg);
  right: 1rem;
  top: -7px;
  z-index: 11;
  padding: 1rem 1.5rem;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
}

.top-notify:hover {
  transform: scale(1.1,1.1);
}

.hero { 
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--hero-bg);
  display: flex;
  padding-top: 66px;
  padding-bottom: 66px;
  border-bottom: 20px solid #FFCA2D;
}


.hero__left {
  width: 45%;
}


.hero__right {
  width: 55%;
  position: relative;
  /* background: url(../../images/lp/hero-image_v1.png) no-repeat center left;
  background-size: contain; */
}

.hero__right img { 
  width: 80%;
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50% );
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  right: -50px;
  font-size: var( --fs-lg);
}

.hero-text {
  margin-right: 8vw;
  font-size: var( --fs-xl);
}

.hero-image img {
  max-width: 100%;
}

.hero-button p {
  color: var(--text-error);
  font-weight: 700;
  margin-bottom: .5rem;
  margin-top: 0;
}

.btn-default {
  --btn-fs:  var( --fs-lg);
  --btn-padding-y: 1rem;
  --btn-padding-x: 1.3rem;
  --btn-border-radius: 50rem;
  --btn-transition: all 0.3s ease;
  --btn-default-bg: #F20F10;
  --btn-default-shadow: #5e2222;
  --btn-danger-bg: #EB3D3D;
  --btn-danger-shadow: #951b1b;
  --btn-primary-bg: var(--primary, #4a90e2);
  --btn-primary-shadow: #326ab1;
  position: relative;
  cursor: pointer;
  border-radius: var(--btn-border-radius);
  outline: none;
  border: 0;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  transition: var(--btn-transition);
}

.icon-loading {
  display: none;
}

.btn-default.disabled {
  pointer-events: none;
  opacity: .7;
}

.btn-default.disabled .icon-loading {
  display: block;
}

.icon-loading:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 4px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: ring 1.2s linear infinite;
}

.btn-default .text { 
  font-size: var(--btn-fs);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--white);
  background-color: var(--btn-default-bg);
  overflow: hidden;
  border-radius: inherit;
  transition: var(--btn-transition);
}

.btn-default::before { 
  content: "";
  position: absolute;
  z-index: 0;
  top: 8%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-default-shadow);
  border-radius: inherit;
  pointer-events: none;
  transition: var(--btn-transition);
}

.btn-default--small {
  --btn-fs: 1rem;
  --btn-padding-y: .5rem;
  --btn-padding-x: 1.3rem;
  --btn-width-icon: 1.5rem;
  --btn-height-icon: 1.5rem
}


.btn-default--small svg {
  width: var(--btn-width-icon);
  height: var(--btn-height-icon);
 }

.btn-form {
  --btn-border-radius: 0.8rem;
}

.btn-danger .text {
   background-color: var(--btn-danger-bg);
}

.btn-danger:before {
  background: var(--btn-danger-shadow);
}


.btn-primary .text {
  background-color: var(--btn-primary-bg);
}

.btn-primary:before {
  background: var(--btn-primary-shadow);
}


.btn-default:hover {
  transform: translateY(4%);
}

.btn-default:hover::before  { 
  height: 90%;
  left: 1px;
  width: calc(100% - 2px);
}

.btn-plan {
  --btn-padding-x: 1rem;
  width: 100%;
  max-width: 290px;
}

.btn-plan .text {
  --btn-padding-x: 1rem;
}

.btn-plan  svg{
  position: absolute;
  right: calc(var(--btn-padding-x) / 2);
}

.introduce {
  padding: 2rem 1rem;
  background-color: #EDEDED;
  /* overflow-x: hidden; */
  position: relative;
  margin-bottom: 4rem;
}

.introduce::after {
  content: "";
  position: absolute;
  bottom: -59px;
  left: 0;
  right: 0;
  height: 0;
  border-left: 49vw solid transparent;
  border-right: 49vw  solid transparent;
  border-top: 60px solid #EDEDED; 
}

.introduce-title {
  padding-top: 2rem;
  background:  url(../../images/lp/bg-title-intoduce.png) no-repeat right / contain;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.bubble-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1025px;
  margin-left: auto;
  margin-right: auto;
  perspective: 1000px; 
}


.bubble-item {
  flex: 1 1 calc(33.333% - 60px);
  box-sizing: border-box;
  background-color: #FFFFFF;
  padding: 1rem 1rem 2rem 1rem;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
}



.bubble-item::before { 
    content: "";
    position: absolute;
    bottom: -55px;
    right: 20%;
    width: 0px;
    height: 0px;
    border-top: 60px solid #FFFFFF;
    border-left: 35px solid transparent;
}

.bubble-item:nth-child(3)::before,
.bubble-item:nth-child(6)::before {
  right: 70%;
  border-left: unset;
  border-right: 35px solid transparent;
}

.bubble-num {
  font-size: var(--fs-xl);
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.bubble-content {
  text-align: center;
}

.introduce-image {
  text-align: center;
}

/* .ideas {
  padding: 2rem 1rem;
} */

.ideas-title {
  background:  url('../../images/lp/ideas-title.png') no-repeat top right / auto;
  max-width: 490px;
  padding-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  font-size: var(--fs-lg);
}

.ideas-video {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5rem 0;
}

.ideas-video video {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.container-try {
  background-color: #FFCA2D;
}

.container-try__inner {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


.sec-title {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: var(--fs-lg);
}

.sec-title-benefits {
  margin-bottom: 2rem;
}

.sub-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sub-title .line-1 {
  text-align: center;
  display: block;
}


.sub-title .line-1  {
  font-size: var(--fs-md);
} 

.sub-title-text {
  font-size: var(--fs-lg);
  font-family: 'ZenMaruGothic-Bold';
  position: relative;
  display: inline-block;
}

.sub-title-bg {
  background: url(../../images/lp/layer-txt-01.png) no-repeat center left;
  background-size: contain;
  padding: 1.5rem 1rem;
}

.sub-text-bg {
  margin-left: 5vw;
  margin-bottom: 1.5rem;
}

.sub-title-text img {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: drawStroke 2s ease-out forwards;
}

.benefit-group {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-group:has(> :only-child) {
  grid-template-columns: 1fr;            /* chỉ 1 cột */
  justify-items: center;                /* căn giữa item */
}
/* .benefit-group .benefit-item { 
  flex: 0 0 calc(50% - 2rem);
  margin: 1rem 1rem 2rem;
  padding: 1rem 0 0 0;
} */

.benefits-container {
  padding: 0 1rem;
}

.benefit-item {
  max-width: 1050px;
  width: 100%;
  padding: 1rem 0;
  margin: 1rem auto 3rem auto;
  background-color: var(--white);
  border: 2px solid #FFEFD8;
  border-style: solid;
  position: relative;
  display: flex;
  flex-direction: column;
}

.benefit-item.is-only { 
  width: 50%;
} 


.benefit-item__title {
  position: relative;
  width: 96%;
  /* margin-inline-end: -.5rem; */
  /* margin-inline-start: auto; */
  margin-inline-start: -3.5rem;
  font-size: var(--fs-md);
  margin-inline-end: auto;
}

.benefit-item__inner {
  z-index: 2;
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  background: linear-gradient(135deg, #FFCB30, #FFE689, #FFFAC9);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.benefit-item__title::before  {
  content: "";
  position: absolute;
  height: 100%;
  width: 90%;
  inset: 1rem 0 0 1rem; 
  background-color: var(--highlight-bg);
  z-index: 1;
  left: 3.5rem;
}

.benefit-item--new {
  border-color: #6CC3FC;
}

.benefit-item--new .benefit-item__inner {
  background: linear-gradient(to right, #E6FAF7, #6CC3FC, #35ABFF);
}

.benefit-item--new .benefit-item__title::before { 
  background-color: #E9F5FF;
}

.benefit-item-title {
  font-size: clamp(2.5rem, 3.3vw, 3.5rem);
  color: var(--text-gray);
  text-wrap: nowrap;
  margin-right: 1rem;
}

.benefit-item-sub-title {
  /* flex: 1; */
  width: 50%;
}

.benefit-item-sub-title span {
  display: block;
}


.benefit-item__body {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  flex: 1;
}

.benefit-item__audio {
  /* flex: 0 0 45%; */

  padding: 2rem 6vw;
}

.benefit-item__content {
  /* flex: 0 0 55%; */
  /* padding: 0 .5rem; */
  padding: 0 6vw;
  line-height: 1.8;
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.benefit-num {
  font-family: FOT-TsukuAOldMin;
  font-size: 10rem;
  line-height: 1;
  color: #D3E3DD;
  text-align: right;
}

.benefit-new {
  position: absolute;
  left: 0;
  top: -2rem;
  z-index: 3;
  width: 10vw;
}

.benefit-item--reverse .benefit-item__title {
  margin-inline-start: -.5rem;
  margin-inline-end: auto;
}

.benefit-item--reverse .benefit-item__body,
.benefit-item--reverse .benefit-item__inner {
  flex-direction: row-reverse;
}

/* .benefit-item.benefit-item--reverse .benefit-item__audio {
  padding-right: 1rem;
  padding-left: 1rem;
} */

.benefit-item--reverse .benefit-num {
  text-align: left;
}

.benefits-bottom-line {
  background-color: #FEFFE4;
  height: 3.5rem;
  width: 100%;
}

.benefit-group .benefit-item__title { 
  width: 90%;
  font-size: clamp(1rem, 2vw, 1.1rem);;
}

.benefit-group .benefit-item-title { 
  font-size: clamp(2.5rem, 4vw, 2.8rem);
}

.benefit-group .benefit-item__content {
  font-size: clamp(.75rem, .8vw, 1.2rem);
}

.benefit-group .benefit-num {
  font-size: 7rem;
}

.benefit-group .benefit-item__audio { 
  padding: 1rem .5rem;
}

.implementing {
  padding-bottom: 2rem;
}

.sec-implementing {
  max-width: 1555px;
  margin-left: auto;
  margin-right: auto;
}

.imp-title {
  padding: 0 10px;
  position: relative;
  padding: .5rem;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.imp-title::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  border-bottom: 3px dashed #FFCA2D;
}

.imp-title.border-green::before{
  border-color:  #176B49;
}

.imp-group:first-child  {
  margin-bottom: 3rem;
}

.imp-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
}

.imp-col {
  flex: 0 0 50%;
  padding: 1rem;
  position: relative;
}

.imp-col-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imp-col__title {
  display: inline-block;
  padding: .4rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}


.imp-col__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 230px;
  width: 185px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.imp-col__image img {
  max-width: 190px;
}

.popup-chat {
  position: absolute;
  display: inline-block;
  top: 0;
}

.popup-chat-options.popup-chat--left {
  left: -55%;
}

.popup-chat-options.popup-chat--right  {
  right: -55%;
}

.popup-chat-solutions.popup-chat--left {
  left: -70%;
}

.popup-chat-solutions.popup-chat--right {
  right: -65%;
}

.popup-inner {
  position: relative;
}

.popup-inner span {
  position: absolute;
  font-size: .7rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 100%;
  text-align: center;
}

.popup-ziczac {
  position: absolute;
  top: 0;
  z-index: 2;
  right: -186px;
  top: -5%;
  transform: translate(-50%, 5%) rotate(10deg);
}

.popup-ziczac__inner {
  position: relative;
  font-size: .75rem;
  color: #fff;
}

.popup-ziczac__inner span {
  position: absolute;
  top: 40%;
  left: 52%;
  transform: translate(-52%, -40%);
  text-align: center;
  width: 100%;
}

.popup-ziczac-bg img {
  width: 160px;
}

.arrow-image {
  position: absolute;
  width: 80px;
  right: -60px;
  bottom: 50%;
  transform: translateY(50%);
}

.sec-feature-intro {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.feature-table {
  min-width: 800px;
  margin-right: 3rem;
}

.component-table {
  overflow: auto;
}

.component-table,
.component-image {
  margin-bottom: 4rem;
}

.component-image img {
  max-width: 1000px;
  width: 100%;
}

.grid-row {
  display: grid;
  grid-template-columns: 18% 22% 22% auto; 
  width: 100%;
}

.grid-text {
  display: grid;
  grid-template-columns: auto auto auto auto auto; 
  width: 100%;
}

.col-text {
  flex: 1; 
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 2px;
}

.col-fs-xxl {
  font-size: var(--col-fs-xxl);
}

.col-fs-md {
  font-size: var(--col-fs-md);
}

.col-fs-xl {
  font-size: var(--col-fs-xl);
}

.col-fs-lg {
  font-size: var(--col-fs-lg);
}

.col-fs-sm {
  font-size: var(--col-fs-sm);
}

.bg-yellow-col {
  background-color: #FFF4D5;
}

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

.el-col {
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #FFCA2D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.border-5 {
  border-width: 5px;
}

.border-left-8 {
  border-left-width: 8px;
}

.border-right-8 {
  border-right-width: 8px;
}

.border-top-8 {
  border-top-width: 8px;
}

.border-bot-8 {
  border-bottom-width: 8px;
}

.set-height {
  min-height: 200px;
}

.table-note > div:first-child {
  margin-right: 1rem;
}

.group-calculation {
  padding: 0;
}

.calculation {
  padding: 30px 10px;
  position: relative;
}

.popup-table {
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: -30px;
  right: -65px;
  min-width: 160px;
}

.popup-table span {
  transform: translate(-50%, -40%) rotate(6deg);
  font-size: 1rem;
 }

.group-calculation .calculation:nth-child(2) {
  border-top: 2px solid #FFCA2D;
}

.sec-installing {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5rem;
}

.grid-step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-step > div {
  padding: 10px;
  text-align: center;
}

.card-step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-title {
  background-color: #FFCA2D;
  padding: 1rem;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  font-size: var(--fs-md);
}

.card-title::before { 
  content: '';
  border-style: solid;
  border-width: 30px 20px 0 20px;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  border-color: #FFCA2D transparent transparent transparent;
}

.card-body {
  background-color: #EFEFEF;
  padding: 2.5rem 1rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.triangle-right {
  width: 0;
  height: 0;
  position: absolute;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid var(--text-error);
  bottom: 60%;
  transform: translateY(60%);
  right: -40px;
}

.form-contact {
  margin-left: 1rem;
  margin-right: 1rem;
  padding-bottom: 3rem;
}

.sec-contact {
  max-width: 1000px;
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  padding: 4% 3%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.registration-form.is-confirm [data-step="1"] {
  display: none;
}

.registration-form [data-step="2"] {
  display: none;
}

.registration-form.is-confirm [data-step="2"] {
  display: flex;
}

.form-label,
.col-form-label {
  display: block;
  margin-bottom: 1.5%;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 8%;
}

.form-row-group {
  display: flex;
  align-items: center;
  gap: 4%;
}

input.disabled {
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: .7rem;
  border-radius: 8px;
  border: 1px solid gray;
  font-size: var(--fs-body);
}

.form-control.is-invalid {
  border: 1px solid var(--text-error);
}

.form-check-input {
  height: 1.3rem;
  width: 1.3rem;
  accent-color: #FFCA2D;
  cursor: pointer;
}
.form-group .error {
  color: var(--text-error);
  font-size: var(--fs-xs);
  line-height: 2;
}

.input-group {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-group input[type="password"] {
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 44px;
  height: 100%;
  text-align: center;
}

.toggle-password svg {
  width: 32px;
  height: 100%;
  fill: #555; /* Màu của icon */
}

.btn-group-confirm {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.btn-group-confirm .btn-form { 
  min-width: 180px;
}

.footer {
  background-color: #176B49;
  position: relative;
}

.version {
  position: absolute;
  font-size: var(--fs-xs);
  color: var(--white);
  bottom: 1rem;
  right: 1rem;
}

.sec-footer {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  color: var(--white);
}

.row-footer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.row-footer a {
  color: var(--white);
  text-decoration: none;
}

.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 8888;
  display: block;
  width: auto;
}

.toast {
  display: block;
  width: 100%;
  min-height: 3.75rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2078431373);
  background-color: hsl(240, 5%, 95%);
  overflow: hidden;
  --color-status: hsl(240, 5%, 40%);
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.toast.show {
  animation-name: fadeIn;
}

/* Lớp để kích hoạt hiệu ứng biến mất */
.toast.hide {
  animation-name: fadeOut;
}

.toast.success {
  background: hsl(120, 70%, 95%);
  --color-status: hsl(120, 70%, 40%);
}

.toast.error {
  background: hsl(5, 85%, 95%);
  --color-status: hsl(5, 85%, 50%);
}

.toast .toast-status-icon {
  display: block;
  float: left;
  height:  3.75rem;
  width: 3rem;
  padding: 1rem 0 1rem 0.5rem;
}

.toast .toast-content {
  display: block;
  float: left;
  width: calc(100% - 5.75rem);
  padding: 0.75rem 1rem 0.75rem 0.5rem;
  line-height: 1.25;
}

.toast p {
  margin-bottom: 0;
  margin-top: 10px;
}

.toast span {
  font-size: 1.2rem;
}

.toast.success span {
  color: hsl(120, 70%, 40%);
}

.toast.error span {
  color: hsl(5, 85%, 50%);
}

.toast.success p {
  color: hsl(120, 70%, 30%);
}

.toast.error p {
  color: hsl(5, 85%, 30%);
}

.toast .toast-close {
  display: block;
  float: right;
  clear: right;
  width: 2.25rem;
  height:  2.25rem;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  padding: 0.5rem;
  background: transparent;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.toast .toast-close svg {
  display: block;
  width: 100%;
  height: 100%;
  margin-right: 0;
  margin-left: 0;
  transform: none;
}

.toast.success svg {
  --color-status: hsl(120, 70%, 40%);
}

.toast.error svg {
  --color-status: hsl(5, 85%, 50%);
}

.toast .toast-status-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.row-policy {
  margin-top: 1rem;
  font-size: var(--fs-xs);
}

.row-policy a {
  color: #FFCA2D;
  text-decoration: none;
}


/* css style page policy */
.wapper-policy {
  padding: 5% 4%;;
}

.container-policy {
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  padding: 2% 2% 5%;
  max-width: 1400px;
}

.policy-title {
  margin-bottom: 2.5rem;
}

/* .policy-content {
  font-size: 1.rem;
} */

.row-content {
  margin-bottom: 2rem;
}

.contact-group {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5vw;
}

.contact-group img { 
  max-height: clamp(1rem, 1.6vw, 1.3rem);
}

.grecaptcha-badge { 
  visibility: hidden;
}

/*
* Compare table
*/
.sec-compare {
  max-width: 1360px;
  margin: 0 auto;
}

.compare-tb-responsive {
  overflow: auto;
}

.compare-tb {
  --primary-color: #ff0000;
  --border-color: #b7b7b7;
  --engibase-bg: #ffcfd7;
  --text-dark: #333;
  --fs-compare-table: clamp(1rem, 1.5vw, 1.1rem);
  --fs-small: 0.6rem;
  display: grid;
  grid-template-columns: 20% 35% 25% 20%;
  font-size: var(--fs-compare-table);
  min-width: 700px;
}

/* .col-item {
  display: contents;
}  */

.col-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  height: 160px;
  border-top: 2px solid var(--border-color);
}

.header-col div{
  border-left: 2px solid var(--border-color);
}

.header-col div:last-child {
  border-bottom: 2px solid var(--border-color);
}

.col-header {
  background-color: #C1C2C5;
  color: #fff;
}

.other-col div:not(.col-header) {
  background-color: #FFF;
}

.header-col div:not(.col-header) {
  background-color: #EFEFEF;
}

/* Cột EngiBase */
.engibase-col {
  color: var(--text-dark);
  background-color: var(--engibase-bg);
  border: 5px solid var(--primary-color);
  font-weight: bold;
}

.col-item small {
  font-size: .6rem;
}

.engibase-col .col-header {
  --border-color: var(--primary-color);
  background-color: var(--primary-color);
  margin-top: -5px; /* Điều chỉnh để căn chỉnh với viền */
}

/* Cột khác (A社, B社) */
.other-col div {
  border-right: 2px solid var(--border-color);
}

.other-col .col-header {
  border-top: 2px solid var(--border-color);
}

.other-col div:last-child {
  border-bottom: 2px solid var(--border-color);
}

/* Hình ảnh */
.col-item img {
  width: 30px;
  margin: 4px;
}

/* Biểu tượng SVG */
.icon-circle {
  width: 25px;
  height: 25px;
  margin: 4px;
}


/**
* Component plan 
*/
.sec-plans {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.row-plan {
  --num-column: 3;
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(var(--num-column), 1fr);
  gap: var(--gap);
}

.card-plan {
  --border-card-plan: #067CE5;
  --bg-card-plan: #fff;
  --bg-card-header: #D3EBFF;
  background: var(--bg-card-plan);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid var(--border-card-plan);
}

.card-plan--main {
  --border-card-plan: #FF9651;
  --bg-card-header: #FDCA5C;
  --custom-top: 1rem;
  top:  calc(var(--custom-top) * -1);
  height: calc((100% + var(--custom-top)));
}


.plan-top {
  background-color: var(--bg-card-header);
  padding: 2vw 1vw;
  text-align: center;
  position: relative;
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
}

.plan-top-img {
  position: absolute;
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
}

.plan-body {
  display: flex;
  flex-direction: column;
  flex: auto;
  justify-content: space-around;
}

.card-plan--main .plan-top { 
  padding: calc(2vw + var(--custom-top)/2) 1vw;
} 

.plan-top h4 {
  --line-height: 1.2;
  margin-bottom: 0;
  margin-top: .8rem;
  line-height: var(--line-height);
}

.plan-top h4.two-lines {
  --line-height: calc(var(--fs-lg) * 2 * 1.2);
}

.plan-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.plan-text {
  padding: 1rem;
  font-size: .9rem;
}

.plan-text ul { 
  padding-left: 1rem;
  list-style: circle;
}

.plan-text.bg-blue{ 
  background-color: #ECF6FF;
}

.plan-content {
  padding: 0.5rem 1rem;
  font-size: .8rem;
}

.row-plan-item {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 1rem;
  margin-bottom: .5rem;
}

.plan-content li {
  margin-bottom: .5rem;
}

.hr {
  --border-color: #067CE5;
  margin: .5rem auto;
  width: calc(100% - 2rem);
  border-width: 1px;
  border-style: dashed;
  border-color: var(--border-color);
}



.ses-problem-container {
  padding: 2rem 1rem;
  background-color: #93BBFF;
  position: relative;
  /* margin-bottom: 4rem; */
}

.ses-problem-container::after {
  content: "";
  position: absolute;
  bottom: -59px;
  left: 0;
  right: 0;
  height: 0;
  border-left: 49vw solid transparent;
  border-right: 49vw solid transparent;
  border-top: 60px solid #93BBFF;
}


/* --- Content Wrapper (để đảm bảo nội dung ở trên sóng) --- */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* --- Heading --- */
.heading {
  font-size: var(--fs-xl);
  font-weight: bold;
  margin-bottom: 25px;
}

.note-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 140px;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.note-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F2CB8A;
  border-radius: 28px;
}

.note-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: #FFE0B3;
  border-radius: 28px;
  padding: 1rem 1rem 1rem 2rem;
  width: 93%;
  top: -1rem;
  height: 100%;
  box-sizing: border-box;
}

.note-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60px;
  left: -.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.dot {
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
}


.check-item {
  display: flex;
  gap: .8rem;
  font-size: var(--fs-md);
  align-items: center;
}

.check-icon {
  height: var(--fs-md);
}

.check-icon img {
  max-height: 100%;
}

.sub-text {
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 700;
}


.comparison-container {
  padding: 6rem 15px 3rem;
  background: linear-gradient(180deg, #b9e7ff 0%, #aee8ff 25%, #b5f4ff 55%, #d0faff 100%);
}

.compare-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.compare-box {
  background: #fff;
  max-width: 450px;
  overflow: hidden; 
  text-align: center;
  flex: 1;
}

.compare-box.left {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.compare-box.right {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* header màu */

.compare-header {
  color: #fff;
  font-weight: 600;
  padding: 12px;
  background-color: var(--header-bg, #222);
}


.header--blue {
  --header-bg: #2C78D9;
}

.header--orange {
  --header-bg: #FF7B00;
}

.header--green {
  --header-bg: #56C035;
}

/* ảnh */
.compare-image {
  padding: 1rem;
}
.compare-image img {
  width: 100%;
  display: block;
}

.compare-text {
  padding: 10px 20px 24px;
  line-height: 1.6;
  color: #222;
  font-size: var(--fs-sm);
}

/* mũi tên overlay giữa hai box */
.arrow-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}


.background-gradient-purple {
  background: linear-gradient(90deg, #b3e7ff 0%, #dcd6ff 100%);
}

.solution-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.problem-text {
  display: inline-block;
  background-color: #FBFCFC;
  color: #ff8c00;
  font-size: var(--fs-md);
  font-weight: bold;
  padding: 5px 15px;
  margin-bottom: 20px;
}

.engibase-text {
  color: #ff8c00;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  position: relative;
}

.idea-bulb {
  position: absolute;
  right: -20%;
  top: -2rem;
  width: clamp(60px, 6vw, 140px);
}

.idea-bulb img { 
  width: 100%;
}

.overview-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6vw 15px;
}

.logo-box {
  width: 20vw;
  max-width: 350px;
} 

.slogan {
  line-height: 1.6;
  font-size: var(--fs-md);
  text-align: left;
  color: #444;
}

.steps-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.step-item {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* font-size: 1rem; */
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  border: 5px solid #ffcc00;
  background: #FBFCFC;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
  position: relative;
}

.step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: url('../../images/lp/drop-of-water.png') no-repeat center / contain;
  font-weight: bold;
  padding: 20px 10px;
}

.step-description {
  padding: 10px;
}

.product-mockup {
  width: 100%;
  margin-top: 30px;
  padding: 0 20px;
  margin-bottom: 30px;
}

/* Thẻ IMG cho toàn bộ Mockup Laptop */
.laptop-image {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ------------------------------EXTRAS-------------------------------------------*/
/* @media only screen and (min-width: 1280px) { 
  .page-container {
    max-width: 60%;
    margin: 0 auto;
  }
} */
@media only screen and (min-width: 1200px) and (max-width: 1600px) {  
  .benefit-item__content {
    font-size: clamp(.85rem, 1.2vw, 1.3rem);
  }
}
@media only screen and (max-width: 1199.98px) {  
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-around;
  }

  .hero__left {
    width: 100%;
  } 

  .hero__left { 
    right: 0px; 
  }

  .hero__right { 
    /* height: 100%;  */
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  
   .hero__right img { 
    position: relative;
    width: auto;
    transform: translateY(0);
    right: 0;
    top: 0;
    width: auto;
   } 

  .popup-chat-options.popup-chat--left {
    /* left: 7%; */
    top: -1.5rem;
  }

  .popup-chat-options.popup-chat--right {
    /* right: 7%; */
    top: -1.5rem;
  }

  .popup-chat-solutions img {
    max-width: 140px;
  }


  .popup-chat-solutions.popup-chat--left {
    left: -50%;
  }

  .popup-chat-solutions.popup-chat--right {
    right: -50%;
  }
  /* .popup-chat-solutions.popup-chat--right {
    right: 0%;
  } */

  .benefit-item__title {
    width: 85%;
    margin-inline-start: -15px;
  }

  .benefit-item__inner {
    padding: 1rem 1rem 1rem 2rem;
  }

  .benefit-item__body {
    flex-direction: column;
  }

  .benefit-item--reverse .benefit-item__body {
    flex-direction: column;
  }

  /* .benefit-item__inner,
  .benefit-item.benefit-item--reverse .benefit-item__inner {
    flex-direction: column;
    align-items: start;
  } */


  .benefit-item__content {
    font-size: var(--fs-body);
  }

  .benefit-group  {
    grid-template-columns: repeat(1, 1fr);;
  }

  .benefit-item.is-only {
    width: 100%;
  }

  .benefit-group .benefit-item__title {
    width: 85%;
    font-size: var(--fs-md);
  }

  .benefit-group .benefit-item-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }

  .benefit-group .benefit-item__content {
    font-size: var(--fs-body);
  }

  .benefit-group .benefit-num {
    font-size: 13rem;
  }

  .circle-wrapper { 
    width: 220px;
    height: 220px;
  }
}

@media only screen and (max-width: 991.98px) { 
  .imp-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .arrow-image {
    right: 50%;
    bottom: -50px;
    width: 70px;
    transform: translate(50%, 0) rotate(90deg);
  }

  .popup-ziczac {
    right: 0%;
    left: unset;
    top: unset;
    bottom: -100px;
    right: -8px;
    transform :translate(0%, 0%) rotate(10deg);
  }

  .popup-ziczac-bg img {
    width: 115px;
  }

  .grid-row { 
    grid-template-columns: 20% 20% 24% auto;
  }

  .el-col {
    font-size: .8rem;
  }

  .set-height {
    min-height: 150px;
  }

  .benefit-item__title,
  .benefit-group .benefit-item__title {
    width: 94%;
    /* font-size: 1.3rem; */
  }

  /* .benefit-item__inner {
    flex-direction: column-reverse;
    align-items: start
  } */

  /* .benefit-item__body {
    flex-direction: column;
  }

  .benefit-item--reverse .benefit-item__body {
    flex-direction: column;
  }

  .benefit-item__inner,
  .benefit-item.benefit-item--reverse .benefit-item__inner {
    flex-direction: column-reverse;
    align-items: start;
  } */

  .popup-table span {
    font-size: .65rem;
  }

  .popup-table img {
    width: 100px;
  }

  .card-step .card-body {
    font-size: var(--fs-md);
  }
}

@media only screen and (max-width: 767.98px) {  
  .top-notify {
    display: none;
    /* font-size: 1.1rem;
    padding: .8rem 1rem;
    top: 80px;
    border-radius: 20px;
    z-index: 9; */
  }

  .nav-menu { 
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: fixed;
    z-index: 0;
    top: 0;
    right: 0;
    padding: 1rem;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, .25);
    -webkit-backdrop-filter: blur(2em);
    backdrop-filter: blur(2em);
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .btn-menu  {
    display: block;
  }

  .nav-menu li { 
    margin-left: 0;
  }

  /* .hero {
    flex-direction: column-reverse;
  }

  .hero__left, .hero__right {
    width: 100%;
  }

  .hero__left { 
    right: 0px; 
  }

  .hero__right { 
    height: 100%; 
    margin-bottom: 30px;
    background-size: contain;
    background-position: center center;
    margin-top: 0;
  } */

  .btn-default .text svg {
    width: 2rem;
    height: 2rem;
  }

  .introduce-title {
    margin-bottom: 0rem;
  }

  .bubble-container {
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
  }

  .bubble-item {
    flex: 0 0 85%;
    margin-bottom: 40px;
  }

  .bubble-item::before {
    display: none;
   }

 .bubble-item::ntn-child(2) { 
    transform: rotate(12deg)
  }

  .bubble-content {
    font-size: var(--fs-md);
  }

  .benefit-item-title {
    margin-inline-end: 0.55rem;
  }

  .benefit-num,
  .benefit-group .benefit-num {
    font-size: 10rem;
  }
  
  .benefit-item__audio,
  .benefit-item__content {
    flex: 1;
    padding-inline: 1rem;
  }
  
  .benefit-item--reverse .benefit-item__body {
    flex-direction: column;
  }
  
 .benefit-item--reverse .benefit-item__audio {
    padding-inline-end: 1rem;
  }

  .imp-row .imp-col:nth-child(2) .imp-col__image {
    min-height: 265px;
  }

  /* .popup-chat-options .popup-bg {
    max-width: 130px;
  } */

  /* .popup-chat-options.popup-chat--left,
  .popup-chat-solutions.popup-chat--left {
    left: -7%;
  } */
/* 
  .popup-chat-options.popup-chat--right,
  .popup-chat-solutions.popup-chat--right {
    right: -2%;
  } */

  .popup-chat-solutions .popup-bg {
    max-width: 165px;
  }

  .component-table {
    margin-bottom: 3rem;
  }

  .grid-step {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .triangle-right {
    right: 50%;
    transform: translateX(50%) rotate(90deg);
    bottom: -50px;
  }

  .benefit-new { 
    width: 20vw;
  }

  .col-item div {
    height: 155px;
  }

  /**
  * component plan
  */
  .row-plan { 
    --gap: 3rem;
  }

  .plan-top { 
    padding: 1.5rem 1vw;
  }

  .card-plan--main {
    --custom-top: 0;
  }
  .card-plan--main .plan-top {
    padding: 1.5rem 1vw;
  }

  .row-plan {
    --num-column: 1;
  }

  .header-section {
    flex-direction: column;
    text-align: center;
  }
  .slogan {
    margin-top: 15px;
  }

  .logo-box {
    width: 60vw;
  }

  .laptop-image {
    max-width: 100%;
  }

  .benefit-item__inner,
  .benefit-item.benefit-item--reverse .benefit-item__inner {
    flex-direction: column;
    align-items: start;
  }

  .benefit-item-sub-title {
    width: 100%;
  }
}

@media only screen and (max-width: 567.98px) {  
  .popup-chat-solutions img {
    max-width: 150px;
  }

  .popup-chat-options.popup-chat--left,
  .popup-chat-solutions.popup-chat--left {
    left: -43%;
  }

  .popup-chat-options.popup-chat--right,
  .popup-chat-solutions.popup-chat--right {
    right: -43%;
  }
  .popup-chat-options img {
    max-width: 130px;
  }

  .btn-group-confirm { 
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .btn-group-confirm .btn-form {
    min-width: 200px;
  }

  .row-footer {
    flex-direction: column;
  }

  .d-sm-block {
    display: block;
  }

  .d-sm-none {
    display: none;
  }

  .steps-container {
    flex-direction: column;
    gap: 40px;
  }
  .step-item {
    flex-basis: auto;
  }
  .circle-wrapper {
    width: 250px;
    height: 250px;
  }
}


 /* ------------------------------animation -------------------------------------------*/
.zoomin-rorate-left.is-animated {
  animation: zoomInRorateLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.zoomin-rorate-right.is-animated {
  animation: zoomInRorateRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


@keyframes zoomInRorateLeft {
  0% {
    transform: scale(0.4) rotate(0deg) translateY(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-12deg) translateY(60px);;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


@keyframes zoomInRorateRight {
  0% {
    transform: scale(0.4) rotate(0deg) translateY(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(12deg) translateY(60px);
  }
}


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(20px);
  }
}


@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes drawStroke {
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@media only screen and (max-width: 767.98px) {  
  @keyframes zoomInRorateLeft {
    0% {
      transform: scale(0.4) rotate(0deg) translateY(0);
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg) translateY(60px);;
    }
  }

  @keyframes zoomInRorateRight {
    0% {
      transform: scale(0.4) rotate(0deg) translateY(0);
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg) translateY(60px);
    }
  }
}

