@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  background-color: #fff;
}

.sec-pad {
  padding: 0px 160px;
}
@media (max-width: 1024px) {
  .sec-pad {
    padding: 0px 80px;
  }
}
@media (max-width: 768px) {
  .sec-pad {
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .sec-pad {
    padding: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-white {
  color: #FFFFFF;
}

.text-theme-primary {
  color: #125192;
}

.text-theme-secondary {
  color: #105292;
}

.text--dark {
  color: #020203;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fs--14 {
  font-size: 14px;
}

.fs--12 {
  font-size: 12px;
}

.list--bullet {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}
.list--bullet span {
  margin-left: -5px;
}
.list--bullet.bullet-blue li::marker {
  color: #125192;
}
.list--bullet.bullet-dark li::marker {
  color: #020203;
}

.mb--6 {
  margin-bottom: 6px;
}

.mb--10 {
  margin-bottom: 10px;
}

.nav {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: end;
  align-items: center;
  position: fixed;
  z-index: 99;
  padding: 40px 160px 0 0;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.nav .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 2;
}
.nav .hamburger span {
  height: 3px;
  width: 25px;
  background: #02255f;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .nav {
    padding: 40px 80px 0 0;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 16px;
  }
  .nav ul {
    opacity: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #02255f;
    padding-top: 60px;
    padding-bottom: 30px;
    gap: 25px;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav ul li {
    text-align: center;
  }
  .nav ul li a {
    color: #ffffff !important;
  }
  .nav ul.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav .hamburger {
    display: flex;
  }
  .nav .hamburger.active span {
    background: #ffffff !important;
  }
  .nav .hamburger.active span:first-child {
    margin-bottom: -7px;
  }
  .nav .hamburger.active span:last-child {
    margin-top: -7px;
  }
}
.nav.active ul li a {
  color: #125192;
}
.nav.active .hamburger span {
  background: #125192;
}

.fp-watermark {
  display: none;
}

.sec-home {
  background-image: url("../asset/image/home/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}
.sec-home .home-hero {
  width: 90%;
  max-width: 676px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, 0);
}
.sec-home .home-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec-home .home-hero.step-1 {
  animation: home-hero-step-1 1.3s cubic-bezier(0.28, 0.84, 0.42, 1) forwards;
}
.sec-home .home-hero.step-2 {
  animation: home-hero-step-2 1.3s cubic-bezier(0.28, 0.84, 0.42, 1) forwards;
}
@keyframes home-hero-step-1 {
  0% {
    transform: translate(-50%, 0);
  }
  60% {
    transform: translate(-50%, -21%);
  }
  100% {
    transform: translate(-50%, -20%);
  }
}
@keyframes home-hero-step-2 {
  0% {
    transform: translate(-50%, -25%);
  }
  100% {
    transform: translate(-50%, -135%);
  }
}
.sec-home .backdrop {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: multiply;
  z-index: 2;
}
.sec-home .backdrop.show {
  opacity: 0.9;
}
.sec-home .gene {
  width: 140%;
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translateX(-50%);
}
.sec-home .gene.step-1 {
  animation: gene-step-1 1.3s cubic-bezier(0.28, 0.84, 0.42, 1) forwards;
}
.sec-home .gene.step-2 {
  animation: gene-step-2 1.3s cubic-bezier(0.28, 0.84, 0.42, 1) forwards;
}
@keyframes gene-step-1 {
  0% {
    top: 80%;
  }
  60% {
    top: 57%;
    width: 124%;
  }
  100% {
    top: 58%;
    width: 125%;
  }
}
@keyframes gene-step-2 {
  0% {
    top: 60%;
    width: 125%;
  }
  100% {
    top: 7%;
    width: 100%;
  }
}
.sec-home .home-text {
  width: 90%;
  max-width: 660px;
  position: absolute;
  bottom: 45px;
  opacity: 0;
}
.sec-home .home-text .line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(153, 153, 153) 100%);
  margin: 28px 0px 25px 0px;
}
.sec-home .home-text .animate__bounceInLeft {
  --animate-duration: 1.3s;
}
.sec-home .home-text .delay-1 {
  animation-delay: 0s;
}
.sec-home .home-text .delay-2 {
  animation-delay: 0.02s;
}
.sec-home .home-text .delay-3 {
  animation-delay: 0.03s;
}
.sec-home .home-text.show {
  opacity: 1;
}
@media (max-width: 768px) {
  .sec-home {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 30px;
  }
  .sec-home .home-hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    left: unset;
    bottom: unset;
    transform: unset;
  }
  .sec-home .home-hero.step-1, .sec-home .home-hero.step-2 {
    animation: none;
  }
  .sec-home .gene {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    margin-bottom: 3rem;
  }
  .sec-home .gene.step-1, .sec-home .gene.step-2 {
    animation: none;
  }
  .sec-home .backdrop {
    display: none !important;
  }
  .sec-home .home-text {
    opacity: 1;
    position: relative;
    bottom: unset;
  }
}
@media (max-width: 425px) {
  .sec-home .home-hero {
    width: 90%;
    min-width: unset;
  }
}

.sec-2 {
  min-height: 100dvh;
  background-image: url("../asset/image/sec_2/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.sec-2 .sec-2-inner {
  width: 100%;
  display: flex;
  justify-content: end;
  padding-top: 100px;
}
.sec-2 .sec-2-text {
  text-align: right;
}

.sec-3 .sec-horizontal-inner {
  background: url("../asset/image/sec_3/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec-3 .sec-3-inner-blog {
  width: 100%;
  min-width: 2290px;
  height: 100%;
  display: flex;
}
.sec-3 .sec-3-inner-blog .text-blog-1,
.sec-3 .sec-3-inner-blog .text-blog-2 {
  color: #fff;
  line-height: 1.3;
  position: relative;
}
.sec-3 .sec-3-inner-blog .text-blog-1 {
  width: 534px;
  padding: 22px 16px;
  display: flex;
}
.sec-3 .sec-3-inner-blog .text-blog-1 div:first-child {
  padding-top: 20px;
  flex: 1;
}
.sec-3 .sec-3-inner-blog .text-blog-1 div:last-child {
  flex: 2;
}
.sec-3 .sec-3-inner-blog .text-blog-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(18, 81, 146, 0.77);
  mix-blend-mode: multiply;
}
.sec-3 .sec-3-inner-blog .col {
  height: 100%;
  position: relative;
}
.sec-3 .sec-3-inner-blog .col--1 .side-blog {
  width: 446px;
  height: 100%;
  background-color: rgba(18, 81, 146, 0.77);
  padding: 48px 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.sec-3 .sec-3-inner-blog .col--1 .side-blog .line {
  width: 100%;
  height: 1px;
  background: #fff;
}
.sec-3 .sec-3-inner-blog .col--2 {
  padding: 88px 0 0 42px;
}
.sec-3 .sec-3-inner-blog .col--2 .text-blog-1 {
  background: linear-gradient(120deg, rgba(106, 147, 205, 0) 0%, rgba(79, 126, 187, 0.06) 10%, rgba(57, 110, 172, 0.12) 30%, rgba(39, 97, 160, 0.18) 40%, rgba(27, 88, 152, 0.21) 60%, rgba(20, 82, 147, 0.24) 70%, rgba(18, 81, 146, 0.24) 100%);
}
.sec-3 .sec-3-inner-blog .col--3 {
  padding: 120px 0 0 130px;
}
.sec-3 .sec-3-inner-blog .col--3 .text-blog-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(108, 147, 204, 0) 0%, rgba(80, 126, 186, 0.2) 10%, rgba(57, 110, 171, 0.4) 30%, rgba(40, 97, 160, 0.6) 40%, rgba(27, 88, 152, 0.7) 60%, rgba(20, 82, 147, 0.8) 70%, rgba(18, 81, 146, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: 60% 100%;
  background-position: right;
  opacity: 0.5;
}
.sec-3 .sec-3-inner-blog .col--3 .text-blog-1 div {
  z-index: 2;
}
.sec-3 .sec-3-inner-blog .col--4 {
  padding-top: 88px;
}
.sec-3 .sec-3-inner-blog .col--4 .text-blog-2 p {
  position: relative;
  z-index: 2;
}
.sec-3 .sec-3-inner-blog .col--4 .text-blog-2:first-child {
  width: 356px;
  padding: 32px 0 40px 32px;
  position: absolute;
  top: 35%;
  left: 15%;
}
.sec-3 .sec-3-inner-blog .col--4 .text-blog-2:last-child {
  width: 460px;
  text-align: center;
  padding: 38px 20px;
  position: absolute;
  bottom: 0;
  left: -50%;
}
@media (max-width: 1100px) {
  .sec-3 .sec-3-inner-blog {
    min-width: 1800px;
  }
  .sec-3 .sec-3-inner-blog .col--1 .side-blog {
    width: 300px;
    padding: 24px;
  }
  .sec-3 .sec-3-inner-blog .col--2,
  .sec-3 .sec-3-inner-blog .col--3 {
    flex: 0;
  }
  .sec-3 .sec-3-inner-blog .col--3 {
    padding: 50px 0 0 30px;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2:first-child {
    left: -35%;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2:last-child {
    left: -100%;
  }
}
@media (max-width: 880px) {
  .sec-3 .sec-3-inner-blog {
    min-width: 1440px;
  }
  .sec-3 .sec-3-inner-blog .col--2 {
    padding-left: 10px;
  }
  .sec-3 .sec-3-inner-blog .col--3 .text-blog-1::before {
    background-size: 100%;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2:first-child {
    left: unset;
    right: 0;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2:last-child {
    left: unset;
    right: 0;
  }
  .sec-3 .sec-3-inner-blog .text-blog-1 {
    width: 350px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .sec-3 {
    min-height: 100dvh;
    height: -moz-fit-content;
    height: fit-content;
  }
  .sec-3 .sec-3-inner-blog {
    flex-direction: column;
    min-width: unset;
  }
  .sec-3 .sec-3-inner-blog .col:not(:first-child) {
    padding: 0 15px;
  }
  .sec-3 .sec-3-inner-blog .col--1 {
    margin-bottom: 16px;
  }
  .sec-3 .sec-3-inner-blog .col--1 .side-blog {
    width: 100%;
  }
  .sec-3 .sec-3-inner-blog .col--2,
  .sec-3 .sec-3-inner-blog .col--3 {
    margin-bottom: 16px;
  }
  .sec-3 .sec-3-inner-blog .col--2 .text-blog-1,
  .sec-3 .sec-3-inner-blog .col--3 .text-blog-1 {
    width: 100%;
  }
  .sec-3 .sec-3-inner-blog .col--2 .text-blog-1 div:first-child,
  .sec-3 .sec-3-inner-blog .col--3 .text-blog-1 div:first-child {
    padding-top: 0;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2 {
    width: 100% !important;
    position: relative !important;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2:first-child {
    left: 0 !important;
    margin-bottom: 16px;
  }
  .sec-3 .sec-3-inner-blog .col--4 .text-blog-2:last-child {
    left: 0 !important;
    margin-left: auto;
  }
}

.sec-4 .sec-horizontal-inner {
  background: url("../asset/image/sec_4/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  padding: 0 100px 0 42%;
}
.sec-4 .inner-blog {
  width: 2000px;
}
.sec-4 .inner-blog .col--2 .content-container {
  width: 450px;
}
.sec-4 .inner-blog .col--3 .content-container {
  width: 520px;
}
.sec-4 .inner-blog .float-blog .heading {
  background: url("../asset/image/sec_4/float_heading.png") no-repeat center/cover;
}
.sec-4 .inner-blog .float-blog .body {
  background: #02255F;
}
@media (max-width: 1024px) {
  .sec-4 .sec-horizontal-inner {
    padding: 0 16px;
  }
  .sec-4 .inner-blog {
    -moz-column-gap: 25px !important;
         column-gap: 25px !important;
  }
}
@media (max-width: 768px) {
  .sec-4 .sec-horizontal-inner {
    background-position: center;
  }
}

.sec-5 .sec-horizontal-inner {
  background: url("../asset/image/sec_5/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 100px 0 17%;
}
.sec-5 .inner-blog .col--1 {
  align-items: end;
  padding-bottom: 5%;
}
.sec-5 .inner-blog .col--2 .content-container,
.sec-5 .inner-blog .col--3 .content-container,
.sec-5 .inner-blog .col--4 .content-container {
  width: 450px;
}
.sec-5 .inner-blog .float-blog .heading {
  background: url("../asset/image/sec_5/float_heading.png") no-repeat center/cover;
}
.sec-5 .inner-blog .float-blog .body {
  position: relative;
}
.sec-5 .inner-blog .float-blog .body p {
  position: relative;
  z-index: 2;
}
.sec-5 .inner-blog .float-blog .body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #02255F;
  mix-blend-mode: multiply;
  z-index: 1;
}
@media (max-width: 1170px) {
  .sec-5 .sec-horizontal-inner {
    padding: 0 30px 0 30px;
  }
}
@media (max-width: 1024px) {
  .sec-5 .inner-blog .col--2 .content-container,
  .sec-5 .inner-blog .col--3 .content-container,
  .sec-5 .inner-blog .col--4 .content-container {
    width: 300px;
  }
  .sec-5 .inner-blog .float-blog {
    width: 300px !important;
  }
}
@media (max-width: 768px) {
  .sec-5 .sec-horizontal-inner {
    background-position: right;
  }
  .sec-5 .inner-blog .col--1 {
    padding-bottom: 0;
  }
  .sec-5 .inner-blog .col--2 .content-container,
  .sec-5 .inner-blog .col--3 .content-container,
  .sec-5 .inner-blog .col--4 .content-container {
    width: 100% !important;
  }
  .sec-5 .inner-blog .float-blog {
    width: 100% !important;
  }
}

.sec-6 .sec-horizontal-inner {
  background: url("../asset/image/sec_6/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 100px 0 10%;
}
.sec-6 .inner-blog .col--1 {
  align-items: end !important;
}
.sec-6 .inner-blog .col--2 .content-container,
.sec-6 .inner-blog .col--3 .content-container,
.sec-6 .inner-blog .col--4 .content-container {
  width: 450px;
}
.sec-6 .inner-blog .float-blog .heading {
  background: url("../asset/image/sec_6/float_heading.png") no-repeat center/cover;
}
.sec-6 .inner-blog .float-blog .body {
  position: relative;
}
.sec-6 .inner-blog .float-blog .body p {
  position: relative;
  z-index: 2;
}
.sec-6 .inner-blog .float-blog .body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #02255F;
  z-index: 1;
}
@media (max-width: 1080px) {
  .sec-6 .sec-horizontal-inner {
    padding: 0 30px 0 30px;
  }
  .sec-6 .inner-blog .col--2 .content-container,
  .sec-6 .inner-blog .col--3 .content-container,
  .sec-6 .inner-blog .col--4 .content-container {
    width: 400px;
  }
  .sec-6 .inner-blog .float-blog {
    width: 300px !important;
  }
}
@media (max-width: 768px) {
  .sec-6 .sec-horizontal-inner {
    background-position: center;
  }
  .sec-6 .inner-blog .col--2 .content-container,
  .sec-6 .inner-blog .col--3 .content-container,
  .sec-6 .inner-blog .col--4 .content-container {
    width: 100% !important;
  }
  .sec-6 .inner-blog .float-blog {
    width: 100% !important;
  }
}

.sec-7 .sec-horizontal-inner {
  background: url("../asset/image/sec_7/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 100px 0 10%;
}
.sec-7 .inner-blog .col--1 {
  align-items: end !important;
}
.sec-7 .inner-blog .col--2 .content-container,
.sec-7 .inner-blog .col--3 .content-container,
.sec-7 .inner-blog .col--4 .content-container {
  width: 450px;
}
.sec-7 .inner-blog .float-blog .heading {
  background: url("../asset/image/sec_7/float_heading.png") no-repeat center/cover;
}
.sec-7 .inner-blog .float-blog .body {
  position: relative;
}
.sec-7 .inner-blog .float-blog .body p {
  position: relative;
  z-index: 2;
}
.sec-7 .inner-blog .float-blog .body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #02255F;
  mix-blend-mode: multiply;
  z-index: 1;
}
@media (max-width: 1080px) {
  .sec-7 .sec-horizontal-inner {
    padding: 0 30px 0 30px;
  }
  .sec-7 .inner-blog .col--2 .content-container,
  .sec-7 .inner-blog .col--3 .content-container,
  .sec-7 .inner-blog .col--4 .content-container {
    width: 400px;
  }
  .sec-7 .inner-blog .float-blog {
    width: 300px !important;
  }
}
@media (max-width: 768px) {
  .sec-7 .sec-horizontal-inner {
    background-position: right;
  }
  .sec-7 .inner-blog .col--2 .content-container,
  .sec-7 .inner-blog .col--3 .content-container,
  .sec-7 .inner-blog .col--4 .content-container {
    width: 100% !important;
  }
  .sec-7 .inner-blog .float-blog {
    width: 100% !important;
  }
}

.sec-table {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.sec-table .wrapper {
  width: 100%;
  height: 100%;
  padding-top: 95px;
}
.sec-table .inner-heading {
  width: -moz-fit-content;
  width: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6px 22px;
  font-size: 26px;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 24px;
}
.sec-table .inner-body {
  margin-bottom: 24px;
  padding: 0px 60px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sec-table .inner-body .item-lists {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.sec-table .inner-body .item {
  width: 100%;
}
.sec-table .inner-body .item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec-table .inner-body ::-webkit-scrollbar {
  display: none;
}
.sec-table .inner-foot {
  display: flex;
  justify-content: center;
}
.sec-table .inner-foot button {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
}
@media (max-width: 825px) {
  .sec-table .inner-body {
    padding: 0 25px;
  }
  .sec-table .inner-body .item-lists {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
@media (max-width: 768px) {
  .sec-table .wrapper {
    padding: 16px;
  }
  .sec-table .inner-body {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .sec-table .inner-body .item-lists {
    flex-direction: column;
    row-gap: 16px;
  }
  .sec-table .inner-body .item-lists .item {
    min-width: unset;
    max-width: 400px;
  }
}

.sec-4-table {
  background: url("../asset/image/sec_4/bg_table.png");
}
.sec-4-table .inner-heading {
  background: url("../asset/image/sec_4/table_heading.png");
}
.sec-4-table .inner-body .item {
  min-width: 330px;
}
.sec-4-table .inner-foot button {
  color: #FFFFFF;
  background: linear-gradient(90deg, rgb(192, 178, 140) 0%, rgb(165, 140, 102) 100%);
}

.sec-5-table {
  background: url("../asset/image/sec_5/bg_table.png");
}
.sec-5-table .inner-heading {
  background: url("../asset/image/sec_5/table_heading.png");
}
.sec-5-table .inner-body .item-lists {
  margin: auto;
}
.sec-5-table .inner-body .item {
  min-width: 350px;
}
.sec-5-table .inner-foot button {
  color: #FFFFFF;
  background: linear-gradient(90deg, #c0bfbf 0%, #848585 100%);
}

.sec-6-table {
  background: url("../asset/image/sec_6/bg_table.png");
}
.sec-6-table .inner-heading {
  background: url("../asset/image/sec_6/float_heading.png");
}
.sec-6-table .inner-body .item-lists {
  margin: auto;
}
.sec-6-table .inner-body .item {
  min-width: 350px;
}
.sec-6-table .inner-foot button {
  color: #FFFFFF;
  background: linear-gradient(90deg, #0d548b 0%, #1e295d 100%);
}

.sec-7-table {
  background: url("../asset/image/sec_7/bg_table.png");
}
.sec-7-table .inner-heading {
  background: url("../asset/image/sec_7/float_heading.png");
}
.sec-7-table .inner-body .item-lists {
  margin: auto;
}
.sec-7-table .inner-body .item {
  min-width: 315px;
}
.sec-7-table .inner-foot button {
  color: #FFFFFF;
  background: linear-gradient(117deg, rgb(123, 185, 204) 0%, rgb(150, 196, 215) 46%, rgb(193, 215, 233) 73%, rgb(123, 185, 204) 100%);
}

.sec-8-table {
  background: url("../asset/image/sec_8/bg_table.png");
}
.sec-8-table .inner-heading {
  color: #125192;
  font-size: 36px;
}
.sec-8-table .inner-body .item-lists {
  margin: auto;
}
.sec-8-table .inner-body .item {
  min-width: 400px;
}
.sec-8-table .inner-foot button {
  color: #FFFFFF;
  background: linear-gradient(117deg, rgb(32, 39, 90) 0%, rgb(24, 64, 117) 50%, rgb(18, 87, 142) 70%, rgb(32, 39, 90) 100%);
}
@media (max-width: 920px) {
  .sec-8-table .inner-body {
    padding: 0px 25px;
  }
  .sec-8-table .inner-body .item-lists {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .sec-8-table .inner-body .item {
    min-width: 350px;
  }
}

.sec-9 {
  background-image: url("../asset/image/sec_9/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.sec-9 .wrapper {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: end;
  justify-content: end;
}
.sec-9 .text-blog {
  width: 100%;
  max-width: 566px;
  background: #02255F;
  padding: 36px 40px;
  font-size: 24px;
  color: #FFFFFF;
}

.sec-10 {
  background: #9EC4DB;
  background: linear-gradient(90deg, rgb(158, 196, 219) 0%, rgb(161, 196, 216) 14%, rgb(153, 191, 215) 38%, rgb(138, 185, 215) 68%, rgb(139, 184, 213) 100%);
}
.sec-10 .wrapper {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
}
.sec-10 .box {
  background: #D9D9D9;
  width: 100%;
  max-width: 970px;
  height: 495px;
}
.sec-10 .box iframe {
  width: 100%;
  height: 100%;
}

.sec-11 {
  background-image: url("../asset/image/sec_11/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  height: 100dvh;
}
.sec-11 .wrapper,
.sec-11 .fp-overflow {
  width: 100%;
  height: 100%;
}
.sec-11 .inner {
  width: 100%;
  height: 100%;
  padding-top: 95px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sec-11 .content-blog {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: end;
  color: #FFFFFF;
}
.sec-11 .content-blog .hero {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.sec-11 .content-blog .sub-title {
  font-size: 24px;
  font-weight: 600;
  padding-right: 14px;
  border-right: 10px solid #FFFFFF;
}
.sec-11 .btn-create {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  padding: 10px 40px;
  border-radius: 99px;
  background: #20275A;
  background: linear-gradient(114deg, rgb(32, 39, 90) 0%, rgb(31, 41, 92) 25%, rgb(28, 50, 102) 37%, rgb(24, 64, 117) 46%, rgb(18, 87, 142) 67%, rgb(32, 39, 90) 100%);
}
@media (max-width: 560px) {
  .sec-11 .content-blog .hero {
    font-size: 36px;
  }
  .sec-11 .content-blog .sub-title {
    font-size: 16px;
    border-right: 6px solid #FFFFFF;
  }
  .sec-11 .btn-create {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  .sec-11 .content-blog .hero {
    font-size: 24px;
  }
  .sec-11 .content-blog .sub-title {
    font-size: 14px;
    border-right: 6px solid #FFFFFF;
  }
  .sec-11 .btn-create {
    font-size: 18px;
  }
}

.content-container .text-box {
  padding-left: 14px;
}

.scroll-horizontal {
  width: 100%;
  height: 100%;
  overflow-x: auto;
}
.scroll-horizontal::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .scroll-horizontal {
    overflow-x: hidden;
  }
}

.sec-horizontal {
  height: 100%;
  overflow-x: hidden;
}
.sec-horizontal .fp-overflow {
  height: 100%;
  overflow-x: auto;
}

.sec-horizontal-inner {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  height: 100%;
  overflow-y: hidden;
}
.sec-horizontal-inner .inner-blog {
  height: 100%;
  display: flex;
  padding-top: 95px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.sec-horizontal-inner .inner-blog .col--1,
.sec-horizontal-inner .inner-blog .col--2,
.sec-horizontal-inner .inner-blog .col--3,
.sec-horizontal-inner .inner-blog .col--4 {
  display: flex;
  align-items: center;
}
.sec-horizontal-inner .inner-blog .float-blog {
  width: 480px;
}
.sec-horizontal-inner .inner-blog .float-blog .heading {
  padding: 6px 36px;
}
.sec-horizontal-inner .inner-blog .float-blog .body {
  padding: 26px 36px;
}
@media (max-width: 768px) {
  .sec-horizontal-inner {
    width: 100%;
    padding: 16px !important;
  }
  .sec-horizontal-inner .inner-blog {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .sec-horizontal-inner .inner-blog .float-blog .heading,
  .sec-horizontal-inner .inner-blog .float-blog .body {
    padding: 12px;
  }
  .sec-horizontal-inner .inner-blog .col--1 {
    margin-bottom: 16px;
    justify-content: center !important;
  }
  .sec-horizontal-inner .inner-blog .col--1,
  .sec-horizontal-inner .inner-blog .col--2,
  .sec-horizontal-inner .inner-blog .col--3,
  .sec-horizontal-inner .inner-blog .col--4,
  .sec-horizontal-inner .inner-blog .col--5 {
    width: 100%;
    max-width: 520px;
    justify-content: start;
  }
}