:root {
  --generic-white: #FFFFFF;
  --generic-black: #000000;
  --generic-font: sans-serif;
  --primary-font: "Noto Sans Bengali", sans-serif;
  --secondary-font: "Inter", sans-serif;
  --brand-col-1: #18AC5D;
  --brand-col-2: #6BD071;
  --brand-col-3: rgba(24, 172, 93, 0.10);
  --dark-col-1: #181818;
  --dark-col-2: #020202;
  --light-col-1: #fcfcfc;
  --light-col-2: #f1f1f1;
  --light-col-3: #f9f9f9;
  --light-col-4: #eef2f2;
  --gray-col-1: #dcdcdc;
  --gray-col-2: #707070;
  --red-col-1: #da4a4a;
  --website-primary-bg: var(--generic-white);
  --primary-website-text-color: var(--dark-col-2);
  --dashboard-primary-bg: var(--light-col-3);
  --primary-dashboard-text-color: var(--dark-col-1);
  --bg-col-1: var(--generic-white);
  --bg-col-2: var(--light-col-1);
  --bg-col-3: var(--brand-col-3);
  --bg-col-4: var(--brand-col-1);
  --bg-col-5: var(--brand-col-2);
  --bg-col-6: var(--dark-col-1);
  --bg-col-7: var(--gray-col-1);
  --bg-col-8: var(--light-col-4);
  --text-col-1: var(--brand-col-1);
  --text-col-2: var(--red-col-1);
  --text-col-3: var(--light-col-1);
  --text-col-4: var(--dark-col-2);
  --text-col-5: var(--gray-col-2);
  --text-col-6: var(--generic-white);
  --border-col-1: var(--light-col-2);
  --border-col-2: var(--gray-col-1);
  --border-col-3: var(--brand-col-1);
  --border-col-4: var(--gray-col-2);
  --shadow-1: drop-shadow(0px 64px 32px rgba(0, 0, 0, .04));
  --shadow-2: drop-shadow(0px 0px 12px rgba(0, 0, 0, .04));
  --shadow-3: 0px 0px 12px rgba(24, 24, 24, .05);
  --shadow-4: drop-shadow(0px 5px 10px rgba(0, 0, 0, .08));
  --shadow-5: drop-shadow(0px 10px 20px rgba(0, 0, 0, .08));
}

.box-model {
  width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box-model .row-20 {
  width: 100%;
}
.box-model .row-25 {
  width: 100%;
}
.box-model .row-33 {
  width: 100%;
}
.box-model .row-40 {
  width: 100%;
}
.box-model .row-50 {
  width: 100%;
}
.box-model .row-60 {
  width: 100%;
}
.box-model .row-66 {
  width: 100%;
}
.box-model .row-75 {
  width: 100%;
}
.box-model .row-80 {
  width: 100%;
}
.box-model .row-90 {
  width: 100%;
}
.box-model .row-95 {
  width: 100%;
}
.box-model .row-100 {
  width: 100%;
}
.box-model .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.box-model .flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.box-model .flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.box-model .flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.box-model .flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.box-model .flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.box-model .y-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.box-model .y-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-model .y-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.box-model .x-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.box-model .x-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.box-model .x-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 640px) {
  .box-model .row-20 {
    width: 20%;
  }
  .box-model .row-25 {
    width: 25%;
  }
  .box-model .row-33 {
    width: 33%;
  }
  .box-model .row-40 {
    width: 40%;
  }
  .box-model .row-50 {
    width: 50%;
  }
  .box-model .row-60 {
    width: 60%;
  }
  .box-model .row-66 {
    width: 66%;
  }
  .box-model .row-75 {
    width: 75%;
  }
  .box-model .row-80 {
    width: 80%;
  }
  .box-model .row-90 {
    width: 90%;
  }
  .box-model .row-95 {
    width: 95%;
  }
  .box-model .row-100 {
    width: 100%;
  }
}

/* Add generic styles here! */
/* CROSS BROWSER SCROLL BAR */
/* The emerging W3C standard that is currently Firefox-only */
::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: var(--generic-white);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--bg-col-7);
  border: 1px solid var(--generic-white);
}

/* Generic body style */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--primary-font);
  color: var(--primary-website-text-color);
  background-color: var(--website-primary-bg);
}

body[data-page-type=dashboard] {
  color: var(--primary-dashboard-text-color);
  background-color: var(--dashboard-primary-bg);
}

[data-section=size] {
  max-width: 1200px;
  margin: 0 auto 0 auto;
}

[data-gap=side-gap] {
  margin: 0 auto;
  gap: 0 16px 0 16px;
  width: calc(100% - 32px);
}
@media screen and (min-width: 744px) {
  [data-gap=side-gap] {
    gap: 0 32px 0 32px;
    width: calc(100% - 64px);
  }
}

[data-padding=y-axis] {
  padding: 48px 0;
  min-height: calc(100% - 96px);
}
@media screen and (min-width: 744px) {
  [data-padding=y-axis] {
    padding: 64px 0;
    min-height: calc(100% - 128px);
  }
}
@media screen and (min-width: 1240px) {
  [data-padding=y-axis] {
    padding: 96px 0 64px;
    min-height: calc(100% - 160px);
  }
}

[data-attr=p-text] {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (min-width: 744px) {
  [data-attr=p-text] {
    font-size: 15px;
    line-height: 19px;
  }
}

.remove-item-animation {
  -webkit-animation: fade-out 350ms ease;
          animation: fade-out 350ms ease;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

@keyframes fade-out {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}
.add-item-animation {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: fade-in 350ms ease;
          animation: fade-in 350ms ease;
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
  }
  20% {
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  100% {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
}

@keyframes fade-in {
  0% {
    display: none;
  }
  20% {
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  100% {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
}
/* Styles For Editable Item Placeholder */
.editable-item[contenteditable=true] {
  cursor: text;
  outline: none;
  display: block;
  position: relative;
}
.editable-item[contenteditable=true]::before {
  width: 100%;
  opacity: 40%;
  position: absolute;
  content: "";
  bottom: -4px;
  border-bottom: 2px solid var(--border-col-1);
}
.editable-item[contenteditable=true]:empty {
  width: 100%;
  min-width: 200px;
}
.editable-item[contenteditable=true]:empty::before {
  bottom: unset;
  white-space: nowrap;
  padding-bottom: 4px;
  padding-bottom: 4px;
  content: attr(data-placeholder);
}

.add-new-field-btn {
  gap: 8px;
  opacity: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  margin-left: auto;
  line-height: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 12px 16px;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text-col-1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: transparent;
}
.add-new-field-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/resource/icons/plus.svg");
}
.add-new-field-btn:hover, .add-new-field-btn:focus {
  opacity: 100%;
  background-color: var(--bg-col-3);
}

.skeleton {
  opacity: 0.7;
  border-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 8px !important;
}
.skeleton::before {
  content: "" !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
  border-radius: 0 !important;
  position: absolute !important;
  background-size: 0% !important;
  background-image: none !important;
  -webkit-animation: skeleton-loading 1s linear infinite alternate !important;
          animation: skeleton-loading 1s linear infinite alternate !important;
}
.skeleton::after {
  display: none !important;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
body:has(.open-menubar) {
  padding-top: 60px;
}
body:has([data-attr=page-banner]) .menu-bar .line {
  background-color: var(--bg-col-4) !important;
}

#header {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header:has(.open-menubar) {
  top: 0;
  z-index: 999;
  position: fixed;
  background-color: var(--bg-col-1);
}
@media screen and (min-width: 1180px) {
  #header {
    height: 80px;
  }
  #header:has(.open-menubar) {
    background-color: transparent;
  }
}
#header[data-current-device=large] .container #desktop-header {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
#header[data-current-device=small] .container #phone-header {
  display: block !important;
}
#header .container {
  width: 100%;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 1232px;
}
#header .container #phone-header {
  display: none;
}
#header .container #phone-header .visible-section {
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 24px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header .container #phone-header .visible-section .logo {
  width: 172px;
  height: 44px;
  display: block;
  cursor: pointer;
}
#header .container #phone-header .visible-section .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
#header .container #phone-header .visible-section .menu-bar {
  gap: 5px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .container #phone-header .visible-section .menu-bar .line {
  display: block;
  width: 100%;
  height: 2.4px;
  border-radius: 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--bg-col-1);
}
#header .container #phone-header .visible-section .menu-bar .line:nth-child(2) {
  width: 80%;
}
#header .container #phone-header .visible-section.open-menubar {
  background-color: var(--bg-col-1);
}
#header .container #phone-header .visible-section.open-menubar .menu-bar {
  position: relative;
}
#header .container #phone-header .visible-section.open-menubar .menu-bar .line {
  position: absolute;
  background-color: var(--bg-col-4);
}
#header .container #phone-header .visible-section.open-menubar .menu-bar .line:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#header .container #phone-header .visible-section.open-menubar .menu-bar .line:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
#header .container #phone-header .visible-section.open-menubar .menu-bar .line:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header .container #phone-header .menu-item-section {
  right: 0;
  padding: 16px;
  position: fixed;
  -webkit-transform-origin: right;
          transform-origin: right;
  width: 288px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateX(340px);
          transform: translateX(340px);
  height: calc(100vh - 48px - 32px);
  background-color: var(--generic-white);
}
#header .container #phone-header .menu-item-section.show-items {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#header .container #phone-header .menu-item-section .items-container {
  width: 100%;
  height: 100%;
}
#header .container #phone-header .menu-item-section .items-container .social-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
#header .container #phone-header .menu-item-section .items-container .social-items .social-link {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-col-4);
}
#header .container #phone-header .menu-item-section .items-container .social-items .social-link:nth-child(1) {
  background-image: url("/resource/icons/header/facebook.svg");
}
#header .container #phone-header .menu-item-section .items-container .social-items .social-link:nth-child(2) {
  background-image: url("/resource/icons/header/instagram.svg");
}
#header .container #phone-header .menu-item-section .items-container .social-items .social-link:nth-child(3) {
  background-image: url("/resource/icons/header/youtube.svg");
}
#header .container #phone-header .menu-item-section .items-container .menu-items {
  margin-top: 48px;
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  position: relative;
  color: var(--primary-website-text-color);
  border-bottom: 1px solid var(--border-col-2);
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item::after {
  top: 50%;
  width: 5px;
  left: -18px;
  content: "";
  height: 90%;
  display: block;
  position: absolute;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  border-radius: 0 3px 3px 0;
  -webkit-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
  background-color: var(--text-col-1);
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item:not(#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child).focus, #header .container #phone-header .menu-item-section .items-container .menu-items .item:not(#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child):hover {
  font-weight: 600;
  color: var(--text-col-1);
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item:not(#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child).focus::after, #header .container #phone-header .menu-item-section .items-container .menu-items .item:not(#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child):hover::after {
  -webkit-transform: translateY(-50%) scaleX(1);
          transform: translateY(-50%) scaleX(1);
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item:nth-last-child(-n+2) {
  border-bottom: none;
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  margin: 48px auto;
  padding: 9px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  border-bottom: none;
  color: var(--text-col-1);
  border: 2px solid var(--border-col-3);
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/resource/icons/header/playstore.svg");
}
#header .container #phone-header .menu-item-section .items-container .menu-items .item:last-child::after {
  display: none;
}
#header .container #desktop-header {
  gap: 28px;
  display: none;
  padding: 0 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .container #desktop-header .logo {
  width: 228px;
  height: 56px;
  display: block;
  cursor: pointer;
}
#header .container #desktop-header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
#header .container #desktop-header .menu-items {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .container #desktop-header .menu-items .item {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  position: relative;
  color: var(--primary-website-text-color);
}
#header .container #desktop-header .menu-items .item::after {
  left: 0;
  right: 0;
  width: 45%;
  content: "";
  height: 2.5px;
  bottom: -10px;
  display: block;
  margin: 0 auto;
  position: absolute;
  border-radius: 3px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: var(--text-col-1);
}
#header .container #desktop-header .menu-items .item:not(#header .container #desktop-header .menu-items .item:last-child).focus, #header .container #desktop-header .menu-items .item:not(#header .container #desktop-header .menu-items .item:last-child):hover {
  color: var(--text-col-1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#header .container #desktop-header .menu-items .item:not(#header .container #desktop-header .menu-items .item:last-child).focus::after, #header .container #desktop-header .menu-items .item:not(#header .container #desktop-header .menu-items .item:last-child):hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#header .container #desktop-header .menu-items .item:last-child {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  border-bottom: none;
  color: var(--text-col-1);
  border: 2px solid var(--border-col-3);
}
#header .container #desktop-header .menu-items .item:last-child::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/resource/icons/header/playstore.svg");
}
#header .container #desktop-header .menu-items .item:last-child::after {
  display: none;
}
#header .container #desktop-header .social-items {
  right: 40px;
  position: absolute;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .container #desktop-header .social-items .social-link {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(2, 2, 2, 0.2);
}
#header .container #desktop-header .social-items .social-link:nth-child(1) {
  background-image: url("/resource/icons/header/facebook.svg");
}
#header .container #desktop-header .social-items .social-link:nth-child(2) {
  background-image: url("/resource/icons/header/instagram.svg");
}
#header .container #desktop-header .social-items .social-link:nth-child(3) {
  background-image: url("/resource/icons/header/youtube.svg");
}

#footer {
  padding: 12px 0;
}
#footer [data-attr=copyright-section] {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer [data-attr=copyright-section] .copyright-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}
#footer [data-attr=copyright-section] [data-attr=uniman] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer [data-attr=copyright-section] [data-attr=uniman] a {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0px;
  color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer [data-attr=copyright-section] [data-attr=uniman] a::after {
  content: "";
  width: 84px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("/resource/icons/footer/bitlaab.svg");
}
@media screen and (min-width: 744px) {
  #footer [data-attr=copyright-section] {
    margin-top: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #footer [data-attr=copyright-section] .copyright-text {
    font-size: 14px;
    line-height: 17px;
    text-align: start;
  }
  #footer [data-attr=copyright-section] [data-attr=uniman] a::after {
    width: 95px;
    height: 24px;
  }
}

[data-attr=page-banner] {
  z-index: -1;
  width: 100%;
  height: 148px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-attr=page-banner]::before {
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(27, 47, 66, 0.6);
}
[data-attr=page-banner] [data-attr=banner-content] {
  inset: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--text-col-6);
}
[data-attr=page-banner] [data-attr=banner-content] #main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
}
[data-attr=page-banner] [data-attr=banner-content] #bottom-text {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
  line-height: 17px;
}
@media screen and (min-width: 744px) {
  [data-attr=page-banner] {
    height: 326px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #main-title {
    font-size: 40px;
    line-height: 43px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #bottom-text {
    font-size: 15px;
    margin-top: 8px;
    line-height: 18px;
  }
}
@media screen and (min-width: 1280px) {
  [data-attr=page-banner] {
    height: 374px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #main-title {
    font-size: 48px;
    line-height: 51px;
  }
  [data-attr=page-banner] [data-attr=banner-content] #bottom-text {
    font-size: 16px;
    margin-top: 12px;
    line-height: 19px;
  }
}

[data-attr=download-app-page] [data-attr=page-banner] {
  background-image: url("/resource/image/page-banner/download-app.png");
}

[data-attr=document-page] [data-attr=page-banner] {
  background-image: url("/resource/image/page-banner/doc.png");
}

[data-attr=contact-us-page] [data-attr=page-banner] {
  background-image: url("/resource/image/page-banner/contact-us.png");
}

[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] {
  margin: 24px auto;
  max-width: 1080px;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid var(--border-col-1);
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] {
  color: var(--text-col-4);
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin: 28px 0 12px;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  margin-bottom: 16px 0;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  margin-left: 16px;
  line-height: 17px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  margin-top: 6px;
  min-height: 6px;
  border-radius: 3px;
  background-color: var(--text-col-4);
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li span {
  font-weight: 600;
  display: contents;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] a {
  display: contents;
  color: var(--text-col-1);
}
@media screen and (min-width: 744px) {
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] {
    padding: 32px;
    margin: 32px auto;
    border-radius: 36px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .title {
    font-size: 22px;
    line-height: 26px;
    margin: 36px 0 12px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .text {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 18px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li {
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    margin-left: 48px;
    line-height: 19px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 6px;
    min-height: 8px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 1240px) {
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] {
    padding: 96px;
    margin: 96px auto;
  }
}