:root {
  /* Primary Colors */
  --primary-blue: #0086c9;
  --primary-dark-blue: #005096;
  --primary-light-blue: #0da8ff;
  --gradient-blue: linear-gradient(180deg, #0da8ff 0%, #005096 100%);
  --light-gray: #f2f4f7;
  --primary-lighter-blue: #e0f2fe;

  /* Neutral Colors */
  --text-gray: #344054;
  --text-light-gray: #475467;
  /* --text-lighter-gray: #5a6475; */
  /* --border-color: #d0d5dd; */
  --background-light: #f0f9ff;

  /* Font Sizes */
  --text-xs: 14px;
  --text-sm: 18px;
  --text-xsm: 20px;
  --text-md: 24px;
  --text-smd: 28px;
  --text-slg: 32px;
  --text-lg: 36px;
  --text-xl: 42px;
  --text-2xl: 48px;
  --text-3xl: 60px;

  /* Line Heights */
  --leading-small: 13.5px;
  --leading-xsm: 20px;
  --leading-xs: 22px;
  --leading-sm: 24px;
  --leading-normal: 28px;
  --leading-medium: 32px;
  --leading-lg: 38px;
  --leading-xlg: 40px;
  --leading-large: 60px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-slg: 18px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  --shadow-col: 0px 50px 12.5rem -40px rgba(0, 0, 0, 0.6);
  --shadow-btn: 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  --shadow-btn-1: 0px 12px 16px -4px rgba(16, 24, 40, 0.08);

  /* gap */
  --gap-primary: 32px;
  --gap-secondary: 16px;
  --gap-third: 18px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

body {
  width: 100%;
}

/* .app {

} */
.section {
  margin: 0 auto;
}

/* Font Faces */
@font-face {
  font-family: "FS-Regular";
  src: url("../font/FS_PFBeauSansPro-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "FS-Bold";
  src: url("../font/FS PFBeauSansPro-Bold.ttf") format("truetype");
  font-style: bold;
}

@font-face {
  font-family: "FS-SemiBold";
  src: url("../font/FS PFBeauSansPro-SemiBold.ttf") format("truetype");
  font-style: bold;
}

@font-face {
  font-family: "FS-Italic";
  src: url("../font/FS PFBeauSansPro-Italic.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: "FS-Bbook";
  src: url("../font/FS PFBeauSansPro-Bbook.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../font/Inter-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: bold;
}

/* Typography Utilities */
.font-Regular {
  font-family: "FS-Regular", sans-serif !important;
}

.font-SemiBold {
  font-family: "FS-SemiBold", sans-serif !important;
}

.font-Bold {
  font-family: "FS-Bold", sans-serif !important;
}

.font-Italic {
  font-family: "FS-Italic", sans-serif !important;
}

.font-Bbook {
  font-family: "FS-Bbook", sans-serif !important;
}
.font-Inter_Bold {
  font-family: "Inter-Bold", sans-serif !important;
}
ul {
  margin-bottom: 0;
}
.d-logo-pc {
  display: block;
}
.d-logo-mobile {
  display: none;
}

/* Buttons */
.base-button {
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    var(--primary-light-blue) 0%,
    var(--primary-dark-blue) 100%
  );
  box-shadow: var(--shadow-btn), var(--shadow-btn-1);
  text-decoration: none;
  border: none;
}
.base-button span {
  font-size: 16px;
}

.text-desc {
  font-size: var(--text-sm) !important;
  line-height: 28px;
}
.text-desc-2 {
  font-size: var(--text-sm) !important;
  line-height: 28px;
}

.title-base {
  font-size: var(--text-2xl) !important;
  line-height: 60px;
}

.title-base-2 {
  font-size: var(--text-2xl) !important;
  line-height: 60px;
}

.title-base-lg {
  font-size: var(--text-md) !important;
  line-height: 32px;
}

.title-base-lg-2 {
  font-size: var(--text-md) !important;
  line-height: 32px;
}

.title-base-lg-3 {
  font-size: var(--text-md) !important;
  line-height: 32px;
}

.base-button img {
  width: 40px;
  height: 40px;
  -webkit-mask-image: url("/assets/svg/contact.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/svg/contact.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

.base-button:focus,
.base-button:hover,
.banner__base__btn:hover .base-button {
  background: linear-gradient(
    90deg,
    var(--primary-dark-blue) 0%,
    var(--primary-light-blue) 100%
  ) !important;
  cursor: pointer;
}

.base-btn-icon {
  color: var(--primary-blue);
  max-width: 11.67px;
  max-height: 11.67px;
}

.base-button-link {
  transform: translateX(-8%);
  color: var(--primary-blue);
  position: relative;
  text-decoration: none;
}
.base-button-link span {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  letter-spacing: 0%;
  text-align: center;
}

.base-button-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.base-button-link:hover::after {
  width: 100%;
}

/* Inputs */
textarea::placeholder,
input::placeholder {
  font-family: "FS-Regular", sans-serif;
}

.__contact_form {
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-blue);
  padding: 20px;
  /* box-shadow: var(--shadow-col); */
  width: 100%;
  height: 100%;
  background-color: var(--bs-white);
}
.__contact_form_content {
  margin-top: 32px;
}

/* Breadcrumb */
.breadcrumb-link {
  font-size: var(--text-xs);
  line-height: var(--leading-xsm);
  letter-spacing: 0%;
}

.base-margin {
  margin-left: 2rem;
  margin-right: 2rem;
}

.base-padding-column {
  padding-top: 80px;
  padding-bottom: 80px;
}

.base-breadcrumb {
  margin-top: 5rem;
  margin-bottom: 38px;
}

.breadcrumb-item.active a {
  color: var(--primary-blue) !important;
}

.breadcrumb-item.active1 a {
  color: var(--primary-blue) !important;
  border-bottom: 2px solid var(--primary-blue) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #000;
}
.breadcrumb-item:nth-child(2)::before {
  color: var(--primary-blue);
}

/* Banner */
.banner__base {
  position: relative;
  background: linear-gradient(180deg, #f5fbfe 0%, #fff 100%);
  min-height: 551px;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner__base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../svg/banner.svg") center / cover no-repeat;
  z-index: 1;
}

.banner__base__global,
.banner__base__btn,
.banner__base__title,
.banner__base__description {
  position: relative;
  z-index: 2;
}

.banner__base__title {
  margin-bottom: 16px;
  line-height: var(--leading-large);
}

.banner__base__global {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  gap: 38px;
}

.banner__base__header__right,
.banner__base__header__left {
  flex: 1;
  height: 333px;
}

.banner__base__description {
  color: #5a6475;
}

.banner__base__header__right {
  border-radius: var(--radius-lg);
}
.banner__base__header__right img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__base__btn {
  margin-top: 47px;
}
.banner__base__btn .base-button img {
  background: var(--gradient-blue);
}

.banner__color {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.base_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--radius-xl);
  padding: 32px;
}
.base_block img {
  min-width: 60px;
  min-height: 60px;
  border-radius: 10px;
}
.base_hr {
  background-color: rgba(166, 170, 172, 0.2);
  height: 1px;
}

.base_layout {
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
}

.page--custom {
  padding-top: 32px;
}

.page--custom__list {
  display: flex;
  gap: 10px;
}

.page--custom__list .page-item:first-child a,
.page--custom__list .page-item:last-child a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50% !important;
  border: 1px solid var(--primary-blue);
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
}

.page--custom__list .page-item:first-child:hover a,
.page--custom__list .page-item:last-child:hover a {
  color: var(--bs-white);
}

.page--custom__list .page-item:not(:first-child):not(:last-child) a {
  border: none !important;
  border-radius: 0 !important;
}

.page--custom__list .page-item a img {
  width: 26px;
  height: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.page--custom__list .page-item {
  margin: 0 !important;
  padding: 0 !important;
}

.page--custom__list .page-item a {
  border-radius: 3px !important;
  color: #000;
}
.page-item.active a,
.page--custom__list .page-item:hover a {
  background-color: var(--primary-blue);
  color: var(--bs-white);
  border-color: var(--primary-blue);
}

.page--custom__list .page-item:first-child .page-link:hover img,
.page--custom__list .page-item:last-child .page-link:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}
.page--custom__list .page-item:not(:first-child):not(:last-child) .page-link {
  border-color: transparent;
}

@media (max-width: 991px) and (min-width: 769px) {
  .banner__base__global {
    flex-direction: column;
  }
  .banner__base__header__right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .title-base {
    font-size: var(--text-smd) !important;
    line-height: 38px;
  }
  .title-base-2 {
    font-size: var(--text-smd) !important;
    line-height: 40px;
  }
  .title-base-lg {
    font-size: var(--text-sm) !important;
    line-height: 32px;
  }
  .title-base-lg-2 {
    font-size: var(--text-sm) !important;
    line-height: 28px;
  }

  .title-base-lg-3 {
    font-size: var(--text-xsm) !important;
    line-height: 32px;
  }

  .text-desc {
    font-size: var(--text-xs) !important;
    line-height: 28px;
  }
  .text-desc-2 {
    font-size: var(--text-xs) !important;
    line-height: 22px;
  }

  .d-logo-mobile {
    display: block;
  }
  .d-logo-pc {
    display: none;
  }

  .banner__base {
  }

  .base-button span {
    font-size: var(--text-xs);
  }

  .base-button img {
    width: 30px;
    height: 30px;
  }

  .base-button-link span {
    font-size: var(--text-xs);
    line-height: var(--leading-sm);
    letter-spacing: 0%;
    text-align: center;
  }
  .base-btn-icon {
    width: 20px;
    height: 20px;
  }
  .__contact_form {
    min-width: 100%;
    margin: 0 auto;
  }
  .base-margin {
    margin-left: 0;
    margin-right: 0;
  }
  .base-padding-column {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .base-breadcrumb {
    margin-top: 48px;
    margin-bottom: 24px;
  }
  .banner__base__global {
    flex-direction: column;
    gap: var(--gap-secondary);
    margin-bottom: 32px;
  }

  .banner__base__header__right,
  .banner__base__header__left {
    width: 100%;
  }
  .banner__base__title {
    line-height: var(--leading-xlg);
    margin-bottom: 16px;
    max-width: 315px;
  }

  .banner__base__btn {
    margin-top: 18px;
  }
  .banner__base__header__right {
    height: 192.94px;
  }

  .base_block {
    gap: var(--gap-third);
    padding: 24px;
  }
  .base_block img {
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
  }
  .base_layout {
    padding: 0 16px;
  }
  .__contact_form_content {
    margin-top: 18px;
  }
}
