@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
}
@font-face {
  font-family: "Caudex";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/caudex-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Caudex";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/caudex-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Caudex";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/caudex-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Caudex";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/caudex-bolditalic.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #222;
  background: #FFFCF5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

.header {
  position: relative;
  width: 100%;
  padding: 23px 0;
  background: url("img/bg-header.png") no-repeat;
  background-size: cover;
  overflow: hidden;
}
.header .flex__elm {
    position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 23px;
}
.header__logo-img {
  width: auto;
  height: 72px;
}
.header__logo-img .logo__elm {
  max-width: 100%;
  max-height: 100%;
}
.header__logo-title {
  background: linear-gradient(180deg, #FDC048 0%, #FED9A3 35.44%, #FDC048 54.13%, #FED9A3 93.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}
.header__languages {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.header__languages .header__languages-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}
.header__languages .header__languages-item:first-child {
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid #fff;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  margin-bottom: -2px;
}

.flex__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.nav__list {
  display: flex;
  list-style: none;
  align-items: stretch;
  justify-content: flex-start;
  gap: 60px;
  flex: 1;
}

.nav__item {
  position: relative;
  display: flex;
}

.nav__link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #000000;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #00852F;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav__link:hover {
  color: #00852F;
}
.nav__link--active {
  color: #00852F;
}
.nav__link--active::after {
  opacity: 1;
}

.nav__search-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}
.nav__search-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.nav__search-btn:hover {
  opacity: 0.7;
}

.nav__search-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay--open {
  opacity: 1;
  visibility: visible;
}
.search-overlay__panel {
  background: rgba(33, 124, 93, 0.9803921569);
  padding: 128px 40px 128px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-overlay__close {
  position: absolute;
  top: 20px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
}
.search-overlay__close img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.search-overlay__close:hover {
  opacity: 0.7;
}
.search-overlay__title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 35px;
}
.search-overlay__input-wrap {
  position: relative;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.search-overlay__input {
  width: 100%;
  height: 60px;
  padding: 0 52px 0 20px;
  border: none;
  border-radius: 99px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  background: #fff;
  outline: none;
  box-sizing: border-box;
}
.search-overlay__input::placeholder {
  color: #A3A3A3;
  font-style: italic;
}
.search-overlay__submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  transition: opacity 0.2s;
}
.search-overlay__submit img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.search-overlay__submit:hover {
  opacity: 0.7;
}

@media (max-width: 1399px) {
  .nav__list {
    transform: none;
    gap: 40px;
  }
  .nav__link {
    font-size: 13px;
  }
}
@media (max-width: 1199.98px) {
  .header__logo-title {
    font-size: 22px;
  }
  .nav__link {
    font-size: 12px;
  }
  .search-overlay__input-wrap {
    width: 600px;
  }
  .search-overlay__panel {
    padding: 80px 40px;
  }
}
@media (max-width: 991.98px) {
  .header {
    padding: 16px 0;
    overflow: visible;
  }
  .header__logo-img {
    height: 48px;
  }
  .header__logo-title {
    font-size: 12px;
    max-width: 315px;
  }
   .header__languages {
    display: none;
    }
  .nav__toggle {
    display: flex;
    align-items: center;
  }
  .nav__toggle .toggle__btn,
  .nav__toggle .less__btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.95;
    transition: opacity 0.2s ease;
  }
  .nav__toggle .toggle__btn:hover,
  .nav__toggle .less__btn:hover {
    opacity: 1;
  }
  .flex__elm {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .content__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: fixed;
    z-index: 160;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 16px 12px 25px;
    min-height: 100vh;
    overflow-y: auto;
    background: url("img/popup-menu.png") center/cover no-repeat;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
  }
  .content__toggle--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .content__toggle-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .content__toggle-brand {
    display: flex;
    align-items: center;
    gap: 23px;
    min-width: 0;
  }
  .content__toggle-logo {
    height: 48px;
    flex-shrink: 0;
  }
  .content__toggle-logo .logo__elm {
    width: auto;
    height: 100%;
  }
  .content__toggle-title {
    max-width: 315px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FDC048 0%, #FED9A3 35.44%, #FDC048 54.13%, #FED9A3 93.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  .content__toggle-close {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.95;
    transition: opacity 0.2s ease;
  }
  .content__toggle-close:hover {
    opacity: 1;
  }
  .content__toggle .search-overlay__input-wrap {
    width: 100%;
  }
  .content__toggle .search-overlay__submit {
    right: unset;
    left: 9px;
  }
  .content__toggle .search-overlay__input {
    height: 40px;
    padding: 0 15px 0 50px;
  }
  .content__toggle .search-overlay__input::placeholder {
    font-size: 14px;
  }
  .content__toggle .nav__list {
    width: 100%;
    gap: 8px;
  }
  .content__toggle .nav__list.navbar-nav .nav__item {
    justify-content: center;
  }
  .content__toggle .nav__list.navbar-nav .nav__link {
    display: block;
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
  }
  .content__toggle-languages {
    display: flex;
    align-items: center;
    color: #fff;
  }
  .content__toggle-languages .languages-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}
.content__toggle-languages .languages-item:first-child {
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid #fff;
}
  .nav__link::after {
    display: none;
  }
  .nav__link--active {
    background: rgba(0, 133, 47, 0.08);
    border-radius: 8px;
  }
  .search-overlay__input-wrap {
    width: 480px;
  }
  .search-overlay__title {
    font-size: 24px;
  }
  .search-overlay__input {
    height: 50px;
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .content__toggle-head {
    gap: 10px;
  }
  .content__toggle-brand {
    gap: 23px;
  }
  .content__toggle-logo {
    height: 48px;
  }
  .content__toggle-title {
    max-width: 315px;
    font-size: 12px;
  }
  .search-overlay__input-wrap {
    width: 100%;
  }
  .search-overlay__panel {
    padding: 60px 20px;
  }
  .search-overlay__title {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  .header__logo {
    gap: 10px;
  }
  .header__logo-title {
    font-size: 10px;
    max-width: 177px;
  }
  .content__toggle-head {
    gap: 10px;
  }
  .content__toggle-brand {
    gap: 10px;
  }
  .content__toggle-logo {
    height: 48px;
  }
  .content__toggle-title {
    max-width: 177px;
    font-size: 10px;
  }
}
footer {
  position: relative;
  background: #1b6331;
  overflow: hidden;
  padding: 50px 20px 24px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/LayerFooter.png") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.footer__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer__content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.footer__logo-img {
  width: 109px;
  height: 109px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer__logo-desc {
  background: linear-gradient(180deg, #FDC048 0%, #FED9A3 35.44%, #FDC048 54.13%, #FED9A3 93.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .footer__logo-desc {
    font-size: 16px;
  }
}

.footer__name-img {
  height: 61px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer__address {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: 140%;
}

.footer__contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact-item:hover {
  color: #e8c840;
}
.footer__contact-item--italic {
  font-weight: 400;
  font-style: italic;
}
.footer__contact-item svg {
  flex-shrink: 0;
}

.footer__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__divider {
  width: 1920px;
  height: 0;
  border: none;
  border-top: 1.5px solid;
  border-image: linear-gradient(to right, transparent, #fff, transparent) 1;
  margin-bottom: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer__social-icon {
  width: 32px;
  height: 32px;
  object-fit: none;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.footer__social-icon:hover {
  transform: scale(1.2);
}

.footer__cert-icon {
  margin-left: 30px;
  object-fit: contain;
}

@media (max-width: 1399px) {
  footer {
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
  }
}
@media (max-width: 1199.98px) {
  footer {
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
  }
}
@media (max-width: 991.98px) {
  footer {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 40px 20px 20px;
  }
  .footer__address {
    font-size: 14px;
  }
  .footer__contact-item {
    font-size: 14px;
  }
  .footer__bottom p {
    font-size: 14px;
  }
  .footer__contacts {
    gap: 16px;
  }
}
@media (max-width: 767.98px) {
  .footer__cert-icon {
    margin-left: 0;
  }
  footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 32px 16px 16px;
  }
  .footer__name-img {
    height: 48px;
  }
  .footer__logo-img {
    width: 80px;
    height: 80px;
  }
  .footer__contact-item {
    font-size: 13px;
  }
  .footer__bottom p {
    font-size: 13px;
  }
}
.post__related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .post__related-head {
    margin-bottom: 20px;
  }
}
.post__related-head .title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  color: #B10E2A;
}
@media (max-width: 991.98px) {
  .post__related-head .title {
    font-size: 20px;
  }
}
.post__related-head .link-more {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Caudex", Georgia, serif;
  line-height: 1.2;
  color: #00852F;
  border: 1px solid #00852F;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.post__related-head .link-more:hover {
  background-color: #00852F;
  color: #fff;
}
@media (max-width: 991.98px) {
  .post__related-head .link-more {
    font-size: 14px;
    padding: 10px 16px;
  }
}
.post__related-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .post__related-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.post__related .post__item:hover .post-title {
  color: #00852F;
}
.post__related .post__item:hover .post__item-img img {
  transform: scale(1.2);
}
.post__related .post__item-img {
  height: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.post__related .post__item-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.post__related .post__item-sum .post-date {
  display: block;
  color: #8E8E8E;
  font-size: 14px;
  line-height: 1.4;
  margin: 16px 0;
}
.post__related .post__item-sum .post-date svg {
  transform: translateY(-4px);
}
.post__related .post__item-sum .post-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .post__related .post__item {
    display: flex;
    gap: 16px;
  }
  .post__related .post__item:not(:last-child) {
    background-image: linear-gradient(to right, #e5e5e5 50%, transparent 0);
    background-size: 12px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    padding-bottom: 20px;
  }
  .post__related .post__item-img {
    width: 126px;
    height: auto;
  }
  .post__related .post__item-sum {
    display: flex;
    flex-direction: column-reverse;
    flex: 1;
    gap: 10px;
  }
  .post__related .post__item-sum .post-date {
    margin: 0;
  }
  .post__related .post__item-sum .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@keyframes sidebarAiLogoZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.sidebar {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 999;
}
.sidebar__ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 50px;
}
.sidebar__ai:hover .sidebar__ai-logo {
  animation-play-state: paused;
  transform: scale(1.2);
}
.sidebar__ai:hover .sidebar__ai-bg {
  transform: none;
}
.sidebar__ai-logo {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007C2C;
  border-radius: 50%;
  transform-origin: center center;
  animation: sidebarAiLogoZoom 1.5s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.sidebar__ai-bg {
  width: 60.97px;
  height: 60.97px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}
.sidebar__ai-mascot {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 71px;
  height: 70px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.sidebar__ai-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}
.sidebar__ai-label--light {
  color: #00852F;
}
.sidebar__ai-label--dark {
  color: #fff;
}
.sidebar__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sidebar__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  text-decoration: none;
}
.sidebar__btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.sidebar__btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .sidebar__ai-mascot {
    width: 60px;
    height: 59px;
  }
}
@media (max-width: 767.98px) {
  .sidebar {
    right: 12px;
    bottom: 12px;
    gap: 12px;
  }
  .sidebar__ai {
    margin-bottom: 30px;
  }
  .sidebar__ai-mascot {
    width: 50px;
    height: 49px;
  }
  .sidebar__btn {
    width: 42px;
    height: 42px;
  }
  .sidebar__btn img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 575.98px) {
  .sidebar__ai-mascot {
    width: 42px;
    height: 41px;
  }
}
.float-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.float-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.icon-arrow {
  width: 14px;
  height: auto;
  vertical-align: middle;
  display: inline-block;
  transform: rotate(90deg);
}

.hero {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  min-height: clamp(400px, 47.03vw, 903px);
}
.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__bg-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}
.hero__slider {
  position: relative;
  width: 100%;
  height: clamp(400px, 47.03vw, 903px);
  overflow: hidden;
  z-index: 1;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
}
.hero__slide--active {
  opacity: 1;
  z-index: 1;
}
.hero__bars-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero__corner {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  width: clamp(77.5px, 9.12vw, 175px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  bottom: clamp(-54px, -4.5vw + 25px, 13px);
}
.hero__corner--left {
  left: 0;
}
.hero__corner--right {
  right: 0;
}
@media (min-width: 991.98px) and (max-width: 1199.98px) {
  .hero__corner {
    bottom: clamp(-54px, -4.5vw + 19px, 13px);
  }
}
@media (max-width: 991.98px) {
  .hero__corner {
    display: none;
  }
}
.hero__dots {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero__dots .hero__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253, 253, 253, 0);
  cursor: pointer;
  border: solid;
  border-width: 1px;
  border-color: #00852F;
  transition: background 0.2s;
}
.hero__dots .hero__dot--active {
  background: #00852F;
}

.quote {
  background: #FFFCF5;
  margin: 96px 0px;
  text-align: center;
}
.quote__box {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.quote__deco {
  width: 110px;
  flex-shrink: 0;
  display: block;
}
.quote__deco--left {
  transform: scaleX(-1);
  margin-right: -70px;
}
.quote__deco--right {
  margin-left: -70px;
}
.quote__frame {
  flex: 1;
  padding: 28px 36px 22px;
  text-align: center;
  position: relative;
}
.quote__frame--fade-out .quote__text,
.quote__frame--fade-out .quote__source {
  opacity: 0;
}
.quote__text, .quote__source {
  transition: opacity 0.6s ease;
}
.quote__text {
  font-family: "Caudex", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0 0 0 0;
  margin-top: -10px;
}
.quote__source {
  margin-top: 14px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #888;
  font-style: italic;
}

.btn__arrow--green {
  display: none;
  transform: rotate(180deg);
}

.history__btn-more:hover .btn__arrow--white,
.achievements__btn-more:hover .btn__arrow--white,
.photo__btn-more:hover .btn__arrow--white {
  display: none;
}
.history__btn-more:hover .btn__arrow--green,
.achievements__btn-more:hover .btn__arrow--green,
.photo__btn-more:hover .btn__arrow--green {
  display: inline;
}

.section-divider {
  text-align: center;
  line-height: 1;
}
.section-divider img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 600;
  color: #B10E2A;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  line-height: 1.3;
}
@media (max-width: 1399px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.btn-more {
  display: inline-block;
  padding: 10px 28px;
  background: #1a5c2e;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-more:hover {
  background: #2d7a3e;
}
.btn-more--outline {
  display: inline-block;
  padding: 8px 24px;
  background: transparent;
  color: #1a5c2e;
  border: 2px solid #1a5c2e;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-more--outline:hover {
  background: #1a5c2e;
  color: #fff;
}

.awards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards .section-title {
  max-width: 1052px;
  margin: 0 auto 40px;
}
@media (max-width: 1399px) {
  .awards .section-title {
    max-width: 100%;
    margin: 0 auto 20px;
  }
}
.awards .wrap__content {
  padding: 8px;
  border: 2px solid rgb(177, 14, 42);
  border-radius: 40px;
}
.awards__bg {
  background: url("img/awardsLayer.png") no-repeat;
  background-size: cover;
  border-radius: 28px;
  padding: 49px;
}
.awards .section-title::after {
  display: none;
}
.awards__desc-img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transform: translateY(10px);
}
.awards__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  border: 1.5px solid #B3D9BA;
  border-radius: 100px;
  overflow: hidden;
  max-width: 444px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0);
  padding: 8px 5px;
}
.awards__tab-line {
  width: 11px;
  height: 23px;
  flex-shrink: 0;
}
.awards__tab {
  flex: 1;
  padding: 0;
  border: none;
  cursor: pointer;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  background: transparent;
  color: #000000;
  transition: all 0.2s;
  border-radius: 50px;
}
.awards__tab:hover {
  color: #00852F;
}
.awards__tab--active {
  color: #00852F;
  background: transparent;
}
.awards__content {
  display: block;
}
.awards__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  position: relative;
}
.awards__panel--hidden {
  display: none !important;
}
.awards__swiper {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  display: block;
}
.awards__swiper .swiper-slide {
  position: relative;
}
.awards__swiper .swiper-slide:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  background: url("img/Line 7.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.awards__arrow {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #00852F;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.awards__arrow img {
  width: 16px;
  height: 12px;
  object-fit: contain;
}
.awards__arrow:hover {
  background: #00852F;
  transform: scale(1.08);
}
.awards__arrow:hover .awards__arrow-icon--default {
  display: none;
}
.awards__arrow:hover .awards__arrow-icon--hover {
  display: block;
}
.awards__arrow--left .awards__arrow-icon--default {
  transform: rotate(0deg);
}
.awards__arrow--left .awards__arrow-icon--hover {
  transform: scaleX(-1);
}
.awards__arrow--right .awards__arrow-icon--default {
  transform: rotate(180deg);
}
.awards__arrow--right .awards__arrow-icon--hover {
  transform: rotate(0deg);
}
.awards__arrow-icon--default {
  display: block;
}
.awards__arrow-icon--hover {
  display: none;
}
.awards__page {
  width: 100%;
  align-items: center;
  transform: translateY(-10px);
}
.awards__page > [class*=col-] {
  position: relative;
}
.awards__page > [class*=col-]:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 160px;
  width: 11px;
  background: url("img/Line 7.png") center/contain no-repeat;
}
.awards__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease;
}
.awards__card:hover {
  transform: scale(1.05);
}
.awards__card .awards__img {
  transition: transform 0.25s ease;
}
.awards__number {
  font-family: "Caudex";
  font-size: 48px;
  font-weight: 500;
  color: #00852F;
  line-height: 140%;
}
.awards__label {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin: 8px auto 20px;
  line-height: 130%;
}
.awards__img {
  width: 52px;
  height: auto;
}
.awards__img.tab-2 {
  width: 235px;
  height: auto;
}
.awards__img img {
  max-width: 100%;
  max-height: 100%;
}
.awards__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  position: static;
}
.awards__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253, 253, 253, 0);
  cursor: pointer;
  border: 1px solid #00852F;
  opacity: 1;
}
.awards__pagination .swiper-pagination-bullet-active {
  background: #00852F;
}
.awards__bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 4px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.awards__btn-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 44px;
  border: 1px solid #00852F;
  border-radius: 10px;
  background: #00852F;
  font-family: "Caudex";
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.awards__btn-all img {
  width: 16px;
  height: 12px;
  object-fit: contain;
}
.awards__btn-all:hover {
  background: transparent;
  color: #00852F;
}
.awards__btn-all:hover .awards__arrow--white {
  display: none;
}
.awards__btn-all:hover .awards__arrow--green {
  display: inline;
}
.awards__arrow--green {
  display: none;
}

#danh-hieu-anh-hung .awards__pagination {
  display: none;
}
#danh-hieu-anh-hung .awards__page {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.awards__panel:not(.awards__panel--hidden) .awards__swiper {
  z-index: 1;
}

.party {
  background: #FFFCF5;
  margin: 96px 0;
}
@media (max-width: 1399px) {
  .party {
    margin: 40px 0;
  }
}
.party .section-title::after {
  display: none;
}
.party .section-title {
  max-width: 680px;
  margin: 0 auto 40px;
}
@media (max-width: 1199.98px) {
  .party .section-title {
    margin-bottom: 20px;
  }
}
.party__desc-img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.party__tabs {
  display: flex;
  border: 1.5px solid #B3D9BA;
  border-radius: 100px;
  align-items: center;
  padding: 10px 0;
  margin: 0 auto 36px;
}
.party .swiper-wrapper {
  justify-content: flex-start;
}
@media (max-width: 575.98px) {
  .party .swiper-wrapper {
    justify-content: flex-start;
  }
}
.party__tabs-swiper {
  overflow: hidden;
}
.party__tabs-swiper.swiper-disabled {
  overflow: visible;
}
.party__tabs-swiper.swiper-disabled .swiper-wrapper {
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.party__tabs-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  padding: 0 40px;
}
.party__tabs-slide:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  background: #cfcfcf;
  right: 0;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}
.party__tabs-slide.swiper-slide {
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .party__tabs-slide {
    padding: 0 13px;
  }
  .party__tabs-slide:not(:last-child)::after {
    transform: translateY(-50%) rotate(10deg);
  }
}
.party__tab-line {
  width: 11px;
  height: 23px;
  flex-shrink: 0;
}
.party__tab {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  line-height: 1.4;
  text-align: center;
  transition: color 0.2s;
}
.party__tab:hover {
  color: #00852F;
}
.party__tab--active {
  color: #00852F;
}
.party__showcase {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.party__slider {
  width: 1296px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.party__slider .swiper-wrapper {
  position: relative;
  overflow: hidden;
  height: 661px;
}
.party__slider .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.party__slider .swiper-slide.party__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.party__slide {
  position: relative;
  width: 100%;
  height: 661px;
  border-radius: 30px;
  overflow: hidden;
}
.party__slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s;
}
.party__slide:hover > img {
  transform: scale(1.05);
}
.party__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 129px 55px 40px 55px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.party__slide-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 130%;
}
.party__slide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Caudex";
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer !important;
  user-select: auto !important;
  -webkit-user-select: auto !important;
}
.party__arrow--white, .party__arrow--green {
  width: 16px;
  height: 12px;
}
.party__arrow--white {
  filter: brightness(0) invert(1);
}
.party__arrow--green {
  display: none;
}
.party__slider-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  position: static;
}
@media (max-width: 1199.98px) {
  .party__slider-pagination {
    margin-top: 14px;
  }
}
.party__slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #00852F;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.party__slider-pagination .swiper-pagination-bullet-active {
  background: #00852F;
}

.history {
  background: #FFFCF5;
  overflow: hidden;
  position: relative;
  margin-bottom: 96px;
}
@media (max-width: 1399px) {
  .history {
    margin-bottom: 40px;
  }
}
.history::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 626px;
  height: 626px;
  transform: translateY(-50%);
  background: url("img/TrongDongleft.png") left center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
.history::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 626px;
  height: 626px;
  transform: translateY(-50%);
  background: url("img/TrongDongrigth.png") right center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
.history > .container {
  position: relative;
  z-index: 1;
}
.history__desc-img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.history__timeline {
  position: relative;
  margin: 0 auto 40px;
}
@media (max-width: 991.98px) {
  .history__timeline {
    margin-bottom: 16px;
  }
}
.history__timeline-items {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 6px;
}
.history__timeline-swiper {
  overflow: hidden;
}
.history__timeline-swiper.swiper-disabled {
  overflow: visible;
}
.history__timeline-swiper.swiper-disabled .swiper-wrapper {
  transform: none !important;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}
.history__timeline-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.history__timeline-col.swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.history__timeline-swiper.swiper-disabled .history__timeline-col.swiper-slide {
  width: auto !important;
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .history__timeline-swiper:not(.swiper-disabled) .history__timeline-col.swiper-slide {
    width: auto;
  }
}
.history__tab {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.3s;
}
.history__tab:hover, .history__tab--active {
  transform: translateY(-6px);
}
.history__tab--active .history__wheat--default {
  display: none;
}
.history__tab--active .history__wheat--green {
  display: inline;
}
.history__tab--active .history__wheat {
  opacity: 1;
}
.history__tab--active .history__tab-label {
  color: #00852F;
}
.history__tab:hover .history__wheat--default {
  display: none;
}
.history__tab:hover .history__wheat--green {
  display: inline;
}
.history__tab:hover .history__tab-label {
  color: #00852F;
}
.history__wheat {
  width: 32px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.history__wheat--green {
  display: none;
}
.history__wheat--left {
  transform: scaleX(-1);
}
.history__tab-label {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  transition: color 0.3s;
  white-space: nowrap;
}
.history__progress-line {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background: #B3D9BA;
  z-index: 0;
}
.history__dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c5d6c9;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history__dot:not(.history__dot--active) {
  transform: scale(0.67);
}
.history__dot--active {
  background: #fff;
  border: 2px solid #00852F;
  transform: scale(1);
}
.history__dot--active::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00852F;
}
.history__dot--active .history__dot-line {
  display: block;
}
.history__dot-line {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: 1.5px;
  height: 25px;
  background: linear-gradient(to top, #00852F, transparent);
  display: none;
}
.history__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1124px;
  margin: 0 auto;
  position: relative;
}
.history__arrow {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #00852F;
  background: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  z-index: 2;
  position: relative;
}
.history__arrow img {
  width: 16px;
  height: 12px;
  object-fit: contain;
}
.history__arrow:hover {
  background: #00852F;
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 133, 47, 0.35);
}
.history__arrow:hover .history__arrow-icon--default {
  display: none;
}
.history__arrow:hover .history__arrow-icon--hover {
  display: block;
}
.history__arrow:active {
  transform: scale(0.95);
}
.history__arrow--left .history__arrow-icon--default {
  transform: rotate(0deg);
}
.history__arrow--left .history__arrow-icon--hover {
  transform: scaleX(-1);
}
.history__arrow--right .history__arrow-icon--default {
  transform: rotate(180deg);
}
.history__arrow--right .history__arrow-icon--hover {
  transform: rotate(0deg);
}
.history__arrow-icon--default {
  display: block;
}
.history__arrow-icon--hover {
  display: none;
}
.history__slides {
  flex: 1;
  max-width: 904px;
  overflow: hidden;
  border-radius: 20px;
}
.history__slide {
  overflow: hidden;
  border-radius: 20px;
}
.history__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.history__slide:hover img {
  transform: scale(1.05);
}
.history__desc {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
  margin: 16px auto 40px;
}
@media (max-width: 1199.98px) {
  .history__desc {
    margin-bottom: 24px;
  }
}
.history__btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00852F;
  color: #fff;
  padding: 11px 55px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: "Caudex", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.history__btn-more:hover {
  background: #FFFCF5;
  color: #00852F;
  border: 1px solid #00852F;
}
@media (max-width: 767.98px) {
  .history__btn-more {
    width: 100%;
  }
}

.achievements {
  background: #FFFCF5;
  margin: 96px 0;
}
@media (max-width: 1399px) {
  .achievements {
    margin: 40px 0;
  }
}
.achievements__title {
  text-align: center;
  margin-bottom: 32px;
}
.achievements__desc-img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.achievements__tabs {
  border: 1px solid #B3D9BA;
  border-radius: 100px;
  margin: 0 auto 20px;
  padding: 15px 40px;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .achievements__tabs {
    padding: 8px 14px;
  }
}
.achievements .swiper-wrapper {
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .achievements .swiper-wrapper {
    justify-content: flex-start;
  }
}
.achievements__tabs-swiper {
  overflow: hidden;
}
.achievements__tabs-swiper.swiper-disabled {
  overflow: visible;
}
.achievements__tabs-swiper.swiper-disabled .swiper-wrapper {
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.achievements__tabs-slide.swiper-slide {
  position: relative;
  height: auto;
  box-sizing: border-box;
  width: auto !important;
  padding: 0 30px;
}
.achievements__tabs-slide.swiper-slide:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  position: absolute;
  background: #cfcfcf;
  right: 0;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}
@media (max-width: 991.98px) {
  .achievements__tabs-slide.swiper-slide {
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .achievements__tabs-swiper:not(.swiper-disabled) .achievements__tabs-slide.swiper-slide {
    width: auto;
  }
}
@media (min-width: 992px) {
  .achievements__tabs-swiper.swiper-disabled .achievements__tabs-slide.swiper-slide {
    width: auto !important;
  }
}
.achievements__tab {
  white-space: nowrap;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  line-height: 1.4;
  border-radius: 100px;
  transition: color 0.2s;
  text-align: center;
}
.achievements__tab:hover {
  color: #00852F;
}
.achievements__tab--active {
  color: #00852F;
}
.achievements__content {
  display: none;
}
.achievements__content--active {
  display: block;
}
.achievements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 0 auto;
}
.achievements__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 401px;
  text-align: center;
  overflow: hidden;
}
.achievements__img-wrap {
  position: relative;
  width: 100%;
  height: 333px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.achievements__img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.achievements__img-wrap:hover .achievements__overlay {
  opacity: 1;
}
.achievements__img-wrap:hover > img {
  transform: scale(1.05);
}
.achievements__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.achievements__overlay-arrow {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  position: static !important;
  transform: none !important;
}
.achievements__overlay-text {
  color: #fff;
  font-family: "Caudex", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.achievements__card-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 140%;
  margin-top: 24px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .achievements__card-desc {
    margin-top: 16px;
  }
}
.achievements__btn-wrap {
  margin-top: 40px;
}
@media (max-width: 991.98px) {
  .achievements__btn-wrap {
    margin-top: 24px;
  }
}
.achievements__btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00852F;
  color: #fff;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: "Caudex", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.achievements__btn-more:hover {
  background: #FFFCF5;
  color: #00852F;
  border: 1px solid #00852F;
}
@media (max-width: 767.98px) {
  .achievements__btn-more {
    width: 100%;
    padding: 7px 20px;
  }
}

.activities {
  background: #FFFCF5;
  margin: 96px 0;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .activities {
    margin: 40px 0;
  }
}
.activities__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}
@media (max-width: 1399px) {
  .activities__header {
    margin-bottom: 20px;
  }
}
.activities__btn-more {
  padding: 10px 28px;
  border: 1px solid #00852F;
  border-radius: 10px;
  color: #00852F;
  font-family: "Caudex";
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}
.activities__btn-more:hover {
  background: #00852F;
  color: #fff;
  border-color: #00852F;
}
.activities__swiper {
  width: 100%;
  overflow: visible;
}
@media (max-width: 767.98px) {
  .activities__swiper {
    padding-left: 16px;
  }
}
.activities__swiper .swiper-wrapper {
  align-items: center;
}
.activities__swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activities__card {
  width: 100%;
  height: auto;
  aspect-ratio: 380/551;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.activities__card:hover {
  transform: scale(1.047);
}
.activities__card:hover .activities__card-img::before {
  opacity: 1;
}
.activities__card:hover .activities__card-img img {
  transform: scale(1.05);
}
.activities__card:hover .activities__overlay {
  padding-bottom: 24px;
}
.activities__card:hover .activities__card-desc {
  transform: translateY(-30px);
}
.activities__card:hover .activities__overlay-arrow {
  opacity: 1;
  transform: translateY(-8px);
}
.activities__card-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.activities__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.activities__card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}
.activities__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  align-items: flex-start;
  transition: padding-bottom 0.3s ease;
}
.activities__card-desc {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 130%;
  margin: 0;
  transition: transform 0.3s ease;
  transform: translateY(10px);
}
.activities__overlay-arrow {
  width: 16.76px !important;
  height: 16.76px !important;
  object-fit: contain;
  margin-top: 12px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.activities__pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.activities__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #00852F;
  opacity: 1;
  transition: all 0.3s;
}
.activities__pagination .swiper-pagination-bullet-active {
  background: #00852F;
}

.photo {
  background: #FFFCF5;
  position: relative;
  overflow: hidden;
  margin: 96px 0;
}
@media (max-width: 1399px) {
  .photo {
    margin: 40px 0;
  }
}
.photo > .container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
}
.photo__title {
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .photo__title {
    margin-bottom: 20px;
  }
}
.photo__tabs {
  display: flex;
  border: 1.5px solid #B3D9BA;
  border-radius: 100px;
  width: 563px;
  padding: 14px 45px;
  margin: 0 auto 40px;
  background: transparent;
  justify-content: space-evenly;
  align-items: center;
}
.photo__tab-line {
  width: 11px;
  height: 23px;
  flex-shrink: 0;
}
.photo__tab {
  flex: none;
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  line-height: 1.4;
  border-radius: 100px;
  transition: color 0.2s;
}
.photo__tab:hover {
  color: #00852F;
}
.photo__tab--active {
  color: #00852F;
}
.photo__tab-content {
  display: none;
}
.photo__tab-content--active {
  display: block;
}
.photo__slider-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin: 0 auto;
}
.photo__nav {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #00852F;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}
.photo__nav img {
  width: 16px;
  height: 12px;
  object-fit: contain;
}
.photo__nav:hover {
  background: #00852F;
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 133, 47, 0.35);
}
.photo__nav:hover .photo__nav-icon--default {
  display: none;
}
.photo__nav:hover .photo__nav-icon--hover {
  display: block;
}
.photo__nav:active {
  transform: scale(0.95);
}
.photo__nav--prev .photo__nav-icon--default {
  transform: rotate(0deg);
}
.photo__nav--prev .photo__nav-icon--hover {
  transform: scaleX(-1);
}
.photo__nav--next .photo__nav-icon--default {
  transform: rotate(180deg);
}
.photo__nav--next .photo__nav-icon--hover {
  transform: rotate(0deg);
}
.photo__nav-icon--default {
  display: block;
}
.photo__nav-icon--hover {
  display: none;
}
.photo__slider {
  width: 1076px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.photo__slider .swiper-wrapper {
  position: relative;
  overflow: hidden;
  height: 639px;
}
.photo__slider .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.photo__slider .swiper-slide.photo__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.photo__pagination {
  display: none;
  position: relative !important;
  width: auto !important;
  bottom: auto !important;
  margin-top: 14px;
}
.photo__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #00852F;
  background: transparent;
  opacity: 1;
  margin: 0 5px !important;
}
.photo__pagination .swiper-pagination-bullet-active {
  background: #00852F;
}
.photo__slide {
  position: relative;
  width: 100%;
  height: 639px;
  border-radius: 30px;
  overflow: hidden;
}
.photo__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s;
}
.photo__slide:hover > img {
  transform: scale(1.05);
}
.photo__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 40px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  border-radius: 0 0 30px 30px;
}
.photo__slide-caption {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  display: block;
  text-align: center;
}
.photo__btn-wrap {
  margin-top: 32px;
}
.photo__btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00852F;
  color: #fff;
  padding: 14px 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: "Caudex";
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: all 0.3s;
}
.photo__btn-more:hover {
  background: #FFFCF5;
  color: #00852F;
  border: 1px solid #00852F;
}

@media (max-width: 1399px) {
  .quote__text {
    font-size: 24px;
  }
  .quote__deco {
    width: 90px;
  }
  .quote__deco--left {
    margin-right: -60px;
  }
  .quote__deco--right {
    margin-left: -60px;
  }
  .awards {
    min-height: auto;
  }
  .awards .wrap__content {
    border-radius: 30px;
    padding: 0;
  }
  .awards .wrap__content .awards__bg {
    border-radius: 30px;
    padding: 30px 16px;
  }
  .awards__number {
    font-size: 40px;
  }
  .awards__label {
    font-size: 16px;
  }
  .awards__divider {
    height: 140px;
  }
  .awards__swiper {
    min-height: 380px;
  }
  .party__tabs {
    height: auto;
    min-height: 64px;
  }
  .party__tab {
    font-size: 14px;
  }
  .party__slide {
    height: 520px;
  }
  .party__slider .swiper-wrapper {
    height: 520px;
  }
  .party__slide-overlay {
    padding: 60px 32px 28px;
  }
  .history::before, .history::after {
    width: 300px;
    height: 300px;
  }
  .history__progress-line {
    bottom: 8px;
  }
  .history__tab-label {
    font-size: 16px;
  }
  .history__wheat {
    width: 26px;
  }
  .history__slider {
    max-width: 860px;
    gap: 32px;
  }
  .history__slide img {
    height: 340px;
  }
  .history__arrow {
    width: 48px;
    height: 48px;
  }
  .history__desc {
    font-size: 15px;
    max-width: 680px;
  }
  .achievements__tab {
    font-size: 16px;
  }
  .achievements__card {
    height: auto;
  }
  .achievements__img-wrap {
    height: 280px;
  }
  .photo__slide {
    height: 480px;
  }
  .photo__slider .swiper-wrapper {
    height: 480px;
  }
  .photo__tabs {
    width: 100%;
    max-width: 563px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199.98px) {
  .quote {
    margin: 40px 0px;
  }
  .quote__text {
    font-size: 22px;
  }
  .quote__deco {
    width: 80px;
  }
  .quote__deco--left {
    margin-right: -50px;
  }
  .quote__deco--right {
    margin-left: -50px;
  }
  .awards {
    min-height: auto;
  }
  .awards__number {
    font-size: 34px;
  }
  .awards__label {
    font-size: 14px;
    max-width: 180px;
  }
  .awards__divider {
    height: 110px;
  }
  .awards__tab {
    font-size: 14px;
  }
  .awards__swiper {
    min-height: 340px;
  }
  .party__slide {
    height: 440px;
  }
  .party__slider .swiper-wrapper {
    height: 440px;
  }
  .party__slide-overlay {
    padding: 50px 28px 24px;
    border-radius: 0 0 24px 24px;
  }
  .party__slide-title {
    font-size: 18px;
  }
  .party__showcase, .party__slider, .party__slide {
    border-radius: 24px;
  }
  .history::before, .history::after {
    width: 200px;
    height: 200px;
  }
  .history__timeline-items {
    margin-left: 0;
  }
  .history__progress-line {
    width: 100%;
    bottom: 7px;
  }
  .history__wheat {
    width: 22px;
  }
  .history__timeline-col {
    gap: 10px;
  }
  .history__dot {
    width: 15px;
    height: 15px;
  }
  .history__dot--active::after {
    width: 5px;
    height: 5px;
  }
  .history__dot-line {
    height: 15px;
    bottom: 15px;
  }
  .history__slider {
    gap: 24px;
  }
  .history__slide img {
    height: 340px;
  }
  .history__desc {
    max-height: none;
  }
  .achievements__tab {
    font-size: 14px;
  }
  .achievements__img-wrap {
    height: 240px;
  }
  .photo__slide {
    height: 420px;
  }
  .photo__slider .swiper-wrapper {
    height: 420px;
  }
  .photo__slider, .photo__slide {
    border-radius: 24px;
  }
  .photo__slide-overlay {
    border-radius: 0 0 24px 24px;
    padding: 60px 28px 24px;
  }
}
@media (max-width: 991.98px) {
  .quote__text {
    font-size: 20px;
  }
  .quote__source {
    font-size: 14px;
  }
  .quote__deco {
    width: 60px;
  }
  .quote__deco--left {
    margin-right: -35px;
  }
  .quote__deco--right {
    margin-left: -35px;
  }
  .awards {
    background-size: cover;
  }
  .awards__divider {
    display: none;
  }
  .awards__number {
    font-size: 28px;
  }
  .awards__label {
    font-size: 13px;
    max-width: 150px;
    margin: 4px auto 12px;
  }
  .awards__content {
    padding-bottom: 0;
  }
  .awards__panel {
    position: relative;
  }
  .awards__panel .awards__arrow {
    width: 42px;
    height: 42px;
    border-radius: 21px;
    position: absolute;
    bottom: 84px;
    z-index: 3;
  }
  .awards__panel .awards__arrow--left {
    left: calc(50% - 50px);
  }
  .awards__panel .awards__arrow--right {
    right: calc(50% - 50px);
  }
  .awards__panel[data-awards-panel=danh-hieu-anh-hung] .awards__arrow {
    bottom: 15px;
  }
  .awards__panel .awards__swiper .swiper-wrapper {
    padding-bottom: 70px;
  }
  .awards__swiper {
    min-height: auto;
  }
  .awards__bottom-row {
    margin: 10px 0 0;
  }
  .party__tabs {
    height: auto;
    min-height: 56px;
  }
  .party__slide {
    height: 360px;
  }
  .party__slider .swiper-wrapper {
    height: 360px;
  }
  .party__slide-overlay {
    padding: 16px;
    gap: 16px;
    flex-direction: column;
    align-items: start;
  }
  .party__slide-title {
    font-size: 16px;
  }
  .party__showcase, .party__slider, .party__slide {
    border-radius: 20px;
  }
  .history::before, .history::after {
    display: none;
  }
  .history__timeline-items {
    margin-left: 0;
  }
  .history__progress-line {
    width: 100%;
    bottom: 6px;
  }
  .history__wheat {
    width: 16px;
  }
  .history__timeline-col {
    gap: 8px;
  }
  .history__dot {
    width: 13px;
    height: 13px;
  }
  .history__dot--active::after {
    width: 4px;
    height: 4px;
  }
  .history__dot-line {
    height: 12px;
    bottom: 12px;
  }
  .history__slide img {
    height: 280px;
  }
  .history__slider {
    gap: 16px;
  }
  .history__arrow {
    width: 44px;
    height: 44px;
  }
  .achievements__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .achievements__img-wrap {
    height: 200px;
  }
  .photo__slide {
    height: 360px;
  }
  .photo__slider .swiper-wrapper {
    height: 360px;
  }
  .photo__nav {
    width: 48px;
    height: 48px;
  }
  .photo__tab {
    font-size: 14px;
  }
  .photo__slider, .photo__slide {
    border-radius: 20px;
  }
  .photo__slide-overlay {
    border-radius: 0 0 20px 20px;
    padding: 50px 24px 20px;
  }
  .photo__slide-caption {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .quote__text {
    font-size: 18px;
  }
  .quote__deco {
    width: 50px;
  }
  .quote__deco--left {
    margin-right: -30px;
  }
  .quote__deco--right {
    margin-left: -30px;
  }
  .awards__number {
    font-size: 22px;
  }
  .awards__label {
    font-size: 11px;
    max-width: 130px;
  }
  .awards__btn-all {
    width: 200px;
    height: 42px;
    font-size: 14px;
  }
  .awards__content {
    padding-bottom: 0;
  }
  .awards__panel .awards__arrow {
    width: 38px;
    height: 38px;
    bottom: 75px;
  }
  .awards__panel .awards__arrow--left {
    left: calc(50% - 46px);
  }
  .awards__panel .awards__arrow--right {
    right: calc(50% - 46px);
  }
  .awards__panel[data-awards-panel=danh-hieu-anh-hung] .awards__arrow {
    bottom: 15px;
  }
  .awards__panel .awards__swiper .swiper-wrapper {
    padding-bottom: 78px;
  }
  .awards__desc-img {
    transform: none;
  }
  .awards__page,
  #danh-hieu-anh-hung .awards__page {
    transform: none;
  }
  .party__tabs {
    border-radius: 20px;
    min-height: 48px;
    padding: 6px 10px;
  }
  .party__tabs-slide.swiper-slide {
    width: auto;
  }
  .party__tab-line {
    display: none;
  }
  .party__slide {
    height: 280px;
  }
  .party__slider .swiper-wrapper {
    height: 280px;
  }
  .party__slide-overlay {
    gap: 10px;
  }
  .party__slide-title {
    font-size: 14px;
  }
  .party__slide-link {
    font-size: 12px;
  }
  .party__showcase, .party__slider, .party__slide {
    border-radius: 14px;
  }
  .party__slide-overlay {
    gap: 20px;
  }
  .history__progress-line {
    width: 100%;
    bottom: 4px;
  }
  .history__wheat {
    width: 11px;
  }
  .history__timeline-col {
    gap: 4px;
  }
  .history__dot {
    width: 9px;
    height: 9px;
  }
  .history__dot--active::after {
    width: 3px;
    height: 3px;
  }
  .history__dot-line {
    height: 7px;
    bottom: 7px;
  }
  .history__slide img {
    height: 220px;
    border-radius: 12px;
  }
  .history__slides {
    border-radius: 12px;
  }
  .history__arrow {
    width: 40px;
    height: 40px;
  }
  .history__desc {
    font-size: 14px;
  }
  .achievements__grid {
    gap: 24px;
  }
  .achievements__img-wrap {
    height: auto;
  }
  .achievements__img-wrap > img {
    height: 220px;
  }
  .photo__slide {
    height: 280px;
    border-radius: 12px;
  }
  .photo__slider .swiper-wrapper {
    height: 280px;
  }
  .photo__slider {
    border-radius: 12px;
  }
  .photo__nav {
    width: 40px;
    height: 40px;
  }
  .photo__slider-wrap {
    gap: 10px;
    flex-wrap: wrap;
  }
  .photo__slide-caption {
    font-size: 14px;
  }
  .photo__tab {
    font-size: 14px;
  }
  .photo__pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 3;
  }
}
@media (max-width: 575.98px) {
  .quote__text {
    font-size: 16px;
  }
  .quote__deco {
    width: 40px;
  }
  .quote__deco--left {
    margin-right: -22px;
  }
  .quote__deco--right {
    margin-left: -22px;
  }
  .awards__tabs {
    margin-bottom: 12px;
  }
  .awards__number {
    font-size: 20px;
  }
  .awards__label {
    font-size: 12px;
    max-width: none;
  }
  .awards__btn-all {
    width: 180px;
    height: 40px;
    font-size: 13px;
  }
  .awards__page,
  #danh-hieu-anh-hung .awards__page {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .achievements__grid {
    grid-template-columns: 1fr;
  }
  .party__slide {
    height: 220px;
  }
  .party__slider .swiper-wrapper {
    height: 220px;
  }
  .party__slide-overlay {
    gap: 8px;
  }
  .party__slide-title {
    font-size: 12px;
  }
  .party__slide-link {
    font-size: 11px;
  }
  .history__slide img {
    height: 180px;
  }
  .history__arrow {
    width: 36px;
    height: 36px;
  }
  .photo__slide {
    height: 220px;
  }
  .photo__slider .swiper-wrapper {
    height: 220px;
  }
  .photo__nav {
    width: 36px;
    height: 36px;
  }
}
.container-ptcq {
  max-width: 1126px;
  margin: 0 auto 137px;
}

.wrap-page {
  position: relative;
}
.wrap-page .content-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.wrap-page .content-img.after {
  right: 0;
  left: unset;
}

.awards-page {
  background: #FFFCF5;
  /* ===== BANNER ===== */
}
.awards-page__banner {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  margin-bottom: 50px;
  /* ===== RESPONSIVE ===== */
}
@media (max-width: 991.98px) {
  .awards-page__banner {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
.awards-page__banner-bg {
  position: absolute;
  inset: 0;
}
.awards-page__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.awards-page__banner-emblem {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .awards-page__banner-emblem img {
    height: 108px;
    width: auto;
  }
}
.awards-page {
  /* ===== HEADER ===== */
}
.awards-page__header {
  text-align: center;
}
.awards-page__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: #B10E2A;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .awards-page__title {
    font-size: 20px;
    padding: 0 20px;
  }
}
.awards-page {
  /* ===== TABS ===== */
}
.awards-page__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #B3D9BA;
  border-radius: 100px;
  max-width: 444px;
  height: 56px;
  margin: 0 auto 47px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .awards-page__tabs {
    height: 36px;
    max-width: 311px;
  }
}
.awards-page__tab {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 20px;
  border-radius: 50px;
  text-align: left;
}
.awards-page__tab:hover {
  color: #00852F;
}
.awards-page__tab--active {
  color: #00852F;
}
@media (max-width: 991.98px) {
  .awards-page__tab {
    font-size: 14px;
    padding: 0 10px;
  }
}
.awards-page__tab-sep {
  width: 1px;
  height: 25px;
  transform: rotate(20deg) translateX(-5px);
  background: #cfcfcf;
}
.awards-page {
  /* ===== PANEL ===== */
}
.awards-page__panel--hidden {
  display: none;
}
.awards-page .list-item__appellation .card__appellation {
  display: flex;
  gap: 70px;
  position: relative;
}
.awards-page .list-item__appellation .card__appellation:nth-child(even) {
  flex-direction: row-reverse;
}
.awards-page .list-item__appellation .card__appellation:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.awards-page .list-item__appellation .card__appellation:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 2px;
  background: url("img/Line6.png") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .awards-page .list-item__appellation .card__appellation {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .awards-page .list-item__appellation .card__appellation {
    flex-direction: column;
  }
  .awards-page .list-item__appellation .card__appellation:nth-child(even) {
    flex-direction: column;
  }
}
.awards-page .list-item__appellation .card__img {
  width: 58.615%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 56px 120px;
  border-radius: 20px;
  background: url("img/ptcq/bgr.png") no-repeat center center/cover;
}
.awards-page .list-item__appellation .card__img .total__appellation {
  font-size: 80px;
  font-weight: 700;
  font-family: "Caudex", Georgia, serif;
  line-height: 1.4;
  color: #00852F;
  margin-top: 40px;
  margin-bottom: 16px;
}
.awards-page .list-item__appellation .card__img .name__appellation {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
}
.awards-page .list-item__appellation .card__img img {
  height: 198px;
  width: auto;
}
@media (max-width: 991.98px) {
  .awards-page .list-item__appellation .card__img {
    width: 45%;
    justify-content: center;
    padding: 40px 16px;
  }
  .awards-page .list-item__appellation .card__img .name__appellation {
    font-size: 16px;
  }
  .awards-page .list-item__appellation .card__img img {
    height: 120px;
    margin-bottom: 12px;
  }
}
@media (max-width: 767.98px) {
  .awards-page .list-item__appellation .card__img {
    width: 100%;
  }
  .awards-page .list-item__appellation .card__img .total__appellation {
    display: none;
  }
}
.awards-page .list-item__appellation .card__short {
  flex: 1;
}
.awards-page .list-item__appellation .card__short-title {
  display: flex;
  gap: 10px;
  align-items: end;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: capitalize;
  color: #222;
  border-bottom: 1px solid #B3D9BA;
  padding-bottom: 9px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .awards-page .list-item__appellation .card__short-title {
    font-size: 18px;
  }
}
.awards-page .list-item__appellation .card__short-title .text-bold {
  font-family: "Caudex", Georgia, serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}
.awards-page .list-item__appellation .card__short-text {
  color: #151515;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .awards-page .list-item__appellation .card__short-text {
    font-size: 14px;
  }
}

.details-history .full__banner {
  position: relative;
}
.details-history .full__banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(138, 62, 0, 0.3019607843);
  position: absolute;
  left: 0;
  top: 0;
}
.details-history .full__banner .main-img {
  height: 596px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .details-history .full__banner .main-img {
    height: 293px;
  }
}
.details-history .full__banner .wrap-overlay {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  padding: 106px 0 60px 0;
}
@media (max-width: 991.98px) {
  .details-history .full__banner .wrap-overlay {
    padding: 60px 16px 16px 16px;
  }
}
.details-history .full__banner .description {
  max-width: 1029px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  .details-history .full__banner .description {
    max-width: 260px;
  }
}
.details-history .full__banner .description__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 4px;
}
@media (max-width: 991.98px) {
  .details-history .full__banner .description__title {
    font-size: 18px;
  }
}
.details-history .full__banner .description__scholl-name {
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .details-history .full__banner .description__scholl-name {
    font-size: 16px;
  }
}
.details-history .full__banner .description__progress {
  position: relative;
  display: inline-block;
  font-size: 23px;
  padding: 15px 40px;
  margin-top: 20px;
}
.details-history .full__banner .description__progress::before {
  content: "";
  width: 47px;
  height: 73px;
  background: url("img/chitietcdls/Isolation_left.png") no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
}
.details-history .full__banner .description__progress::after {
  content: "";
  width: 47px;
  height: 73px;
  background: url("img/chitietcdls/Isolation_right.png") no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .details-history .full__banner .description__progress {
    font-size: 14px;
    padding: 6px 27px;
  }
  .details-history .full__banner .description__progress span {
    display: inline-block;
    transform: translateY(-6px);
  }
  .details-history .full__banner .description__progress::before {
    width: 26px;
    height: 41px;
    top: -8px;
  }
  .details-history .full__banner .description__progress::after {
    width: 26px;
    height: 41px;
    top: -8px;
  }
}
.details-history .page-body {
  margin: 96px 0 210px 0;
}
@media (max-width: 991.98px) {
  .details-history .page-body {
    margin: 40px 0 60px 0;
  }
}
.details-history .zone__content {
  display: flex;
  gap: 54px;
}
@media (max-width: 991.98px) {
  .details-history .zone__content {
    flex-direction: column;
    gap: 30px;
  }
}
.details-history .zone__content-progress {
  width: 306px;
}
@media (max-width: 991.98px) {
  .details-history .zone__content-progress {
    width: 100%;
  }
}
.details-history .zone__content-desc {
  flex: 1;
}
.details-history .zone__content-desc .tab__content {
  display: none;
}
.details-history .zone__content-desc .tab__content img {
  border-radius: 10px;
}
.details-history .zone__content-desc .tab__content img, .details-history .zone__content-desc .tab__content p {
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .details-history .zone__content-desc .tab__content img, .details-history .zone__content-desc .tab__content p {
    margin-bottom: 16px;
  }
}
.details-history .zone__content-desc .tab__content p {
  font-size: 16px;
  line-height: 1.4;
  color: #151515;
}
@media (max-width: 991.98px) {
  .details-history .zone__content-desc .tab__content p {
    font-size: 14px;
  }
}
.details-history .zone__content-desc .tab__content.is-active {
  display: block;
}
.details-history .zone__content .progress__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .details-history .zone__content .progress__title {
    font-size: 20px;
    text-align: center;
  }
}
.details-history .list__progress.swiper {
  overflow: hidden;
}
.details-history .list__progress .swiper-wrapper {
  display: flex;
  flex-direction: column;
}
.details-history .list__progress .swiper-slide {
  width: 100%;
}
.details-history .list__progress .progress__item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.details-history .list__progress .progress__item.active .progress__item-title {
  color: #B10E2A;
}
.details-history .list__progress .progress__item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  background-image: linear-gradient(to right, #e5e5e5 50%, transparent 0);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.details-history .list__progress .progress__item-time {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 23px;
  background: rgba(0, 133, 47, 0.2);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #00852F;
  margin-bottom: 8px;
}
.details-history .list__progress .progress__item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
}
@media (max-width: 991.98px) {
  .details-history .list__progress {
    width: 100%;
  }
  .details-history .list__progress .swiper-wrapper {
    flex-direction: row;
  }
  .details-history .list__progress .swiper-slide {
    width: 150px;
    flex: 0 0 150px;
  }
  .details-history .list__progress .progress__item:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
    background-image: none;
  }
  .details-history .list__progress .progress__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0;
  }
  .details-history .list__progress .progress__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #cfcfcf;
    z-index: 2;
    transform: rotate(20deg);
  }
  .details-history .list__progress .progress__item-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
  }
}

.outstanding-achievements {
  margin: 96px 0 145px 0;
}
@media (max-width: 991.98px) {
  .outstanding-achievements {
    margin: 40px 0 60px 0;
  }
}
.outstanding-achievements .tnb__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 54px;
}
@media (max-width: 991.98px) {
  .outstanding-achievements .tnb__body {
    flex-direction: column;
    gap: 40px;
  }
}
.outstanding-achievements .tnb-featured {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-featured {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.outstanding-achievements .tnb-featured__img-wrap {
  flex: 1;
  height: 282px;
  overflow: hidden;
  border-radius: 20px;
}
.outstanding-achievements .tnb-featured__img-wrap:hover .tnb-featured__img {
  transform: scale(1.03);
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-featured__img-wrap {
    height: 220px;
    flex: unset;
  }
}
.outstanding-achievements .tnb-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.outstanding-achievements .tnb-featured__body {
  width: 43.1%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-featured__body {
    width: 100%;
    gap: 12px;
  }
}
.outstanding-achievements {
  /* title + date grouped with 16px gap */
}
.outstanding-achievements .tnb-featured__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-featured__header {
    gap: 8px;
  }
}
.outstanding-achievements .tnb-featured__title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}
.outstanding-achievements .tnb-featured__title:hover {
  color: #00852F;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-featured__title {
    font-size: 18px;
  }
}
.outstanding-achievements .tnb-date {
  color: #8E8E8E;
  font-size: 14px;
}
.outstanding-achievements .tnb-date img {
  transform: translateY(-2px);
}
.outstanding-achievements .tnb-featured__excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-featured__excerpt {
    font-size: 14px;
  }
}
.outstanding-achievements .tnb-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.outstanding-achievements .tnb-grid__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #000000;
  transition: color 0.2s;
}
.outstanding-achievements .tnb-grid__item:hover {
  color: #00852F;
}
.outstanding-achievements .tnb-grid__item:hover .tnb-grid__img-wrap img {
  transform: scale(1.04);
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-grid__item {
    gap: 12px;
  }
}
.outstanding-achievements .tnb-grid__img-wrap {
  height: 138px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-grid__img-wrap {
    height: 183px;
  }
}
.outstanding-achievements .tnb-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.outstanding-achievements .tnb-grid__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.outstanding-achievements .tnb-grid__title:hover {
  color: #00852F;
}
.outstanding-achievements .tnb-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-list {
    margin-bottom: 40px;
  }
}
.outstanding-achievements .tnb-list__item {
  display: flex;
  gap: 20px;
  color: #000000;
  transition: color 0.2s;
}
.outstanding-achievements .tnb-list__item:hover {
  color: #00852F;
}
.outstanding-achievements .tnb-list__item:hover .tnb-list__img-wrap img {
  transform: scale(1.03);
}
.outstanding-achievements .tnb-list__img-wrap {
  width: 330px;
  height: 173px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-list__img-wrap {
    width: 126px;
    height: 96px;
    border-radius: 16px;
  }
}
.outstanding-achievements .tnb-list__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.outstanding-achievements .tnb-list__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding-top: 0;
}
.outstanding-achievements .tnb-list__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-list__title {
    font-size: 16px;
    -webkit-line-clamp: 3;
  }
}
.outstanding-achievements .tnb-list__excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-list__excerpt {
    display: none;
  }
}
.outstanding-achievements .tnb__main {
  flex: 1;
}
.outstanding-achievements .tnb__main .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .page-header {
    margin-bottom: 16px;
  }
}
.outstanding-achievements .tnb__main .page-header__title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  color: #B10E2A;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .page-header__title {
    font-size: 20px;
  }
}
.outstanding-achievements .tnb__main .page-header__btn {
  background: transparent;
  border: 1px solid #00852F;
  border-radius: 10px;
  color: #00852F;
  font-family: "Caudex", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 9.41px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.outstanding-achievements .tnb__main .page-header__btn:hover {
  background: #00852F;
  color: #fff;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .page-header__btn {
    padding: 0;
    border: unset;
  }
}
.outstanding-achievements .tnb__main {
  /* Bộ lọc: panel absolute dưới page-header (không phải modal full màn) */
}
.outstanding-achievements .tnb__main .tnb-filter-wrap {
  position: relative;
  z-index: 15;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap {
    margin-bottom: 16px;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .page-header {
  margin-bottom: 0;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 12px;
  inset: auto;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  display: block;
  align-items: unset;
  justify-content: unset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateY(-6px);
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__backdrop {
  display: none;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__card {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 50px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__card {
    padding: 16px;
    border-radius: 10px;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: opacity 0.2s;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__close:hover {
  opacity: 0.6;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__close {
    top: 5px;
    right: 7px;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__row {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__row {
    flex-direction: column;
    align-items: start;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup .flex__col {
  display: flex;
  gap: 18px;
  flex: 1;
  width: 100%;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup .flex__col .filter-popup__field--sm {
  width: 50%;
}
@media (max-width: 575.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup .flex__col {
    flex-direction: column;
  }
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup .flex__col .filter-popup__field--sm {
    width: 100%;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--sm {
  width: 247px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--sm {
    width: 100%;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--sm1 {
  width: 247px;
}
@media (max-width: 1399px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--sm1 {
    width: 100%;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--md {
  width: 50%;
}
@media (max-width: 575.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--md {
    width: 100%;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--lg {
  flex: 1;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__field--lg {
    width: 100%;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__label {
    font-size: 14px;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__select-wrap {
  position: relative;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 40px 8px 20px;
  font-size: 16px;
  color: #000000;
  background: #fff;
  cursor: pointer;
  outline: none;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__select:focus {
  border-color: #00852F;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__select {
    font-size: 14px;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__input {
  width: 100%;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 16px;
  color: #000000;
  background: #fff;
  outline: none;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__input::placeholder {
  color: #acacac;
  font-style: italic;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__input:focus {
  border-color: #00852F;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__input {
    font-size: 14px;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__date-wrap {
  position: relative;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  z-index: 1;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 4px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__actions {
    justify-content: center;
  }
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__reset {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__reset:hover {
  opacity: 0.7;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__submit {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #00852F;
  border: 1px solid #00852F;
  border-radius: 10px;
  padding: 0 20px;
  height: 48px;
  font-family: "Caudex", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.outstanding-achievements .tnb__main .tnb-filter-wrap .filter-popup__submit:hover {
  background: #006d26;
  border-color: #006d26;
}
.outstanding-achievements .tnb__sidebar {
  width: 32.099%;
}
.outstanding-achievements .tnb__sidebar .block-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .outstanding-achievements .tnb__sidebar {
    width: 100%;
  }
  .outstanding-achievements .tnb__sidebar .block-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.outstanding-achievements .tnb-sb-featured {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-sb-featured {
    gap: 12px;
    margin-bottom: 24px;
  }
}
.outstanding-achievements .tnb-sb-featured__img-wrap {
  width: 100%;
  height: 215px;
  overflow: hidden;
  border-radius: 10px;
}
.outstanding-achievements .tnb-sb-featured__img-wrap:hover img {
  transform: scale(1.03);
}
@media (max-width: 991.98px) {
  .outstanding-achievements .tnb-sb-featured__img-wrap {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
}
.outstanding-achievements .tnb-sb-featured__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.outstanding-achievements .tnb-sb-featured__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}
.outstanding-achievements .tnb-sb-featured__title:hover {
  color: #00852F;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-sb-featured__title {
    font-size: 16px;
  }
}
.outstanding-achievements .tnb-sb-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.outstanding-achievements .tnb-sb-list__item {
  display: flex;
  gap: 16px;
  color: #000000;
  background-image: linear-gradient(to right, #e5e5e5 50%, transparent 0);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 20px;
  transition: color 0.2s;
}
.outstanding-achievements .tnb-sb-list__item:hover {
  color: #00852F;
}
.outstanding-achievements .tnb-sb-list__item:hover .tnb-sb-list__img-wrap img {
  transform: scale(1.04);
}
.outstanding-achievements .tnb-sb-list__img-wrap {
  width: 196px;
  height: 116px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1199.98px) {
  .outstanding-achievements .tnb-sb-list__img-wrap {
    width: 126px;
    height: 96px;
    border-radius: 16px;
  }
}
.outstanding-achievements .tnb-sb-list__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.outstanding-achievements .tnb-sb-list__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outstanding-achievements .tnb-sb-list__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 767.98px) {
  .outstanding-achievements .tnb-sb-list__title {
    -webkit-line-clamp: 3;
  }
}

.tnb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 404px;
  height: 44px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .tnb-pagination {
    width: 100%;
  }
}

.tnb-pagination__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1;
}
.tnb-pagination__btn:hover {
  border-color: #00852F;
  color: #00852F;
}
.tnb-pagination__btn--active {
  background: #00852F;
  border-color: #00852F;
  color: #fff;
}
.tnb-pagination__btn--arrow {
  font-size: 20px;
  font-weight: 400;
  border-color: #ccc;
  color: #555;
}

.tnb-pagination__dots {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  padding: 0 2px;
}

.detail-achievements {
  margin: 106px 0 136px 0;
}
@media (max-width: 1199.98px) {
  .detail-achievements {
    margin: 40px 0 40px 0;
  }
}
.detail-achievements .wrap__content {
  display: flex;
  gap: 54px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 100px;
}
@media (max-width: 1199.98px) {
  .detail-achievements .wrap__content {
    margin-bottom: 40px;
  }
}
@media (max-width: 991.98px) {
  .detail-achievements .wrap__content {
    flex-direction: column;
    gap: 40px;
  }
}
.detail-achievements .inner__content {
  flex: 1;
}
.detail-achievements .block__new {
  width: 100%;
}
@media (min-width: 991.98px) {
  .detail-achievements .block__new {
    width: 305px;
  }
}
.detail-achievements .post__date {
  color: #8E8E8E;
  font-size: 14px;
}
.detail-achievements .post__date svg {
  transform: translateY(-3px);
}
.detail-achievements .inner__content .post__name {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
  color: #B10E2A;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .detail-achievements .inner__content .post__name {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.detail-achievements .inner__content .post__content * {
    font-family: inherit !important;
}
.detail-achievements .inner__content .post__content p,
.detail-achievements .inner__content .post__content h2,
.detail-achievements .inner__content .post__content h3,
.detail-achievements .inner__content .post__content figure {
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .detail-achievements .inner__content .post__content p,
  .detail-achievements .inner__content .post__content h2,
  .detail-achievements .inner__content .post__content h3,
  .detail-achievements .inner__content .post__content figure {
    margin-bottom: 20px;
  }
}
.detail-achievements .inner__content .post__content-short {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .detail-achievements .inner__content .post__content-short {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }
}
.detail-achievements .inner__content .post__content .sub-text {
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
}
.detail-achievements .inner__content .post__content p {
  font-size: 16px;
  color: #000000;
  line-height: 1.4 !important;
  text-align: justify !important;
}
.detail-achievements .inner__content .post__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .detail-achievements .inner__content .post__content p {
    font-size: 14px;
    line-height: 1.4;
  }
}
.detail-achievements .inner__content .post__content img {
  margin: 0 auto;
  border-radius: 16px;
}
.detail-achievements .inner__content .post__tags {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 40px 0;
  margin-top: 40px;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 991.98px) {
  .detail-achievements .inner__content .post__tags {
    padding: 24px 0;
    margin-top: 24px;
    border-bottom: 1px solid #e5e5e5;
  }
}
@media (max-width: 767.98px) {
  .detail-achievements .inner__content .post__tags {
    align-items: stretch;
    gap: 12px;
  }
}
.detail-achievements .inner__content .post__tags-label {
  font-size: 16px;
  line-height: 1.4;
}
.detail-achievements .inner__content .post__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .detail-achievements .inner__content .post__tags-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .detail-achievements .inner__content .post__tags-list::-webkit-scrollbar {
    height: 4px;
  }
  .detail-achievements .inner__content .post__tags-list::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 4px;
  }
}
.detail-achievements .inner__content .post__tags-list .tag-item {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
  color: #00852F;
  background: rgba(0, 133, 47, 0.1019607843);
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .detail-achievements .inner__content .post__tags-list .tag-item {
    flex-shrink: 0;
  }
}
.detail-achievements .inner__content .post__tags-list .tag-item:hover {
  background: #00852F;
  color: #fff;
}
.detail-achievements .block__new-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .detail-achievements .block__new-title {
    font-size: 20px;
  }
}
.detail-achievements .block__new .list__post-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.detail-achievements .block__new .list__post-item:not(:last-child) {
  background-image: linear-gradient(to right, #e5e5e5 50%, transparent 0);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 20px;
  transition: color 0.2s;
}
.detail-achievements .block__new .list__post-item a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
.detail-achievements .block__new .list__post-item a:hover {
  color: #00852F;
}
.detail-achievements {
  /* Nghe đọc bài — thanh audio pill */
}
.detail-achievements .post__audio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8.95px 20px;
  border-radius: 16px;
  background: #fff9ed;
  max-width: 100%;
  margin: 32px 0;
}
@media (max-width: 991.98px) {
  .detail-achievements .post__audio {
    margin: 12px 0;
    padding: 9px 16px;
  }
}
.detail-achievements .post__audio__play {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #00852F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s, transform 0.15s;
}
.detail-achievements .post__audio__play:hover {
  opacity: 0.92;
}
.detail-achievements .post__audio__play:active {
  transform: scale(0.96);
}
.detail-achievements .post__audio__play .post__audio__icon--pause {
  display: none;
}
.detail-achievements .post__audio__play.is-playing .post__audio__icon--play {
  display: none;
}
.detail-achievements .post__audio__play.is-playing .post__audio__icon--pause {
  display: block;
}
.detail-achievements .post__audio__label {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #151515;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .detail-achievements .post__audio__label {
    display: none;
  }
}
.detail-achievements .post__audio__progress {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.detail-achievements .post__audio__track {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #F5CD6F;
  position: relative;
  overflow: hidden;
}
.detail-achievements .post__audio__track-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 2px;
  background: #00852F;
  pointer-events: none;
}
.detail-achievements .post__audio__range {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 20px;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.detail-achievements .post__audio__time {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #151515;
  font-variant-numeric: tabular-nums;
  min-width: 44px;
  text-align: right;
}
.detail-achievements .post__audio__sep {
  flex-shrink: 0;
  width: 1px;
  height: 25px;
  background: #FFEEC9;
  align-self: center;
}
@media (max-width: 1199.98px) {
  .detail-achievements .post__audio__sep {
    display: none;
  }
}
.detail-achievements .post__audio__voice {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199.98px) {
  .detail-achievements .post__audio__voice {
    justify-content: space-between;
    width: 100%;
  }
}
.detail-achievements .post__audio__voice-label {
  font-size: 16px;
  color: #151515;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .detail-achievements .post__audio__voice-label {
    font-size: 14px;
  }
}
.detail-achievements .post__audio__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.detail-achievements .post__audio__select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  padding: 4px 22px 4px 0;
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  cursor: pointer;
  outline: none;
  max-width: 160px;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  .detail-achievements .post__audio__select {
    font-size: 14px;
  }
}
.detail-achievements .post__audio__chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #151515;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.detail-achievements .post__audio__media {
  display: none;
}

.search-results {
  margin: 96px 0 200px 0;
}
@media (max-width: 991.98px) {
  .search-results {
    margin: 40px 0 40px 0;
  }
}
.search-results .filter-ctrl {
  margin-bottom: 40px;
}
.search-results .filter-ctrl__head {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  color: #B10E2A;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__head {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.search-results .filter-ctrl__card {
  background: #fff;
  border-radius: 10px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  box-shadow: 0px 0px 20px 0px #FAF0D9;
}
@media (max-width: 767.98px) {
  .search-results .filter-ctrl__card {
    padding: 16px;
    border-radius: 10px;
  }
}
.search-results .filter-ctrl__row {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__row {
    flex-direction: column;
    align-items: start;
  }
}
@media (min-width: 991.98px) and (max-width: 1199.98px) {
  .search-results .filter-ctrl__row.last__row {
    align-items: baseline;
  }
}
.search-results .filter-ctrl .flex__col {
  display: flex;
  gap: 18px;
  flex: 1;
  width: 100%;
}
.search-results .filter-ctrl .flex__col .filter-popup__field--sm {
  width: 50%;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl .flex__col {
    flex-direction: column;
  }
  .search-results .filter-ctrl .flex__col .filter-popup__field--sm {
    width: 100%;
  }
}
.search-results .filter-ctrl__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-results .filter-ctrl__field--sm {
  width: 247px;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__field--sm {
    width: 100%;
  }
}
.search-results .filter-ctrl__field--sm1 {
  width: 247px;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__field--sm1 {
    width: 100%;
  }
}
.search-results .filter-ctrl__field--sm2 {
  flex: 1;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__field--sm2 {
    width: 100%;
  }
}
.search-results .filter-ctrl__field--md {
  width: 247px;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__field--md {
    width: 100%;
  }
}
.search-results .filter-ctrl__field--lg {
  flex: 1;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__field--lg {
    width: 100%;
  }
}
.search-results .filter-ctrl__field--lg2 {
  display: flex;
  flex: 1;
  gap: 18px;
  align-items: flex-end;
}
@media (max-width: 1199.98px) {
  .search-results .filter-ctrl__field--lg2 {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__field--lg2 {
    width: 100%;
  }
}
.search-results .filter-ctrl__label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .search-results .filter-ctrl__label {
    font-size: 14px;
  }
}
.search-results .filter-ctrl__select-wrap {
  position: relative;
}
.search-results .filter-ctrl__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 40px 8px 20px;
  font-size: 16px;
  color: #000000;
  background: #fff;
  cursor: pointer;
  outline: none;
}
.search-results .filter-ctrl__select:focus {
  border-color: #00852F;
}
@media (max-width: 767.98px) {
  .search-results .filter-ctrl__select {
    font-size: 14px;
  }
}
.search-results .filter-ctrl__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.search-results .filter-ctrl__input {
  width: 100%;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 16px;
  color: #000000;
  background: #fff;
  outline: none;
}
.search-results .filter-ctrl__input::placeholder {
  color: #acacac;
  font-style: italic;
}
.search-results .filter-ctrl__input:focus {
  border-color: #00852F;
}
@media (max-width: 767.98px) {
  .search-results .filter-ctrl__input {
    font-size: 14px;
  }
}
.search-results .filter-ctrl__date-wrap {
  position: relative;
}
.search-results .filter-ctrl__date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  z-index: 1;
}
.search-results .filter-ctrl__submit {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #00852F;
  border: 1px solid #00852F;
  border-radius: 10px;
  padding: 0 20px;
  height: 48px;
  font-family: "Caudex", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.search-results .filter-ctrl__submit:hover {
  background: #006d26;
  border-color: #006d26;
}
@media (max-width: 991.98px) {
  .search-results .filter-ctrl__submit {
    width: 100%;
    justify-content: center;
  }
}
.search-results .results-list__count {
  font-size: 30px;
  font-weight: 600;
  color: #8E8E93;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .search-results .results-list__count {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
  }
}
.search-results .results-list .list-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .search-results .results-list .list-post {
    gap: 16px;
  }
}
.search-results .results-list .list-post__item {
  display: flex;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .search-results .results-list .list-post__item {
    gap: 16px;
    background-image: linear-gradient(to right, #e5e5e5 50%, transparent 0);
    background-size: 12px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    padding-bottom: 20px;
  }
}
.search-results .results-list .list-post__item .list-post__img {
  width: 245px;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .search-results .results-list .list-post__item .list-post__img {
    width: 126px;
    height: 116px;
  }
}
.search-results .results-list .list-post__item .list-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.search-results .results-list .list-post__item .list-post__img img:hover {
  transform: scale(1.1);
}
.search-results .results-list .list-post__item .list-post__sum {
  flex: 1;
}
.search-results .results-list .list-post__item .list-post__sum .list-post__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.search-results .results-list .list-post__item .list-post__sum .list-post__title:hover {
  color: #00852F;
}
@media (max-width: 1199.98px) {
  .search-results .results-list .list-post__item .list-post__sum .list-post__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
}
.search-results .results-list .list-post__item .list-post__sum .list-post__date {
  color: #8E8E8E;
  font-size: 14px;
  margin-bottom: 10px;
}
.search-results .results-list .list-post__item .list-post__sum .list-post__date svg {
  transform: translateY(-4px);
}
.search-results .results-list .list-post__item .list-post__sum .list-post__excerpt {
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 1199.98px) {
  .search-results .results-list .list-post__item .list-post__sum .list-post__excerpt {
    display: none;
  }
}
