@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Sora:wght@100..800&display=swap");

/* common css */
:root {
  --white: #fff;
  --black: #000;

  --primary: #028540;
  --primary-hover: #026e3a;
  --secondary: #e4ece6;
  --secondary-hover: #c8e9d0;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

figure,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}
a,
small {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  text-decoration: none;
}
body {
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
.main-wrp {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
.section-padding {
  padding: 60px 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease,
    background-color 0.3s ease-in-out;
}

#backToTopBtn:hover {
  opacity: 0.5 !important;
  border: 1px solid var(--primary);
}

#backToTopBtn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#backToTopBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  stroke-width: 2;
}
/* End Back Button */

/* text */
h1 {
  font-family: Sora;
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.25rem;
  margin-bottom: 0;
}
h2 {
  font-family: Sora;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.5rem;
  margin-bottom: 0;
}
h3 {
  font-family: Sora;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}
h4 {
  font-family: Sora;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}
p {
  font-family: Manrope;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
}
/* END text */

/* btn */
.btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  font-family: Manrope;
  padding: 12px 40px;
  border-radius: 32px;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.btn-primary:focus,
.btn-primary:hover {
  background: var(--primary-hover);
  border: 1px solid var(--primary-hover);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-secondary:focus,
.btn-secondary:hover {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary svg path {
  transition: all 0.3s ease-in-out;
}
.btn-secondary:hover svg path,
.btn-secondary:focus svg path {
  stroke: var(--white);
}
.btn-information {
  border: 1px solid transparent;
  background: transparent;
  color: var(--black);
}
.btn-information:hover,
.btn-information:focus {
  transform: translateY(-2px);
  border: 1px solid var(--secondary-hover);
  background: var(--secondary-hover);
}
.btn-information.active {
  border: 1px solid var(--secondary);
  background: var(--secondary);
}
.btn-third {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--black);
}
.btn-third:hover,
.btn-third:focus {
  border: 1px solid var(--secondary-hover);
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}
/* END btn */

/* header */
.header {
  border-bottom: 1px solid rgba(19, 19, 19, 0.1);
  padding: 2rem 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header.relative {
  position: relative;
}
.header-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-img svg {
  width: 184px;
  height: auto;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.navbar {
  display: flex;
  gap: 2.5rem;
}
.nav-item {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
.nav-item-black {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.nav-item-black:hover,
.nav-item:hover {
  color: var(--primary);
}
.nav-item-black.active,
.nav-item.active {
  color: var(--primary);
}
#hamburger-toggler {
  display: none;
}
#mobile-menu {
  display: none;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.langs {
  display: flex;
}
.lang {
  padding: 0 10px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border-right: 1px solid var(--black);
}
.lang.white {
  color: var(--white);
  border-right: 1px solid var(--white);
}
.lang.active,
.lang:focus,
.lang:hover {
  color: var(--primary);
}
.lang:last-child {
  border-right: none;
}
.lang.white:last-child {
  border-right: none;
}
/* END header */

/* hero */
.hero {
  height: 60rem;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(19, 19, 19, 0.1);
}
.subtitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(19, 19, 19, 0.1);
  width: fit-content;
}
.hero-wrp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero .btn-wrp {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2.5rem;
}
.hero-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-bottom-left > span:first-child {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: Sora;
}
.hero-bottom-left > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-bottom-right > span p,
.hero-bottom-left > span:last-child p {
  line-height: normal;
}
.avatars-wrp img {
  margin-right: -1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.avatars-wrp {
  margin-right: 1rem;
}
/* END hero */

/* banner */
.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  height: 100%;
}
.banner-wrp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.banner-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.banner-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1.5rem;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
/* END banner */

/* carousel */
.carousel {
  overflow-x: clip;
}
.carousel .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.carousel-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carousel-wrp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.carousel-wrp h2 {
  width: 60%;
}
.carousel-card-wrp p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-card {
  padding: 16px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
  color: var(--black);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.carousel-card-inner {
  transition: filter 0.3s ease-in-out;
}
.carousel-card.blurred {
  pointer-events: none;
}
.carousel-card.blurred .carousel-card-inner {
  filter: blur(10px);
  pointer-events: none;
}

.carousel-card .overlay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  text-align: center;
  border-radius: 24px;
  pointer-events: none;
}
.carousel-card.blurred .overlay {
  display: flex;
}

.carousel-card .overlay svg {
  width: 32px;
  height: 32px;
}
.carousel-card .overlay span {
  font-size: 0.875rem;
  font-weight: 500;
}
.carousel-card:hover {
  box-shadow: 0 4px 48px 0 rgba(16, 16, 16, 0.05);
  transform: translateY(-5px);
}
.carousel-img img {
  max-height: 263px;
  width: 100%;
  object-fit: contain;
}
.carousel-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carousel-card-wrp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.carousel-content button {
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  background: transparent;
  border: none;
  padding: 0;
  width: fit-content;
}
#carouselSlider .splide__track {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
#carouselSlider .splide__arrow {
  width: 72px;
  height: 48px;
  border-radius: 32px;
  background: var(--secondary);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
#carouselSlider .splide__arrow:hover {
  background: #c8e9d0;
}

#carouselSlider .splide__arrow svg {
  width: 24px;
  height: 24px;
}
#carouselSlider .splide__arrow:disabled {
  opacity: 0;
}
#carouselSlider .splide__arrow--next {
  right: -3rem;
}
#carouselSlider .splide__arrow--prev {
  left: -3rem;
}
#carouselSlider .splide__slide {
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
#carouselSlider .splide__slide.is-visible {
  opacity: 1;
}
/* END carousel */

/* blog */
.blog-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;

  border-radius: 2rem;
  background: var(--secondary);
  padding: 4.5rem 3rem;
}
.blog-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-card {
  position: relative;
  border-radius: 1.5rem;
  aspect-ratio: 9/10;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 19, 19, 0) 31.49%,
    rgba(19, 19, 19, 0.8) 90.45%
  );
  border-radius: 1.5rem;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.blog-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.blog-content {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: var(--white);

  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.blog-content p {
  font-size: 0.875rem;
  line-height: normal;
}
.blog-content h4 {
  font-size: 1rem;
}
.blog-eye {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.blog-link {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.blog-link svg path {
  transition: all 0.3s ease-in-out;
}
.blog-eye svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card:hover img {
  filter: blur(5px);
}
.blog-card:hover .blog-eye {
  background-color: var(--secondary);
}
.blog-card:hover .blog-eye:hover {
  background: var(--secondary-hover);
}
/* END blog */

/* detail blog */
.detail-blog .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.post-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--primary);
}
.post-content > *:not(img) {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.post-content a {
  color: var(--primary);
  font-weight: 700;
}
.post-content ol {
  list-style: decimal !important;
  padding-left: 1.5rem;
}

.post-content ol li::marker {
  color: var(--primary);
  font-weight: bold;
}

.post-content ul {
  list-style: none;
  padding-left: 0;
}
.post-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.post-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.post-content blockquote {
  position: relative;
  padding: 32px 24px 32px 5rem;
  border-radius: 16px;
  background: var(--secondary);
  color: var(--primary);
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}
.post-content blockquote::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 52px;
  background: url("../images/icons/quote.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.tags-container {
  padding: 32px 0;
  border-top: 1px solid rgba(19, 19, 19, 0.1);
}
.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  height: 100%;
}
.tag {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--black);
  font-weight: 700;
}
.tags > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
/* END detail blog */

/* why-us */
.why-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  height: 100%;
}
.why-us-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}
.why-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
.why-us-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 16px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 200px;
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.why-us-badge span {
  font-family: Sora;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}
.why-us-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-us-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-us-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(6, 62, 39, 0.1);
}
.why-us-card.last {
  border-bottom: 0;
  padding: 1rem 0 0;
}
.why-us-card-left,
.why-us-card-right {
  display: flex;
  flex: 1;
}
.why-us-card-left {
  align-items: center;
  gap: 1rem;
}
.why-us-card-img {
  padding: 14px;
  background: var(--secondary);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.why-us-card-img:hover {
  background: var(--secondary-hover);
}
.why-us-card-left > span p {
  font-family: Sora;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
}
/* END why-us */

/* image */
.image-img {
  aspect-ratio: 16/9;
  max-height: 336px;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;

  background-size: cover;
  background-position: center 70%;
  background-attachment: fixed;
}

/* END image */

/* faq */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.accordion-button,
.accordion-item {
  background: var(--secondary);
  border-radius: 1.125rem !important;
  border: 1px solid var(--secondary);
}
.accordion-button:not(.collapsed) {
  background: var(--secondary);
  box-shadow: none;
  color: var(--black);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  padding: 1.5rem;
}
.accordion-button,
.accordion-body {
  padding: 0;
}
.accordion-body {
  padding-top: 1rem;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/icons/accordion-close.png);
}
.accordion-button::after {
  background-image: url(../images/icons/accordion-open.png);
}
.accordion-button {
  font-family: Sora;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
/* END faq */

/* footer */
.footer {
  border-top: 1px solid rgba(19, 19, 19, 0.1);
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.footer-top {
  padding: 3rem 0 0;
}
.footer-bottom {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(19, 19, 19, 0.1);
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  transition: all 0.3s ease-in-out;
  position: relative;
}
.social-link:hover {
  background: var(--secondary-hover);
}
.social-link svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-middle > span {
  font-family: Sora;
  font-size: 20px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-link {
  color: rgba(19, 19, 19, 0.7);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}
.footer-link:hover {
  color: var(--primary);
}
.footer-cop p {
  color: rgba(19, 19, 19, 0.7);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.footer-cop p a {
  color: rgba(19, 19, 19, 0.7);
  transition: all 0.3s ease-in-out;
}
.footer-cop p a:hover {
  color: var(--primary);
}
/* END footer */

/* catalog */
.product-filter {
  padding: 40px 48px;
  border-radius: 24px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 10px;
  flex: 2;
  cursor: pointer;
  min-width: 250px;
}
.product-filter .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--white);
  width: 100%;
}
.product-filter .dropdown-toggle:focus,
.product-filter .dropdown-toggle:focus-visible {
  border: 1px solid var(--white);
  box-shadow: none;
  outline: none;
}
.product-filter .dropdown-toggle::after {
  display: none;
}
#productSearch {
  border: 1px solid var(--white);
  padding: 0;
}
.product-filter .dropdown {
  flex: 2;
  min-width: 250px;
}
.product-filter .dropdown .dropdown-menu {
  width: 100%;
  padding: 12px 16px;
  box-shadow: 0 2px 24px 0 rgba(16, 16, 16, 0.1);
  border-radius: 10px;
  border: 1px solid var(--white);
}
.product-filter .form-check-input:checked {
  filter: none;
  background-color: var(--primary);
}
.product-filter .form-check-input:checked {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.product-filter .form-control:focus,
.product-filter .form-check-input:focus {
  outline: none;
  box-shadow: none;
}
.product-filter .form-check {
  margin-bottom: 10px;
}
.product-filter .btn-reset {
  background-color: var(--black);
  color: var(--white);
}
.product-filter .from-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#approvalModal .modal-content {
  padding: 24px;
  box-shadow: 0 4px 48px 0 rgba(16, 16, 16, 0.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#approvalModal .modal-header {
  font-family: Sora;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
#approvalModal .modal-header,
#approvalModal .modal-body,
#approvalModal .modal-footer {
  padding: 0;
  border: none;
}
#approvalModal .modal-footer {
  justify-content: space-between;
}
#approvalModal .btn {
  flex: 1;
  justify-content: center;
}
#approvalModal.show {
  backdrop-filter: blur(10px);
}
.product-list-none {
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--black);
  border-radius: 24px;
}
/* END catalog */

/* breadcrumb */
.breadcrumb {
  height: 30rem;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumb .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}
.breadcrumb-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-bottom: 120px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb-nav a,
.breadcrumb-nav p,
.breadcrumb-nav span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-nav a:hover {
  color: var(--primary);
}
.breadcrumb-nav span {
  opacity: 0.7;
}
/* END breadcrumb */

/* product */
.product-url {
  display: flex;
  gap: 0.5rem;
  padding: 20px 0;
  flex-wrap: wrap;
}
.product-url a,
.product-url span,
.product-url p {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  transition: all 0.3s ease-in-out;
}
.product-url a:hover {
  color: var(--primary);
}
.product-url span,
.product-url p {
  opacity: 0.5;
}
.product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}
.product-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.product-img img:hover {
  scale: 1.05;
}
.product-wrp {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 40px;
  box-shadow: 0 4px 48px 0 rgba(16, 16, 16, 0.05);
  border-radius: 16px;
}
.product-wrp span {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-wrp span p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.product-ic-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tooltip-wrp {
  position: relative;
  display: inline-block;
}

.tooltip-wrp img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.tooltip-wrp::after {
  content: attr(data-title);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.tooltip-wrp:hover::after {
  opacity: 1;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-banner {
  padding: 24px 40px;
  border-radius: 16px;
  background: linear-gradient(86deg, #028540 -31.11%, #23cf75 100%);
  box-shadow: 0 10px 10px 0 rgba(16, 16, 16, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--white);
}
.product-banner figure img {
  max-width: 201px;
}
.product-banner-content span {
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
}
.information-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.information-wrp {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.information-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: opacity 0.3s ease-in-out;
}
.information-wrp span {
  font-family: "Sora";
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.information-content ul {
  list-style: none;
  padding-left: 0;
}

.information-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}

.information-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* END product */

/* download & apotheka */
.apotheka-card,
.download-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px 32px;
  width: 100%;

  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(16, 16, 16, 0.1);
}
.apotheka-item {
  display: block;
  width: 144px;
}
.apotheka-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.apotheka-item img:hover {
  scale: 1.05;
}
.apotheka-wrp {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}
.apotheka-card > span,
.download-card > span {
  font-family: "Sora";
  font-size: 24px;
  font-weight: 600;
}
.apotheka-card {
  text-align: center;
}
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.download-item > a:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
.download-item > a:first-child:hover {
  color: var(--primary);
}
.download-item > a:first-child p {
  font-size: 18px;
  font-weight: 700;
}
.download-item svg {
  flex-shrink: 0;
}
/* END download & apotheka */

/* category-list */
.category-list-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  box-shadow: 0 14px 56px 0 rgba(16, 16, 16, 0.1);
  border-radius: 16px;
  height: 100%;
}
.category-list-card-svg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  background-color: var(--secondary);
}
.category-list-card-svg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.category-list-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.category-list-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.category-list-card .btn-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* END category-list */

/* blogpage */
.blogpage-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  box-shadow: 0 10px 10px 0 rgba(16, 16, 16, 0.05);
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.blogpage-card:hover {
  transform: translateY(-5px);
}
.blogpage-card figure {
  aspect-ratio: 5/3;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.blogpage-card figure img {
  border-radius: 24px 24px 0 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.blogpage-card figure img:hover {
  scale: 1.05;
}
.blogpage-card-content {
  padding: 32px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  color: var(--black);
  flex: 1;
}
.blogpage-card-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.blogpage-card-content h4 {
  transition: all 0.3s ease-in-out;
}
.blogpage-card-content h4:hover {
  color: var(--primary);
}
.blogpage-card-content > p {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.blogpage-card-content > p:hover {
  color: var(--primary);
}
.blogpage-card-content > span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* END blogpage */

/* contact */
.contact .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;

  padding: 32px 32px 40px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 10px 0 rgba(16, 16, 16, 0.05);
  transition: all 0.3s ease-in-out;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 20px 0 rgba(16, 16, 16, 0.1);
}
.contact-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.contact-title {
  display: flex;
  flex-direction: column;
  white-space: normal;
  gap: 1rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  white-space: normal;
  word-break: break-word;
}
.contact-link:hover {
  color: var(--primary-hover);
}
.contact-link svg {
  flex-shrink: 0;
}
.contact-link svg path {
  transition: all 0.3s ease-in-out;
}
.contact-link svg path:hover {
  stroke: var(--primary-hover);
}
.pulse circle {
  transform-origin: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* END contact */

/* representatives */
.representatives-container {
  padding: 72px 48px;
  border-radius: 32px;
  background-color: var(--secondary);

  display: flex;
  flex-direction: column;
  gap: 48px;
}
.representatives-title {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.representatives-title > span {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.representatives-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 24px;
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 10px 0 rgba(16, 16, 16, 0.05);
  padding: 32px 32px 40px 32px;
  transition: all 0.3s ease-in-out;
}
.representatives-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 20px 0 rgba(16, 16, 16, 0.1);
}
.representatives-card-dot {
  position: absolute;
  top: 0;
  right: 0;
}
.representatives-card > figure img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}
.representatives-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.representatives-card-content > span {
  display: flex;
  flex-direction: column;
}
/* END representatives */

/* countries */
.countries .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.country-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 32px 40px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 10px 0 rgba(16, 16, 16, 0.1);
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 20px 0 rgba(16, 16, 16, 0.1);
}
.country-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
}
.country-card-content > span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.country-card > figure img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}
.country-card-wrp {
  display: flex;
  flex-direction: column;
}
.country-card-wrp p {
  font-size: 14px;
  line-height: 22px;
}
/* END countries */

/* similiar */
.similiar .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.similiar-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* END similiar */

/* 404 */
.error-page {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-page-content h1 span {
  color: var(--primary);
}
/* END 404 */

/* informationpage */
.informationpage-content h2,
.informationpage-content h3,
.informationpage-content h4 {
  color: var(--primary);
}
.informationpage-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.informationpage-content ol {
  list-style: decimal !important;
  padding-left: 1.5rem;
}
.informationpage-content ol li::marker {
  color: var(--primary);
  font-weight: bold;
}
.informationpage-content ul {
  list-style: none;
  padding-left: 0;
}
.informationpage-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.informationpage-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.informationpage-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.informationpage-content a:hover {
  color: var(--primary-hover);
}
/* END informationpage */

/* bottles */
.bottles-container {
  border-radius: 32px;
  background: var(--secondary);
  padding: 48px;
}
.bottles-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bottles-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bottles-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bottles-video {
  aspect-ratio: 4/3;
  border-radius: 32px;
}
.bottles-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
/* end bottles */

/* career-why */
.career-why-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.career-why .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.career-why-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 2px 10px 10px 2px rgba(16, 16, 16, 0.1);
  padding: 2rem;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.career-why-card:hover {
  transform: translateY(-5px);
}
.career-why-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.career-why-card-content span {
  font-size: 20px;
  font-weight: 700;
}
.career-why-card-content p {
  font-size: 14px;
}
.career-why-card-svg {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  border-radius: 50%;
}
.career-why-card-svg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  stroke: var(--primary);
}
/* END career-why */

/* career */
.career .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.career-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.career-card-title span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}
.career-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 2px 10px 10px 2px rgba(16, 16, 16, 0.1);
  padding: 2rem;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  color: var(--black);
}
.career-card:hover {
  transform: translateY(-5px);
}
.career-no-jobs {
  padding: 1rem;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  border-radius: 24px;
  background-color: var(--secondary);
}
/* END career */
.f-button,
.fancybox__backdrop {
  background: var(--white);
  opacity: 0.9;
}
.f-button svg {
  stroke: black;
}


/* certificates */
.certificates .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.certificates-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.certificate-card{
    display: flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 2px 10px 10px 2px rgba(16, 16, 16, 0.1);
    padding: 2rem;
    border-radius: 24px;
    color: var(--black);
    height: 100%;
    transition: all .3s ease-in-out;
}
.certificate-card:hover{
    transform: translateY(-5px);
}
.certificate-card-svg{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    position: relative;
    flex-shrink: 0;
}
.certificate-card-svg svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* END certificates */