:root {
  --font-primary-regular: "PlusJakartaSans-regular";
  --font-primary-thin: "PlusJakartaSans-thin";
  --font-primary-light: "PlusJakartaSans-light";
  --font-primary-medium: "PlusJakartaSans-medium";
  --font-primary-semiBold: "PlusJakartaSans-semiBold";
  --font-primary-bold: "PlusJakartaSans-bold";
  --font-primary-black: "PlusJakartaSans-black";
  --clr-white: #fff;
  --clr-blue: #122966;
  --Title-color: #140E3E;
  --gray-6---subtle-text: #8C8C8C;
  --Neutral-9: #262626;
  --Blue: #1E439B;
  --Neutral-6---Subtext: #676767;
  --title2: #121212;
  --gray-7: #595959;
  --Neutral-200: #EEF0F4;
  --primary-color: #FAA21A;
  --gray-9---body-text: #000;
}

/* font */

@font-face {
  font-family: "PlusJakartaSans-regular";
  src: url(../font/PlusJakartaSans/PlusJakartaSans-Regular.ttf);
}

@font-face {
  font-family: "PlusJakartaSans-light";
  src: url(../font/PlusJakartaSans/PlusJakartaSans-Light.ttf);
}

@font-face {
  font-family: "PlusJakartaSans-medium";
  src: url(../font/PlusJakartaSans/PlusJakartaSans-Medium.ttf);
}

@font-face {
  font-family: "PlusJakartaSans-semiBold";
  src: url(../font/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf);
}

@font-face {
  font-family: "PlusJakartaSans-bold";
  src: url(../font/PlusJakartaSans/PlusJakartaSans-Bold.ttf);
}

@font-face {
  font-family: "PlusJakartaSans-black";
  src: url(../font/PlusJakartaSans/PlusJakartaSans-Bold.ttf);
}

body {
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px
}

p {
  margin: 0;
}

a {
  text-decoration: none !important;
}

.text-yellow {
  color: var(--primary-color) !important;
}

.text-red {
  color: #DA0707 !important;
}

.text-semibold {
  font-family: var(--font-primary-semiBold) !important;
}

.text-medium {
  font-family: var(--font-primary-medium) !important;
}

.header-inner {
  display: flex;
  width: 100%;
  padding: 4px 0;
  justify-content: space-between;
  align-items: center;
}

.header {
  width: 100%;
  background: var(--clr-white);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 999;
}

.header-inner>div {
  display: flex;
  padding: 16px 0px;
  align-items: center;
  gap: 40px;
}

.navigator-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigator-menu>li {
  position: relative;
}

.navigator-menu>li>a,
.navigator-menu>li>.sub-menu>li>a,
.navigator-menu>li>span {
  color: var(--Title-color) !important;
  font-family: var(--font-primary-bold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  cursor: pointer;
}

.navigator-menu>li>span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navigator-menu>li:has(span):hover>.sub-menu {
  opacity: 1;
  visibility: visible;
}

.navigator-menu>li:has(span)::before {
  content: "";
  width: 150px;
  height: 25px;
  background-color: transparent;
  display: block;
  position: absolute;
  bottom: -25px;
  right: 0;
}

.navigator-menu>li>.sub-menu {
  padding: 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 46px;
  right: 50%;
  transform: translateX(50%);
  list-style: none;
  background: var(--clr-white);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navigator-menu>li>.sub-menu.active {
  opacity: 1;
  visibility: visible;
}

.navigator-menu>li>.sub-menu>li>a {
  width: 100%;
  display: block;
  padding: 2px 0;
}

.main {
  min-height: 100vh;
  margin-top: 66px;
}

.footer {
  width: 100%;
  min-height: 456px;
  background-image: url(../img/bg-footer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-form-register-info {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-radius: 16px;
  background: linear-gradient(90deg, #014383 0%, #375AD4 100%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  margin-top: -60px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.footer-form-register-left {
  width: min(100%, 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  z-index: 10;
}

.footer-form-register-title {
  color: var(--clr-white);
  font-family: var(--font-primary-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px;
}

.footer-form-register-desc {
  color: var(--clr-white);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.footer-form-register-right {
  width: min(100%, 530px);
  z-index: 10;
}

.form-register .form-group {
  display: flex;
  width: 100%;
  height: 60px;
  padding: 6px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--clr-white);
  gap: 10px;
}

.form-item,
.form-item>input {
  flex: 1;
  height: 100%;
  border: none;
  box-shadow: none;
  outline: none;
  color: var(--Neutral-9);
}

.form-item>input::placeholder,
.form-item::placeholder {
  color: var(--gray-6---subtle-text);
}

.btn-color-yellow {
  display: flex;
  width: 125px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #FAA21A;
  color: var(--Neutral-9);
  text-align: center;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none;
}

.footer-form-cycle {
  position: absolute;
  bottom: -118%;
  right: -46px;
  width: 233px;
  height: 233px;
  background-color: #FAA21A;
  border-radius: 50%;
}

.footer-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-main .line {
  width: 100%;
  height: 1px;
  background: #D8D8D8;
}

.footer-main-first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu>li>a {
  color: var(--Title-color);
  font-family: var(--font-primary-bold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.footer-menu>li:not(:last-child) {
  padding-right: 16px;
  border-right: 1px solid #D8D8D8;
}

.footer-main-second {
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}

.footer-main-second-main {
  display: flex;
  width: min(100%, 370px);
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-main-second-main-title {
  color: var(--Blue);
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
  width: 65%;
}

.footer-main-second-main-desc {
  font-size: 14px;
  color: var(--Neutral-9);
  font-style: normal;
  line-height: 24px;
}

.footer-main-second-contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-main-second-contact>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.footer-main-second-contact>div>p:first-child {
  color: rgba(38, 38, 38, 0.85);
}

.footer-main-second-contact>div>p:last-child {
  color: var(--Neutral-9);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.footer-main-third {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-main-third-copy-right {
  color: var(--Neutral-9);
}

.list-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.breadcrumb-container {
  background: #F6F6F6;
  padding: 6px 0px;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item {
  color: var(--Blue) !important;
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
}

.breadcrumb-item.active {
  color: var(--Neutral-9) !important;
}

.contact-inner {
  padding: 32px 0 114px 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
}

.contact-form-content {
  display: flex;
  padding: 24px 32px 24px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 16px;
  background: var(--clr-white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.form-contact-title {
  color: var(--Title-color);
  font-family: var(--font-primary-bold);
  font-size: 28px;
  font-style: normal;
  line-height: 38px;
}

.form-contact .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 24px;
}

.form-contact .form-group>label {
  color: var(--Neutral-9);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  font-weight: unset;
}

.form-contact .form-group .form-item {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 48px;
  border: 1px solid rgba(30, 67, 155, 0.20);
  background: var(--clr-white);
}

.form-contact .form-group .form-item,
.form-contact .form-group .form-item>input {
  flex: 1;
  color: var(--Neutral-9);
}

.form-contact .form-group .form-item>input::placeholder,
.form-contact .form-group .form-item::placeholder {
  color: var(--Neutral-6---Subtext);
}

.form-contact .form-group textarea.form-item {
  border-radius: 16px;
  resize: none;
  height: 112px;
}

.btn-send-contact {
  width: max-content;
  color: var(--clr-white);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 32px;
  padding: 12px 40px;
}

.document-inner {
  padding: 56px 0 106px 0;
}

.main-title {
  margin: 0;
  color: var(--Title-color);
  font-family: var(--font-primary-bold);
  font-size: 36px;
  font-style: normal;
  line-height: 46px;
  text-align: center;
}

.document-item .line {
  width: 1px;
  height: 24px;
  background: #D8D8D8;
}

.list-document {
  width: min(95%, 970px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 1px solid #FAA21A;
  margin-top: 32px;
}

.document-item {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 16px;
  background: var(--clr-white);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
}

.document-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
}

.document-item-left>a {
  color: var(--title2);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}

.document-item-left>a:hover {
  color: var(--Blue);
  text-decoration-line: underline !important;
}

.box-inner {
  padding-top: 32px;
  padding-bottom: 128px;
}

.list-news {
  margin-top: 32px;
}

.news-item-first-img,
.news-item-img {
  border-radius: 16px;
  border: 2px solid #D8D8D8;
  overflow: hidden;
  cursor: pointer;
}

.news-item-first-img>img,
.news-item-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease-in-out;
}

.news-item-first:hover>.news-item-first-img>img,
.news-item:hover>.news-item-img>img {
  scale: 1.05;
}

.news-item-content {
  display: flex;
  padding: 16px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.news-item-time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item-time-text {
  color: var(--Neutral-9);
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
}

.news-item-title {
  color: var(--Neutral-9);
  font-family: var(--font-primary-semiBold);
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item-link {
  color: #FAA21A !important;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.news-item:not(.news-item-first) .news-item-title {
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
}

.news-item-desc {
  color: var(--gray-7);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 78px;
}

.news-item {
  margin-bottom: 32px;
}

.news-item-first,
.news-item-second {
  height: 544px;
}

.pagination {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.pagination .page-item .page-link {
  display: flex;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: var(--title2);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
  border-radius: 32px;
  background: var(--Neutral-200);
  border: 0;
  transition: all 0.3s ease-in-out;
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
  background: var(--primary-color);
  color: var(--clr-white);
}

.news-detail-inner {
  padding-top: 32px;
  padding-bottom: 64px;
  background-color: var(--clr-white);
}

.news-detail-right-inner {
  display: flex;
  width: 100%;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: var(--clr-white);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

.news-detail-right-title {
  color: var(--title2);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 34px;
}

.highlight-news-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.highlight-news-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.highlight-news-item-img {
  width: 100px;
  height: 78px;
  overflow: hidden;
}

.highlight-news-item-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.highlight-news-item:hover>.highlight-news-item-img>img {
  transform: scale(1.05);
}

.highlight-news-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.highlight-news-item-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 78px;
}

.highlight-news-item-time {
  color: var(--gray-7);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.highlight-news-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E6E6;
}

.news-detail-right {
  position: sticky;
  top: 80px;
}

.news-detail-post-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-detail-post-header>.line {
  width: 100%;
  height: 1px;
  background: #F0F0F0;
}

.news-detail-post-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-detail-post-info-time-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-detail-post-info-author {
  color: var(--primary-color);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.news-detail-post-info-time-author>.line {
  width: 1px;
  height: 16px;
  background: #D9D9D9;
}

.news-detail-post-info-time {
  color: var(--Neutral-9, #262626);
}

.news-detail-post-info-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-detail-post-info-share>p {
  color: var(--title2);
}

.editor-content {
  margin-top: 24px;
}

.news-detail-post>.line {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  background: #EDDFBF;
}

.other-news-slider .news-item .news-item-time>img,
.news-home-slider .news-item .news-item-time>img {
  width: 24px;
  height: 24px;
}

.news-home-slider .news-item {
  margin: 0;
}

.other-news-slider,
.news-home-slider {
  margin-top: 32px;
}


.other-news-slider .owl-nav .owl-prev,
.other-news-slider .owl-nav .owl-next {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 44px;
  background: var(--primary-color, #FAA21A);
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.other-news-slider .owl-nav .owl-next {
  left: auto;
  right: -22px;
}

.other-news {
  background: linear-gradient(180deg, #F6F6F6 0%, #FFF 100%);
}

.scientific-profile-inner {
  padding: 56px 0 150px 0;
}

.scientific-profile-content {
  padding-top: 32px;
}

.scientific-profile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 56px;
}

.scientific-profile-item-img {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  border-radius: 270px;
  border: 1px solid rgba(30, 67, 155, 0.10);
  overflow: hidden;
}

.scientific-profile-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scientific-profile-item-name {
  color: var(--Neutral-9);
  text-align: center;
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}

.scientific-profile-item-position {
  color: var(--Neutral-9);
  text-align: center;
}

.scientific-profile-content-year {
  color: var(--title2);
  font-size: 28px;
  font-style: normal;
  line-height: 38px;
  margin-bottom: 32px;
}

.scientific-result-list {
  width: min(100%, 970px);
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.scientific-result-item {
  display: flex;
  width: 100%;
  padding: 16px;
  align-items: center;
  gap: 16px;
  background: var(--clr-white);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
}

.scientific-result-link {
  color: var(--Title-color);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
  flex: 1;
}

.scientific-result-link:hover {
  color: var(--Blue);
}

.scientific-result-item>.line {
  width: 1px;
  height: 24px;
  background: #d8d8d8;
}

.faqs-content {
  margin-top: 32px;
  padding: 24px 0;
}

.faqs-nemu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.faqs-nemu-item {
  display: flex;
  padding: 20px 24px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-left: 4px solid;
  border-color: #DFE8F2;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.faqs-nemu-item>p {
  color: rgba(0, 0, 0, 0.50);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  transition: all 0.3s ease;
}

.faqs-nemu-item:hover,
.faqs-nemu-item.active {
  border-color: var(--Blue);
  background-color: #DFE8F2;
}

.faqs-nemu-item:hover>p,
.faqs-nemu-item.active>p {
  color: var(--Blue);
}

.list-faqs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  width: 100%;
}

.list-faqs-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.list-faqs-item>p {
  color: var(--Blue);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 28px;
  opacity: 0.7;
}

.faqs-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.faqs-item-content-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid rgba(30, 67, 155, 0.20);
  background: var(--clr-white);
  overflow: hidden;
  width: 100%;
}

.faqs-item-content-item-header {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  background-color: var(--clr-white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faqs-item-content-item-header>p {
  flex: 1;
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.faqs-item-content-item-body {
  display: flex;
  padding: 0 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  color: var(--gray-9---body-text);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faqs-item-content-item-body>p>a {
  color: #1E439B;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.faqs-item-content-item-header:hover,
.faqs-item-content-item.active .faqs-item-content-item-header {
  background: linear-gradient(0deg, rgba(30, 67, 155, 0.05) 0%, rgba(30, 67, 155, 0.05) 100%), #FFF;
}

.faqs-item-content-item.active .faqs-item-content-item-body {
  max-height: 1000px;
  padding: 16px;
}

.faqs-content .row>div:has(.faqs-nemu) {
  position: sticky;
  top: 80px;
}

.about-us-inner {
  padding: 56px 0;
}

.about-us-box-1-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about-us-box-1-right-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.about-us-box-1-right-header-tag {
  color: var(--title2);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.about-us-box-1-right-header-title {
  color: var(--Title-color);
  font-family: var(--font-primary-bold);
  font-size: 36px;
  font-style: normal;
  line-height: 46px;
}

.about-us-box-1-right-desc {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.about-us-box-1-right-desc>.line {
  display: flex;
  height: 1px;
  width: 88px;
  background-color: var(--primary-color);
  margin: 12px 0;
}

.about-us-box-1-right-desc>p {
  flex: 1;
  color: var(--Neutral-9);
}

.about-us-box-2 {
  background: #F6F6F6;
  display: flex;
  padding: 56px 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-us-box-2-desc {
  color: var(--Neutral-9);
}

.about-us-box-2-list {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 30px;
}

.about-us-box-2-list-item {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: var(--clr-white);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  align-self: stretch;
  width: calc(50% - 15px);
}

.about-us-box-2-item-title {
  color: var(--Title-color);
  text-align: justify;
  font-family: var(--font-primary-semiBold);
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}

.about-us-box-2-item-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-us-box-2-item-desc>ul {
  margin: 0;
  padding-left: 20px;
}

.about-us-box-3 {
  background-image: url(../img/about-us-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  padding: 56px 0 156px 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-us-box-3-list {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 56px;
  justify-content: center;
  width: min(100%, 700px);
}

.about-us-box-3-list-item {
  width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-us-box-3-item-img {
  width: 232px;
  height: 232px;
  border-radius: 50%;
  overflow: hidden;
}

.about-us-box-3-item-name {
  color: var(--Neutral-9);
  text-align: justify;
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}

.about-us-box-3-item-position {
  color: var(--Neutral-9);
  margin-top: -8px;
  text-align: center;
}

.about-us-box-2-item-desc>a {
  color: var(--Blue) !important;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: -8px 0
}

.application-instructions-1 {
  padding: 40px 135px;
  background: #F3F1EA;
}

.application-instructions-slider .item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.application-instructions-slider .item>.item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 300px;
}

.application-instructions-slider .item>.item-content>p:first-child {
  color: var(--title2);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 28px;
}

.application-instructions-slider .item>.item-content>p:last-child {
  color: var(--title2);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.application-instructions-2-content {
  display: flex;
  padding-right: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}

.application-instructions-2-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.application-instructions-2-item {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid rgba(30, 67, 155, 0.20);
  background: var(--clr-white);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
}

.application-instructions-2-item>img {
  margin-top: 6px;
}

.application-instructions-2-item>p {
  color: var(--title2);
  flex: 1;
}

.application-instructions-2-img {
  margin-top: 68px;
}

.application-instructions-2 {
  padding: 56px 0;
}

.home-box-2 {
  padding: 56px 0;
  background-image: url(../img/home-box-2-bg.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.home-box-2-inner {
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-items: stretch;
}

.home-box-2-left {
  width: 476px;
  height: 478px;
  flex-shrink: 0;
}

.home-box-2-right-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: min(100%, 432px);
  margin-bottom: 24px;
}

.home-box-2-right-header-tag {
  color: var(--Blue);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.home-box-2-right-header .main-title {
  text-align: start;
}

.btn-read-more {
  display: flex;
  height: 48px;
  padding: 12px 40px;
  align-items: center;
  gap: 10px;
  width: max-content;
  border-radius: 32px;
  color: var(--clr-white) !important;
  margin-left: 88px;
  margin-top: 32px;
}

.home-box-4 {
  padding: 62px 0 156px 0;
}

.home-box-4-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-box-4-header>a {
  color: #FAA21A !important;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.home-box-3 {
  padding: 56px 135px;
  background: #F6F6F6;
}

.home-box-3-desc {
  width: min(100%, 970px);
  text-align: center;
  margin: 8px auto 0 auto;
}

.time-line-list {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 56px;
}

.time-line-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 78px;
  position: relative;
}

.time-line-item:nth-child(even) {
  flex-direction: row-reverse;
}

.time-line-item-img {
  width: calc(50% - 39px);
  border-radius: 16px;
  overflow: hidden;
}

.time-line-item-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time-line-item-content {
  display: flex;
  width: calc(50% - 39px);
  min-height: 280px;
  padding: 48px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.time-line-item-title {
  color: #121212;
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: 34px;
}

.time-line-item-content a {
  color: #1E439B;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.time-line-item-content>ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.time-line-item-content>ul>li,
.time-line-item-content>ul>li>a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: var(--Neutral-9);
}

.time-line-item::after {
  content: "";
  width: 6px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 8px;
  stroke-width: 6px;
  background-color: #1E439B;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.time-line-item::before {
  content: "";
  background-image: url(../img/icons/dotted-time-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 8px;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.time-line-item:first-child:after {
  height: 435px;
}

.time-line-item:nth-child(2):after {
  height: 296px;
}

.time-line-item:nth-child(3):after {
  width: 2px;
  background-image: url(../img/icons/line-dotted-time-line.svg);
  background-size: contain;
  background-repeat: repeat;
  height: 400px;
  top: -100px;
  background-color: transparent;
}

.home-box-3-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.home-application-btn {
  width: max-content;
  padding: 12px 40px;
  border-radius: 32px;
  color: var(--clr-white) !important;
}

.application-instructions-3 {
  padding: 56px 0 156px 0;
}

.news-detail-post-title {
  color: var(--Title-color);
  font-family: var(--font-primary-bold);
  font-size: 28px;
  font-style: normal;
  line-height: 38px;
}

.banner-item {
  position: relative;
}

.banner-item-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 90px 0 60px 0;
  z-index: 10;
}

.banner-item-content>.container {
  height: 100%;
}

.banner-item-content-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-item-sologan {
  display: inline-flex;
  height: auto;
  padding: 6px 1px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.banner-item-sologan>p {
  color: #5CE9FF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--font-primary-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  text-transform: uppercase;
}

.banner-item-content-first {
  width: min(100%, 600px);
}

.banner-item-content-first>img {
  margin-left: -20px;
}

.banner-item-content-first>div {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.banner-item-content-desc {
  color: var(--clr-white);
  font-family: var(--font-primary-medium);
  font-size: 22px;
  font-style: normal;
  line-height: 30px;
  margin-top: 10px;
}

.banner-item-content-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.banner-item-content-info>p:first-child {
  color: var(--clr-white);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 25px;
}

.banner-item-content-info>p:last-child {
  color: var(--clr-white);
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: 25px;
}

.btn-close-menu-mobile,
.btn-menu-mobile {
  cursor: pointer;
  display: none !important;
}

.overlay-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: none;
}

@media (max-width:1440px) {}

@media (max-width:1024px) {
  .header-inner>a>img {
    width: 120px;
  }

  .navigator-menu {
    gap: 24px;
  }

  .navigator-menu>li>a,
  .navigator-menu>li>.sub-menu>li>a,
  .navigator-menu>li>span {
    font-size: 14px
  }

  .form-contact .form-group .form-item>input {
    width: 100%;
  }

  .footer-main-first .footer-logo img {
    width: 120px;
  }

  .footer-menu,
  .footer-menu>li:not(:last-child) {
    gap: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-menu>li:not(:last-child) {
    border: none;
  }

  .news-item-first,
  .news-item-second {
    height: 450px;
  }

  .application-instructions-1 {
    padding: 32px 0;
  }

  .home-box-3{
    padding-left: 0;
    padding-right: 0;
  }
  
  .banner-item-content{
    padding: 30px 0
  }

  .banner-item-content-first>div{
    gap: 24px;
  }
}

@media (max-width:768px) {
  .form-contact {
    width: 100%;
  }

  .btn-menu-mobile,
  .overlay-header {
    display: block !important;
  }

  .btn-menu-mobile{
    font-size: 19px;
  }

  .main-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    z-index: 101;
    width: min(60%, 300px);
    align-items: flex-start !important;
    padding: 60px 20px !important;
    transform: translateX(-1000px);
    transition: all 0.3s ease;
  }

  .main-header-menu.active {
    transform: translateX(0);
  }

  .main-header-menu .navigator-menu {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .navigator-menu>li>a,
  .navigator-menu>li>.sub-menu>li>a,
  .navigator-menu>li>span {
    font-size: 16px
  }

  .btn-close-menu-mobile {
    position: absolute;
    top: 12px;
    right: 12px;
    transform: rotate(45deg);
    font-size: 32px;
    font-family: var(--font-primary-medium);
    width: 24px;
    height: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .navigator-menu>li>.sub-menu {
    right: unset;
    left: -100px;
    z-index: 1;
    top: 32px;
  }

  .overlay-header.active {
    opacity: 1;
    pointer-events: all;
  }

  .footer-form-register-info {
    padding: 16px;
  }

  .footer-main-first {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-main-second {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-main-second-main {
    width: 100%;
  }

  .footer-main-second>div:last-child,
  .footer-main-second-contact {
    width: calc(50% - 8px);
  }

  .footer-main-second>div>.footer-main-second-contact {
    width: 100%;
  }

  .footer-main {
    margin-bottom: 20px;
  }

  .contact-info-content {
    gap: 16px;
    margin-top: 24px;
    align-items: center;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }

  .contact-info-content>img {
    width: 200px;
  }

  .main-title {
    font-size: 32px;
  }

  .document-inner,
  .scientific-profile-inner {
    padding: 32px 0 104px 0;
  }

  .list-news>.row>div:has(.news-item-first),
  .list-news>.row>div:has(.news-item-second) {
    display: none;
  }

  .list-news>.row {
    margin: 0;
  }

  .list-news>.row>div {
    padding: 0 8px;
  }

  .news-detail-right {
    display: none;
  }

  .other-news-slider .owl-nav .owl-prev,
  .other-news-slider .owl-nav .owl-next {
    width: 36px;
    height: 36px;
  }

  .application-instructions-2-content {
    padding: 0;
  }

  .application-instructions-2-img {
    margin-top: 32px;
  }

  .application-instructions-2 {
    padding: 32px 0;
  }

  .application-instructions-3 {
    padding: 32px 0 100px 0;
  }

  .home-box-2-inner{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .home-box-2-left{
    width: min(100%,476px);
    height: auto;
  }

  .home-box-2{
    padding: 32px 0;
  }

}

@media (max-width:568px) {


  body{
    overflow-x: hidden;
  }

  .footer-main-second>div:last-child,
  .footer-main-second-contact {
    width: 100%;
  }

  .footer-main-third {
    flex-direction: column-reverse;
    gap: 8px;
    justify-content: center;
  }

  .footer-form-register-info {
    padding: 8px;
    flex-direction: column;
    gap: 8px;
  }

  .footer-form-register-left {
    align-items: center;
  }

  .main-title {
    font-size: 28px;
    line-height: 38px;
  }

  .form-contact-title,
  .news-detail-post-title,
  .scientific-profile-content-year {
    font-size: 24px;
    line-height: 34px;
  }

  .footer-form-register-title,
  .banner-item-sologan>p {
    font-size: 20px;
    line-height: 28px;
  }
  
  .time-line-item-title{
    font-size: 18px;
    line-height: 26px;
  }

  .footer-main-second-main-title,
  .news-item-title,
  .scientific-profile-item-name,
  .banner-item-content-info>p:last-child,
  .about-us-box-2-item-title {
    font-size: 16px;
    line-height: 24px;
  }

  body,
  .footer-form-register-desc,
  .btn-color-yellow,
  .footer-menu>li>a,
  .footer-main-second-contact>div>p:last-child,
  .form-contact .form-group .form-item,
  .form-contact .form-group .form-item>input,
  .form-contact .form-group>label,
  .document-item-left-title,
  .news-detail-post-info-author,
  .news-item-link,
  .application-instructions-slider .item>.item-content>p:last-child,
  .application-instructions-slider .item>.item-content>p:first-child,
  .banner-item-content-desc,
  .banner-item-content-info>p:first-child {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-form-register-desc,
  .footer-main-second-main-desc,
  .footer-main-second-main-title {
    text-align: center;
  }

  .news-item-title {
    height: 46px !important;
  }

  .news-item-content {
    padding: 8px 0;
    gap: 8px;
  }

  .footer-main-second-main-title {
    width: 100%;
  }

  .form-register .form-group {
    height: 52px;
  }

  .btn-color-yellow {
    padding: 6px 16px;
  }

  .footer-form-register-info {
    margin-bottom: 24px;
  }

  .footer-menu,
  .footer-menu>li:not(:last-child) {
    gap: 4px;
    display: none;
  }

  .contact-inner {
    padding: 24px 0 100px 0;
  }

  .contact-form-content {
    padding: 16px 20px 16px 16px;
    gap: 24px;
  }

  .box-inne,
  .scientific-profile-inner {
    padding: 16px 0 100px 0;
  }

  .list-news {
    margin-top: 16px;
  }

  .form-contact .form-group {
    margin-bottom: 12px;
  }

  .form-contact .form-group .form-item {
    padding: 8px 16px;
  }

  .list-document {
    padding-left: 16px;
    margin-top: 16px;
  }

  .scientific-profile-content {
    padding-top: 16px;
  }

  .other-news-slider .owl-nav .owl-prev,
  .other-news-slider .owl-nav .owl-next {
    width: 32px;
    height: 32px;
    left: -12px;
  }

  .other-news-slider .owl-nav .owl-next {
    left: auto;
    right: -12px;
  }

  .news-detail-post-title {
    margin: 0;
  }

  .scientific-profile-item-img {
    width: 100%;
    height: 100%;
  }

  .scientific-profile-item {
    margin-bottom: 24px;
    gap: 8px;
  }

  .scientific-profile-item-info {
    gap: 4px;
  }

  .scientific-profile-content-year {
    margin-bottom: 16px;
  }

  .application-instructions-2 {
    padding: 24px 0;
  }

  .application-instructions-2>.container>.row>div:last-child {
    display: none;
  }

  .time-line-list {
    gap: 24px;
  }

  .time-line-item {
    flex-direction: column !important;
    align-items: flex-start;
    width: 100%;
    gap: 32px;
  }

  .time-line-item-img {
    display: none;
  }

  .time-line-item-img,
  .time-line-item-content {
    width: 95%;
  }

  .time-line-item::after,
  .time-line-item:nth-child(2):after {
    top: 16px;
    left: 100%;
    width: 4px;
    height: auto;
  }

  .time-line-item::before {
    top: 16px;
    left: 100%;
  }

  .time-line-item:nth-child(3):after {
    height: 250px;
    top: -54px;
  }

  .time-line-item-content {
    padding: 20px;
    gap: 8px;
    min-height: 200px;
  }

  .about-us-box-1-right-desc>.line{
    width: 44px;
  }

  .home-box-2-right-header{
    gap: 12px;
    margin-bottom: 12px;
  }

  .banner-item-content-first>img{
    width: 20px;
    height: 20px;
    margin: -4px;
  }

  .banner-item{
    height: 450px;
    position: relative;
  }

  .banner-item::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 1
  }

  .banner-item>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
  }

  .banner-item-sologan{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .banner-item-sologan>.line{
    display: none;
  }

  .application-instructions-1{
    padding: 16px 0;
  }

  .application-instructions-slider .item .item-img{
    width: 40px;
    height: 40px;
  }

  .application-instructions-slider .item>.item-content{
    flex: 1;
  }

  .home-box-2,
  .about-us-inner,
  .home-box-3{
    padding: 24px 0;
  }

  .btn-read-more{
    margin: 24px auto 0 auto;
  }

  .home-box-4,.application-instructions-3,
  .document-inner, .scientific-profile-inner,.box-inner{
    padding: 24px 0 100px 0;
  }

  .other-news-slider, .news-home-slider{
    margin-top: 24px;
  }

  .about-us-box-1-right-header{
    gap: 8px;
  }

  .about-us-box-2{
    gap: 12px;
  }

  .about-us-box-1-right{
    gap: 12px;
    margin-top: 12px;
  }

  .about-us-box-2-list{
    gap: 24px 12px;
  }

  .about-us-box-2-list-item{
    width: calc(50% - 6px);
    padding: 8px;
    gap: 8px;
  }

  .about-us-box-2-item-desc{
    gap: 8px;
  }

  .about-us-box-2-list-item>img{
    width: 60px;
    height: 60px;
  }

  .about-us-box-2-item-title{
    text-align: center;
  }

  .document-item-left>img{
    width: 40px;
    height: 40px;
  }
}