.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.hero .hero-action__box{position: absolute;bottom: 0;left: 0;min-width: 500px;background-color: #ffffff;z-index: 10;display: flex;align-items: center;padding:23px 28px;}
.hero .swiper-pagination{position: static;text-align: left;}
.hero .swiper-pagination .swiper-pagination-bullet{width: auto;height: auto;background-color: transparent;border:0;position: relative;}
.hero .swiper-pagination .swiper-pagination-bullet::after{width: 0;height: 2px;content:'';display: inline-block;background-color: #dedede;vertical-align: super;margin-left: 10px;transition: width 0.3s ease;}
.hero .swiper-pagination .swiper-pagination-bullet-active{box-shadow: none;}
.hero .swiper-pagination .swiper-pagination-bullet-active::after{width: 54px;}
.hero .hero-action__box .site-navbar__search{position: relative;}
.hero .hero-action__box .site-navbar__search #product-search{width: 175px;border: 1px solid #999999;height: 34px;line-height: 34px;padding:0 46px 0 15px;box-sizing: border-box;border-radius: 18px;}
.hero .hero-action__box .site-navbar__search .action__search-btn{position: absolute;right: 2px;top: 50%;transform: translateY(-50%); display: flex;align-items: center;justify-content: center;background-color: #999999;height: 28px;width: 44px;border-radius: 14px;border:0}

.product-category {
  background: #ffffff;
  padding-top: 108px;
}
.category-container__box{padding:0 58px}
.product-category__accordion {
  display: flex;
  gap: 12px;
  min-height: 472px;
}

.product-category__item {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
  min-height: 472px;
  background: #cfcfcf;
  box-shadow: 0 12px 24px rgba(16, 22, 45, 0.08);
  transition: flex 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.product-category__item.is-active {
  flex: 1.65 1 0;
  box-shadow: 0 18px 32px rgba(16, 22, 45, 0.14);
}

.product-category__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 12, 25, 0.08) 0%, rgba(9, 12, 25, 0.1) 44%, rgba(9, 12, 25, 0.76) 100%);
}

.product-category__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-category__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 18px 18px;
}

.product-category__trigger {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  flex-direction: column;
}

.product-category__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.product-category__name {
  margin: 0;
  color: var(--hhj-color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
}

.product-category__summary {
  max-width: 185px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-category__item.is-active .product-category__summary {
  opacity: 1;
  transform: translateY(0);
}

.product-category__item:hover .product-category__image {
  transform: scale(1.04);
}

.recommended-products .section-heading {
  margin-bottom: 70px;
}

.recommended-products__series-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 68px;
  row-gap: 10px;
  margin: 0 auto 48px;
}

.recommended-products__series-link {
  position: relative;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
  color: #3b3b3b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.recommended-products__series-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #5a5ec8;
  opacity: 0;
  transition: opacity var(--hhj-transition);
}

.recommended-products__series-link.is-active {
  color: #4b4fc0;
}

.recommended-products__series-link.is-active::after,
.recommended-products__series-link:hover::after,
.recommended-products__series-link:focus-visible::after {
  opacity: 1;
}

.recommended-products__panel {
  display: none;
}

.recommended-products__panel.is-active {
  display: block;
}

.recommended-products__slider-wrap {
  position: relative;
  padding: 18px 76px 0;
}

.recommended-products__slider {
  width: 100%;
  padding: 0 2px;
}

.recommended-products__arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7a7a7a;
  font-size: 22px;
  transform: translateY(-50%);
  transition: all var(--hhj-transition);
}

.recommended-products__arrow--prev {
  left: 8px;
}

.recommended-products__arrow--next {
  right: 8px;
}

.recommended-products__arrow:hover,
.recommended-products__arrow:focus-visible {
  color: #4b4fc0;
}

.product-profile-card {
  height: 100%;
  padding: 0 8px 0;
  border: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}
.product-profile-card:hover{transform: translateY(-8px);}
.product-profile-card__figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 214px;
  margin: 0 0 22px;
  background: transparent;
  transition: background-color var(--hhj-transition);
}

.product-profile-card__figure {
  background: #ffffff;
  position: relative;
}

.product-profile-card__figure::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(41, 49, 137, 0.8);
	opacity: 0;
	z-index: -1;
	transition: all var(--hhj-transition);
}
.product-profile-card__figure:hover::after {
	opacity: 1;
	z-index: 10;
}
.product-profile-card__image {
  width: auto;
  max-height: 172px;
  margin: 0 auto;
}

.product-profile-card__title {
  margin: 0 0 6px;
  color: var(--hhj-color-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;
}

.product-profile-card__meta {
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.6;
}
.about-us {
  background: var(--hhj-color-white);
}
.about-us__container {
	justify-content: space-between;
	margin-left: 0;
	margin-right: 0;
}
.about-us .section-heading__line {
  width: 34px;
  height: 4px;
  display: inline-block;
  background: var(--hhj-color-primary);
  margin:20px 0;
}
.about-us .section-heading{margin-bottom: 0;}
.about-us__container .about-left__box,
.about-us__container .about-right__box{padding-left: 0;padding-right: 0;}
.about-us__container .about-left__box{width: 41.43%;}
.about-us__container .about-right__box{width: 54%;}
.about-us__media {
  overflow: hidden;
  box-shadow: var(--hhj-shadow-soft);
  aspect-ratio: 116 / 129;
  border-radius: 10px;
}
.about-us__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us__copy p {
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
}
.about-us__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 42px;
  margin-top: 50px;
  border: 1px solid var(--hhj-color-border);
  color: var(--hhj-color-text);
  font-size: 14px;
  font-weight: bold;
  border-radius: 21px;
}
.about-us__button:hover,
.about-us__button:focus-visible {
  border-color: var(--hhj-color-primary);
  background: var(--hhj-color-primary);
  color: var(--hhj-color-white);
}
.about-us__partners {
  margin-top: 18px;
}

.about-us__partners-toolbar {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 16px;
  margin-bottom: 14px;
}
.about-us__partners-navigation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-us__partners-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid #8f8f95;
  border-radius: 50%;
  background: transparent;		
}

.about-us__partners-arrow:hover,
.about-us__partners-arrow:focus-visible {
  border-color: var(--hhj-color-primary);
  color: var(--hhj-color-primary);
}

.about-us__partners-slider {
  overflow: hidden;
}

.partner-card {
  text-align: center;
}

.partner-card__logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 88px;
	padding: 12px;
	border: 1px solid #d6d7dc;
	background: #ffffff;
}

.partner-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-card__name {
  margin: 0;
  padding-top: 8px;
  color: #63656d;
  font-size: 13px;
  line-height: 1.4;
}
.project-gallery {
  background: var(--hhj-color-white);
}
.gallery-container__box{padding:0 50px;}
.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-template-rows: 206px 202px;
  gap: 20px;
}
.project-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #d9dce3;
}
.project-gallery__item--s4 {
  grid-column: span 4;
}
.project-gallery__item--s2 {
  grid-column: span 2;
}
.project-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.project-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 10px;
  background: rgba(13, 16, 36, 0.54);
  color: var(--hhj-color-white);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--hhj-transition), visibility var(--hhj-transition);
}
.project-gallery__overlay-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.project-gallery__overlay-subtitle {
  margin: 0;
  color: rgba(255, 255, 255);
  font-size: 24px;
  line-height: 1;
}
.project-gallery__overlay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-gallery__overlay-link:hover{color:#ffffff;transform: translateX(5px);}
.project-gallery__item:hover .project-gallery__overlay,
.project-gallery__item:focus-within .project-gallery__overlay {
  opacity: 1;
  visibility: visible;
}
.project-gallery__item:hover .project-gallery__image {
  transform: scale(1.05);
}
.company-news {
  background: var(--hhj-color-white);
}

.news-card {
  height: 100%;
  background: var(--hhj-color-white);
}
.news-card__image-wrap{overflow: hidden;}
.news-card__image-wrap:hover .news-card__image {
  transform: scale(1.08);
}
.news-card__image {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}
.news-card__body {
  padding: 20px 0 0;
}
.news-card__title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-card__text {
  margin: 0;
  color: var(--hhj-color-text-soft);
  font-size: 16px;
  line-height: 1.5;
  overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;
}
.contact-form {
  background: var(--hhj-color-surface-alt);
}
.contact-form .container {
  max-width: 760px;
}
.contact-form__form {
  display: grid;
  gap: 10px;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d7d8de;
  background: var(--hhj-color-white);
  color: var(--hhj-color-text);
  font-size: 14px;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 0;
  border-color: var(--hhj-color-primary);
  box-shadow: 0 0 0 3px rgba(47, 54, 166, 0.08);
}
.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__submit {
  min-height: 54px;
  margin-top: 6px;
  border: 0;
  background: var(--hhj-color-primary);
  color: var(--hhj-color-white);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.18em;
}
.contact-form__feedback {
  min-height: 22px;
  margin: 0;
  color: var(--hhj-color-primary-dark);
  font-size: 13px;
  text-align: center;
}
@media (min-width: 1400px) {
  .project-gallery__grid {
    grid-template-rows: 372px 372px;
  }
}
@media (max-width: 1199.98px) {
  .project-gallery__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(3, 220px);
  }
  .project-gallery__item--s2,
  .project-gallery__item--s4 {
    grid-column: span 4;
  }
}
@media (max-width: 991.98px) {
	.recommended-products__slider-wrap {
		padding-right: 32px;
		padding-left: 32px;
	}

	.recommended-products__series-nav {
		column-gap: 36px;
		row-gap: 8px;
		margin-bottom: 22px;
	}

	.recommended-products__series-link {
		font-size: 13px;
	}

	.recommended-products__arrow {
		width: 30px;
		height: 30px;
		font-size: 18px;
	}
	.product-category {
		padding-top: 68px;
	}
	.product-category__body {
		padding: 0 12px 14px;
	}

	.product-category__item.is-active {
		flex: 2 1 0;
	}

	.product-category__name {
		font-size: 12px;
	}

	.product-category__summary {
		max-width: 160px;
	}
	.about-us__image {
		min-height: 360px;
	}
	.about-us__partners {
		margin-top: 20px;
	}
	.about-us__partners-toolbar {
		margin-bottom: 12px;
	}
  	.gallery-container__box{padding: 0 20px;}
	.about-us__container{gap: 48px;}
  	.about-us__container .about-left__box,
	.about-us__container .about-right__box{width: 100%;}
	.about-us__button{margin-top: 25px;}
	.recommended-products .section-heading{margin-bottom: 38px;}
	.category-container__box{padding:0 28px}
	.news-list__row{
		gap: 32px;
	}
}
@media (max-width: 767.98px) {
	.hero .hero-action__box .global-search__box{display: none;}
	.hero .hero-action__box{padding:0 15px;min-width: unset;}
	.hero .swiper-pagination .swiper-pagination-bullet{font-size: 14px;}
  	.product-category {
		padding-top: 44px;
	}
	.product-category__accordion {
		flex-direction: column;
		min-height: 0;
	}
	.product-category__symbol img{transform: scale(0.7);}
	.product-category__item {
		min-height: 220px;
	}

	.product-category__item.is-active {
		flex: none;
		min-height: 320px;
	}

	.product-category__summary {
		max-width: none;
	}
	.recommended-products__series-nav {
		justify-content: flex-start;
	}

	.recommended-products__slider-wrap {
		padding-top: 12px;
		padding-right: 0;
		padding-left: 0;
	}

	.recommended-products__arrow {
		display: none;
	}

	.product-profile-card__figure {
		min-height: 172px;
	}

	.product-profile-card__title {
		font-size: 20px;
	}

	.product-profile-card__meta {
		font-size: 12px;
	}
	.about-us__partners-toolbar {
		flex-wrap: wrap;
		gap: 10px;
	}
	.partner-card__logo-box {
		height: 84px;
	}
	.partner-card__name {
		font-size: 12px;
	}
	.project-gallery__grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: 12px;
	}
	.project-gallery__item,
	.project-gallery__item--s2,
	.project-gallery__item--s4 {
		grid-column: auto;
		min-height: 212px;
	}
	.project-gallery__overlay {
		padding: 22px 10px;
	}
	.project-gallery__overlay-title {
		font-size: 24px;
	}
	.project-gallery__overlay-subtitle {
		font-size: 13px;
	}
	.category-container__box{padding:0 20px}
}
@media (max-width: 575.98px) {
  .product-profile-card {
    padding-right: 16px;
    padding-left: 16px;
  }
  .about-us__image {
    min-height: 280px;
  }
  .about-us__button {
    min-width: 136px;
    min-height: 44px;
    margin-bottom: 22px;
  }
  .about-us__partners-arrow {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 360px) {
  .product-category__item {
    min-height: 156px;
  }

  .product-category__item.is-active {
    min-height: 220px;
  }
  .product-category__summary {
    font-size: 9px;
  }
  .recommended-products__series-link {
    font-size: 12px;
  }
  .product-profile-card__figure {
    min-height: 154px;
  }
  .project-gallery__item,
  .project-gallery__item--s2,
  .project-gallery__item--s4 {
    min-height: 176px;
  }
}