@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #F8F8F8;
}

.section-heading__label {
  display: block;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #F49900;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .section-heading__label {
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
    color: #F49900;
    font-weight: 700;
    line-height: 1.2;
  }
}
.section-heading__title {
  font-family: "Google Sans", sans-serif;
  font-size: 40px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .section-heading__title {
    font-family: "Google Sans", sans-serif;
    font-size: 24px;
    color: #F49900;
    font-weight: 700;
    line-height: 1.2;
  }
}
.section-heading__title--black {
  color: #000;
}
.section-heading__title--white {
  color: #fff;
}

.btn {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  padding: 0 44px;
  border-radius: 10px;
  border: 1px solid #F49900;
  text-decoration: none;
  cursor: pointer;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .btn {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 300;
    line-height: 1;
    padding: 0 24px;
    height: 50px;
  }
}
.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
  opacity: 0.22;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}
.btn:hover::before {
  transform: translate(-50%, -50%) scale(25);
}
.btn--white {
  background: transparent;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .btn--white {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    line-height: 1;
  }
}
.btn--white::before {
  background: #fff;
  opacity: 0.18;
}
.btn--white:hover {
  color: #fff;
  border-color: #fff;
}
.btn--dark {
  background: transparent;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .btn--dark {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 300;
    line-height: 1;
  }
}
.btn--dark::before {
  background: #F49900;
  opacity: 0.25;
}
.btn--dark:hover {
  color: #000;
}
.btn--special {
  background: #F49900;
  border-color: #F49900;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .btn--special {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 700;
    line-height: 1;
  }
}
.btn--special::before {
  background: #fff;
  opacity: 0.22;
}
.btn--special:hover {
  color: #000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.header {
  position: sticky;
  height: 80px;
  background-color: #fff;
  top: 0;
  z-index: 100;
}
.header .container {
  height: 100%;
}
.header__cols {
  display: grid;
  grid-template-columns: 350px 1fr;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .header__cols {
    grid-template-columns: 150px 1fr;
  }
}
.header__col--left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__col--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header__logo {
  display: inline-block;
  max-width: 195px;
}
.header__logo-img {
  display: block;
  max-width: 195px;
  width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: #F49900;
  transition: transform 0.25s ease;
}
.header__link:hover {
  color: #F49900;
}
.header__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.header__link--shop {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #F49900;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}
.header__link--shop::after {
  display: none;
}
.header__link--shop::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.45s ease;
  z-index: -1;
}
.header__link--shop {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.header__link--shop:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.header__link--shop:hover::before {
  transform: translate(-50%, -50%) scale(18);
}
.header__lang {
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header__lang {
    display: none;
  }
}
.header__lang-img {
  display: block;
  width: 28px;
  height: auto;
}
.header__burger {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.header__burger svg {
  width: 28px;
  height: 28px;
  display: block;
  color: #000;
}
@media (max-width: 768px) {
  .header__burger {
    display: inline-flex;
  }
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@media (min-width: 769px) {
  .header__overlay {
    display: none;
  }
}
.header__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: #fff;
  z-index: 99;
  padding: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (min-width: 769px) {
  .header__mobile {
    display: none;
  }
}
.header__mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f3f3f3;
  cursor: pointer;
}
.header__mobile-close svg {
  width: 26px;
  height: 26px;
  display: block;
  color: #000;
}
.header__mobile-nav {
  margin-top: 22px;
}
.header__mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__mobile-link {
  display: block;
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  text-decoration: none;
  background: #f8f8f8;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease;
}
.header__mobile-link:hover {
  background: #f0f0f0;
  transform: translateX(2px);
}
.header__mobile-link--shop {
  background: #F49900;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.header__mobile-link--shop:hover {
  background: #F49900;
  transform: translateX(2px);
}
.header.header--menu-open .header__overlay {
  opacity: 1;
  visibility: visible;
}
.header.header--menu-open .header__mobile {
  transform: translateX(0);
}

.hero {
  position: relative;
  height: 80vh;
}
@media (max-width: 768px) {
  .hero {
    height: unset;
    padding-bottom: 20px;
  }
}
.hero__actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
@media (max-width: 768px) {
  .hero__bg-img {
    object-position: center left;
  }
}
.hero__inside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 70vh;
  padding: 0 100px;
}
@media (max-width: 768px) {
  .hero__inside {
    padding: 0 20px;
  }
}
.hero__title {
  font-family: "Google Sans", sans-serif;
  font-size: 64px;
  color: #fff;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__title {
    font-family: "Google Sans", sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 300;
    line-height: 1.1;
  }
}
.hero__subtitle {
  font-family: "Google Sans", sans-serif;
  font-size: 32px;
  color: #F49900;
  font-weight: 300;
  line-height: 1.2;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-family: "Google Sans", sans-serif;
    font-size: 24px;
    color: #F49900;
    font-weight: 300;
    line-height: 1.2;
  }
}

.infobox {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .infobox {
    gap: 5px;
  }
}
.infobox__item {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed #999;
}
@media (max-width: 768px) {
  .infobox__item {
    padding: 17px 5px;
  }
}
.infobox svg {
  display: block;
  max-width: 70px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.infobox__title {
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .infobox__title {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
  }
}

.about {
  padding: 150px 0;
}
@media (max-width: 769px) {
  .about {
    padding: 80px 0;
  }
}
.about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1100px) {
  .about__cols {
    grid-template-columns: 1fr;
  }
}
.about__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.about__text {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 30px;
}

.productsmain {
  background: #f3f3f3;
  padding: 60px 0;
}
.productsmain__head {
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .productsmain__head {
    text-align: center;
  }
}
.productsmain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .productsmain__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .productsmain__grid {
    grid-template-columns: 1fr;
  }
}
.productsmain__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.productsmain__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 18px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.productsmain__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.productsmain__card-top {
  position: relative;
  margin-bottom: 14px;
}
.productsmain__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.productsmain__brand-box {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  padding: 8px;
  border-radius: 0 10px 0 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.productsmain__brand {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.productsmain__name {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.productsmain__footer {
  margin-top: 34px;
  text-align: center;
}

.certificatesmain {
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./../../img/cert-bg.png);
  background-size: cover;
}
.certificatesmain__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.certificatesmain .container {
  position: relative;
  z-index: 2;
}
.certificatesmain__cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.certificatesmain__col {
  flex: 1;
}
.certificatesmain__col--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.certificatesmain__col--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
@media (max-width: 768px) {
  .certificatesmain__cols {
    flex-direction: column;
    align-items: stretch;
  }
  .certificatesmain__col--left, .certificatesmain__col--right {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}

.knowledgemain {
  background: #f8f8f8;
  padding: 60px 0;
}
.knowledgemain .section-heading {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .knowledgemain .section-heading {
    text-align: center;
  }
}
.knowledgemain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .knowledgemain__grid {
    grid-template-columns: 1fr;
  }
}
.knowledgemain__card {
  position: relative;
}
.knowledgemain__link {
  position: relative;
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 50px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.knowledgemain__link:hover {
  transform: translateY(-3px);
  border-color: #F49900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.knowledgemain__category {
  position: absolute;
  top: 0;
  right: 0;
  background: #F49900;
  border-radius: 0 12px 0 12px;
  padding: 8px 14px;
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
}
.knowledgemain__card-title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.knowledgemain__text {
  margin: 20px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.5;
}
.knowledgemain__footer {
  margin-top: 34px;
  text-align: center;
}

.knowledgemain {
  background: #f8f8f8;
  padding: 60px 0;
}
.knowledgemain .section-heading {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .knowledgemain .section-heading {
    text-align: center;
  }
}
.knowledgemain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .knowledgemain__grid {
    grid-template-columns: 1fr;
  }
}
.knowledgemain__card {
  position: relative;
}
.knowledgemain__link {
  position: relative;
  display: block;
  height: unset;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 50px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.knowledgemain__link:hover {
  transform: translateY(-3px);
  border-color: #F49900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.knowledgemain__category {
  position: absolute;
  top: 0;
  right: 0;
  background: #F49900;
  border-radius: 0 12px 0 12px;
  padding: 8px 14px;
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
}
.knowledgemain__card-title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.knowledgemain__text {
  margin: 20px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.5;
}
.knowledgemain__footer {
  margin-top: 34px;
  text-align: center;
}

.call {
  background: #1c1c1c;
  padding: 60px 0;
  border-bottom: 1px solid #979797;
}
.call__title {
  margin-bottom: 0;
}
.call__cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.call__col {
  flex: 1;
}
.call__col--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.call__col--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
@media (max-width: 768px) {
  .call__cols {
    flex-direction: column;
    align-items: flex-start;
  }
  .call__col--right {
    justify-content: flex-start;
  }
}

.main {
  overflow-x: hidden;
}

.mainfooter {
  background: #000;
  padding: 100px 0;
  text-align: center;
}
.mainfooter__logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.mainfooter__logo-link {
  display: inline-block;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.mainfooter__logo-img {
  max-width: 170px;
  width: 100%;
  height: auto;
  display: block;
}
.mainfooter__text {
  display: block;
  max-width: 630px;
  margin: 0 auto 32px;
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
}
.mainfooter__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.mainfooter__link {
  text-decoration: none;
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #F49900;
  font-weight: 300;
  line-height: 1.2;
}
.mainfooter__link:hover {
  text-decoration: underline;
}

.breadcrumbs .container {
  border-bottom: 1px solid #d8d8d8;
  padding: 16px 0;
}
.breadcrumbs__nav {
  width: 100%;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #767676;
  font-weight: 300;
  line-height: 1.2;
}
.breadcrumbs__item--separator {
  user-select: none;
}
.breadcrumbs__item--current {
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #767676;
  font-weight: 300;
  line-height: 1.2;
  cursor: default;
}
.breadcrumbs__link {
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #767676;
  font-weight: 300;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}

.product {
  padding: 40px 0;
}
.product__inside {
  width: 100%;
  display: grid !important;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.product__main, .product__sidebar {
  min-width: 0;
}
.product__title {
  margin: 0 0 18px;
  font-family: "Google Sans", sans-serif;
  font-size: 32px;
  color: #000;
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .product__title {
    font-family: "Google Sans", sans-serif;
    font-size: 24px;
    color: #000;
    font-weight: 700;
    line-height: 1.15;
  }
}
.product__content p {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.product__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.product__card-title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.product__card-subtitle {
  margin: 8px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.4;
}
.product__card-gap {
  height: 22px;
}
.product__card-section + .product__card-section {
  margin-top: 18px;
}
.product__card-heading {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.product__card-text {
  margin: 8px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}
.product__card-text strong {
  font-weight: 700;
}
.product__card-text table {
  width: 100%;
  border-collapse: collapse;
}
.product__card-text table th,
.product__card-text table td {
  border: 1px solid #ccc;
  padding: 8px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.4;
}
.product__card-text table th {
  font-weight: 700;
  background-color: #f7f7f7;
}
.product__card-actions {
  margin-top: 24px;
}
.product__btn {
  width: 100%;
}
@media (max-width: 768px) {
  .product__inside {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product__sidebar {
    order: 1;
  }
  .product__main {
    order: 2;
  }
}
.product__gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.product__gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
}
.product__gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .product__gallery-img {
    height: 300px;
  }
}

.aboutbrand {
  padding: 50px 0;
}
.aboutbrand__inside {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}
.aboutbrand__logo {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.aboutbrand__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.aboutbrand__title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.aboutbrand__text {
  margin: 8px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}
.aboutbrand__gap {
  height: 10px;
}
.aboutbrand__link {
  display: inline-flex;
  text-decoration: none;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #F49900;
  font-weight: 700;
  line-height: 1.3;
  transition: opacity 0.2s ease;
}
.aboutbrand__link:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  .aboutbrand__inside {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .aboutbrand__logo {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  .aboutbrand__content {
    text-align: center;
  }
}

.companycontent {
  padding: 50px 0;
}

.content {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 768px) {
  .content {
    padding: 22px;
  }
}
.content__intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .content__intro {
    grid-template-columns: 1fr;
  }
}
.content__intro-img {
  border-radius: 14px;
  overflow: hidden;
}
.content__intro-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .content__intro-img img {
    height: 180px;
  }
}
.content__intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .content__intro-text {
    text-align: center;
  }
}
.content__intro-title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.content__intro-desc {
  margin: 10px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}
.content__heading {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.content__history {
  margin-top: 50px;
  padding: 60px 0;
}
.content__history-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) {
  .content__history-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .content__history-grid {
    grid-template-columns: 1fr;
  }
}
.content__history-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}
.content__history-year {
  font-family: "Google Sans", sans-serif;
  font-size: 48px;
  color: #a91919;
  font-weight: 700;
  line-height: 1;
}
.content__history-title {
  margin-top: 14px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.content__history-text {
  margin-top: 10px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}
.content__today {
  margin-top: 50px;
}
.content__today-text {
  margin: 14px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.content__today-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) {
  .content__today-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .content__today-grid {
    grid-template-columns: 1fr;
  }
}
.content__today-card {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 26px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #8c8c8c;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.content__today-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  opacity: 0.95;
}
@media (max-width: 768px) {
  .content__today-card {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
  }
}

.knowledge {
  padding: 50px 0;
}
.knowledge .content {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 768px) {
  .knowledge .content {
    padding: 22px;
  }
}
.knowledge__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) {
  .knowledge__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .knowledge__list {
    grid-template-columns: 1fr;
  }
}
.knowledge__card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 34px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.knowledge__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  opacity: 0.96;
}
@media (max-width: 768px) {
  .knowledge__card {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
    padding: 26px 18px;
  }
}

.knowledge-category {
  padding: 50px 0;
}
.knowledge-category__title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.knowledge-category__gap {
  height: 18px;
}
.knowledge-category__search {
  width: 100%;
}
.knowledge-category__input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.knowledge-category__input:focus {
  border-color: #F49900;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}
.knowledge-category__list {
  display: grid;
  gap: 12px;
}
.knowledge-category__item {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.knowledge-category__item:hover {
  transform: translateY(-1px);
  background: #efefef;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.knowledge-item {
  padding: 50px 0;
}
.knowledge-item__title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.knowledge-item__gap {
  height: 24px;
}
.knowledge-item__description {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.knowledge-item__description p {
  margin: 0 0 16px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.knowledge-item__description ul, .knowledge-item__description ol {
  margin: 0 0 16px 20px;
  padding: 0;
  list-style: disc;
}
.knowledge-item__description ul li, .knowledge-item__description ol li {
  margin: 0 0 6px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.knowledge-item__description h1, .knowledge-item__description h2, .knowledge-item__description h3, .knowledge-item__description h4, .knowledge-item__description h5, .knowledge-item__description h6 {
  margin: 24px 0 12px;
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.knowledge-item__description strong {
  font-weight: 700;
}
.knowledge-item__description a {
  color: #F49900;
  text-decoration: underline;
}
.knowledge-item__description a:hover {
  text-decoration: none;
}
.knowledge-item__text {
  margin: 14px 0 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.knowledge-item__download {
  margin-top: 24px;
}
.knowledge-item__actions {
  margin-top: 24px;
}

.productlist {
  padding: 50px 0;
}
.productlist__title {
  margin: 0 0 20px;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.productlist__search {
  width: 100%;
}
.productlist__input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  outline: none;
  background: #fff;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.productlist__input:focus {
  border-color: #F49900;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}
.productlist__gap {
  height: 24px;
}
.productlist__empty {
  margin-top: 24px;
  display: none;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}

.contactsection {
  padding: 50px 0;
}

.contact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contact__map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .contact__map {
    min-height: 300px;
  }
}
.contact__map-iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .contact__map-iframe {
    min-height: 300px;
  }
}
.contact__info {
  min-width: 0;
}
.contact__title {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.contact__gap {
  height: 12px;
}
.contact__gap-lg {
  height: 22px;
}
.contact__address {
  margin: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}
.contact__copy-location {
  margin-top: 8px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #F49900;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}
.contact__copy-location:hover {
  opacity: 0.8;
}
.contact__box {
  background: #383838;
  border-radius: 12px;
  padding: 7px 4px 6px 12px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 12px;
  align-items: center;
}
.contact__box + .contact__box {
  margin-top: 12px;
}
.contact__box-text {
  text-decoration: none;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
  word-break: break-word;
}
.contact__copy-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: #5e5e5e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.contact__copy-btn svg {
  width: 22px;
  height: 22px;
}
.contact__copy-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.contact__meta {
  display: grid;
  gap: 8px;
}
.contact__meta-item {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
}
.contact__basic-info {
  margin-bottom: 40px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .contact__basic-info {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.contact__basic-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact__basic-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contact__basic-info-col {
  text-align: left;
}
@media (max-width: 992px) {
  .contact__basic-info-col {
    text-align: left;
  }
}
.contact__basic-info-title {
  margin: 0 0 20px;
  font-family: "Google Sans", sans-serif;
  font-size: 28px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact__basic-info-title {
    font-size: 24px;
  }
}
.contact__basic-info-subtitle {
  margin: 0 0 20px;
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact__basic-info-subtitle {
    font-size: 18px;
  }
}

.contacts {
  margin-top: 26px;
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1200px) {
  .contacts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .contacts__grid {
    grid-template-columns: 1fr;
  }
}
.contacts__item {
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 16px;
  padding: 18px;
  min-width: 0;
}
.contacts__head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}
.contacts__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__icon svg {
  width: 22px;
  height: 22px;
  color: #000;
}
.contacts__name {
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1.15;
}
.contacts__role {
  margin-top: 6px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.3;
}
.contacts__data {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__data .contact__box {
  background: #383838;
  border-radius: 12px;
  padding: 7px 4px 6px 12px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 12px;
  align-items: center;
}
.contacts__data .contact__box + .contact__box {
  margin-top: 10px;
}
.contacts__data .contact__box-text {
  text-decoration: none;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
  word-break: break-word;
}
.contacts__data .contact__copy-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: #5e5e5e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.contacts__data .contact__copy-btn svg {
  width: 22px;
  height: 22px;
}
.contacts__data .contact__copy-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.contact-headers {
  margin-top: 100px;
  text-align: center;
}

.privacy-policy h1 {
  margin: 0 0 24px;
  font-family: "Google Sans", sans-serif;
  font-size: 32px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.privacy-policy h2 {
  margin: 32px 0 12px;
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
}
.privacy-policy p {
  margin: 0 0 16px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.privacy-policy ul {
  margin: 0 0 16px 20px;
  padding: 0;
  list-style: disc;
}
.privacy-policy ul li {
  margin: 0 0 6px;
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}
.privacy-policy strong {
  font-weight: 700;
}

/*# sourceMappingURL=app.css.map */
