:host, :root {
  --brand-font: "Hind Siliguri", sans-serif;
  --brand-primary: #2270f2;
  --brand-generic-red: #FF5722;
  --brand-generic-green: #4CAF50;
  --brand-generic-yellow: #FFC107;
  --brand-generic-white: #EEEEEE;
  --brand-font-c900: #082A5E;
  --brand-font-c600: #666b73;
  --brand-fg-primary: #7B7B7B;
  --brand-bg-primary: #F2F3F4;
  --brand-bg-secondary: #FDFDFD;
  --brand-bg-tertiary: #E2E2E2;
}

:host-context(.dark), :root.dark {
  --brand-font-c900: #EEEEEE;
  --brand-font-c600: #868f9f;
  --brand-bg-primary: #0D0F11;
  --brand-bg-secondary: #191D23;
  --brand-bg-tertiary: #262C36;
  --brand-fg-primary: #868F9F;
}

:root {
  --generic-white: #FFFFFF;
  --generic-black: #000000;
  --generic-font: sans-serif;
  --primary-font: "Hind Siliguri", sans-serif;
  --noto-serif-bengali: "Noto Serif Bengali", serif;
  --brand-col-1: #1363DF;
  --brand-col-2: #082A5E;
  --brand-col-3: #F9B667;
  --brand-opc-col-1: rgba(8, 42, 94, 0.118);
  --brand-opc-col-2: rgba(8, 42, 94, 0.33);
  --brand-opc-col-3: rgba(8, 42, 94, 0.70);
  --light-col-1: #F5F7FA;
  --gray-col-1: #CAD3DC;
  --gray-col-2: #DCDCDC;
  --green-col-1: #18AC5D;
  --red-col-1: #da4a4a;
  --website-primary-bg: var(--generic-white);
  --primary-website-text-color: var(--brand-col-2);
  --dash-light-col-1: #fcfcfc;
  --dash-light-col-2: #f1f1f1;
  --dash-light-col-3: #f9f9f9;
  --dash-light-col-4: #eef2f2;
  --dash-gray-col-1: #dcdcdc;
  --dash-gray-col-2: #707070;
  --dashboard-primary-bg: var(--dash-light-col-3);
  --dashboard-workspace-bg: var(--generic-white);
  --primary-dashboard-text-color: var(--brand-col-2);
  --shadow-1: 0px 64px 32px rgba(0, 0, 0, .04);
  --shadow-2: 0px 0px 12px rgba(0, 0, 0, .04);
  --shadow-3: 0px 0px 12px rgba(24, 24, 24, .05);
  --shadow-4: 0px 5px 10px rgba(0, 0, 0, .08);
  --shadow-5: 0px 10px 20px rgba(0, 0, 0, .08);
}

/* 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(--brand-col-2);
  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: 1440px;
  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 96px;
    min-height: calc(100% - 192px);
  }
}

[data-attr=p-text] {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
@media screen and (min-width: 744px) {
  [data-attr=p-text] {
    font-size: 16px;
    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(--gray-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;
  white-space: nowrap;
  color: var(--primary-website-text-color);
  -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("/asset/icon/plus.svg");
}
.add_new_field_btn:hover, .add_new_field_btn:focus {
  opacity: 100%;
  background-color: var(--brand-opc-col-1);
}

.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%);
  }
}
/* Generic Viewport Width for Grouping - v1.0.0 */
.vw-100, .vw-50, .vw-33 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.vw-100.center, .vw-50.center, .vw-33.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vw-100.right, .vw-50.right, .vw-33.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.vw-100.left, .vw-50.left, .vw-33.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.vw-100 {
  width: 100%;
}

.vw-50 {
  width: 50%;
}

.vw-33 {
  width: 33.333%;
}

@media (max-width: 768px) {
  .vw-50 {
    width: 100%;
  }
  .vw-33 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .vw-33 {
    width: 100%;
  }
}
#lg_header {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}
#lg_header .container {
  width: 100%;
  height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#lg_header .container .logo {
  width: 228px;
  height: 56px;
  cursor: pointer;
}
#lg_header .container .logo img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}
#lg_header .container .link_wrapper {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#lg_header .container .link_wrapper .link_box, #lg_header .container .link_wrapper .btn_box {
  gap: inherit;
  display: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}
#lg_header .container .link_wrapper .link_box .link {
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .link_box .link:hover, #lg_header .container .link_wrapper .link_box .link.active {
  color: #1363DF;
}
#lg_header .container .link_wrapper .btn_box::before {
  width: 1px;
  content: "";
  height: 24px;
  background-color: #CAD3DC;
}
#lg_header .container .link_wrapper .btn_box .search_btn {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
#lg_header .container .link_wrapper .btn_box .search_btn .icon {
  width: 100%;
  height: 100%;
}
#lg_header .container .link_wrapper .btn_box .search_btn .icon .color {
  stroke: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .btn_box .search_btn:hover .icon .color {
  stroke: #1363DF;
}
#lg_header .container .link_wrapper .btn_box .signin_btn {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  padding: 10px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: transparent;
  border: 1px solid #CAD3DC;
}
#lg_header .container .link_wrapper .btn_box .signin_btn .icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
#lg_header .container .link_wrapper .btn_box .signin_btn .icon .color {
  fill: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .btn_box .signin_btn span {
  cursor: pointer;
  font-size: 16px;
  color: #082A5E;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: -2px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .btn_box .signin_btn:hover {
  border-color: #1363DF;
}
#lg_header .container .link_wrapper .btn_box .signin_btn:hover span {
  color: #1363DF;
}
#lg_header .container .link_wrapper .btn_box .signin_btn:hover .icon .color {
  fill: #1363DF;
}
@media screen and (min-width: 1240px) {
  #lg_header .container .logo {
    width: 248px;
    height: 64px;
  }
  #lg_header .container .link_wrapper {
    gap: 32px;
  }
  #lg_header .container .link_wrapper .link_box .link {
    font-size: 18px;
    line-height: 21px;
  }
  #lg_header .container .link_wrapper .btn_box .search_btn {
    width: 24px;
    height: 24px;
  }
  #lg_header .container .link_wrapper .btn_box .signin_btn {
    padding: 11px 18px;
  }
  #lg_header .container .link_wrapper .btn_box .signin_btn .icon {
    width: 20px;
    height: 20px;
  }
  #lg_header .container .link_wrapper .btn_box .signin_btn span {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: -3px;
  }
}
@media screen and (min-width: 1340px) {
  #lg_header .container .logo {
    width: 264px;
    height: 72px;
  }
}

body:has(.open_hidden_wrapper) {
  overflow: hidden;
}

#sm_header {
  width: 100%;
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn {
  position: relative;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn .line {
  position: absolute;
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn .line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#sm_header.open_hidden_wrapper .container .hidden_wrapper {
  right: 0px;
}
#sm_header.open_hidden_wrapper .container .hidden_wrapper .bg_layer {
  opacity: 0;
  -webkit-animation: fade-up 350ms forwards 400ms;
          animation: fade-up 350ms forwards 400ms;
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#sm_header .container {
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sm_header .container .visible_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sm_header .container .visible_wrapper .logo {
  width: 164px;
  height: 44px;
  cursor: pointer;
}
#sm_header .container .visible_wrapper .logo img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}
#sm_header .container .visible_wrapper .btn_box {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sm_header .container .visible_wrapper .btn_box .search_btn {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
#sm_header .container .visible_wrapper .btn_box .search_btn .icon {
  width: 100%;
  height: 100%;
}
#sm_header .container .visible_wrapper .btn_box .search_btn .icon .color {
  stroke: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#sm_header .container .visible_wrapper .btn_box #hidden_wrapper_toggle_btn {
  width: 24px;
  height: 24px;
  background-color: transparent;
}
#sm_header .container .visible_wrapper .btn_box #hidden_wrapper_toggle_btn .line {
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 6px;
  border-radius: 4px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: #082A5E;
}
#sm_header .container .visible_wrapper .btn_box #hidden_wrapper_toggle_btn .line:last-child {
  margin-bottom: 0px;
}
#sm_header .container .hidden_wrapper {
  top: 64px;
  right: -100%;
  width: 100%;
  position: fixed;
  height: calc(100vh - 64px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
#sm_header .container .hidden_wrapper .bg_layer {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  position: absolute;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: rgba(0, 0, 0, 0.4);
}
#sm_header .container .hidden_wrapper .item_container {
  height: inherit;
  padding: 0 24px;
  max-width: 420px;
  overflow-y: auto;
  margin-left: auto;
  width: calc(100% - 48px);
  background-color: #ffffff;
}
#sm_header .container .hidden_wrapper .item_container .link_box {
  margin-top: 48px;
}
#sm_header .container .hidden_wrapper .item_container .link_box .link {
  display: block;
  font-size: 16px;
  padding: 12px 0;
  font-weight: 500;
  color: #082A5E;
  line-height: 20px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  border-bottom: 1px solid rgba(202, 211, 220, 0.5);
}
#sm_header .container .hidden_wrapper .item_container .link_box .link:first-child {
  padding-top: 0px;
}
#sm_header .container .hidden_wrapper .item_container .link_box .link:last-child {
  border-bottom: none;
}
#sm_header .container .hidden_wrapper .item_container .link_box .link.active {
  color: #1363DF;
}
#sm_header .container .hidden_wrapper .item_container .btn_box {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 48px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: transparent;
  border: 1px solid rgba(202, 211, 220, 0.5);
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn .icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn .icon .color {
  fill: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn span {
  cursor: pointer;
  font-size: 16px;
  color: #082A5E;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: -2px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

body:has(.search-popup-open) {
  overflow: hidden;
}

[data-attr=search_popup] {
  inset: 0;
  height: 100vh;
  padding: 0 16px;
  display: none;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000000000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100vw - 32px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}
[data-attr=search_popup].search-popup-open {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: popup-fade-in 250ms ease;
          animation: popup-fade-in 250ms ease;
}
@-webkit-keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-attr=search_popup].close-animation {
  -webkit-animation: popup-fade-out 250ms ease;
          animation: popup-fade-out 250ms ease;
}
@-webkit-keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
[data-attr=search_popup] .popup_cross_btn {
  top: 12px;
  z-index: 2;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  background-size: 60%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-position: center;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/popup-cross.svg");
}
[data-attr=search_popup] .content_container {
  max-width: 980px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
[data-attr=search_popup] .content_container .popup_item .popup_item_slide_up {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}
[data-attr=search_popup] .content_container .popup_item.item-show .popup_item_slide_up {
  z-index: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: toggle 500ms ease;
          animation: toggle 500ms ease;
}
@-webkit-keyframes toggle {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes toggle {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#search_section {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: absolute;
  max-width: 1024px;
  height: 95vh;
  border-radius: 16px 16px 0 0;
  background-color: #ffffff;
}
#search_section .search_container {
  width: 100%;
  margin: 0 auto;
  padding: 72px 0px 24px 0;
  height: calc(100% - 72px - 24px);
}
#search_section .search_container .search_title {
  top: 44px;
  left: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
}
#search_section .search_container bitl-input {
  width: 100%;
  --wrapper-height-lg: 52px;
  --wrapper-height-sm: 52px;
  --input-container-height: 52px;
  --input-bg-col: transparent;
}
#search_section .search_container .search_box {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#search_section .search_container .search_box bitl-button {
  --btn-padding-xl: 16px;
  --btn-padding-xr: 16px;
}
#search_section .search_container .result_box {
  margin-top: 24px;
  overflow-y: auto;
  padding: 0 24px;
  height: calc(95vh - 24px - 72px - 24px - 38px);
}
#search_section .search_container .result_box::-webkit-scrollbar {
  width: 6px !important;
}
#search_section .search_container .result_box:has(#empty_search_icon) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#search_section .search_container .result_box #empty_search_icon {
  width: 220px;
  height: 220px;
}
#search_section .search_container .result_box #empty_search_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 744px) {
  #search_section .search_container {
    width: calc(100% - 48px);
    padding: 96px 24px 24px 24px;
    height: calc(100% - 96px - 24px);
  }
  #search_section .search_container .search_title {
    left: 48px;
  }
  #search_section .search_container .search_box {
    padding: 0 48px;
  }
  #search_section .search_container .search_box bitl-button {
    --btn-padding-xl: 28px;
    --btn-padding-xr: 28px;
  }
  #search_section .search_container .result_box {
    padding: 0 48px;
    height: calc(95vh - 24px - 96px - 24px - 38px);
  }
  #search_section .search_container .result_box #empty_search_icon {
    width: 320px;
    height: 320px;
  }
}

body {
  padding-top: 64px;
}
@media screen and (min-width: 1080px) {
  body {
    padding-top: 96px;
  }
}

#header {
  top: 0;
  left: 0;
  height: 64px;
  position: fixed;
  padding: 0 16px;
  z-index: 1000000000;
  width: calc(100% - 32px);
  background-color: #ffffff;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.06));
}
#header #sm_header {
  display: block;
}
#header #lg_header {
  display: none;
}
@media screen and (min-width: 1080px) {
  #header {
    height: 96px;
  }
  #header #sm_header {
    display: none;
  }
  #header #lg_header {
    display: block;
  }
}

[data-attr=copyright-section] {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}
[data-attr=copyright-section] .copyright-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.3;
  color: var(--text-col-4);
}
[data-attr=copyright-section] [data-attr=bitlaab] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-attr=copyright-section] [data-attr=bitlaab] 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;
}
[data-attr=copyright-section] [data-attr=bitlaab] a::after {
  content: "";
  width: 84px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/footer/bitlaab.svg");
}
@media screen and (min-width: 744px) {
  [data-attr=copyright-section] {
    -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;
  }
  [data-attr=copyright-section] .copyright-text {
    font-size: 16px;
    line-height: 19px;
    text-align: start;
  }
  [data-attr=copyright-section] [data-attr=bitlaab] a::after {
    width: 116px;
    height: 28px;
  }
}

#footer {
  width: 100%;
  color: #b0b6c0;
  position: relative;
  background-color: #041838;
}
#footer .container {
  margin: 0 auto;
  max-width: 1440px;
  width: calc(100% - 32px);
  padding: 96px 16px 32px 16px;
}
#footer .container .footer_content {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 96px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .container .footer_content .single_box {
  width: 100%;
}
#footer .container .footer_content .single_box .logo {
  width: 264px;
  height: 72px;
  margin-bottom: 20px;
}
#footer .container .footer_content .single_box .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .container .footer_content .single_box .address, #footer .container .footer_content .single_box .phone {
  font-size: 19px;
  font-weight: 600;
  color: #b0b6c0;
  line-height: 23px;
}
#footer .container .footer_content .single_box .social_links {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .container .footer_content .single_box .social_links .social {
  width: 28px;
  height: 28px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#footer .container .footer_content .single_box .social_links .social.twitter {
  background-image: url("/asset/icon/footer/twitter.svg");
}
#footer .container .footer_content .single_box .social_links .social.facebook {
  background-image: url("/asset/icon/footer/facebook.svg");
}
#footer .container .footer_content .single_box .social_links .social.linkedin {
  background-image: url("/asset/icon/footer/linkedin.svg");
}
#footer .container .footer_content .single_box .social_links .social.youtube {
  background-image: url("/asset/icon/footer/youtube.svg");
}
#footer .container .footer_content .single_box .item_title {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  padding-bottom: 8px;
  color: #ffffff;
  margin: 24px 0 16px 0;
  border-bottom: 1px solid rgba(176, 182, 192, 0.25);
}
#footer .container .footer_content .single_box .link_box {
  padding-left: 16px;
}
#footer .container .footer_content .single_box .link_box .link {
  display: block;
  font-size: 16px;
  color: #b0b6c0;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 16px;
}
#footer .container .footer_content .single_box .link_box .link:last-child {
  margin-bottom: 0px;
}
#footer .container .footer_content .single_box .certification {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#footer .container .footer_content .single_box .certification::before {
  content: "";
  width: 64px;
  height: 64px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/footer/certified.svg");
}
#footer .container .footer_content .single_box .certification .reg_number .title {
  font-size: 14px;
  line-height: 17px;
}
#footer .container .footer_content .single_box .certification .reg_number .number {
  font-size: 30px;
  line-height: 33px;
  padding-top: 8px;
  font-weight: 700;
}
@media screen and (min-width: 680px) {
  #footer .container {
    width: calc(100% - 48px);
    padding: 96px 24px 24px 24px;
  }
  #footer .container .footer_content {
    gap: 48px;
  }
  #footer .container .footer_content .single_box {
    width: 264px;
  }
  #footer .container .footer_content .single_box .logo {
    margin-bottom: 40px;
  }
  #footer .container .footer_content .single_box .item_title {
    font-size: 20px;
    line-height: 23px;
    margin: 24px 0 24px 0;
  }
  #footer .container .footer_content .single_box .link_box {
    padding-left: 0px;
  }
  #footer .container .footer_content .single_box .certification {
    margin-top: 32px;
  }
}

[data-attr=section-title] {
  padding: 0 16px;
}
[data-attr=section-title][data-position=center] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
[data-attr=section-title][data-position=center] .title {
  margin: 0 auto;
  text-align: center;
}
[data-attr=section-title][data-position=center] .text_box .subtitle,
[data-attr=section-title][data-position=center] .text_box .text {
  text-align: center;
}
[data-attr=section-title][data-position=left] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
}
[data-attr=section-title][data-position=left] .title {
  margin-right: auto;
  text-align: start;
}
[data-attr=section-title][data-position=left] .text_box .subtitle,
[data-attr=section-title][data-position=left] .text_box .text {
  text-align: start;
}
[data-attr=section-title][data-position=right] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
[data-attr=section-title][data-position=right] .title {
  margin-left: auto;
  text-align: end;
}
[data-attr=section-title][data-position=right] .text_box .subtitle,
[data-attr=section-title][data-position=right] .text_box .text {
  text-align: end;
}
[data-attr=section-title] .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
}
[data-attr=section-title] .title .pointer_word {
  color: var(--brand-col-1);
  position: relative;
  line-height: 52px;
}
[data-attr=section-title] .title .pointer_word::after {
  left: 4px;
  content: "";
  width: 100%;
  bottom: 0px;
  height: 12px;
  max-width: 96px;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/title-shape.svg");
}
[data-attr=section-title] .text_box {
  margin-top: 20px;
}
[data-attr=section-title] .text_box .subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 8px;
}
[data-attr=section-title] .text_box .text {
  font-size: 15px;
  max-width: 640px;
  line-height: 20px;
}
@media screen and (min-width: 744px) {
  [data-attr=section-title] .title {
    font-size: 40px;
    line-height: 44px;
  }
  [data-attr=section-title] .title .pointer_word {
    line-height: 52px;
  }
  [data-attr=section-title] .title .pointer_word::after {
    max-width: 128px;
    bottom: 6px;
  }
  [data-attr=section-title] .text_box {
    margin-top: 24px;
  }
  [data-attr=section-title] .text_box .subtitle {
    font-size: 24px;
    line-height: 27px;
  }
  [data-attr=section-title] .text_box .text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 980px) {
  [data-attr=section-title] .title {
    font-size: 48px;
    line-height: 52px;
  }
  [data-attr=section-title] .title .pointer_word {
    line-height: 60px;
  }
}

#hero_section {
  width: 100vw;
  max-height: 980px;
  position: relative;
  height: 100vh;
  color: var(--generic-white);
}
#hero_section .hero_image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
}
#hero_section .hero_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#hero_section .hero_image::after {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(30%, rgba(255, 255, 255, 0.3)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(top, transparent 5%, rgba(255, 255, 255, 0.3) 30%, rgba(0, 0, 0, 0.7) 100%);
}
#hero_section .content_container {
  height: calc(100% - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 140px;
}
#hero_section .content_container .title {
  font-size: 72px;
  font-weight: 700;
  line-height: 92px;
  text-transform: uppercase;
  text-shadow: var(--shadow-5);
}
#hero_section .content_container .subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
}
#hero_section .content_container .hero_text {
  font-size: 16px;
  font-weight: 400;
  max-width: 780px;
  line-height: 19px;
  text-align: center;
}
#hero_section .content_container .hero_btn {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  margin-top: 32px;
  line-height: 19px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  color: var(--brand-col-2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 10px 20px 10px 12px;
  background-color: var(--generic-white);
}
#hero_section .content_container .hero_btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/explore-dark.svg");
}
@media screen and (min-width: 744px) {
  #hero_section .content_container {
    height: calc(100% - 140px);
    padding-bottom: 140px;
  }
  #hero_section .content_container .title {
    font-size: 124px;
    line-height: 134px;
  }
  #hero_section .content_container .subtitle {
    font-size: 48px;
    line-height: 58px;
  }
  #hero_section .content_container .hero_text {
    font-size: 19px;
    line-height: 23px;
  }
}
@media screen and (min-width: 1200px) {
  #hero_section {
    height: 100vh;
  }
  #hero_section .content_container .title {
    font-size: 164px;
    line-height: 167px;
  }
  #hero_section .content_container .subtitle {
    font-size: 62px;
    line-height: 72px;
  }
}

.notice_card {
  width: calc(100% - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 16px 16px 16px 16px;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
  border: 1px solid var(--gray-col-1);
  background-color: var(--generic-white);
}
.notice_card:last-child {
  margin-bottom: 0;
}
.notice_card:hover {
  border-color: transparent;
  -webkit-filter: drop-shadow(var(--shadow-2));
          filter: drop-shadow(var(--shadow-2));
}
.notice_card:hover .date {
  color: var(--brand-col-3);
}
.notice_card .date {
  font-weight: 700;
  text-align: center;
  color: var(--brand-col-1);
  text-transform: uppercase;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--gray-col-1);
}
.notice_card .date span {
  display: block;
}
.notice_card .date span.day {
  font-size: 24px;
  line-height: 32px;
}
.notice_card .date span.month {
  font-size: 18px;
  line-height: 21px;
}
.notice_card .content .notice_title {
  font-size: 17px;
  font-weight: 500;
  line-height: 21px;
  color: var(--brand-col-2);
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 490px) {
  .notice_card .date {
    margin-right: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 744px) {
  .notice_card {
    width: calc(100% - 48px);
    padding: 16px 24px 16px 24px;
  }
  .notice_card .date {
    margin-right: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .notice_card {
    width: calc(100% - 64px);
    padding: 16px 32px 16px 32px;
  }
  .notice_card .date {
    margin-right: 32px;
    padding-right: 32px;
  }
  .notice_card .date span.day {
    font-size: 28px;
    line-height: 36px;
  }
  .notice_card .date span.month {
    font-size: 20px;
    line-height: 23px;
  }
  .notice_card .content .notice_title {
    font-size: 20px;
    line-height: 24px;
  }
}

#notice_section .content_container .image_wrapper {
  margin-top: 48px;
}
#notice_section .content_container .image_wrapper .image_box {
  width: 100%;
  max-width: 320px;
  margin: auto;
  height: 480px;
  position: relative;
  padding: 40px 0;
}
#notice_section .content_container .image_wrapper .image_box .bg_layer_top {
  top: 0;
  left: -16px;
  width: 192px;
  height: 192px;
  position: absolute;
}
#notice_section .content_container .image_wrapper .image_box .bg_layer_top::before {
  top: 24px;
  left: 24px;
  z-index: 0;
  content: "";
  width: 128px;
  height: 128px;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #54E9CE;
}
#notice_section .content_container .image_wrapper .image_box .bg_layer_top::after {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 148px;
  height: 148px;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/dots-square-dark.svg");
}
#notice_section .content_container .image_wrapper .image_box .bg_layer_bottom {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 248px;
  position: absolute;
}
#notice_section .content_container .image_wrapper .image_box .bg_layer_bottom::before {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 72px;
  height: 72px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/circle.svg");
}
#notice_section .content_container .image_wrapper .image_box .bg_layer_bottom::after {
  bottom: 0;
  right: 0;
  z-index: 0;
  content: "";
  width: 184px;
  height: 184px;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/star-dots.png");
}
#notice_section .content_container .image_wrapper .image_box .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 16px 16px 16px 64px;
}
#notice_section .content_container .image_wrapper .image_box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#notice_section .content_container .notice_wrapper {
  width: 100%;
}
#notice_section .content_container .notice_wrapper .notice_box {
  margin-top: 32px;
}
#notice_section .content_container .notice_wrapper #see_all_notice_btn {
  margin-top: 16px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --btn-border-col: transparent;
}
@media screen and (min-width: 490px) {
  #notice_section .content_container .image_wrapper .image_box {
    padding: 40px 64px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_top {
    top: 0;
    left: 0;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_top::before {
    top: 0;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_top::after {
    top: 0;
    left: 36px;
  }
  #notice_section .content_container .notice_wrapper #see_all_notice_btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 980px) {
  #notice_section .content_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #notice_section .content_container .image_wrapper {
    width: 428px;
  }
  #notice_section .content_container .image_wrapper .image_box {
    margin: unset;
  }
  #notice_section .content_container .notice_wrapper {
    width: calc(100% - 428px);
  }
}
@media screen and (min-width: 1200px) {
  #notice_section .content_container .image_wrapper {
    width: 666px;
  }
  #notice_section .content_container .image_wrapper .image_box {
    width: 480px;
    height: 648px;
    margin: unset;
    max-width: unset;
    padding: 40px 92px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_top {
    width: 192px;
    height: 192px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_top::before {
    width: 192px;
    height: 192px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_top::after {
    width: 192px;
    height: 192px;
    left: 60px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_bottom {
    height: 248px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_bottom::before {
    width: 72px;
    height: 72px;
  }
  #notice_section .content_container .image_wrapper .image_box .bg_layer_bottom::after {
    width: 192px;
    height: 192px;
  }
  #notice_section .content_container .notice_wrapper {
    width: calc(100% - 666px);
  }
  #notice_section .content_container .notice_wrapper [data-attr=section-title] {
    padding: 0;
  }
}

#feature_section .container {
  padding: 96px 0;
  background-color: var(--light-col-1);
}
#feature_section .container .content_container {
  gap: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#feature_section .container .content_container .card {
  width: 296px;
}
#feature_section .container .content_container .card .image {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}
#feature_section .container .content_container .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#feature_section .container .content_container .card .title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
}
#feature_section .container .content_container .card .text {
  opacity: 0.75;
  text-align: center;
}
@media screen and (min-width: 690px) {
  #feature_section .container {
    padding: 96px 24px;
  }
  #feature_section .container .content_container {
    width: 690px;
  }
  #feature_section .container .content_container .card .image {
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1392px) {
  #feature_section .container .content_container {
    gap: 48px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#campus_section .content_container {
  gap: 8px;
  display: grid;
  margin-top: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
}
#campus_section .content_container .card {
  height: 420px;
  position: relative;
  max-width: 320px;
  width: 100%;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#campus_section .content_container .card .image {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
}
#campus_section .content_container .card .image::after {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(top, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}
#campus_section .content_container .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#campus_section .content_container .card .info {
  left: 0px;
  bottom: 0px;
  padding: 16px;
  position: absolute;
  color: var(--generic-white);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#campus_section .content_container .card .info .title {
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 6px;
  text-transform: capitalize;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#campus_section .content_container .card .info .text {
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#campus_section .content_container .card:hover {
  z-index: 2;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#campus_section .content_container .card:hover .info .text {
  -webkit-line-clamp: 10;
}
@media screen and (min-width: 640px) {
  #campus_section .content_container {
    grid-template-columns: repeat(2, 1fr);
  }
  #campus_section .content_container .card {
    height: 520px;
    max-width: 100%;
  }
}
@media screen and (min-width: 940px) {
  #campus_section .content_container {
    grid-template-columns: repeat(4, 1fr);
  }
  #campus_section .content_container .card {
    height: 620px;
  }
}
@media screen and (min-width: 1440px) {
  #campus_section .content_container .card {
    height: 720px;
  }
  #campus_section .content_container .card .info {
    padding: 32px;
  }
}

#faculties_section {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 0 72px 0;
}
#faculties_section::before {
  top: 0;
  left: -48px;
  content: "";
  z-index: -1;
  width: 132px;
  height: 96px;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/spiral.png");
}
#faculties_section .container {
  gap: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#faculties_section .container .text_wrapper {
  max-width: 444px;
}
#faculties_section .container .text_wrapper bitl-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  margin-left: 16px;
  --btn-padding-xl: 12px;
  --btn-padding-xr: 16px;
  --btn-padding-y-lg: 9px;
  --btn-padding-y-sm: 8px;
  --btn-icon-size: 24px;
  --btn-border-radius: 8px;
}
#faculties_section .container .card_wrapper {
  width: 100%;
}
#faculties_section .container .card_wrapper .row_group {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#faculties_section .container .card_wrapper .row_group:last-child {
  margin-bottom: 0px;
}
#faculties_section .container .card_wrapper .row_group .shape {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
#faculties_section .container .card_wrapper .row_group .shape.wave {
  margin-right: -16px;
  background-image: url("/asset/icon/wave.svg");
  width: calc(100% - 264px - 264px - 16px - 148px + 16px);
}
#faculties_section .container .card_wrapper .row_group .shape.star {
  background-size: 90%;
  width: calc(100% - 264px - 264px - 16px - 148px);
  background-image: url("/asset/icon/single-star.svg");
}
#faculties_section .container .card_wrapper .row_group .card {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
#faculties_section .container .card_wrapper .row_group .card::after {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}
#faculties_section .container .card_wrapper .row_group .card img {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
#faculties_section .container .card_wrapper .row_group .card .faculty_name_short {
  inset: 0;
  z-index: 1;
  margin: auto;
  width: 102px;
  height: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/shield.svg");
  font-size: 36px;
  font-weight: 900;
  line-height: 39px;
  text-transform: uppercase;
  color: var(--generic-white);
}
#faculties_section .container .card_wrapper .row_group .card .faculty_name_full {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0 auto;
  font-size: 16px;
  line-height: 19px;
  position: absolute;
  text-align: center;
  width: calc(100% - 32px);
  padding: 0 16px 10px 16px;
  color: var(--generic-white);
}
@media screen and (min-width: 580px) {
  #faculties_section .container .card_wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #faculties_section .container .card_wrapper .row_group .card {
    width: 264px;
  }
}
@media screen and (min-width: 880px) {
  #faculties_section .container .card_wrapper .row_group {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #faculties_section .container .card_wrapper .row_group .shape {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  #faculties_section .container {
    gap: 24px;
    -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;
  }
  #faculties_section .container .card_wrapper {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media screen and (min-width: 1400px) {
  #faculties_section .container .card_wrapper {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#fact_section {
  background-color: var(--light-col-1);
}
#fact_section .content_container {
  margin-top: 64px;
}
#fact_section .content_container .image_box {
  max-width: 320px;
  width: 100%;
  height: 278px;
  position: relative;
  margin: 0 auto;
}
#fact_section .content_container .image_box::before {
  top: 0px;
  left: 0px;
  content: "";
  width: 74px;
  height: 52px;
  z-index: 0;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/dots-square.svg");
}
#fact_section .content_container .image_box::after {
  top: 28px;
  left: 36px;
  content: "";
  width: 140px;
  height: 140px;
  z-index: 1;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/circle.svg");
}
#fact_section .content_container .image_box .image_one, #fact_section .content_container .image_box .image_two {
  position: absolute;
  background-color: var(--generic-white);
  -webkit-filter: drop-shadow(var(--shadow-4));
          filter: drop-shadow(var(--shadow-4));
  overflow: hidden;
  border: 8px solid var(--generic-white);
  border-radius: 16px;
  clip-path: polygon(0 0, 100% 4%, 100% 95%, 0% 100%);
  aspect-ratio: 1;
}
#fact_section .content_container .image_box .image_one img, #fact_section .content_container .image_box .image_two img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  clip-path: inherit;
  aspect-ratio: inherit;
}
#fact_section .content_container .image_box .image_one {
  width: 192px;
  height: 260px;
  top: 0;
  right: 0;
  z-index: 2;
}
#fact_section .content_container .image_box .image_two {
  width: 156px;
  height: 138px;
  left: 0;
  bottom: 24px;
  z-index: 3;
}
#fact_section .content_container .card_box {
  gap: 32px;
  display: grid;
  margin-top: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
}
#fact_section .content_container .card_box .card {
  margin: 24px 0 0 24px;
  position: relative;
}
#fact_section .content_container .card_box .card::before {
  content: "";
  z-index: 1;
  top: -24px;
  left: -24px;
  width: 64px;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  background-color: var(--generic-white);
  border: 1px solid var(--gray-col-1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}
#fact_section .content_container .card_box .card.academic::before {
  background-image: url("/asset/icon/fact/academic.png");
}
#fact_section .content_container .card_box .card.faculties::before {
  background-image: url("/asset/icon/fact/faculty.webp");
}
#fact_section .content_container .card_box .card.graduates::before {
  background-image: url("/asset/icon/fact/graduation.webp");
}
#fact_section .content_container .card_box .card.scollership::before {
  background-image: url("/asset/icon/fact/scollership.webp");
}
#fact_section .content_container .card_box .card .content {
  width: 264px;
  height: 192px;
  border-radius: 16px;
  background-color: var(--generic-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#fact_section .content_container .card_box .card .content .number {
  font-size: 62px;
  font-weight: 700;
  line-height: 70px;
  color: var(--brand-col-1);
}
#fact_section .content_container .card_box .card .content .name {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: var(--brand-col-2);
}
@media screen and (min-width: 640px) {
  #fact_section .content_container .card_box {
    gap: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 744px) {
  #fact_section .content_container .image_box {
    max-width: unset;
    width: 604px;
    height: 472px;
  }
  #fact_section .content_container .image_box::before {
    top: 48px;
    left: 48px;
    width: 112px;
    height: 96px;
  }
  #fact_section .content_container .image_box::after {
    top: 82px;
    left: 82px;
    width: 334px;
    height: 334px;
  }
  #fact_section .content_container .image_box .image_one, #fact_section .content_container .image_box .image_two {
    border-radius: 16px;
  }
  #fact_section .content_container .image_box .image_one img, #fact_section .content_container .image_box .image_two img {
    border-radius: 10px;
  }
  #fact_section .content_container .image_box .image_one {
    width: 364px;
    height: 460px;
  }
  #fact_section .content_container .image_box .image_two {
    width: 256px;
    height: 238px;
    bottom: 24px;
  }
  #fact_section .content_container .card_box {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
  #fact_section .content_container .card_box .card {
    margin: 32px 0 0 32px;
    position: relative;
  }
  #fact_section .content_container .card_box .card::before {
    top: -32px;
    left: -32px;
    width: 82px;
    height: 82px;
  }
  #fact_section .content_container .card_box .card .content {
    width: 280px;
    height: 220px;
    border-radius: 16px;
  }
  #fact_section .content_container .card_box .card .content .number {
    font-size: 72px;
    line-height: 80px;
  }
  #fact_section .content_container .card_box .card .content .name {
    font-size: 20px;
    line-height: 23px;
  }
}
@media screen and (min-width: 1340px) {
  #fact_section .content_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #fact_section .content_container .image_box {
    margin: unset;
    max-width: unset;
    width: 604px;
    height: 472px;
  }
  #fact_section .content_container .image_box::before {
    top: 48px;
    left: 48px;
    width: 112px;
    height: 96px;
  }
  #fact_section .content_container .image_box::after {
    top: 82px;
    left: 82px;
    width: 334px;
    height: 334px;
  }
  #fact_section .content_container .image_box .image_one, #fact_section .content_container .image_box .image_two {
    border-radius: 16px;
  }
  #fact_section .content_container .image_box .image_one img, #fact_section .content_container .image_box .image_two img {
    border-radius: 10px;
  }
  #fact_section .content_container .image_box .image_one {
    width: 364px;
    height: 460px;
  }
  #fact_section .content_container .image_box .image_two {
    width: 256px;
    height: 238px;
    bottom: 24px;
  }
  #fact_section .content_container .card_box {
    max-width: unset;
    margin-top: unset;
    margin-left: unset;
    margin-right: unset;
    grid-template-columns: repeat(2, 1fr);
  }
}

#testimonial_carousel {
  color: var(--generic-white);
}
#testimonial_carousel .content_wrapper {
  gap: 48px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
  -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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#testimonial_carousel .content_wrapper .image_box {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 324px;
  height: 424px;
}
#testimonial_carousel .content_wrapper .image_box::before {
  z-index: 0;
  content: "";
  right: 0;
  bottom: 0;
  position: absolute;
  border-radius: 48px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background-color: var(--brand-col-1);
}
#testimonial_carousel .content_wrapper .image_box .image {
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  width: calc(100% - 24px - 8px);
  height: calc(100% - 24px - 8px);
  border: 4px solid var(--generic-white);
  background-color: var(--generic-white);
}
#testimonial_carousel .content_wrapper .image_box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#testimonial_carousel .content_wrapper .image_box .image img.animation {
  -webkit-animation: fade 1500ms forwards;
          animation: fade 1500ms forwards;
}
#testimonial_carousel .content_wrapper .content {
  max-width: 668px;
  width: 100%;
}
#testimonial_carousel .content_wrapper .content .message {
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
  position: relative;
  padding-top: 74px;
}
#testimonial_carousel .content_wrapper .content .message span {
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  min-height: 56px;
}
#testimonial_carousel .content_wrapper .content .message::before {
  top: 0;
  left: 0;
  content: "";
  width: 64px;
  height: 64px;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/quote.svg");
}
#testimonial_carousel .content_wrapper .content .line {
  width: 100%;
  margin: 32px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#testimonial_carousel .content_wrapper .content .line .highlight_bar {
  left: 0;
  height: 4px;
  width: 100px;
  bottom: -2.5px;
  border-radius: 4px;
  position: absolute;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  background-color: var(--brand-col-3);
}
#testimonial_carousel .content_wrapper .content .person_info .name {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
}
#testimonial_carousel .content_wrapper .content .person_info .name.animation {
  -webkit-animation: fade 1500ms forwards;
          animation: fade 1500ms forwards;
}
#testimonial_carousel .content_wrapper .content .person_info .department {
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  margin-top: 4px;
}
#testimonial_carousel .content_wrapper .content .person_info .department.animation {
  -webkit-animation: fade 1500ms forwards;
          animation: fade 1500ms forwards;
}
#testimonial_carousel .content_wrapper .content .btn_wrapper {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
}
#testimonial_carousel .content_wrapper .content .btn_wrapper .previous, #testimonial_carousel .content_wrapper .content .btn_wrapper .next {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: #234579;
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/line-arrow.svg");
}
#testimonial_carousel .content_wrapper .content .btn_wrapper .previous {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 820px) {
  #testimonial_carousel .content_wrapper {
    margin-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #testimonial_carousel .content_wrapper .content {
    margin-top: 96px;
    width: calc(100% - 444px);
  }
}
@media screen and (min-width: 980px) {
  #testimonial_carousel .content_wrapper .image_box {
    max-width: 396px;
    height: 508px;
  }
  #testimonial_carousel .content_wrapper .image_box::before {
    border-radius: 48px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
  }
  #testimonial_carousel .content_wrapper .image_box .image {
    border-radius: 24px;
    width: calc(100% - 48px - 8px);
    height: calc(100% - 48px - 8px);
  }
  #testimonial_carousel .content_wrapper .content {
    margin-top: 0;
  }
  #testimonial_carousel .content_wrapper .content .message {
    font-size: 19px;
    line-height: 28px;
    padding-top: 80px;
  }
  #testimonial_carousel .content_wrapper .content .message::before {
    width: 72px;
    height: 72px;
  }
}

#testimonial_section {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("/asset/image/testimonial-bg.webp");
}
#testimonial_section .content_container {
  padding-top: 128px;
  padding-bottom: 128px;
  height: calc(100% - 256px);
}
#testimonial_section .content_container [data-attr=section-title] {
  padding-left: 0;
}
#testimonial_section .content_container [data-attr=section-title] .title .general_word, #testimonial_section .content_container [data-attr=section-title] .title .pointer_word {
  color: var(--generic-white);
}
@media screen and (min-width: 820px) {
  #testimonial_section .content_container {
    padding-top: 224px;
    padding-bottom: 224px;
  }
  #testimonial_section .content_container [data-attr=section-title] {
    margin-bottom: -76px;
    margin-top: 32px;
  }
}

.instructor_card {
  width: 100%;
  max-width: 282px;
}
.instructor_card:nth-child(odd) .image {
  background-image: url("/asset/icon/instructor-bg-odd.svg");
}
.instructor_card:nth-child(even) .image {
  background-image: url("/asset/icon/instructor-bg-even.svg");
}
.instructor_card:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.instructor_card .image {
  width: 100%;
  height: 308px;
  overflow: hidden;
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}
.instructor_card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.instructor_card .info_box {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.instructor_card .info_box .info {
  width: calc(100% - 64px);
}
.instructor_card .info_box .info .name {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}
.instructor_card .info_box .info .designation {
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
}
.instructor_card .info_box .btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: 40%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--light-col-1);
  background-image: url("/asset/icon/right-arrow-gray.svg");
}
.instructor_card .info_box .btn:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-image: url("/asset/icon/right-arrow.svg");
}
@media screen and (min-width: 860px) {
  .instructor_card {
    max-width: 320px;
  }
  .instructor_card .image {
    height: 386px;
  }
}

#instructor_section [data-attr=section-title] {
  gap: 32px;
  width: calc(100% - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#instructor_section [data-attr=section-title] bitl-button {
  margin-left: auto;
}
#instructor_section .content_container {
  gap: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 648px) {
  #instructor_section .content_container {
    margin-top: 96px;
  }
}

#join_us_section {
  z-index: 1;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#join_us_section .content_container {
  z-index: 0;
  overflow: hidden;
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  min-height: 112px;
  background-color: var(--brand-col-1);
  background-size: 300% 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image: url("/asset/icon/bg-line.png");
}
#join_us_section .content_container::before {
  top: 0;
  z-index: 0;
  left: 32px;
  content: "";
  width: 142px;
  height: 142px;
  position: absolute;
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/leaf.svg");
}
#join_us_section .content_container::after {
  right: 0;
  z-index: 0;
  content: "";
  width: 112px;
  height: 96px;
  bottom: -44px;
  position: absolute;
  background-color: #48D8FD;
  border-top-left-radius: 100%;
}
#join_us_section .content_container .content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1240px;
}
#join_us_section .content_container .content [data-attr=section-title] {
  margin-right: unset;
}
#join_us_section .content_container .content [data-attr=section-title] .title {
  color: var(--generic-white);
}
#join_us_section .content_container .content [data-attr=section-title] .title br {
  display: none;
}
#join_us_section .content_container .content [data-attr=section-title] .title .pointer_word {
  color: var(--generic-white);
}
#join_us_section .content_container .content .info {
  padding: 0 16px;
  margin: 48px 0 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#join_us_section .content_container .content .info .text {
  font-weight: 300;
  max-width: 400px;
  color: var(--generic-white);
}
#join_us_section .content_container .content .info bitl-button {
  margin-top: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --fill-btn-bg-col: var(--generic-white);
  --fill-btn-text-col: var(--brand-col-1);
  --btn-padding-xl: 12px;
  --btn-padding-xr: 16px;
  --btn-padding-y-lg: 9px;
  --btn-padding-y-sm: 8px;
  --btn-icon-size: 24px;
  --btn-border-radius: 8px;
}
@media screen and (min-width: 520px) {
  #join_us_section .content_container {
    background-size: 200% 100%;
  }
  #join_us_section .content_container .content {
    padding: 0 24px;
    width: calc(100% - 48px);
    max-width: 1192px;
  }
  #join_us_section .content_container .content [data-attr=section-title] .title br {
    display: block;
  }
  #join_us_section .content_container .content .info {
    margin: 48px 0 0 auto;
  }
}
@media screen and (min-width: 980px) {
  #join_us_section .content_container {
    background-size: 90% 100%;
  }
  #join_us_section .content_container .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #join_us_section .content_container .content .info {
    padding: 0 0;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  #join_us_section .content_container .content {
    padding: 0;
    width: 100%;
    max-width: 1240px;
  }
  #join_us_section .content_container .content .info {
    margin-right: 0 120px 0 auto;
  }
}

.news_card {
  padding: 8px 8px 48px 8px;
  position: relative;
  border-radius: 16px;
  width: 374px;
  overflow: hidden;
  background-color: var(--generic-white);
}
.news_card .image {
  width: 100%;
  height: 344px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.news_card .image .tag {
  top: 16px;
  left: 16px;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  padding: 11px 24px;
  position: absolute;
  border-radius: 24px;
  text-transform: uppercase;
  color: var(--brand-col-1);
  background-color: rgba(255, 255, 255, 0.7);
}
.news_card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news_card .info_box {
  padding: 16px;
}
.news_card .info_box .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  overflow: hidden;
  white-space: initial;
  display: -webkit-box;
  text-decoration: none;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.news_card .additional_info {
  left: 24px;
  bottom: 24px;
  position: absolute;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#news_section {
  background-color: var(--light-col-1);
}
#news_section .spacing {
  margin: 196px 0 96px;
}
#news_section .spacing .content_container {
  gap: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 64px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#map_section {
  padding-bottom: 0;
  margin-bottom: -8px;
}
#map_section .content_container {
  margin-top: 64px;
}
#map_section .content_container .map {
  width: 100%;
  height: 452px;
}
@media screen and (min-width: 1200px) {
  #map_section .content_container .map {
    height: 652px;
  }
}

[data-attr=home-page] #join_us_section {
  margin-bottom: -152px;
}