@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy.eot");
  src: url("../fonts/SVN-Gilroy.eot?#iefix") format("embedded-opentype"), url("../fonts/SVN-Gilroy.woff2") format("woff2"), url("../fonts/SVN-Gilroy.woff") format("woff"), url("../fonts/SVN-Gilroy.ttf") format("truetype"), url("../fonts/SVN-Gilroy.svg#SVN-Gilroy") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Michroma";
  src: url("../fonts/Michroma.eot");
  src: url("../fonts/Michroma.eot?#iefix") format("embedded-opentype"), url("../fonts/Michroma.woff2") format("woff2"), url("../fonts/Michroma.woff") format("woff"), url("../fonts/Michroma.ttf") format("truetype"), url("../fonts/Michroma.svg#Michroma") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tele-Marines";
  src: url("../fonts/Tele-Marines.eot");
  src: url("../fonts/Tele-Marines.eot?#iefix") format("embedded-opentype"), url("../fonts/Tele-Marines.woff2") format("woff2"), url("../fonts/Tele-Marines.woff") format("woff"), url("../fonts/Tele-Marines.ttf") format("truetype"), url("../fonts/Tele-Marines.svg#Tele-Marines") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lostgun";
  src: url("../fonts/Lostgun-Regular.eot");
  src: url("../fonts/Lostgun-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Lostgun-Regular.woff2") format("woff2"), url("../fonts/Lostgun-Regular.woff") format("woff"), url("../fonts/Lostgun-Regular.ttf") format("truetype"), url("../fonts/Lostgun-Regular.svg#Lostgun-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-title: "Bai Jamjuree", serif;
  --font-body: "SVN-Gilroy";
  --font-number: "Michroma";
  --font-number-2: "Tele-Marines";
  --font-Lostgun: "Lostgun";
  --width-container: 1190px;
  --color-blue:#070A29;
  --color-purple: #AD8AFE;
  --color-grad: linear-gradient(91.99deg, #7347F5 1.68%, #FBCDFF 68.97%);
  --color-grad-2: linear-gradient(90deg, #6131F9 -15.55%, #B694FF 107.27%);
  --color-rad: radial-gradient(61.41% 245.62% at 45.86% 50%, #AC9BF1 0%, #DCAEF6 38.5%, #DEB0F9 61%, #FFFFFF 79%, #B4E2FD 99%);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-blue);
}

.segTitle {
  font-size: 2rem;
  font-family: var(--font-title);
}
.segTitle span {
  background: var(--color-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .segTitle {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
}

.p-left-section {
  padding-left: calc((100% - var(--width-container)) / 2);
}

.container_frame {
  max-width: var(--width-container);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container_frame {
    max-width: 100% !important;
    padding: 15px;
  }
}

.btn_primary, .btn_white {
  background: var(--color-grad-2);
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-title);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  overflow: hidden;
}
.btn_primary::after, .btn_white::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-grad);
  transition: height 0.75s ease;
}
.btn_primary:hover::after, .btn_white:hover::after {
  height: 100%;
}
.btn_primary:hover span, .btn_white:hover span {
  color: var(--color-blue);
}
.btn_primary span, .btn_white span {
  position: relative;
  z-index: 1;
}

.btn_white {
  color: var(--color-blue);
  background: #fff;
}
.btn_white::after {
  background: var(--color-grad);
}

.text_gradient {
  background: var(--color-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header {
  background: var(--color-blue);
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}
.header .content_header {
  justify-content: space-between;
  align-items: center;
}
.header .menu_header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header .menu_header .menu li.current-menu-item a, .header .menu_header .menu li:hover a {
  background: var(--color-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .menu_header .menu a {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.125rem;
  padding: 1.875rem 1rem;
  transition: all 0.5s ease;
}
.header.change .menu li a {
  padding: 1rem 1rem;
}
@media (max-width: 767px) {
  .header .menu_header {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: var(--color-blue);
    z-index: 9999;
    transform: translateX(100%);
    transition: all 0.5s ease;
  }
  .header .menu_header.open {
    transform: translateX(0);
  }
  .header .menu_header .menu {
    flex-flow: column;
    height: 100%;
  }
  .header .menu_header .menu a {
    padding: 0.875rem 1rem;
  }
}

.animated-icon1 {
  display: none;
  margin-top: 0;
  width: 44px;
  height: 44px;
  /* height: 0; */
  transform: rotate(0deg);
  transition: all 0.5s ease;
  cursor: pointer;
  z-index: 999999;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.animated-icon1 span {
  display: block;
  /* position: absolute; */
  height: 1px;
  width: 14px;
  border-radius: 8px;
  opacity: 1;
  /* left: 0; */
  transform: rotate(0deg);
  transition: all 0.5s ease;
  background: #fff;
  margin: 2px 0;
}
.animated-icon1.open span:nth-child(1) {
  transform: rotate(135deg);
  margin: -8px 0;
}
.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -50px;
}
.animated-icon1.open span:nth-child(3) {
  transform: rotate(-135deg);
}
@media (max-width: 767px) {
  .animated-icon1 {
    display: flex;
  }
}

.bannerAbout img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .bannerAbout img {
    height: 40vh;
  }
}

.contentAbout {
  padding: 5.625rem 0;
  color: #fff;
}
.contentAbout .segTitle {
  display: flex;
  flex-flow: column;
  margin-bottom: 1.43rem;
  font-weight: 600;
}
.contentAbout .gallery_about {
  gap: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.25rem;
}
.contentAbout .gallery_about .img_gallery {
  width: calc(33.3333333333% - 1.875rem);
  border-radius: 20px;
  aspect-ratio: 370/180;
  flex: 0 0 calc(33.3333333333% - 1.875rem);
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .contentAbout {
    padding: 2.625rem 0;
    text-align: center;
  }
  .contentAbout .segTitle svg {
    margin: auto;
  }
  .contentAbout .segContent {
    text-align: justify;
  }
  .contentAbout .gallery_about {
    gap: 1rem;
    margin-top: 3.125rem;
    flex-flow: column;
  }
  .contentAbout .gallery_about .img_gallery {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.serviceAbout {
  position: relative;
  color: #fff;
  padding: 5rem 0 3.125rem 0;
}
.serviceAbout .bck_service {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.serviceAbout .service_content {
  position: relative;
  z-index: 1;
  width: 40%;
}
.serviceAbout .service_content .segTitle {
  font-weight: 600;
}
.serviceAbout .service_content article {
  margin: 3.125rem 0 1.875rem 0;
}
@media (max-width: 767px) {
  .serviceAbout {
    padding: 3.5rem 0 2.56rem 0;
  }
  .serviceAbout .service_content {
    width: 100%;
    text-align: center;
  }
  .serviceAbout .service_content .btn_white {
    margin: auto;
  }
  .serviceAbout .service_content article {
    margin: 1.125rem 0 1.875rem 0;
  }
}

.footer {
  padding: 8.5rem 0 7.56rem 0;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer .logo img {
  width: 9.375rem;
}
.footer .title_footer {
  margin-bottom: 3.125rem;
  font-weight: 600;
  font-size: 1.25rem;
}
.footer .list_project {
  gap: 1rem;
  display: flex;
  flex-flow: column;
}
.footer .list_project a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer .content_info_contact .item_info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.footer .content_info_contact .item_info:last-child {
  margin-bottom: 0;
}
.footer .content_info_contact .item_info img {
  width: 1.43rem;
  flex: 0 0 auto;
}
.footer .content_info_contact .item_info span {
  color: #ACACAC;
  margin-bottom: 5px;
}
.footer .des_footer {
  gap: 8.625rem;
  justify-content: space-between;
}
.footer .des_footer .--item {
  flex: 0 0 calc(33.3333333333% - 8.625rem);
}
.footer article {
  margin: 3.125rem 0 4.25rem 0;
  font-weight: 600;
}
.footer .note_footer {
  padding: 10px;
  background: radial-gradient(291.49% 189.22% at 79.7% 140.53%, #322378 10.67%, #070A29 32.55%, #070A29 58.23%, #221A5A 70.56%, #1E1659 87.24%);
  border: 1px solid #221A59;
  border-radius: 10px;
  display: flex;
  gap: 5px;
  color: #FBCDFF;
  align-items: baseline;
}
.footer .note_footer svg {
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .footer {
    padding: 4.5rem 0 3.56rem 0;
  }
  .footer .des_footer {
    flex-flow: column;
    gap: 3rem;
  }
  .footer .des_footer .--item {
    width: 100%;
  }
  .footer .title_footer {
    margin-bottom: 1.125rem;
  }
  .footer article {
    margin: 2.125rem 0 2.25rem 0;
  }
}

.aboutContact {
  position: relative;
  padding: 8.75rem 0;
  color: #fff;
}
.aboutContact a {
  color: #fff;
}
.aboutContact .bck_pagecontact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutContact .contact_content {
  padding-right: 8rem;
}
.aboutContact .contact_content .segTitle {
  margin-bottom: 3.125rem;
  font-weight: 600;
}
.aboutContact .contact_content ul li {
  margin-bottom: 1.25rem;
}
.aboutContact .contact_content ul li:last-child {
  margin-bottom: 0;
}
.aboutContact .contact_content ul li a {
  gap: 1rem;
}
.aboutContact .contact_content ul li .text {
  display: flex;
  flex-flow: column;
}
.aboutContact .contact_content ul li .text label {
  color: #ACACAC;
}
.aboutContact .contact_content ul li .text span {
  transition: color 0.5s ease;
}
.aboutContact .contact_content ul li .text:hover span {
  color: var(--color-purple);
}
.aboutContact .contact_content ul li .icon {
  width: 1.375rem;
  flex: 0 0 auto;
}
.aboutContact iframe {
  border-radius: 20px;
  border: 2px solid #8058FE;
}
@media (max-width: 767px) {
  .aboutContact {
    padding: 2.75rem 0 4.5rem 0;
  }
  .aboutContact .contact_content {
    padding-right: 0;
  }
  .aboutContact iframe {
    margin-top: 3.125rem;
    width: 100% !important;
  }
}

.aboutField {
  position: relative;
  color: #fff;
  padding: 5rem 0;
}
.aboutField .bck_aboutfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutField .content_top {
  width: 65%;
  margin: 0 auto 6.25rem auto;
  text-align: center;
}
.aboutField .content_top .segTitle {
  font-weight: 600;
}
.aboutField .content_top .segTitle span {
  font-family: var(--font-number-2);
}
@media screen and (max-width: 767px) {
  .aboutField {
    padding: 50px 0;
  }
  .aboutField .content_top {
    width: 100%;
  }
}

.list_field {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.item_field {
  background: linear-gradient(180deg, rgba(45, 57, 129, 0.6) 0%, rgba(9, 12, 27, 0) 100%);
  border-radius: 20px;
  padding: 3.75rem 1.875rem 1.875rem 1.875rem;
  flex: 0 0 calc(33.3333333333% - 1.875rem);
  text-align: center;
  position: relative;
  margin-bottom: 1.875rem;
}
.item_field .icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: linear-gradient(108.03deg, #7347F5 38.11%, #FBCDFF 109.74%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  transform: translate(-50%, 0);
  left: 50%;
}
.item_field .icon img {
  width: 2rem;
}
.item_field .title_field {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  /* line-height: 25px; */
  -webkit-line-clamp: 2;
  /* height: 50px; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.item_field .title_field:hover {
  color: var(--color-purple);
}
.item_field .number {
  font-family: var(--font-number-2);
  color: #262C56;
  font-size: 3.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .item_field {
    flex: 0 0 100%;
  }
}

.aboutNews {
  position: relative;
  color: #fff;
  padding: 5rem 0;
}
.aboutNews .bck_news {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.aboutNews .news_content {
  padding-right: 8rem;
}
.aboutNews .right_news .segTitle {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #ACACAC;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
}
.aboutNews .right_news .item_news {
  margin-bottom: 1.25rem;
}
.aboutNews .right_news .item_news .future_post {
  gap: 1.25rem;
}
.aboutNews .right_news .item_news .future_post .thumbnail_post {
  display: block;
}
.aboutNews .right_news .item_news .future_post .thumbnail_post img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutNews .right_news .item_news .future_post .title_news {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-title);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #fff;
  transition: color 0.5s ease;
  margin-bottom: 1.25rem;
}
.aboutNews .right_news .item_news .future_post .title_news:hover {
  color: var(--color-purple);
}
.aboutNews .right_news .item_news .future_post .date_post {
  color: #ACACAC;
  gap: 1.25rem;
}
.aboutNews .right_news .item_news .future_post .date_post svg {
  width: 1rem;
  flex: 0 0 auto;
}
.aboutNews .right_news .share {
  gap: 1.25rem;
  font-weight: 600;
}
.aboutNews .right_news .share_content {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.aboutNews .right_news .share_content .share_item {
  transition: transform 0.5s ease;
}
.aboutNews .right_news .share_content .share_item svg {
  width: 1rem;
}
.aboutNews .right_news .share_content .share_item:hover {
  transform: scale(1.3);
}
.aboutNews .btn_more {
  margin-top: 6.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .aboutNews {
    padding: 2rem 0 3rem 0;
  }
  .aboutNews .news_content {
    padding-right: 0;
  }
}

.bannerProj {
  position: relative;
}
.bannerProj img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.bannerProj::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(76.02% 76.02% at 50% 50%, rgba(7, 10, 41, 0) 37%, #070A29 80%);
  pointer-events: none;
}
.bannerProj .nav_project {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  justify-content: center;
  gap: 1rem;
}
.bannerProj .nav_project .nav-link {
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-blue);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.5s ease;
}
.bannerProj .nav_project .nav-link.active, .bannerProj .nav_project .nav-link:hover {
  background: var(--color-grad-2);
  color: #fff;
}
@media (max-width: 767px) {
  .bannerProj img {
    height: 40vh;
  }
  .bannerProj .nav_project {
    transform: translate(-50%, 0);
    top: unset;
    bottom: 2rem;
  }
}

.aboutProj {
  padding: 6.25rem 0;
}
.aboutProj .list_proj .slick-list {
  width: 100% !important;
}
.aboutProj .bck_aboutproj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutProj .slick-slide {
  opacity: 0 !important;
  transition: opacity 1.75s ease;
}
.aboutProj .tab-pane.active .slick-slide {
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .aboutProj {
    padding: 3.125rem 0;
  }
}

.item_proj {
  position: relative;
  padding: 0 1.25rem 2.5rem 1.25rem;
  display: block;
}
.item_proj .info_proj {
  position: absolute;
  top: 0;
  transform: translate(-50%, 0);
  left: 50%;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  background: linear-gradient(180deg, rgba(94, 64, 179, 0.7) 0%, rgba(28, 33, 110, 0.7) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.item_proj .info_proj .title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-title);
  margin-bottom: 1rem;
}
.item_proj .info_proj .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-grad-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item_proj:hover .info_proj {
  opacity: 1;
}
.item_proj .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 576/300;
}
@media (max-width: 767px) {
  .item_proj {
    padding: 0;
    margin-bottom: 1rem;
  }
  .item_proj .info_proj {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

.bannerpost {
  position: relative;
}
.bannerpost img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerpost::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(76.02% 76.02% at 50% 50%, rgba(7, 10, 41, 0) 37%, #070A29 80%);
}
@media screen and (max-width: 767px) {
  .bannerpost img {
    height: 35vh;
  }
}

.item_news_big {
  margin-bottom: 2rem;
}
.item_news_big a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.item_news_big a:hover .thumbnail_post {
  transform: scale(1.5);
}
.item_news_big .thumbnail_post {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 635/454;
  transition: transform 1.5s ease;
}
.item_news_big .content_post .title {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-title);
  margin-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.item_news_big .content_post .info_post {
  color: #ACACAC;
  margin: 0.75rem 0;
}
.item_news_big .content_post .info_post .date_post {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid #fff;
}
.item_news_big .content_post .info_post .date_post svg {
  width: 1rem;
  flex: 0 0 auto;
}
.item_news_big .content_post .info_post .author_post span {
  color: #fff;
  text-transform: capitalize;
}
.item_news_big .content_post .post_detail {
  text-align: justify;
}

.banner_proj {
  position: relative;
}
.banner_proj .thumbnail {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner_proj .btn_360 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 6.25rem;
  height: 6.25rem;
  background: radial-gradient(46.23% 70.81% at 50% 50%, rgba(252, 223, 255, 0.8) 27%, rgba(115, 71, 245, 0.8) 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_proj .btn_360 img {
  width: 100%;
  padding: 10px;
}
@media (max-width: 767px) {
  .banner_proj .thumbnail {
    height: 40vh;
  }
  .banner_proj .btn_360 {
    width: 4rem;
    height: 4rem;
  }
}

.aboutDetailproj {
  padding: 6.25rem 0;
  color: #fff;
}
.aboutDetailproj .bck_detailproj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutDetailproj .item_thumb_big {
  position: relative;
}
.aboutDetailproj .item_thumb_big img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 710/417;
}
.aboutDetailproj .item_thumb_big .btn_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  background: radial-gradient(46.23% 70.81% at 50% 50%, rgba(252, 223, 255, 0.8) 27%, rgba(115, 71, 245, 0.8) 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.aboutDetailproj .list_thumb_small {
  margin: 3.125rem -0.9rem 0 -0.9rem;
}
.aboutDetailproj .list_thumb_small .item_thumb_big {
  margin: 0 0.9rem;
}
.aboutDetailproj .list_thumb_small .item_thumb_big img {
  aspect-ratio: 340/197;
}
.aboutDetailproj .gallery_proj {
  padding-right: 5.375rem;
}
.aboutDetailproj .list_thumb_big .btn_play {
  width: 4rem;
  height: 4rem;
}
.aboutDetailproj .segTitle {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.437rem;
}
.aboutDetailproj .param_proj {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.aboutDetailproj .item_param {
  margin-bottom: 5px;
  flex: 0 0 calc(50% - 5px);
  background: linear-gradient(180deg, #252B51 0%, rgba(37, 43, 81, 0) 97.5%);
  border-radius: 20px;
  text-align: center;
  padding: 10px 23px;
}
.aboutDetailproj .item_param .number {
  font-weight: bold;
  /* margin-bottom: 10px; */
  font-size: 1.5rem;
  font-family: var(--font-title);
}
@media (max-width: 767px) {
  .aboutDetailproj {
    padding: 3.125rem 0;
  }
  .aboutDetailproj .gallery_proj {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .aboutDetailproj .list_thumb_small {
    margin: 1.125rem -0.9rem 0 -0.9rem;
  }
  .aboutDetailproj .segTitle {
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 5px;
  }
  .aboutDetailproj .info_proj article {
    text-align: justify;
  }
}

.newsDetailProj {
  padding: 6.25rem 0;
  color: #fff;
}
.newsDetailProj .bck_news {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsDetailProj .list_news_opt .item_news {
  margin-right: 1.25rem;
}
.newsDetailProj .segTitle {
  text-align: center;
  font-weight: 600;
}
.newsDetailProj .segTitle span {
  font-family: var(--font-number-2);
  position: relative;
}
.newsDetailProj .segTitle span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/Group-48095523.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.newsDetailProj article {
  text-align: center;
  margin: 2rem auto 4.375rem auto;
  width: 40%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .newsDetailProj {
    padding: 3.125rem 0;
  }
  .newsDetailProj article {
    width: 100%;
    margin: 2rem auto 2.375rem auto;
  }
  .newsDetailProj .list_news_opt .item_news {
    margin: 0 15px;
  }
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}
.slick-dots button {
  display: none;
}
.slick-dots li {
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6155A0;
  margin: 0 5px;
}
.slick-dots li.slick-active {
  background: #8058FE;
}

.item_news .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 20px;
}
.item_news .thumbnail img {
  width: 100%;
  aspect-ratio: 383/250;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 1.5s ease;
}
.item_news .thumbnail:hover img {
  transform: scale(1.5);
}
.item_news .info_news {
  margin-top: -60px;
  margin-left: 3rem;
  border-radius: 20px;
  background: var(--color-blue);
  padding: 1.875rem 1.25rem;
  z-index: 1;
  position: relative;
}
.item_news .date_news {
  color: #E4BEFA;
  margin-bottom: 1.25rem;
}
.item_news .title {
  font-weight: bold;
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: color 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  color: #fff;
  -webkit-box-orient: vertical;
  transition: color 0.5s ease;
}
.item_news .title:hover {
  color: var(--color-purple);
}
.item_news .des {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.item_news .btn_link {
  color: #E4BEFA;
  font-size: 0.875rem;
  display: block;
  margin-top: 1.25rem;
  transition: color 0.5s ease;
}
.item_news .btn_link:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .item_news .info_news {
    margin-left: 2rem;
  }
}

.main {
  margin-top: 85px;
}
@media (max-width: 767px) {
  .main {
    margin-top: 70px;
  }
}

.loading_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s ease;
}
.loading_screen .logo_loading {
  width: 12rem;
  animation: loading 2s infinite ease-in-out;
}
.loading_screen.active {
  transform: translateY(-100%);
}

@keyframes loading {
  0% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.homeBanner .video_banner {
  display: block;
  position: relative;
}
.homeBanner .video_banner:hover img {
  filter: brightness(0.7);
}
.homeBanner .video_banner:hover svg {
  opacity: 1;
}
.homeBanner .video_banner img {
  transition: filter 0.5s ease;
}
.homeBanner .video_banner svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.homeBanner .list_slidebanner .item_banner .thumb_banner {
  width: 100%;
  height: calc(100vh - 85px);
  -o-object-fit: cover;
     object-fit: cover;
}
.homeBanner .list_slidebanner .item_banner .slide_text {
  position: absolute;
  top: calc(50% + 55px);
  left: 0;
  color: #fff;
  transform: translate(0, -50%);
  width: 50%;
}
.homeBanner .list_slidebanner .item_banner .subTitle {
  font-size: 1.5rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  text-align: left;
}
.homeBanner .list_slidebanner .item_banner .description {
  margin: 3.5rem 0 1rem 0;
  width: 80%;
}
.homeBanner .list_slidebanner .item_banner .segTitle img {
  width: 20rem;
}
.homeBanner .list_slidebanner .item_banner .title_text {
  position: relative;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.3;
}
.homeBanner .list_slidebanner .item_banner .title_text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 25%;
  height: 2rem;
  background-image: url("/wp-content/uploads/2025/01/Group-48095523.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .homeBanner .list_slidebanner .item_banner .thumb_banner {
    height: auto;
  }
  .homeBanner .list_slidebanner .item_banner .slide_text {
    width: 100%;
    text-align: center;
    position: relative;
    top: unset;
    transform: none;
    background: var(--color-blue);
    padding: 40px 15px;
  }
  .homeBanner .list_slidebanner .item_banner .title_text {
    font-size: 1.5rem;
  }
  .homeBanner .list_slidebanner .item_banner .title_text::after {
    transform: translate(-50%, 0);
    left: 50%;
  }
  .homeBanner .list_slidebanner .item_banner .description {
    width: 100%;
  }
  .homeBanner .list_slidebanner .item_banner .btn_white {
    margin: auto;
  }
}

.homeNumber {
  position: relative;
  padding: 6.25rem 0;
}
.homeNumber .bck_number {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeNumber .content_number {
  background: radial-gradient(61.41% 245.62% at 45.86% 50%, #AC9BF1 0%, #DCAEF6 38.5%, #DEB0F9 61%, #FFFFFF 79%, #B4E2FD 99%);
  border-radius: 20px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  color: var(--color-blue);
}
.homeNumber .content_number .number {
  font-size: 1.875rem;
  font-family: var(--font-title);
  font-weight: 600;
}
.homeNumber .content_number .item_number {
  text-align: center;
}
@media (max-width: 768px) {
  .homeNumber {
    padding: 50px 0;
  }
  .homeNumber .content_number {
    flex-flow: column;
  }
}

.homeAbout {
  margin-top: 6.25rem;
  color: #fff;
}
.homeAbout .img_about {
  position: relative;
}
.homeAbout .img_about img {
  width: 100%;
  aspect-ratio: 602/430;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.homeAbout .img_about svg {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.homeAbout .content_about {
  padding-left: 4.25rem;
}
.homeAbout .content_about article {
  margin-bottom: 3rem;
}
.homeAbout .content_about .segTitle {
  font-weight: 600;
  margin-bottom: 4rem;
}
.homeAbout .content_about .segTitle span {
  position: relative;
}
.homeAbout .content_about .segTitle span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/Group-48095523.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .homeAbout .content_about {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.homeContact {
  position: relative;
}
.homeContact .bck_contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeContact .content_contact {
  text-align: right;
  color: #fff;
  position: relative;
  padding: 12.5rem 0;
}
.homeContact .content_contact .segTitle {
  font-weight: 600;
  margin-bottom: 1.875rem;
}
.homeContact .content_contact .btn_white {
  margin-left: auto;
}
@media (max-width: 768px) {
  .homeContact .content_contact {
    padding: 50px 0;
    text-align: center;
  }
  .homeContact .content_contact .btn_white {
    margin: auto;
  }
  .homeContact .bck_contact {
    filter: brightness(0.5);
  }
}

.homeProj1, .homeProj2, .homeFeedback {
  color: #fff;
  background: var(--color-blue);
  padding: 6.25rem 0;
}
.homeProj1 .segTitle, .homeProj2 .segTitle, .homeFeedback .segTitle {
  text-align: center;
  font-weight: 600;
}
.homeProj1 .segTitle span, .homeProj2 .segTitle span, .homeFeedback .segTitle span {
  position: relative;
  font-family: var(--font-number-2);
}
.homeProj1 .segTitle span::after, .homeProj2 .segTitle span::after, .homeFeedback .segTitle span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/Group-48095523.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.homeProj1 article, .homeProj2 article, .homeFeedback article {
  text-align: center;
  width: 45%;
  margin: 2rem auto 4.375rem auto;
}
@media (max-width: 768px) {
  .homeProj1, .homeProj2, .homeFeedback {
    padding: 50px 0;
  }
  .homeProj1 article, .homeProj2 article, .homeFeedback article {
    width: 100%;
  }
}

.homeProj1 .item_proj {
  padding: 0;
  width: 50vw;
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}
.homeProj1 .item_proj.slick-center {
  transform: scale(1);
}
.homeProj1 .item_proj .info_proj {
  width: 100%;
  height: 100%;
}
.homeProj1 .item_proj .thumbnail {
  aspect-ratio: 730/442;
}
@media (max-width: 767px) {
  .homeProj1 .item_proj {
    width: 92vw;
  }
  .homeProj1 .item_proj .thumbnail {
    aspect-ratio: 576/500;
  }
}

.homePartner {
  background: radial-gradient(61.41% 245.62% at 45.86% 50%, #AC9BF1 0%, #DCAEF6 38.5%, #DEB0F9 61%, #FFFFFF 79%, #8D92ED 99%);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  padding: 2rem 0;
}
.homePartner .item_logo {
  padding: 2.25rem;
  height: 150px;
}
.homePartner .item_logo img {
  width: 100%;
}

.homeProj2 {
  color: #fff;
}
.homeProj2 .bck_proj2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item_proj2 {
  margin: 0 1.5rem;
}
.item_proj2 .img_proj2 {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: calc(100% + 2.5rem);
  border-radius: 0;
}
.item_proj2 img {
  width: 100%;
  aspect-ratio: 350/283;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.item_proj2 .content_proj2 {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  padding: 1.875rem;
  position: relative;
  text-align: center;
}
.item_proj2 .content_proj2 .title {
  position: relative;
}
.item_proj2 .content_proj2 .title a {
  font-size: 1.5rem;
  color: #fff;
  font-family: var(--font-title);
  line-height: 1.2;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.item_proj2 .content_proj2 .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 0);
  left: 50%;
}

.homeReason {
  color: #fff;
  padding: 6.25rem 0;
}
.homeReason .fade {
  transition: opacity 0.35s linear !important;
}
.homeReason .bck_reason {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeReason .content_reason .segTitle {
  font-weight: 600;
  text-align: center;
}
.homeReason .content_reason .segTitle span {
  font-family: var(--font-number-2);
}
.homeReason .content_reason article {
  text-align: center;
  width: 45%;
  margin: 1rem auto 4.375rem auto;
}
.homeReason .item1 {
  background: radial-gradient(68.95% 68.95% at 50% 50%, #080A2A 60%, #5F6BC8 100%);
  text-align: left;
  color: #fff;
  filter: drop-shadow(2px 5px 4px #9F8AFF);
}
.homeReason .item1 .title {
  font-family: var(--font-number-2);
}
.homeReason .item1::after {
  content: "";
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  left: 99%;
  width: 4rem;
  height: 4rem;
  background: #192053;
  filter: drop-shadow(2px 5px 4px #9F8AFF);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.homeReason .item2 {
  background: var(--color-blue);
  text-align: right;
  color: #636BDC;
}
.homeReason .item_compare {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
.homeReason .item_compare .item_index {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #2C2263;
}
.homeReason .item_compare .item_index .index {
  font-family: var(--font-number-2);
}
.homeReason .item_compare .title {
  font-size: 2rem;
  font-weight: 600;
  margin: 1.25rem 0 3.125rem 0;
}
.homeReason .img_reason img {
  width: 16.875rem;
}
@media (max-width: 768px) {
  .homeReason {
    padding: 50px 0;
  }
  .homeReason .list_compare {
    flex-flow: column;
  }
  .homeReason .item1::after {
    display: none;
  }
  .homeReason .content_reason article {
    width: 100%;
    margin: 1rem auto 2.375rem auto;
  }
}

.nav_reason {
  justify-content: center;
  margin-bottom: 4.25rem;
  gap: 1rem;
}
.nav_reason .nav-link {
  border-radius: 10px;
  background: var(--color-blue);
  color: #fff;
}
.nav_reason .nav-link.active {
  background: var(--color-grad-2);
}
@media (max-width: 768px) {
  .nav_reason {
    margin-bottom: 3rem;
  }
}

.homeFeedback {
  padding: 6.25rem 0 3rem 0;
}
.homeFeedback article {
  margin: 2rem auto 0rem auto;
}
.homeFeedback .slick-dots {
  margin-top: -2rem;
}
.homeFeedback .segTitle span::after {
  display: none;
}
@media (max-width: 768px) {
  .homeFeedback {
    padding: 50px 0;
  }
}

.content_feedback {
  position: relative;
  padding-top: 14rem;
}
.content_feedback .slick-track {
  padding: 3rem 0;
}
.content_feedback .img_mobile {
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translate(-50%, 0);
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media (max-width: 768px) {
  .content_feedback {
    padding-top: 3rem;
    margin-top: 2rem;
  }
  .content_feedback .img_mobile {
    width: 100%;
    height: auto;
    bottom: unset;
    top: 0;
  }
}

.item_feed {
  background: radial-gradient(68.95% 68.95% at 50% 50%, #F7EEFE 65%, #CFADFC 100%);
  border-radius: 20px;
  transform: rotate(0deg);
  color: #000;
  padding: 2.5rem 1.25rem;
  transition: all 0.15s ease-in-out;
  margin: 5rem 2rem 0 2rem;
  opacity: 0;
}
.item_feed.slick-active {
  opacity: 1;
}
.item_feed.slick-center {
  transform: rotate(0);
  margin: 0 2rem 0 2rem;
}
.item_feed[data-slick-index="2"] {
  transform: rotate(5.42deg);
}
.item_feed[data-slick-index="0"] {
  transform: rotate(-5.42deg);
}
.item_feed .avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item_feed .content {
  margin: 1.25rem 0 1.875rem 0;
}
.item_feed .note {
  color: #796379;
  margin-top: 5px;
}
.item_feed .name {
  font-weight: 600;
  text-transform: uppercase;
}
.item_feed .star {
  color: #FFBB00;
}
.item_feed .info_feed {
  gap: 10px;
}
@media (max-width: 768px) {
  .item_feed[data-slick-index="2"] {
    transform: rotate(0deg) !important;
  }
  .item_feed[data-slick-index="0"] {
    transform: rotate(0deg) !important;
  }
  .item_feed.slick-center {
    margin: 0;
  }
}

.homeProgress {
  position: relative;
  background: var(--color-blue);
  color: #fff;
}
.homeProgress .bck_progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: right center;
     object-position: right center;
}
.homeProgress .left_pro {
  width: 60%;
  padding-left: calc((100% - var(--width-container)) / 2);
  color: var(--color-blue);
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-right: 20%;
  padding-top: 14.25rem;
  padding-bottom: 14.25rem;
}
.homeProgress .left_pro .segTitle {
  margin-bottom: 4rem;
  font-weight: 600;
}
.homeProgress .left_pro .segTitle span {
  background: unset;
  color: #7347F5;
  -webkit-text-fill-color: unset;
  font-family: var(--font-number-2);
  position: relative;
}
.homeProgress .left_pro .segTitle span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/01/Group-48095523.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.homeProgress .pattern {
  position: absolute;
  top: 32%;
  right: 17%;
}
.homeProgress .list_marker {
  position: absolute;
  width: 60%;
  height: 100%;
}
.homeProgress .content_pro {
  position: relative;
  display: flex;
  pointer-events: none;
}
.homeProgress .right_progress {
  display: flex;
  flex-flow: column;
  gap: 3.75rem;
  width: 50%;
  padding: 0 calc((100% - var(--width-container)) / 2) 0 0;
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
}
.homeProgress .item_detail {
  display: none;
}
.homeProgress .item_detail.active {
  display: block;
}
@media (max-width: 768px) {
  .homeProgress {
    display: none;
  }
}

.mobi_progress {
  display: none;
  background: var(--color-blue);
  color: #fff;
  padding: 50px 0;
}
.mobi_progress .segTitle {
  margin-bottom: 4rem;
  font-weight: 600;
  text-align: center;
}
.mobi_progress .segTitle span {
  background: unset;
  color: #7347F5;
  -webkit-text-fill-color: unset;
  font-family: var(--font-number-2);
  position: relative;
}
.mobi_progress .segTitle span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/01/Group-48095523.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mobi_progress .accordion-item {
  background: rgba(255, 255, 255, 0.0784313725);
  margin: auto;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.mobi_progress .accordion-body {
  text-align: justify;
}
.mobi_progress button {
  background: transparent;
  color: #fff;
}
.mobi_progress button:not(.collapsed) {
  color: #fff;
  background-color: transparent;
}
.mobi_progress button::after {
  filter: brightness(20);
}
.mobi_progress button:focus, .mobi_progress button:focus-visible {
  outline: none;
  box-shadow: none;
}
.mobi_progress .icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4705882353);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex: 0 0 auto;
}
.mobi_progress .icon img {
  width: 20px;
}
.mobi_progress .title {
  font-size: 22px;
  font-family: var(--font-title);
  margin-bottom: 10px;
}
.mobi_progress .summary {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .mobi_progress {
    display: block;
  }
}

.item_progress {
  color: #31399D;
  gap: 17px;
  position: absolute;
  transition: color 0.25s ease;
}
.item_progress:nth-child(1) {
  top: 10%;
  left: -26%;
}
.item_progress:nth-child(2) {
  top: 28%;
  left: -14%;
}
.item_progress:nth-child(3) {
  top: 48%;
  left: -12%;
}
.item_progress:nth-child(4) {
  top: 73%;
  left: -22%;
}
.item_progress .icon {
  width: 6.25rem;
  height: 6.25rem;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  flex: 0 0 auto;
  transition: border 0.25s ease;
}
.item_progress .icon img {
  width: 2.5rem;
  transition: filter 0.25s ease;
}
.item_progress.active, .item_progress:hover {
  color: #fff;
}
.item_progress.active .icon, .item_progress:hover .icon {
  border: 1px solid #fff;
}
.item_progress.active .icon img, .item_progress:hover .icon img {
  filter: brightness(20);
}
.item_progress .title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-title);
  margin-bottom: 0.25rem;
}
.item_progress .summary {
  font-size: 1rem;
}

.linkzalo {
  position: fixed;
  width: 2.5rem;
  bottom: 3rem;
  right: 1rem;
  display: block;
  transition: transform 0.5s ease-in-out;
}
.linkzalo img {
  width: 100%;
}
.linkzalo:hover {
  transform: scale(0.9);
}/*# sourceMappingURL=style.css.map */