:root {
  --white: #fff;
  --black: #000;
  --color1: #4d148e;
  --color2: #a1aab3;
  --color3: #5e6e7d;
  --color4: #f5f2f2;
  --color5: #f1f5f9;
  --color6: #e6e7e9;
  --color7: #ccc9d14f;
  --color8: #eeeeee;
  --color9: #d8d8d8;
  --color10: #e8e8e8;
}

.wrapImgResize {
  overflow: hidden;
  position: relative;
  display: block;
}
.wrapImgResize video,
.wrapImgResize iframe,
.wrapImgResize img {
  object-fit: cover;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  width: 101%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  min-height: 101%;
  max-height: 101%;
}
.wrapImgResize.img16And9 {
  padding-top: 56.25%;
}
.wrapImgResize.imgSquare {
  padding-top: 100%;
}
.wrapImgResize.img9And16 {
  padding-top: 177%;
}
.wrapImgResize.img3And4 {
  padding-top: 133.33333333%;
}
.wrapImgResize.img3And2 {
  padding-top: 66.67%;
}
.wrapImgResize.imgSpecial1 {
  padding-top: 75.46%;
}
.wrapImgResize.imgSpecial2 {
  padding-top: 52.25%;
}
.wrapImgResize.imgSpecial3 {
  padding-top: 30.25%;
}
.wrapImgResize.imgSpecial4 {
  padding-top: 71.22%;
}

.wrapHeader {
  background-color: #FFFFFF;
  position: fixed;
  width: 100%;
  z-index: 7;
  box-shadow: 2px 1px 4px -1px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 992px) {
  .wrapHeader .navbar-collapse span,
.wrapHeader .navbar-collapse .headerAction {
    display: none !important;
  }
}
.wrapHeader .btnLoginWrap {
  margin-left: 35px;
}
.wrapHeader .wrapTopHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--black);
  position: sticky;
  width: 100%;
  z-index: 1;
  top: 0;
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader {
    padding: 10px 15px;
  }
}
.wrapHeader .wrapTopHeader .wrapNavLink {
  display: flex;
  gap: 4px;
}
.wrapHeader .wrapTopHeader .wrapLogoHeader {
  width: auto;
  max-width: 250px;
}
@media only screen and (max-width: 1024px) {
  .wrapHeader .wrapTopHeader .wrapLogoHeader {
    max-width: 260px;
    width: auto;
  }
}
@media only screen and (max-width: 576px) {
  .wrapHeader .wrapTopHeader .wrapLogoHeader {
    max-width: 180px;
  }
}
.wrapHeader .wrapTopHeader .wrapLogoHeader img {
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapHeader .wrapTopHeader .wrapLogoHeader .text {
  font-weight: normal;
}
@media only screen and (max-width: 576px) {
  .wrapHeader .wrapTopHeader .wrapLogoHeader .text {
    font-size: 18px;
  }
}
.wrapHeader .wrapTopHeader .navbar-collapse {
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: flex-end;
  flex-grow: 0 !important;
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader .navbar-collapse {
    align-items: flex-end;
  }
}
@media only screen and (max-width: 1450px) {
  .wrapHeader .wrapTopHeader .navbar-collapse {
    gap: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .wrapHeader .wrapTopHeader .navbar-collapse {
    gap: 15px;
  }
}
.wrapHeader .wrapTopHeader .navbar-collapse span {
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader .navbar-collapse span {
    display: none;
  }
}
.wrapHeader .wrapTopHeader .navbar-collapse span::after {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #4d148e;
  transform: scaleX(0);
  transition: transform 0.5s;
}
.wrapHeader .wrapTopHeader .navbar-collapse span:hover::after {
  transform: scaleX(1);
}
.wrapHeader .wrapTopHeader .navbar-collapse .headerAction .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
}
.wrapHeader .wrapTopHeader .navbar-collapse .wrapListMenu {
  display: flex;
  gap: 20px;
}
.wrapHeader .wrapTopHeader .navbar-collapse .wrapListMenu .wrapLink {
  position: relative;
  padding-bottom: 10px;
  padding-left: 4px;
  padding-right: 4px;
}
.wrapHeader .wrapTopHeader .navbar-collapse .wrapListMenu .wrapLink .wrapLinkItem::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--color1);
  content: "";
  transform: translate(-50%, 0px);
  transition: 0.5s;
}
.wrapHeader .wrapTopHeader .navbar-collapse .wrapListMenu .wrapLink .wrapLinkItem:hover::after {
  width: 100%;
}
.wrapHeader .wrapTopHeader .userNotification {
  margin-left: 25px;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .wrapHeader .wrapTopHeader .userNotification {
    margin-left: 25px;
  }
}
.wrapHeader .wrapTopHeader .userNotification .iconWrap {
  background-color: #F7E5FF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wrapHeader .wrapTopHeader .userNotification .iconWrap svg {
  height: 25px;
}
.wrapHeader .wrapTopHeader .userNotification .iconWrap .redDot {
  position: absolute;
  content: "";
  background-color: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15%;
  right: 15%;
  font-size: 10px;
  height: 16px;
  width: 16px;
  color: #FFFFFF;
  line-height: 100%;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap {
  position: absolute;
  min-width: 250px;
  background-color: #FFFFFF;
  right: 0;
  margin-top: 13px;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  display: none;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notificationList {
  min-height: 150px;
  max-height: 300px;
  overflow-Y: overlay;
  overflow-x: hidden;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notificationList::-webkit-scrollbar {
  width: 2px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notificationList::-webkit-scrollbar-thumb {
  background-color: rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.16);
  border-radius: 8px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notificationList.no-scroll {
  overflow-y: hidden;
  padding-right: 2px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiHeader {
  padding: 5px 10px;
  border-bottom: 1px solid #e7e7e7;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiHeader p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #7B7B7B;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem {
  padding: 10px 10px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiMain {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: unset;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiMain .notiContent {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem:last-child {
  border: none;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem.unRead {
  background-color: #F7E5FF;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiTitle {
  font-size: 14px;
  font-weight: 600;
  height: -moz-fit-content;
  height: fit-content;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiContent {
  font-size: 12px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiContent p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiContent .notiTime {
  font-size: 10px;
  color: #7B7B7B;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiContent .notiTime span {
  line-height: 100%;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiContent .notiTime svg {
  height: 12px;
  color: #7B7B7B;
  width: -moz-fit-content;
  width: fit-content;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption {
  position: relative;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption svg {
  height: 15px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent {
  position: fixed;
  width: 150px;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  display: none;
  z-index: 1;
}
@media only screen and (max-width: 1220px) {
  .wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent {
    right: 0;
  }
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent button:first-child {
  padding-top: 10px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent button:last-child {
  padding-bottom: 10px;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent.show {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 5px 10px;
  width: 100%;
  text-align: left;
  transition: all 0.3s;
}
.wrapHeader .wrapTopHeader .userNotification .notificationWrap .notiItem .notiOption .optionContent button:hover {
  background-color: #F7F7F7;
}
@media only screen and (max-width: 1450px) {
  .wrapHeader .wrapTopHeader .userNotification {
    margin-left: 35px;
  }
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader .userNotification {
    margin-right: 0;
    margin-left: 0;
  }
}
.wrapHeader .wrapTopHeader .userMenu {
  display: flex;
  position: relative;
  cursor: pointer;
  margin-left: 35px;
  gap: 25px;
}
@media only screen and (max-width: 1024px) {
  .wrapHeader .wrapTopHeader .userMenu {
    margin-left: 15px;
  }
}
.wrapHeader .wrapTopHeader .userMenu .userInfo {
  display: flex;
}
.wrapHeader .wrapTopHeader .userMenu .userInfo .mobileLogout {
  display: none;
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader .userMenu .userInfo .mobileLogout {
    display: block;
  }
}
.wrapHeader .wrapTopHeader .userMenu .avatarBorder {
  border: 1px solid #2F3352;
  border-radius: 50%;
  width: -moz-fit-content;
  width: fit-content;
}
.wrapHeader .wrapTopHeader .userMenu .avatarBorder .userAvatar {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 50%;
}
.wrapHeader .wrapTopHeader .userMenu .avatarBorder .userAvatar img {
  height: auto;
  width: 100%;
}
.wrapHeader .wrapTopHeader .userMenu .userName {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}
.wrapHeader .wrapTopHeader .userMenu .userName p {
  white-space: nowrap;
  margin-bottom: 0;
}
.wrapHeader .wrapTopHeader .userMenu .userName p.email {
  display: none;
}
.wrapHeader .wrapTopHeader .userMenu .userMenuContent {
  position: absolute;
  top: 100%;
  background-color: #FFFFFF;
  padding: 5px 0;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-top: 13px;
  display: none;
}
@media only screen and (max-width: 1220px) {
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent {
    left: unset !important;
    right: -10px !important;
  }
}
.wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem {
  padding: 7px 15px;
  white-space: nowrap;
}
.wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.supportToolMenu, .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.faqMenu {
  display: none;
}
.wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  color: #4d148e;
}
.wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s;
}
.wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem a:hover {
  color: #4d148e;
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent {
    position: static;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .wrapHeader .wrapTopHeader .userMenu {
    margin: 0;
    flex-direction: column-reverse;
    position: fixed;
    top: 64px;
    height: calc(100% - 64px);
    background-color: #FFFFFF;
    left: -100%;
    width: 70%;
    padding: 15px;
    z-index: 11;
    transition: left 0.3s;
    padding: 0;
    gap: 10px;
    overflow-y: auto;
    justify-content: flex-end;
  }
  .wrapHeader .wrapTopHeader .userMenu .avatarBorder {
    width: -moz-fit-content;
    width: fit-content;
  }
  .wrapHeader .wrapTopHeader .userMenu .avatarBorder .userAvatar {
    width: 50px;
    height: 50px;
  }
  .wrapHeader .wrapTopHeader .userMenu .desktopLogout {
    display: none;
  }
  .wrapHeader .wrapTopHeader .userMenu .userName {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
  }
  .wrapHeader .wrapTopHeader .userMenu .userName p.email {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    display: block;
  }
  .wrapHeader .wrapTopHeader .userMenu .dropdownIcon {
    display: none;
  }
  .wrapHeader .wrapTopHeader .userMenu .userInfo {
    padding: 15px 8px;
    border-top: 1px solid #CCC;
    position: relative;
  }
  .wrapHeader .wrapTopHeader .userMenu .userInfo .mobileLogout {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .wrapHeader .wrapTopHeader .userMenu .userInfo .mobileLogout svg {
    height: 18px;
  }
  .wrapHeader .wrapTopHeader .userMenu .headerAction {
    width: 100%;
    padding: 0 8px;
  }
  .wrapHeader .wrapTopHeader .userMenu .mobileSendRequest {
    margin-top: auto;
  }
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent {
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 15px;
  }
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem {
    font-size: 18px;
    padding: 0;
  }
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.supportToolMenu, .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.faqMenu {
    display: block;
  }
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem a {
    padding: 8px;
  }
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.active {
    background-color: #4d148e;
    border-radius: 12px;
  }
  .wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.active a,
.wrapHeader .wrapTopHeader .userMenu .userMenuContent .menuItem.active svg {
    color: #FFFFFF;
  }
  .wrapHeader .wrapTopHeader .userMenu.open {
    left: 0;
  }
}

.wrapLogo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wrapLogo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 50px;
}
@media only screen and (max-width: 576px) {
  .wrapLogo img {
    height: 40px;
  }
}
.wrapLogo .text {
  font-weight: normal;
}
@media only screen and (max-width: 576px) {
  .wrapLogo .text {
    font-size: 18px;
  }
}

.btn-main {
  background-color: var(--color1);
  color: var(--white);
}
.btn-main:hover {
  background-color: var(--color1);
  color: var(--white);
}

.btn-outline-main {
  background-color: transparent;
  border-color: var(--color1);
  color: var(--color1);
}
.btn-outline-main:hover {
  background-color: transparent;
  border-color: var(--color1);
  color: var(--color1);
}

.wrapListMenu {
  display: flex;
  gap: 1rem;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.wrapListMenu li {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.wrapListMenu li a:hover {
  text-decoration: none;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--black);
  transition: all 0.3s ease-in-out;
}
.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .menu-btn {
    display: flex;
  }

  .navbar-collapse {
    top: 0;
    left: -100%;
    background: white;
    flex-direction: column;
    transition: left 0.3s ease-in-out;
  }
  .navbar-collapse .wrapListMenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .d-flex-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .d-flex-btn.btn-sendRequest-form {
    display: none;
  }
}
.dropdown-toggle:hover {
  text-decoration: none;
}
.dropdown-toggle::after {
  display: none;
}

.wrapActionUser span {
  font-size: 14px;
  text-transform: capitalize;
}
.wrapActionUser .dropdown-item {
  text-transform: none !important;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--black);
  font-weight: 600;
}
.wrapActionUser .dropdown-item:hover {
  color: var(--color1);
}

.mobileMenuBackdrop {
  position: fixed;
  right: -100%;
  width: 100%;
  display: block;
  background-color: #00000075;
  top: 64px;
  height: calc(100% - 64px);
  z-index: 6;
  transition: right 0.5s;
}
.mobileMenuBackdrop.open {
  right: 0;
}

.mobileMenuToggle {
  display: none;
  margin-left: 16px;
}
@media only screen and (max-width: 992px) {
  .mobileMenuToggle {
    display: block;
  }
}
.mobileMenuToggle svg {
  height: 20px;
}

@media only screen and (max-width: 768px) {
  .btn-login-form {
    font-size: 14px !important;
    padding: 4px 8px !important;
    gap: 4px !important;
    min-height: 40px !important;
  }
  .btn-login-form svg {
    height: 20px;
  }
}

.mobileMenuToggle .open {
  display: block;
}
.mobileMenuToggle .close {
  display: none;
}

.wrapFooter {
  position: relative;
  background-color: #f7f7f7;
  padding: 30px 0px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}
.wrapFooter .containerCustom1 > .row {
  margin: 0;
}
.wrapFooter .widget-title {
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 0.5rem !important;
}
.wrapFooter .menu-quick-link-container li {
  list-style: none;
  padding-bottom: 16px;
}
.wrapFooter .menu-quick-link-container li a {
  position: relative;
}
.wrapFooter .menu-quick-link-container li a::before {
  background: var(--color1) !important;
  position: absolute;
  content: "";
  left: -24px;
  top: 10px;
  height: 1px;
  width: 13px;
  background: #fff;
}
.wrapFooter a {
  color: #616161;
}
.wrapFooter a:hover {
  text-decoration: none;
  color: var(--color1);
}
.wrapFooter .footer-bottom-logo {
  padding-bottom: 20px;
}
.wrapFooter .footer-bottom-logo img {
  max-width: 100%;
  height: auto;
}
.wrapFooter .follow-company-info {
  display: flex;
  gap: 10px;
}
.wrapFooter .follow-company-info .follow-company-icon a {
  color: var(--color1);
}

.wrapCopyright {
  background-color: var(--color1);
  color: var(--white);
  font-size: 16px;
}
.wrapCopyright .contentItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.wrapCopyright .developer {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.wrapCopyright .developer a {
  color: var(--white);
  position: relative;
}
.wrapCopyright .developer a:hover {
  text-decoration: none;
}
.wrapCopyright .developer a::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: var(--white);
  content: "";
  transform: translate(-50%, 0px);
  transition: 0.5s;
}
.wrapCopyright .developer a:hover::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .wrapFooter .footer-bottom-logo img {
    height: 42px;
  }
}
@media (max-width: 768px) {
  .contentItem {
    flex-direction: column;
  }
}
.wrapLayoutAuthForm {
  width: 100%;
  overflow: hidden;
}
.wrapLayoutAuthForm .wrapRight {
  background: url(https://www.sweetsoft.vn/assets/images/slide-main/bg.jpg);
  width: 100%;
  height: 100%;
  position: relative;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.wrapLayoutAuthForm .wrapRight .wrapImg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.wrapLayoutAuthForm .wrapRight .wrapImg img {
  padding: 0px 20px;
}
.wrapLayoutAuthForm .wrapLeft {
  padding: 40px 30px 0px 0px;
}
.wrapLayoutAuthForm .wrapLeft .wrapperLeftContet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.wrapLayoutAuthForm .wrapLeft .wrapperLeftContet .wrapLeftHeader {
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapLayoutAuthForm .wrapLeft .wrapperLeftContet .wrapAuthForm {
  max-width: 400px;
  width: 100%;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrapLayoutAuthForm .row {
  height: 100%;
}
.wrapLayoutAuthForm .wrapperForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrapLayoutAuthForm .wrapperForm .wrapFormItem {
  padding-top: 20px;
}
.wrapLayoutAuthForm .wrapperForm .wrapAuthRedirect {
  display: flex;
  justify-content: space-between;
}
.wrapLayoutAuthForm .wrapperForm .wrapLine {
  display: flex;
  width: 100%;
  align-items: center;
}
.wrapLayoutAuthForm .wrapperForm .wrapLine .line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.wrapLayoutAuthForm .formHeader {
  margin-top: 40px;
  text-align: center;
}
.wrapLayoutAuthForm input {
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid oklch(0.707 0.022 261.325) !important;
  border-radius: 0px !important;
}
.wrapLayoutAuthForm input:focus,
.wrapLayoutAuthForm textarea:focus,
.wrapLayoutAuthForm select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--color1) !important;
}

.wrapBtnGoogle {
  padding-top: 20px;
}
.wrapBtnGoogle .btnLoginGoogle {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.wrapBtnGoogle .btnLoginGoogle img {
  width: 24px;
  height: 24px;
}

.register-form .wrapperForm {
  margin-top: -20px;
}
.register-form .formHeader {
  margin-top: 20px;
}
.register-form .wrapSubmit {
  padding: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.register-form .wrapBtnGoogle {
  padding: 0 !important;
  padding-top: 10px !important;
}

.wrapSubmit {
  text-align: center;
  padding: 16px 0px !important;
  width: 100%;
}
.wrapSubmit a {
  height: 48px;
  display: flex;
}

.inputPassword {
  width: 100%;
  position: relative;
}
.inputPassword .btnShowPassword {
  cursor: pointer;
  position: absolute;
  border: none;
  background-color: transparent;
  right: 10px;
  bottom: 8px;
  z-index: 99;
  color: #616876;
}
.inputPassword .btnShowPassword .hide {
  display: none;
}

.captchaCodeWrap {
  display: flex;
  padding-top: 20px;
}
.captchaCodeWrap .captchaImage {
  width: 45%;
  display: flex;
  align-items: flex-end;
}
.captchaCodeWrap .captchaImage img {
  width: 100%;
  height: auto;
}
.captchaCodeWrap .wrapFormItem {
  padding-top: 0 !important;
}
.captchaCodeWrap .reloadCode {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.captchaCodeWrap .reloadCode svg {
  height: 15px;
}

@media (max-width: 768px) {
  .wrapLeft {
    padding: 20px !important;
  }

  .wrapAuthForm {
    height: 100% !important;
  }
}
.wrapTabs {
  padding: 40px 0px;
}
.wrapTabs .wrapTabsHeader {
  padding-bottom: 20px;
}
.wrapTabs .nav-tabs {
  border: none !important;
  display: flex;
  gap: 4px;
  justify-content: center;
}
.wrapTabs .nav-tabs .nav-link.active {
  background: var(--color1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.wrapTabs .nav-tabs .nav-link.active:hover {
  color: var(--white);
}
.wrapTabs .nav-tabs .nav-link {
  display: inline-block;
  list-style: none;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  border: none !important;
  text-transform: capitalize;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.wrapTabs .nav-tabs .nav-link:hover {
  color: var(--color1);
  border: none !important;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion .accordionItem {
  border-radius: 4px;
  border: 1px solid var(--color9);
}
.accordion .accordionItem .accordion-content {
  padding: 10px;
}
.accordion .accordionItem .accordion-header {
  cursor: pointer;
  display: flex;
  gap: 10px;
  background: var(--color10);
  padding: 14px 6px;
}
.accordion .accordionItem .accordion-header:hover {
  background-color: var(--color9);
}
.accordion .accordionItem .accordionIcon {
  display: inline-block;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
.accordion .active .accordionIcon {
  transform: rotate(0deg);
}

.cardTool {
  display: flex;
  gap: 6px;
  background: var(--color10);
  border-radius: 6px;
  padding: 10px;
  transition: background-color 0.3s;
  color: var(--black);
}
.cardTool:hover {
  background-color: var(--color9);
  text-decoration: none;
}
.cardTool .cardToolLeft .cardToolImage {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cardTool .cardToolRight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cardTool .cardToolRight .title {
  font-weight: 500;
  font-size: 16px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
.wrapTabsContent .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wrapTabsContent .tab-pane.active {
  opacity: 1;
  transform: translateY(0);
  animation: slideIn 0.5s ease;
}
.wrapTabsContent .tab-pane.fade-out {
  animation: slideOut 0.5s ease forwards;
}

@media (max-width: 768px) {
  .wrapTabs .nav-link {
    font-size: 14px !important;
  }
}
.main {
  padding-top: 100px;
}
@media only screen and (max-width: 992px) {
  .main {
    padding-top: 60px;
  }
}

.my-active-button {
  background-color: #CCC !important;
}

.trumbowyg-strong-button:hover,
.trumbowyg-em-button:hover,
.trumbowyg-underline-button:hover {
  background-color: #CCC !important;
}

.trumbowyg-active-button {
  background-color: #ccc !important;
}

.trumbowyg-editor[placeholder]:empty::before {
  content: attr(placeholder);
  color: #999;
  pointer-events: none;
}

.trumbowyg-editor-box {
  cursor: text;
}

.iui-close::before {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: var(--color1);
}
a:hover {
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .flatpickr-calendar {
    top: 40% !important;
    left: auto !important;
    right: 5px !important;
  }
}

.flatpickr-day.selected, .flatpickr-day.endRange {
  background: #4d148e !important;
  box-shadow: none;
  color: #fff;
  border-color: #4d148e !important;
}
.flatpickr-day.today {
  border-color: #4d148e !important;
}

.flatpickr-month {
  margin-bottom: 12px;
}

.flatpickr-current-month {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-size: 16px !important;
}
.flatpickr-current-month .numInputWrapper {
  font-size: 16px !important;
}

body {
  min-height: calc(100vh + 0.5px);
  overflow-x: hidden;
}
body.fixFooter footer {
  position: fixed;
  bottom: 0;
}
body.noScroll {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}
body.overflow {
  padding-right: 0;
}
body.loadingPage {
  opacity: 0;
  overflow: hidden;
}
body.loadingPage::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-100px);
  animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-top {
  opacity: 0;
  transform: translateY(-100px);
  animation: fadeInTop 0.8s ease-out forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  opacity: 0;
  transform: translateX(100px);
  animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-bottom {
  opacity: 0;
  transform: translateY(100px);
  animation: fadeInBottom 0.8s ease-out forwards;
}

.form-control:focus {
  border-color: var(--color1) !important;
  box-shadow: 0 0 3px 1px var(--color1);
}

.btn-main {
  display: inline-block;
  border: 1px solid var(--color1);
  color: var(--white);
  background-color: var(--color1);
  position: relative;
  letter-spacing: 0.1rem;
  overflow: hidden;
  z-index: 0;
  transition: color 150ms ease-out, background-color 150ms ease-out, border-color 150ms ease-out;
  text-transform: capitalize;
}
.btn-main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: var(--white);
  z-index: -1;
  transition: width 300ms ease-in-out;
}
.btn-main:hover {
  color: var(--color1);
  border-color: var(--color1);
}
.btn-main:hover:after {
  width: 100%;
}

.btn-outline-main {
  display: inline-block;
  border-color: var(--color1);
  color: var(--color1);
  position: relative;
  letter-spacing: 0.1rem;
  overflow: hidden;
  z-index: 0;
  transition: color 300ms ease-in-out;
  text-transform: capitalize;
  background-color: #FFFFFF;
}
.btn-outline-main:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: var(--color1);
  z-index: -1;
  transition: width 300ms ease-in-out;
}
.btn-outline-main:hover {
  color: #fff;
}
.btn-outline-main:hover:after {
  width: 110%;
}

.hidden-scroll-bar::-webkit-scrollbar {
  display: none;
}

.hidden-scroll-bar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sectionTitle h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0%;
  text-align: center;
  color: #333333;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .sectionTitle h2 {
    font-size: 30px;
  }
}

.containerCustom3,
.containerCustomRight,
.containerCustom1,
.containerCustom2,
.container-xxl {
  padding: 0 8px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.containerCustomRight {
  padding: 0;
}

@media only screen and (max-width: 992px) {
  .backgroundSplice {
    background-image: none;
  }
}

@media only screen and (min-width: 1220px) {
  .row-cols-lg-8 > * {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .container-xxl {
    padding: 0 60px;
  }

  .containerCustom1 {
    padding: 0 120px;
  }

  .containerCustom2 {
    max-width: 912px;
    padding: 0;
  }

  .containerCustomRight {
    padding-right: 120px;
    padding-left: 0;
  }

  .containerCustom3 {
    padding: 0;
    max-width: 1024px;
  }
}
@media only screen and (min-width: 1800px) {
  .container-xxl {
    max-width: 1550px;
    padding: 0 15px;
  }

  .containerCustom1 {
    padding: 0 320px;
  }

  .containerCustomRight {
    padding-right: 240px;
  }

  .containerCustom3 {
    max-width: 1440px;
  }
}
.tabs-scroll {
  display: flex;
  justify-content: center;
  position: relative;
}
.tabs-scroll .tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-right: 35px;
  scrollbar-width: none;
}
.tabs-scroll .tabs a,
.tabs-scroll .tabs span {
  border-radius: 24px;
  white-space: nowrap;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #333333;
  padding: 4px 16px;
  display: block;
  transition: all 0.3s;
  cursor: pointer;
}
.tabs-scroll .tabs a.active, .tabs-scroll .tabs a:hover,
.tabs-scroll .tabs span.active,
.tabs-scroll .tabs span:hover {
  background-color: #4822A0;
  color: #ffffff;
}

.formAuth .modal-dialog {
  max-width: 1000px;
}

.contactFixedBtnList {
  position: fixed;
  right: 3%;
  bottom: 10%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s;
}
.contactFixedBtnList .contactBtnItem {
  background-color: #4822A0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: iconShake 1s infinite ease-in-out;
  border: 2px solid #452189;
  position: relative;
  cursor: pointer;
  right: 0;
}
.contactFixedBtnList .contactBtnItem.scrollTopBtn {
  animation: none;
  display: flex;
  opacity: 0;
}
.contactFixedBtnList .contactBtnItem.scrollTopBtn.show {
  opacity: 1;
}
.contactFixedBtnList .contactBtnItem::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: ripple 1.5s infinite linear;
  background-color: #4822a0;
}
.contactFixedBtnList .contactBtnItem svg {
  height: 20px;
  color: #FFFFFF;
}
.contactFixedBtnList .contactBtnItem.noAnimation {
  animation: none;
}
.contactFixedBtnList .contactBtnItem.noAnimation::after {
  animation: none;
}
.contactFixedBtnList .contactBtnItem.plusminus {
  position: relative;
  cursor: pointer;
}
.contactFixedBtnList .contactBtnItem.plusminus.active:before {
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
}
.contactFixedBtnList .contactBtnItem.plusminus.active:after {
  transform: translateY(-50%) rotate(0) translateX(-50%);
}
.contactFixedBtnList .contactBtnItem.plusminus:before, .contactFixedBtnList .contactBtnItem.plusminus:after {
  content: "";
  display: block;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.35s;
  width: 60%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 0;
}
.contactFixedBtnList .contactBtnItem.plusminus:before {
  transform: translateY(-50%) translateX(-50%);
}
.contactFixedBtnList .contactBtnItem.plusminus:after {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  z-index: 1;
}
.contactFixedBtnList .contactBtnItem.hideAbleBtn {
  transition: all 0.5s;
}
.contactFixedBtnList .contactBtnItem.hide {
  right: -150px;
}
.contactFixedBtnList .contactBtnItem.scrollTopBtn {
  transition: all 0.3s;
}

.contactFixedBtnList .scrollTopBtn:not(.show) {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.contactFixedBtnList .scrollTopBtn.show {
  max-height: 40px;
  /* Set to your button's height */
  opacity: 1;
}

footer {
  transition: all 1s;
}
@media only screen and (max-width: 1024px) {
  footer {
    position: static !important;
  }
}

.custom-toast-container {
  position: fixed;
  right: -10px;
  top: 110px;
  z-index: 1050;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .custom-toast-container {
    top: 70px;
    right: 0;
  }
}

.custom-toast {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
  width: 330px;
  height: auto;
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.29);
  margin-right: 1rem;
  align-items: center;
  display: flex;
  margin-bottom: 0.5rem;
  position: relative;
}
.custom-toast .content-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.custom-toast .content-container p {
  margin: 0;
}
.custom-toast .content-container p:first-child {
  line-height: 90%;
}
.custom-toast .close-button {
  position: absolute;
  top: 0;
  right: 0;
}

.custom-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.custom-toast .icon-container {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.custom-toast .icon-container > svg {
  height: 34px;
}

.custom-toast .content-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.custom-toast .content-container .title {
  font-weight: 600;
  font-size: 15px;
}

.custom-toast .content-container .message {
  font-size: 14px;
  font-weight: 400;
  color: #111215;
}

.custom-toast > button {
  background-color: transparent;
  font-size: 25px;
  color: #9b9dab;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  height: 34px;
  width: 34px;
}

.custom-toast.success .icon-container > svg {
  fill: #47D764;
}

.custom-toast.success .content-container .title {
  color: #47d764;
}

.custom-toast.error .icon-container > svg {
  fill: #ff355b;
}

.custom-toast.error .content-container .title {
  color: #ff355b;
}

.custom-toast.info .icon-container > svg {
  fill: #2F86EB;
}

.custom-toast.info .content-container .title {
  color: #2F86EB;
}

.custom-toast.warning .icon-container > svg {
  fill: #FFC021;
}

.custom-toast.warning .content-container .title {
  color: #FFC021;
}

.custom-toast-container .custom-toast:last-child {
  margin-bottom: 1rem;
}

.mobileSendRequest {
  background-color: #ffffff;
  z-index: 6;
  display: none;
}
@media only screen and (max-width: 992px) {
  .mobileSendRequest {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.mobileSendRequest a {
  font-size: 16px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #4d148e;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 999px;
}
.mobileSendRequest a svg {
  height: 16px;
}
.mobileSendRequest a:hover {
  background-color: transparent;
  border-color: #4d148e;
  color: #4d148e;
}

.modal-backdrop.show {
  opacity: 0.5;
}

@media (max-width: 568px) {
  .custom-toast {
    margin: auto 0.5rem;
    left: 0;
    right: 0;
    width: calc(100% - 1rem);
    margin-bottom: 0.5rem;
  }

  .custom-toast-container {
    margin: 0;
  }
}
.submitLogoutModal .modal-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #4d148e;
}
.submitLogoutModal .modal-header h1 {
  font-size: 20px !important;
  color: #FFFFFF;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .submitLogoutModal .modal-header h1 {
    font-size: 18px !important;
  }
}
.submitLogoutModal .modal-header button {
  color: #FFFFFF;
  filter: invert(1);
  opacity: 1;
}
.submitLogoutModal .modal-footer {
  justify-content: flex-start;
}
.submitLogoutModal .previewContainer p {
  font-size: 16px;
  margin: 0;
}

.imgPlaceholder {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.imgPlaceholder svg {
  height: 50px;
  color: #7B7B7B;
}
.imgPlaceholder p {
  text-align: center;
  margin: 0;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  25% {
    transform: scale(1.3);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes iconShake {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes glowTranslate {
  0%, 42.85% {
    left: -100%;
  }
  57.14% {
    left: 100%;
  }
  71.42% {
    left: 100%;
  }
  71.43%, 100% {
    left: -100%;
  }
}
.heroBannerSection .heroBannerWrap {
  min-height: 302px;
  position: relative;
  height: 302px;
}
.heroBannerSection .heroBannerWrap .heroBannerBg {
  height: 100%;
  position: absolute;
  width: 100%;
}
.heroBannerSection .heroBannerWrap .heroBannerBg .wrapImgResize {
  height: 100%;
  width: 100%;
}
.heroBannerSection .heroBannerWrap .heroBannerOverlay {
  background: linear-gradient(88.9deg, rgba(40, 2, 73, 0.5) 57.06%, rgba(51, 19, 131, 0) 115.42%);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.heroBannerSection .heroBannerWrap .containerCustom1 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
}
@media only screen and (max-width: 768px) {
  .heroBannerSection .heroBannerWrap .containerCustom1 {
    gap: 20px;
    align-items: center;
  }
}
.heroBannerSection .heroBannerWrap .containerCustom1 h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .heroBannerSection .heroBannerWrap .containerCustom1 h2 {
    font-size: 30px;
  }
}
.heroBannerSection .heroBannerWrap .containerCustom1 p {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .heroBannerSection .heroBannerWrap .containerCustom1 p {
    font-size: 18px;
    text-align: center;
  }
}

.chooseTopicSection {
  margin-top: 60px;
  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection {
    margin-top: 30px;
  }
}
.chooseTopicSection .topicCardWrap {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap {
    margin-top: 24px;
  }
}
.chooseTopicSection .topicCardWrap .row {
  row-gap: 20px;
  margin: 0 -10px;
}
.chooseTopicSection .topicCardWrap .row > * {
  padding: 0 10px;
}
@media only screen and (max-width: 992px) {
  .chooseTopicSection .topicCardWrap .row {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .row {
    row-gap: 16px;
  }
}
.chooseTopicSection .topicCardWrap .topicCard {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  padding: 24px;
  border-radius: 8px;
  background-color: #FCFCFC;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard {
    flex-direction: row;
  }
}
@media only screen and (max-width: 992px) {
  .chooseTopicSection .topicCardWrap .topicCard {
    border: 1px solid #4d148e;
  }
}
.chooseTopicSection .topicCardWrap .topicCard .cardTop {
  gap: 24px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard .cardTop {
    align-items: center;
    display: flex;
    flex-direction: row;
  }
}
.chooseTopicSection .topicCardWrap .topicCard:hover {
  border: 1px solid #4d148e;
}
.chooseTopicSection .topicCardWrap .topicCard .icon {
  height: 77px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard .icon {
    width: 15%;
  }
}
.chooseTopicSection .topicCardWrap .topicCard .icon img {
  height: 100%;
  width: auto;
}
.chooseTopicSection .topicCardWrap .topicCard .cardContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard .cardContent {
    gap: 8px;
    align-items: flex-start;
    flex: 1;
  }
}
.chooseTopicSection .topicCardWrap .topicCard .cardContent .cardTitle h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0%;
  text-align: center;
  color: #333333;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard .cardContent .cardTitle h3 {
    text-align: left;
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard .cardContent .cardDesc {
    text-align: center;
  }
}
.chooseTopicSection .topicCardWrap .topicCard .cardContent .cardDesc p {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #7B7B7B;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .chooseTopicSection .topicCardWrap .topicCard .cardContent .cardDesc p {
    text-align: left;
    font-size: 14px;
  }
}

.faqSection {
  background-color: #EEEFFD;
  padding-top: 200px;
  margin-top: -150px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .faqSection {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 992px) {
  .faqSection {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.faqSection .containerCustom1 {
  display: flex;
  flex-direction: column;
}
.faqSection .faqSearch {
  width: 60%;
  background-color: #FFFFFF;
  margin-top: 48px;
  padding: 18px 24px;
  border: 1px solid #5B137833;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-self: center;
  margin-bottom: 48px;
}
.faqSection .faqSearch .inputWrap {
  display: flex;
  flex: 1;
}
.faqSection .faqSearch .inputWrap input {
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .faqSection .faqSearch {
    width: 100%;
    padding: 9px 12px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.faqSection .faqSearch input {
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
}
.faqSection .faqSearch .searchBtn {
  padding: 10px 16px;
  background-color: #4d148e;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  .faqSection .faqSearch .searchBtn {
    font-size: 0;
  }
  .faqSection .faqSearch .searchBtn span {
    display: none;
  }
}
.faqSection .faqSearch .searchBtn svg {
  transition: all 150ms ease-out;
}
.faqSection .faqSearch .searchBtn:hover {
  text-decoration: none;
  color: #4d148e;
}
.faqSection .faqSearch .searchBtn:hover svg {
  color: #4d148e;
}
.faqSection .faqCollapseWrap {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .faqSection .faqCollapseWrap {
    margin-top: 24px;
  }
}
.faqSection .faqCollapseWrap .collapseItem {
  border-bottom: 1px solid #CDCDCD;
  padding-top: 24px;
  padding-bottom: 24px;
}
.faqSection .faqCollapseWrap .collapseItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .faqSection .faqCollapseWrap .collapseItem {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.faqSection .faqCollapseWrap .collapseItem.active .collapseTitle h3 {
  color: #550AE0;
}
.faqSection .faqCollapseWrap .collapseItem .collapseTitle {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.faqSection .faqCollapseWrap .collapseItem .collapseTitle h3 {
  color: #333333;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0%;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .faqSection .faqCollapseWrap .collapseItem .collapseTitle h3 {
    font-size: 18px;
    padding-right: 10px;
  }
}
.faqSection .faqCollapseWrap .collapseItem .collapseTitle .showLessBtn {
  display: none;
}
.faqSection .faqCollapseWrap .collapseItem .collapseTitle .collapseBtn {
  cursor: pointer;
}
.faqSection .faqCollapseWrap .collapseItem .collapseTitle .collapseBtn.hidden {
  display: none;
}
.faqSection .faqCollapseWrap .collapseItem .collapseContent {
  display: none;
}
.faqSection .faqCollapseWrap .collapseItem .collapseContent p {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .faqSection .faqCollapseWrap .collapseItem .collapseContent p {
    font-size: 14px;
  }
}
.faqSection .faqCollapseWrap .collapseItem .collapseContent .shareBtn {
  display: flex;
  justify-content: flex-end;
}
.faqSection .faqCollapseWrap .collapseItem .collapseContent .shareBtn span {
  background-color: #4D148E;
  padding: 4px;
  gap: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  cursor: pointer;
}

.btnScroll {
  position: absolute;
  z-index: 2;
  background: #EEEFFD;
  color: white;
  border: none;
  cursor: pointer;
  height: calc(100% + 4px);
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -2px;
}
.btnScroll.hidden {
  display: none;
}
.btnScroll svg {
  height: 20px;
  color: #111111;
}
.btnScroll.prev {
  left: -2px;
}
.btnScroll.prev::before {
  content: "";
  top: 0px;
  width: 15px;
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #EEEFFD 20%, rgba(255, 255, 255, 0) 80%);
  right: -14px;
}
.btnScroll.next {
  right: -2px;
}
.btnScroll.next::before {
  content: "";
  top: 0px;
  width: 15px;
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(270deg, #EEEFFD 20%, rgba(255, 255, 255, 0) 80%);
  left: -14px;
}

.supportToolsSection {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .supportToolsSection {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .supportToolsSection .sectionTitle {
    margin-bottom: 24px !important;
  }
}
.supportToolsSection .tabs-filter .btnScroll {
  background-color: #FFFFFF;
}
.supportToolsSection .tabs-filter .btnScroll.prev::before {
  background: linear-gradient(90deg, #FFFFFF 20%, rgba(255, 255, 255, 0) 80%);
}
.supportToolsSection .tabs-filter .btnScroll.next::before {
  background: linear-gradient(270deg, #FFFFFF 20%, rgba(255, 255, 255, 0) 80%);
}
.supportToolsSection .sectionTitle {
  margin-bottom: 48px;
}
.supportToolsSection .toolList {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .supportToolsSection .toolList {
    margin-top: 24px;
  }
}
.supportToolsSection .toolList .row {
  row-gap: 24px;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .supportToolsSection .toolList .row > * {
    padding: 0;
  }
}
.supportToolsSection .toolList .toolItem {
  display: flex;
  background-color: #F7F7F7;
  padding: 16px;
  border-radius: 8px;
  align-items: center;
  gap: 16px;
}
.supportToolsSection .toolList .toolItem .appContent {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.supportToolsSection .toolList .toolItem .appContent h3 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
}
.supportToolsSection .toolList .toolItem .appContent p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0%;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .supportToolsSection .toolList .toolItem .appContent p {
    font-size: 14px;
  }
}
.supportToolsSection .toolList .toolItem img {
  max-width: unset;
  width: 50px;
}
.supportToolsSection .toolList .toolItem .appDownloadBtn {
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  border-radius: 4px;
}
.supportToolsSection .toolList .toolItem .appDownloadBtn a {
  display: flex;
  padding: 4px 10px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0%;
  text-decoration: none;
  align-items: center;
  gap: 4px;
  transition: all 150ms ease-in-out;
}
.supportToolsSection .toolList .toolItem .appDownloadBtn a svg {
  transition: all 150ms ease-in-out;
}
.supportToolsSection .toolList .toolItem .appDownloadBtn a:hover {
  color: #4d148e;
}
.supportToolsSection .toolList .toolItem .appDownloadBtn a:hover svg {
  color: #4d148e;
}