@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.cms-button {
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: #1F8A51;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(21.6449704142, 96.3550295858, 56.5562130178);
}

.cms-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 480px) {
  .cms-title {
    padding: 50px 15px;
  }
}
.cms-title__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-title__container h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-title__container span {
    font-size: 14px;
  }
}

.cms-category {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-category {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-category__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .cms-category__wrapper.mobile-1cols {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cms-team {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-team {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-team__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cms-contact {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .cms-contact__container {
    width: 100%;
  }
}
.cms-contact__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 50px 0 50px;
  gap: 60px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 30px;
    margin-top: 20px;
  }
}
.cms-contact__wrapper-text {
  display: flex;
  flex-direction: column;
}
.cms-contact__wrapper-text h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h1 {
    font-size: 24px;
  }
}
.cms-contact__wrapper-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-content {
  width: 100%;
  max-width: 600px;
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid #EEEEEE;
  background: white;
  border-radius: 12px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-form {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
  }
}
.cms-contact__wrapper-form > h3 {
  font-size: 26px;
  font-weight: 600;
}
.cms-contact__wrapper-form > button {
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: #1F8A51;
  color: white;
}
.cms-contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cms-contact__items > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cms-contact__items > li i {
  width: 65px;
  height: 65px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #1F8A51;
  background: rgba(31, 138, 81, 0.1);
  flex-shrink: 0;
  font-size: 30px;
}
.cms-contact__items > li div {
  display: flex;
  flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__social {
  display: flex;
  gap: 15px;
}
.cms-contact__social li {
  display: flex;
}
.cms-contact__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white !important;
  transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
  background: #3b5998;
}
.cms-contact__social a.uil-instagram {
  background: #e4405f;
}
.cms-contact__social a.uil-youtube {
  background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
  background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
  background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
  background: #0077b5;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
.cms-contact__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-contact__form-row label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__form-row input, .cms-contact__form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #1F8A51;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
  height: 150px;
  resize: none;
}

.cms-page {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-page__container {
    width: 100%;
  }
}
.cms-page__container svg.not-found {
  max-height: 450px;
}
.cms-page__title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-page__title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cms-page__title span {
  font-size: 18px;
  font-weight: 300;
}
.cms-page__title span img {
  max-width: 100% !important;
  height: auto !important;
}
.cms-page__img {
  width: calc(100% + 170px);
  margin-left: -85px;
  border-radius: 12px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #EEEEEE;
}
@media (max-width: 480px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
  line-height: 1.5;
}
.cms-page__content img {
  max-width: 100% !important;
  height: auto !important;
}

.cms-post {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-post__img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.cms-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
}
.cms-post__category {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cms-post__category:hover {
  opacity: 1;
}
.cms-post > h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-post > h2 {
    font-size: 16px;
  }
}

.cms-user {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-user img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 13/16;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-user > h2 {
    font-size: 16px;
  }
}
.cms-user > span {
  font-weight: 300;
  font-size: 14px;
}

.cms-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #EEEEEE;
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  font-size: 14px;
  gap: 10px;
  align-items: center;
}
.cms-comment__header span {
  font-weight: 700;
}
.cms-comment__text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 480px) {
  .cms-comment__text {
    font-size: 16px;
    padding: 15px;
  }
}

.cms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cms-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #EEEEEE;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #1F8A51;
  color: white;
  border: none;
  opacity: 1;
}

.cms-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cms-gallery__item {
  display: flex;
}
.cms-gallery__item img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
}

.cms-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.cms-form h2 {
  font-size: 24px;
  font-weight: 600;
}
.cms-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: #1F8A51;
  color: white;
}
.cms-form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-form__item label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-form__item input, .cms-form__item textarea, .cms-form__item select {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #1F8A51;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required, .cms-form__item textarea:required, .cms-form__item select:required {
  border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
  height: 150px;
  resize: none;
}

.cms-product {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-product {
    padding: 20px 15px;
  }
}
.cms-product__container {
  width: 1200px;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .cms-product__container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.cms-product__gallery {
  width: 610px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
  position: sticky;
  top: 150px;
}
@media (max-width: 480px) {
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0px;
  }
}
.cms-product__top {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__top-wrapper {
  display: flex;
}
.cms-product__top-img {
  display: flex;
  width: 100%;
}
.cms-product__top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
}
.cms-product__bottom {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__bottom-wrapper {
  display: flex;
}
.cms-product__bottom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #1F8A51;
}
.cms-product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cms-product__content h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-product__content h1 {
    font-size: 28px;
  }
}
.cms-product__content-description {
  font-size: 18px;
  font-weight: 300;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0px;
}
.cms-product__item {
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}
.cms-product__item.active h2 i {
  transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
  max-height: 1000px;
  padding: 20px;
  line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3, .cms-product__item.active .cms-product__item-content h4, .cms-product__item.active .cms-product__item-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content ul {
  margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}
.cms-product__item > h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #EEEEEE;
  color: #1F8A51;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cms-product__item > h2 i {
  transition: all 0.3s ease;
}
.cms-product__item-content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-catalogs {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-catalogs {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-catalogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__container {
    width: 100%;
  }
}
.cms-catalogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__wrapper {
    grid-template-columns: 1fr;
  }
}

.cms-catalog {
  display: flex;
  width: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #1F8A51;
  background: rgba(31, 138, 81, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #1F8A51;
  background: rgba(31, 138, 81, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

.cms-img-content {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-img-content {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-img-content__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__container {
    width: 100%;
  }
}
.cms-img-content__item {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item {
    flex-direction: column !important;
  }
}
.cms-img-content__item:hover .cms-img-content__item-text {
  background: #1F8A51;
  color: white;
}
.cms-img-content__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cms-img-content__item-img {
  width: calc(50% - 5px);
  height: auto;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cms-img-content__item-img {
    width: 100%;
  }
}
.cms-img-content__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
}
.cms-img-content__item-text {
  width: calc(50% - 5px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  font-size: 18px;
  background: rgba(31, 138, 81, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .cms-img-content__item-text {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}
.cms-img-content__item-text h1,
.cms-img-content__item-text h2,
.cms-img-content__item-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item-text h1,
  .cms-img-content__item-text h2,
  .cms-img-content__item-text h3 {
    font-size: 18px;
  }
}

body {
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  color: #0D0404;
  background: #F5F5F7;
}

a {
  color: #0D0404;
  transition: color 0.3s ease;
}
a:hover {
  color: #1F8A51;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.title-sub {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.title-sub h2 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .title-sub h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-sub h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-sub h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.title-sub h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .title-sub h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-sub h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-sub h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.title-sub h1 span {
  color: #1F8A51;
}

.button {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.button i {
  color: #1F8A51;
}
.button--location {
  gap: 5px;
  padding: 8px 10px;
  background: white;
  color: #0D0404;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 300;
}
.button--detail {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .button--detail {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .button--detail {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .button--detail {
    font-size: 16px;
  }
}
.button--detail-white {
  color: white;
  font-size: 18px;
}
@media (max-width: 480px) {
  .button--detail-white {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .button--detail-white {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .button--detail-white {
    font-size: 16px;
  }
}
.button--detail-light {
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 480px) {
  .button--detail-light {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .button--detail-light {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .button--detail-light {
    font-size: 16px;
  }
}

.header {
  width: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0404;
  position: relative;
}
@media (max-width: 480px) {
  .header {
    padding: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header {
    padding: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 15px;
  }
}
.header__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container {
    width: 100%;
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 85px;
  max-width: 310px;
}
@media (max-width: 480px) {
  .header__logo img {
    max-width: 240px;
    height: 65px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__logo img {
    max-width: 240px;
    height: 65px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    max-width: 240px;
    height: 65px;
  }
}
.header__nav {
  width: 100%;
  max-width: 820px;
  display: flex;
}
@media (max-width: 480px) {
  .header__nav {
    left: 0px;
    top: 95px;
    position: absolute;
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav {
    left: 0px;
    top: 95px;
    position: absolute;
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav {
    left: 0px;
    top: 95px;
    position: absolute;
    display: none;
  }
}
.header__nav > ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__nav > ul {
    width: calc(100% - 20px);
    margin: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(13, 4, 4, 0.1019607843);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul {
    width: calc(100% - 20px);
    margin: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(13, 4, 4, 0.1019607843);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul {
    width: calc(100% - 20px);
    margin: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(13, 4, 4, 0.1019607843);
  }
}
.header__nav > ul > li {
  position: relative;
  display: flex;
}
.header__nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 500;
  color: white;
}
.header__nav > ul > li > a:hover {
  color: #1F8A51;
}
@media (max-width: 480px) {
  .header__nav > ul > li > a {
    color: #0D0404;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li > a {
    color: #0D0404;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li > a {
    color: #0D0404;
  }
}
.header__nav > ul > li > a i {
  font-size: 12px;
  color: #1F8A51;
}
@media (max-width: 480px) {
  .header__nav > ul > li > a i {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li > a i {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li > a i {
    display: none;
  }
}
.header__nav > ul > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header__nav > ul > li .sub-menu {
  width: 240px;
  position: absolute;
  top: 20px;
  padding-top: 10px;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__nav > ul > li .sub-menu {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li .sub-menu {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li .sub-menu {
    display: none;
  }
}
.header__nav > ul > li .sub-menu ul {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(13, 4, 4, 0.1019607843);
}
.header__lang {
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .header__lang {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__lang {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__lang {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
  }
}
.header__lang-active {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 300;
  background: #1F8A51;
  padding: 5px 10px 5px 5px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.header__lang-active:hover {
  background: #d5ba77;
  color: #0D0404;
}
.header__lang-active img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.header__lang-active i {
  font-size: 12px;
}
.header__lang:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header__lang .sub-menu {
  width: 100%;
  position: absolute;
  padding-top: 10px;
  top: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.header__lang .sub-menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: white;
  border-radius: 12px;
  gap: 10px;
  box-shadow: 0 0 10px rgba(13, 4, 4, 0.1019607843);
}
.header__lang .sub-menu ul li {
  display: flex;
}
.header__lang .sub-menu ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header__lang .sub-menu ul a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.header__mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: white;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .header__mobile-menu {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__mobile-menu {
    display: flex;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__mobile-menu {
    display: flex;
  }
}

.hero {
  width: 100%;
  margin-bottom: 160px;
  background: #0D0404;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .hero {
    margin-bottom: 40px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    margin-bottom: 40px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 9;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 250px;
  background: linear-gradient(180deg, #0D0404 0%, rgba(13, 4, 4, 0) 100%);
}
.hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__slider-item {
  width: 100%;
  height: 100vh !important;
  min-height: 600px;
  display: flex;
  position: relative;
}
.hero__slider-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  pointer-events: none;
}
.hero__slider-item video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  pointer-events: none;
  object-fit: cover;
}
.hero__slider-item .button--location {
  position: absolute;
  bottom: 30px;
  left: 30px;
  pointer-events: none;
}
.hero__arrow {
  position: absolute;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.hero__arrow:hover {
  opacity: 1;
}
.hero__arrow--left {
  left: 30px;
}
.hero__arrow--right {
  right: 30px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 300;
  z-index: 99;
}
@media (max-width: 480px) {
  .hero__scroll {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll img {
  animation: animateDown 1s infinite;
}
@keyframes animateDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}
.hero__social {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  bottom: 40px;
  left: 40px;
  z-index: 99;
}
.hero__social li {
  display: flex;
}
.hero__social a {
  display: flex;
  color: white;
}

.products {
  width: 100%;
  margin-bottom: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 480px) {
  .products {
    padding: 0 15px;
    margin-bottom: 40px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products {
    padding: 0 15px;
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products {
    padding: 0 15px;
    margin-bottom: 40px;
  }
}
.products__title {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 45px;
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .products__title {
    gap: 5px;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__title {
    gap: 5px;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__title {
    gap: 5px;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.products__title h4 {
  width: 600px;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .products__title h4 {
    width: 100%;
    font-size: 24px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__title h4 {
    width: 100%;
    font-size: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__title h4 {
    width: 100%;
    font-size: 24px;
  }
}
.products__title h4 > span {
  color: #1F8A51;
}
.products__title > span {
  width: 560px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .products__title > span {
    width: 100%;
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__title > span {
    width: 100%;
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__title > span {
    width: 100%;
    font-size: 14px;
  }
}
.products__container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  padding: 0 50px;
  position: relative;
}
@media (max-width: 480px) {
  .products__container {
    padding: 0px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__container {
    padding: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__container {
    padding: 0px;
  }
}
.products__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.products__slider-wrapper {
  width: 100%;
  display: flex;
}

.product {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(13, 4, 4, 0.1019607843);
}
@media (max-width: 480px) {
  .product {
    max-width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product {
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product {
    max-width: 100%;
  }
}
.product__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 0 30px;
}
.product__text h3 {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}
.product__text h2 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .product__text h2 {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__text h2 {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product__text h2 {
    font-size: 18px;
  }
}
.product__img {
  display: flex;
  padding: 15px;
}
.product__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

.about {
  width: 100%;
  margin-bottom: 80px;
  padding: 160px 0;
  background: #0D0404;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .about {
    padding: 40px 10px;
    margin-bottom: 40px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about {
    padding: 40px 10px;
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding: 40px 10px;
    margin-bottom: 40px;
  }
}
.about__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .about__container {
    width: 100%;
    gap: 40px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__container {
    width: 100%;
    gap: 40px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__container {
    width: 100%;
    gap: 40px;
  }
}
.about__text {
  width: 900px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .about__text {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text {
    width: 100%;
  }
}
.about__text-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 25px;
}
.about__text-description p:last-child {
  margin-bottom: 0px;
}
.about__locations {
  width: 1200px;
  display: grid;
  grid-template-areas: "top top" "left right";
  gap: 35px;
}
@media (max-width: 480px) {
  .about__locations {
    width: 100%;
    grid-template-areas: "top" "left" "right";
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__locations {
    width: 100%;
    grid-template-areas: "top" "left" "right";
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__locations {
    width: 100%;
    grid-template-areas: "top" "left" "right";
    gap: 20px;
  }
}

.location {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
}
.location .button--location {
  position: absolute;
  top: 30px;
  left: 30px;
  pointer-events: none;
}
@media (max-width: 480px) {
  .location .button--location {
    top: 5px;
    left: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .location .button--location {
    top: 5px;
    left: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .location .button--location {
    top: 5px;
    left: 5px;
  }
}
.location img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .location img {
    border-radius: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .location img {
    border-radius: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .location img {
    border-radius: 12px;
  }
}
.location:nth-child(1) {
  grid-area: top;
}
.location:nth-child(1) img {
  aspect-ratio: 5/2;
}
.location:nth-child(2) {
  grid-area: left;
}
.location:nth-child(2) img {
  aspect-ratio: 5/6;
}
.location:nth-child(3) {
  grid-area: right;
}
.location:nth-child(3) img {
  aspect-ratio: 3/2;
}

.technologies {
  width: 100%;
  margin-bottom: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .technologies {
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .technologies {
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .technologies {
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
.technologies__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .technologies__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .technologies__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .technologies__container {
    width: 100%;
  }
}
.technologies__container .button--detail-light {
  margin-top: 45px;
}
@media (max-width: 480px) {
  .technologies__container .button--detail-light {
    margin-top: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .technologies__container .button--detail-light {
    margin-top: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .technologies__container .button--detail-light {
    margin-top: 20px;
  }
}

.technology {
  width: 100%;
  padding: 80px 0;
  border-bottom: 1px solid #E6E6EB;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 480px) {
  .technology {
    padding: 20px 0;
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .technology {
    padding: 20px 0;
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .technology {
    padding: 20px 0;
    flex-direction: column;
    gap: 10px;
  }
}
.technology h3 {
  width: 340px;
  flex-shrink: 0;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .technology h3 {
    width: 100%;
    font-size: 24px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .technology h3 {
    width: 100%;
    font-size: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .technology h3 {
    width: 100%;
    font-size: 24px;
  }
}
.technology__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .technology__text {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .technology__text {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .technology__text {
    font-size: 16px;
  }
}
.technology__text p:last-child {
  margin-bottom: 0px;
}

.blogs {
  width: 100%;
  padding: 160px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
@media (max-width: 480px) {
  .blogs {
    padding: 40px 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs {
    padding: 40px 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs {
    padding: 40px 10px;
  }
}
.blogs__container {
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 480px) {
  .blogs__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs__container {
    width: 100%;
  }
}
.blogs__container .button--detail-light {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .blogs__container .button--detail-light {
    margin-top: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs__container .button--detail-light {
    margin-top: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs__container .button--detail-light {
    margin-top: 10px;
  }
}

.blog {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #F5F5F7;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .blog {
    border-radius: 12px;
    flex-direction: column;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog {
    border-radius: 12px;
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog {
    border-radius: 12px;
    flex-direction: column;
  }
}
.blog__img {
  display: flex;
}
.blog__img img {
  width: 350px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 480px) {
  .blog__img img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__img img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__img img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.blog__text {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
@media (max-width: 480px) {
  .blog__text {
    padding: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text {
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text {
    padding: 20px;
  }
}
.blog__text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .blog__text h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.blog__text span {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .blog__text span {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text span {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text span {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
@media (max-width: 480px) {
  .footer {
    padding: 0 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer {
    padding: 0 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 0 10px;
  }
}
.footer__logo img {
  height: 85px;
  max-width: 310px;
}
@media (max-width: 480px) {
  .footer__logo img {
    max-width: 240px;
    height: 65px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__logo img {
    max-width: 240px;
    height: 65px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__logo img {
    max-width: 240px;
    height: 65px;
  }
}
.footer__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .footer__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__container {
    width: 100%;
  }
}
.footer__top {
  width: 100%;
  padding: 100px 0;
  border-bottom: 1px solid #E6E6EB;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__top {
    padding: 40px 0;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top {
    padding: 40px 0;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top {
    padding: 40px 0;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__about {
  width: 435px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .footer__about {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__about {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__about {
    width: 100%;
  }
}
.footer__about-text {
  font-weight: 300;
  line-height: 1.5;
}
.footer__about-text p:last-child {
  margin-bottom: 0px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
.footer__product {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
  width: 425px;
}
@media (max-width: 480px) {
  .footer__product {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__product {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__product {
    width: 100%;
  }
}
.footer__product h5 {
  font-size: 18px;
  font-weight: 500;
}
.footer__product h5 > span {
  color: #1F8A51;
}
.footer__product ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
.footer__product ul li {
  display: flex;
}
.footer__product ul a {
  display: flex;
}
.footer__bottom {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}
.footer__bottom__copyright {
  line-height: 1.5;
  font-weight: 300;
}
.footer__bottom__copyright p:last-child {
  margin-bottom: 0px;
}
.footer__bottom > ul {
  display: flex;
  gap: 15px;
}
.footer__bottom > ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.footer__bottom > ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #C0C0C3;
  border-radius: 50%;
}
.footer__bottom > ul li:first-child:before {
  display: none;
}

.numbers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  .numbers {
    margin-bottom: 40px;
    padding: 0 10px;
  }
}
.numbers__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .numbers__container {
    gap: 20px;
  }
}
.numbers__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 480px) {
  .numbers__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.number {
  width: 100%;
  border: 1px solid rgba(13, 4, 4, 0.1019607843);
  background: white;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}
.number:hover {
  border-color: #1F8A51;
}
.number i {
  font-size: 55px;
}
.number__text {
  display: flex;
  flex-direction: column;
}
.number__text h5 {
  font-size: 36px;
  color: #1F8A51;
  font-weight: 700;
}
.number__text h6 {
  font-size: 22px;
  font-weight: 600;
}
.number__text > span {
  font-weight: 300;
  opacity: 0.6;
}

.certificates {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.certificates__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
}
.certificates__slider-wrapper {
  width: 100%;
  display: flex;
}
.certificates__slider-item {
  display: flex;
}
.certificates__slider-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 12px;
  object-fit: cover;
}
.certificates__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.certificates__pagination span {
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  margin: 0px !important;
}
.certificates__pagination span:hover {
  background: #1F8A51;
}
.certificates__pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #1F8A51;
}

.products__title h4,
.product__text h2,
.title-sub h1,
.number__text h6,
.blog__text h3,
.footer__product h5,
.cms-page__title h1,
.cms-title__container h1,
.cms-product__content h1,
.cms-contact__wrapper-text h1,
.cms-contact__wrapper-form > h3,
.cms-contact__wrapper-text h4 {
  font-family: "Prata", serif !important;
}

:root {
  --brand-green: #203b35;
  --brand-gold: #e3a61d;
  --brand-ink: #202623;
  --brand-mist: #edf2ef;
  --brand-paper: #f8faf8;
  --brand-radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8faf8;
  color: #202623;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #e3a61d;
  color: #142925;
}

h1,
h2,
h3,
h4,
h5,
h6,
.products__title h4,
.product__text h2,
.title-sub h1,
.number__text h3,
.blog__text h3,
.footer__product h5,
.cms-page__title h1,
.cms-title__container h1,
.cms-product__content h1,
.cms-contact__wrapper-text h1,
.cms-contact__wrapper-form > h3,
.cms-contact__wrapper-text h4 {
  font-family: "Oswald", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 20px;
}

a {
  color: #202623;
  text-underline-offset: 3px;
}
a:hover {
  color: #e3a61d;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(227, 166, 29, 0.72);
  outline-offset: 4px;
}

.section-kicker,
.hero__eyebrow {
  color: #e3a61d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: #e3a61d;
  color: #142925;
}
.button--primary i {
  color: #142925;
}
.button--primary:hover {
  background: #f0bd46;
  color: #142925;
}
.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
}
.button--ghost:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.button--detail, .button--detail-light, .button--detail-white {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.header {
  width: 100%;
  padding: 16px 0;
  background: #203b35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header__container {
  width: calc(100% - 64px);
  max-width: 1320px;
  margin: 0 auto;
  gap: 34px;
}
.header__logo img {
  width: 224px;
  max-width: 224px;
  height: auto;
}
.header__nav {
  max-width: 850px;
  margin-left: auto;
}
.header__nav > ul {
  justify-content: flex-end;
  gap: 24px;
}
.header__nav > ul > li > a {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.header__nav > ul > li > a:hover {
  color: #e3a61d;
}
.header__nav > ul > li:last-child > a {
  padding: 11px 17px;
  border: 1px solid rgba(227, 166, 29, 0.75);
  border-radius: 999px;
  color: #e3a61d;
}
.header__nav .sub-menu {
  top: 28px !important;
}
.header__nav .sub-menu ul {
  padding: 12px !important;
  border: 1px solid rgba(32, 59, 53, 0.14);
  border-radius: 12px !important;
  box-shadow: 0 18px 50px rgba(20, 41, 37, 0.16) !important;
}
.header__nav .sub-menu ul a {
  padding: 7px 9px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}
.header__nav .sub-menu ul a:hover {
  background: #edf2ef;
  color: #203b35;
}
.header__nav-item--mega {
  position: static !important;
}
.header__nav-item--mega:hover .mega-menu, .header__nav-item--mega:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0) !important;
}
.header__mobile-menu {
  border: 0;
  color: #203b35;
}
.header__mobile-menu span,
.header__mobile-menu span::before,
.header__mobile-menu span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: #203b35;
}
.header__mobile-menu span {
  position: relative;
}
.header__mobile-menu span::before, .header__mobile-menu span::after {
  content: "";
  position: absolute;
  left: 0;
}
.header__mobile-menu span::before {
  top: -6px;
}
.header__mobile-menu span::after {
  top: 6px;
}
.header__submenu-toggle {
  display: none;
}

.mega-menu {
  width: calc(100vw - 64px) !important;
  max-width: 1320px;
  top: 100% !important;
  left: 50%;
  padding-top: 12px !important;
  transform: translate(-50%, -10px);
}
.mega-menu__panel {
  width: 100%;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(32, 59, 53, 0.14);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(20, 41, 37, 0.22);
}
.mega-menu__intro {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 12px;
  background: radial-gradient(circle at 85% 10%, rgba(227, 166, 29, 0.2), transparent 34%), #203b35;
  color: #ffffff;
}
.mega-menu__intro > span {
  margin-bottom: 8px;
  color: #e3a61d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mega-menu__intro h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.05;
}
.mega-menu__intro p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.7;
}
.mega-menu__all {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(227, 166, 29, 0.5);
  border-radius: 999px;
  color: #e3a61d;
  font-size: 12px;
  font-weight: 700;
}
.mega-menu__all:hover {
  border-color: #e3a61d;
  background: #e3a61d;
  color: #142925;
}
.mega-menu__list {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.mega-menu__item {
  min-width: 0;
  display: flex;
}
.mega-menu__card {
  width: 100%;
  min-width: 0;
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(32, 59, 53, 0.14);
  border-radius: 12px !important;
  background: #f8faf8;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.mega-menu__card:hover {
  border-color: rgba(227, 166, 29, 0.65);
  background: #f8faf8 !important;
  box-shadow: 0 16px 34px rgba(20, 41, 37, 0.11);
  color: #203b35 !important;
  transform: translateY(-3px);
}
.mega-menu__media {
  width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mega-menu__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mega-menu__card:hover .mega-menu__media img {
  transform: scale(1.045);
}
.mega-menu__content {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
}
.mega-menu__content small {
  margin-bottom: 5px;
  color: #e3a61d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mega-menu__content strong {
  color: #203b35;
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
}
.mega-menu__content > span {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 13px;
  color: rgba(32, 38, 35, 0.6);
  font-size: 10px;
  font-weight: 700;
}
.mega-menu__content > span i {
  color: #e3a61d;
  font-size: 14px;
}

.header__nav .mega-menu {
  top: 100% !important;
  right: auto !important;
  left: 50% !important;
  transform: translate(-50%, -10px) !important;
}

.home-page .header {
  position: absolute;
  background: linear-gradient(180deg, rgba(20, 41, 37, 0.88), transparent);
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.hero {
  width: 100%;
  height: min(900px, 100svh);
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #142925;
  isolation: isolate;
}
.hero::before {
  width: 100%;
  height: 100%;
  z-index: 7;
  background: linear-gradient(90deg, rgba(20, 41, 37, 0.96) 0%, rgba(20, 41, 37, 0.78) 42%, rgba(20, 41, 37, 0.25) 76%, rgba(20, 41, 37, 0.48) 100%), linear-gradient(0deg, rgba(20, 41, 37, 0.55), transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, black, transparent 52%);
}
.hero__slider, .hero__slider-wrapper, .hero__slider-item {
  height: 100% !important;
}
.hero__slider-item {
  min-height: 0;
}
.hero__slider-item img,
.hero__slider-item video {
  filter: saturate(0.78) contrast(1.03);
}
.hero__content {
  width: calc(100% - 128px);
  max-width: 1320px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -45%);
  color: #ffffff;
}
.hero__content h1 {
  max-width: 760px;
  margin: 14px 0 22px;
  color: #ffffff;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 1.02;
  text-wrap: balance;
}
.hero__content > p {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}
.hero__arrow {
  top: auto;
  bottom: 45px;
  z-index: 24;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  opacity: 1;
  transform: none;
  cursor: pointer;
}
.hero__arrow i {
  font-size: 20px;
  line-height: 1;
}
.hero__arrow--left {
  left: max(64px, (100vw - 1320px) / 2);
}
.hero__arrow--right {
  right: auto;
  left: max(128px, (100vw - 1192px) / 2);
}
.hero__scroll {
  right: 50%;
  bottom: 34px;
  z-index: 24;
  transform: translateX(50%);
}
.hero__scroll span {
  writing-mode: initial;
  transform: none;
  letter-spacing: 0.08em;
}
.hero__scroll img {
  width: 12px;
}
.hero__social {
  display: none;
}

.products {
  margin: 0;
  padding: 130px 0 145px;
  background: #f8faf8;
}
.products__title {
  width: calc(100% - 96px);
  max-width: 1280px;
  margin-bottom: 34px;
  padding-bottom: 34px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32, 59, 53, 0.14);
}
.products__title > div:first-child {
  width: min(670px, 55%);
}
.products__title h4 {
  width: auto;
  margin-top: 8px;
  color: #203b35;
  font-size: 52px;
  line-height: 1.05;
}
.products__title-copy {
  width: min(460px, 40%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.products__title-copy > span {
  width: auto;
  color: rgba(32, 38, 35, 0.68);
  font-size: 15px;
  line-height: 1.75;
}
.products__title-copy .products__all {
  width: max-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(32, 59, 53, 0.26);
  border-radius: 999px;
  color: #203b35;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.products__title-copy .products__all:hover {
  border-color: #203b35;
  background: #203b35;
  color: #ffffff;
}
.products__container {
  width: calc(100% - 96px);
  max-width: 1280px;
  padding: 0;
}
.products__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product {
  width: 100%;
  max-width: none;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 59, 53, 0.12);
  border-radius: 12px;
  background: #203b35;
  box-shadow: 0 18px 46px rgba(20, 41, 37, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(20, 41, 37, 0.16);
}
.product__link {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  color: #ffffff;
}
.product__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 41, 37, 0.04) 18%, rgba(20, 41, 37, 0.9) 100%), linear-gradient(90deg, rgba(20, 41, 37, 0.24), transparent 55%);
}
.product__link:hover {
  color: #ffffff;
}
.product__img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
}
.product__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.product__text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
}
.product__text h2 {
  margin: 5px 0 16px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.08;
}
.product__category {
  color: #e3a61d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.product__cta i {
  color: #e3a61d;
  font-size: 17px;
}
.product:hover .product__img img {
  transform: scale(1.045);
}
.product:hover .product__cta {
  color: #ffffff;
}

.about {
  margin: 0;
  padding: 140px 0;
  overflow: hidden;
  background: #203b35;
}
.about__container {
  width: calc(100% - 96px);
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 90px 80px;
  align-items: center;
}
.about__text {
  width: auto;
}
.about__text .title-sub {
  margin: 0;
}
.about__text .title-sub h2 {
  color: #e3a61d;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about__text .title-sub h1 {
  max-width: 560px;
  margin: 8px 0 26px;
  font-size: 50px;
  line-height: 1.05;
}
.about__text-description {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}
.about__text .button {
  color: #e3a61d;
}
.about__locations {
  width: auto;
  display: block;
}

.location::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid rgba(227, 166, 29, 0.52);
  border-radius: 12px;
}
.location img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5 !important;
  border-radius: 12px;
}

.certificates {
  grid-column: 1/-1;
  padding-top: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.certificates .title-sub {
  margin: 0 0 30px;
}
.certificates .title-sub h2 {
  color: #e3a61d;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.certificates .title-sub h1 {
  max-width: 640px;
  margin-top: 8px;
  font-size: 46px;
  line-height: 1.05;
}
.certificates__slider-item {
  overflow: hidden;
  border-radius: 12px;
}
.certificates__slider-item img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.certificates__slider-item:hover img {
  transform: scale(1.04);
}
.certificates__pagination span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
}
.certificates__pagination span.swiper-pagination-bullet-active {
  width: 30px;
  background: #e3a61d;
}

.numbers {
  margin: 0;
  padding: 140px 0;
  background: radial-gradient(circle at 8% 12%, rgba(227, 166, 29, 0.1), transparent 28%), #edf2ef;
}
.numbers__container {
  width: calc(100% - 96px);
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: center;
}
.numbers__intro {
  max-width: 460px;
}
.numbers__intro h2 {
  margin: 12px 0 24px;
  color: #203b35;
  font-size: 50px;
  line-height: 1.05;
}
.numbers__intro p {
  max-width: 420px;
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid #e3a61d;
  color: rgba(32, 38, 35, 0.65);
  font-size: 14px;
  line-height: 1.8;
}
.numbers__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 41, 37, 0.16);
  border-radius: 12px;
  background: #203b35;
  box-shadow: 0 28px 70px rgba(20, 41, 37, 0.16);
  list-style: none;
}

.number {
  width: 100%;
  min-height: 0;
  position: relative;
  display: grid;
  grid-template-columns: 54px 56px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 38px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  transition: background-color 0.25s ease;
}
.number:hover {
  background: rgba(255, 255, 255, 0.055);
}
.number:last-child {
  border-bottom: 0;
}
.number::before {
  content: "";
  width: 3px;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  border-radius: 0 2px 2px 0;
  background: #e3a61d;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.number:hover::before {
  opacity: 1;
}
.number__index {
  color: rgba(255, 255, 255, 0.38);
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.number__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 166, 29, 0.42);
  border-radius: 12px;
  background: rgba(227, 166, 29, 0.08);
  color: #e3a61d;
  font-size: 23px;
}
.number__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.number__text .number__phase {
  color: #e3a61d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.number__text h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.08;
}
.number__text > span:not(.number__phase) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
  opacity: 1;
}

.blogs {
  padding: 130px 0 145px;
  background: #ffffff;
}
.blogs__container {
  width: calc(100% - 64px);
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  gap: 22px;
}
.blogs__container > .button--detail-light {
  grid-column: 1/-1;
  justify-self: center;
}
.blogs__heading {
  width: 100%;
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: 28px;
  align-items: end;
}
.blogs__heading .section-kicker {
  grid-column: 1/-1;
}
.blogs__heading h2 {
  max-width: 650px;
  margin-top: 8px;
  color: #203b35;
  font-size: 46px;
  line-height: 1.05;
}
.blogs__heading p {
  margin: 0;
  color: rgba(32, 38, 35, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.blog {
  min-width: 0;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(32, 59, 53, 0.14);
  border-radius: 12px;
  background: #f8faf8;
}
.blog__img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #edf2ef;
}
.blog__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.blog:hover .blog__img img {
  transform: scale(1.035);
}
.blog__text {
  min-width: 0;
  flex: 1;
  padding: 28px;
}
.blog__text h3 {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.12;
}
.blog__text h3 a {
  color: #203b35;
}
.blog__text > span {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 20px;
  color: rgba(32, 38, 35, 0.62);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog__text .button {
  margin-top: auto;
  align-self: flex-start;
}

.footer {
  padding: 0 32px;
  background: #edf2ef !important;
}
.footer__container {
  width: 100%;
  max-width: 1280px;
}
.footer__top {
  padding: 90px 0 70px;
  border-bottom-color: rgba(32, 59, 53, 0.14);
}
.footer__logo img {
  width: 240px;
  max-width: 240px;
  height: auto;
}
.footer__about {
  gap: 22px;
}
.footer__about-text {
  color: rgba(32, 38, 35, 0.62);
  font-size: 13px;
  line-height: 1.75;
}
.footer__menu, .footer__product ul {
  font-size: 13px;
  font-weight: 600;
}
.footer__product h5 {
  color: #203b35;
  font-size: 25px;
  line-height: 1.1;
}
.footer__bottom {
  padding: 28px 0;
  color: rgba(32, 38, 35, 0.62);
  font-size: 12px;
}

.inner-page .header {
  box-shadow: 0 8px 28px rgba(20, 41, 37, 0.12);
}

.cms-title {
  padding: 105px 24px 75px;
  background: #edf2ef;
  text-align: left;
}
.cms-title__container {
  width: 100%;
  max-width: 1100px;
  align-items: flex-start;
}
.cms-title__container h1 {
  margin-bottom: 18px;
  color: #203b35;
  font-size: 54px;
  line-height: 1.05;
}
.cms-title__container span {
  max-width: 760px;
  color: rgba(32, 38, 35, 0.65);
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}
.cms-title--blog {
  padding-top: 115px;
  padding-bottom: 85px;
}
.cms-title--blog .cms-title__container {
  max-width: 1120px;
}
.cms-title--blog .section-kicker {
  margin-bottom: 17px;
  color: #e3a61d;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2em;
}
.cms-title--blog h1 {
  max-width: 760px;
  font-size: 64px;
}
.cms-title--blog .cms-title__description {
  max-width: 720px;
  margin-top: 3px;
}

.cms-category {
  margin: 0;
  padding: 85px 24px 120px;
  background: #f8faf8;
}
.cms-category__container {
  width: 100%;
  max-width: 1200px;
}
.cms-category__wrapper {
  gap: 34px 22px;
}

.cms-post {
  padding: 12px 12px 22px;
  border: 1px solid rgba(32, 59, 53, 0.14);
  border-radius: 12px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cms-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(20, 41, 37, 0.1);
}
.cms-post__img {
  margin-bottom: 18px;
}
.cms-post__img img {
  aspect-ratio: 4/3;
  border: 0;
  border-radius: 12px;
}
.cms-post__category {
  padding: 0 10px;
  color: #e3a61d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
}
.cms-post > h2 {
  padding: 0 10px;
  font-size: 26px;
  line-height: 1.12;
}
.cms-post > h2 a {
  color: #203b35;
}
.cms-post--blog {
  height: 100%;
  padding: 0;
  overflow: hidden;
}
.cms-post--blog .cms-post__img {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #edf2ef;
}
.cms-post--blog .cms-post__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.cms-post--blog:hover .cms-post__img img {
  transform: scale(1.025);
}
.cms-post--blog .cms-post__body {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}
.cms-post--blog .cms-post__body h2 {
  margin: 14px 0 13px;
  font-size: 31px;
  line-height: 1.08;
}
.cms-post--blog .cms-post__body h2 a {
  color: #203b35;
}
.cms-post--blog .cms-post__body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 24px;
  color: rgba(32, 38, 35, 0.64);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.cms-post--blog .cms-post__meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(32, 38, 35, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cms-post--blog .cms-post__meta a {
  color: #e3a61d;
}
.cms-post--blog .cms-post__read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #203b35;
  font-size: 13px;
  font-weight: 700;
}
.cms-post--blog .cms-post__read i {
  color: #e3a61d;
  font-size: 17px;
  transition: transform 0.25s ease;
}
.cms-post--blog .cms-post__read:hover i {
  transform: translateX(4px);
}
.cms-post--featured {
  min-height: 455px;
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}
.cms-post--featured .cms-post__img {
  height: 100%;
  aspect-ratio: auto;
}
.cms-post--featured .cms-post__body {
  justify-content: center;
  padding: clamp(38px, 5vw, 62px);
}
.cms-post--featured .cms-post__body h2 {
  margin-top: 18px;
  font-size: 43px;
}
.cms-post--featured .cms-post__body > p {
  font-size: 15px;
  -webkit-line-clamp: 5;
}

.cms-category--blog {
  padding-top: 72px;
}
.cms-category--blog .cms-category__container {
  max-width: 1120px;
}
.cms-category--blog .cms-category__wrapper--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.cms-page {
  padding: 90px 24px 120px;
  background: #f8faf8;
}
.cms-page__container {
  width: 100%;
  max-width: 940px;
  gap: 34px;
}
.cms-page__title {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(32, 59, 53, 0.14);
}
.cms-page__title h1 {
  margin: 0 0 16px;
  color: #203b35;
  font-size: 54px;
  line-height: 1.05;
}
.cms-page__title .section-kicker {
  display: block;
  margin-bottom: 18px;
}
.cms-page__title .cms-page__description {
  max-width: 760px;
  color: rgba(32, 38, 35, 0.66);
  font-size: 16px;
  line-height: 1.75;
}
.cms-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: rgba(32, 38, 35, 0.58);
  font-size: 12px;
  font-weight: 600;
}
.cms-page__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cms-page__meta i {
  color: #e3a61d;
  font-size: 17px;
}
.cms-page__content {
  color: #343a37;
  font-size: 16px;
  line-height: 1.85;
}
.cms-page__content > p:first-child {
  color: #203b35;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
}
.cms-page__content h2 {
  margin: 48px 0 13px;
  color: #203b35;
  font-size: 34px;
  line-height: 1.12;
}
.cms-page__content h3 {
  margin: 32px 0 10px;
  color: #203b35;
  font-size: 28px;
  line-height: 1.15;
}
.cms-page__content ul,
.cms-page__content ol {
  margin: 20px 0 24px 22px;
}
.cms-page__content em {
  display: block;
  padding: 20px 22px;
  border-left: 3px solid #e3a61d;
  background: #edf2ef;
  color: rgba(32, 38, 35, 0.72);
}
.cms-page__img {
  width: 100%;
  margin-left: 0;
  border-radius: 12px;
}
.cms-page__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 42px;
  border-radius: 12px;
  background: radial-gradient(circle at 88% 10%, rgba(227, 166, 29, 0.2), transparent 32%), #203b35;
  color: #ffffff;
}
.cms-page__cta h2 {
  margin: 7px 0 9px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.08;
}
.cms-page__cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}
.cms-page__cta .button {
  flex-shrink: 0;
}
.cms-page--article {
  padding-top: 105px;
}
.cms-page--article .cms-page__container {
  max-width: 1120px;
  gap: 46px;
}
.cms-page--article .cms-page__title {
  max-width: 900px;
  padding: 0;
  border: 0;
}
.cms-page--article .cms-page__title h1 {
  max-width: 860px;
  font-size: 66px;
}
.cms-page--article .cms-page__img {
  max-height: 720px;
  aspect-ratio: auto;
  object-fit: contain;
  background: #edf2ef;
}
.cms-page--article .cms-page__content {
  width: 100%;
  max-width: 780px;
  margin: 4px auto 14px;
  font-size: 17px;
  line-height: 1.9;
}
.cms-page--article .cms-page__content > p:first-child {
  font-size: 20px;
}
.cms-page--article .cms-gallery {
  max-width: 940px;
  margin: 0 auto;
}

.cms-gallery {
  gap: 14px;
}
.cms-gallery__item {
  overflow: hidden;
  border-radius: 12px;
}
.cms-gallery__item img {
  border: 0;
  border-radius: 12px;
  transition: transform 0.35s ease;
}
.cms-gallery__item:hover img {
  transform: scale(1.04);
}

.cms-product {
  padding: 64px 24px 120px;
  background: #f8faf8;
}
.cms-product__container {
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  gap: 0;
}
.cms-product__hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
  gap: 16px;
  align-items: stretch;
}
.cms-product__gallery {
  width: 100%;
  min-width: 0;
  position: relative;
  top: 0;
  gap: 12px;
}
.cms-product__top-img img {
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 0;
  border-radius: 12px;
}
.cms-product__bottom-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 12px;
  opacity: 0.62;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #e3a61d;
  opacity: 1;
}
.cms-product__intro {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
  border-radius: 12px;
  background: radial-gradient(circle at 88% 8%, rgba(227, 166, 29, 0.2), transparent 34%), #203b35;
  color: #ffffff;
}
.cms-product__intro h1 {
  margin: 13px 0 20px;
  color: #ffffff;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.05;
}
.cms-product__intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.cms-product__intro-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.55;
}
.cms-product__intro-note i {
  margin-top: 1px;
  color: #e3a61d;
  font-size: 16px;
}
.cms-product__content-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.78;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0;
}
.cms-product__catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #e3a61d;
  font-size: 12px;
  font-weight: 700;
}
.cms-product__details {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(55px, 7vw, 100px);
  align-items: start;
  padding-top: 90px;
}
.cms-product__article {
  min-width: 0;
}
.cms-product__article > h2 {
  margin: 10px 0 34px;
  color: #203b35;
  font-size: 48px;
  line-height: 1.08;
}
.cms-product__richtext {
  color: #343a37;
  font-size: 16px;
  line-height: 1.9;
}
.cms-product__richtext > p:first-child {
  color: #203b35;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.8;
}
.cms-product__richtext h2 {
  margin: 46px 0 12px;
  color: #203b35;
  font-size: 33px;
  line-height: 1.12;
}
.cms-product__richtext h3,
.cms-product__richtext h4,
.cms-product__richtext h5 {
  margin: 32px 0 10px;
  color: #203b35;
  font-size: 25px;
  line-height: 1.15;
}
.cms-product__richtext ul,
.cms-product__richtext ol {
  margin: 20px 0 25px 22px;
}
.cms-product__richtext img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px;
}
.cms-product__inquiry {
  position: sticky;
  top: 116px;
  padding: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 88% 4%, rgba(227, 166, 29, 0.18), transparent 30%), #203b35;
  color: #ffffff;
}
.cms-product__inquiry > h2 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.08;
}
.cms-product__inquiry > p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}
.cms-product__inquiry .cms-form {
  gap: 15px;
}
.cms-product__inquiry .cms-form__item {
  gap: 6px;
}
.cms-product__inquiry .cms-form__item label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  opacity: 1;
}
.cms-product__inquiry .cms-form__item input,
.cms-product__inquiry .cms-form__item textarea {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  background: rgba(255, 255, 255, 0.96);
}
.cms-product__inquiry .cms-form__item textarea {
  height: 120px;
}
.cms-product__inquiry .cms-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  background: #e3a61d;
  color: #142925;
}
.cms-product__inquiry .cms-form button i {
  color: #142925;
  font-size: 17px;
}
.cms-product__inquiry .cms-form button:hover {
  background: #f0bd46;
}

.cms-form input,
.cms-form textarea,
.cms-form select,
.cms-contact__wrapper-form input,
.cms-contact__wrapper-form textarea,
.cms-contact__wrapper-form select {
  padding: 13px 14px;
  border-color: rgba(32, 59, 53, 0.14);
  border-radius: 12px;
  background: #f8faf8;
  font-family: "Inter", sans-serif;
}
.cms-form input:focus,
.cms-form textarea:focus,
.cms-form select:focus,
.cms-contact__wrapper-form input:focus,
.cms-contact__wrapper-form textarea:focus,
.cms-contact__wrapper-form select:focus {
  border-color: #e3a61d;
  box-shadow: 0 0 0 3px rgba(227, 166, 29, 0.14);
}
.cms-form button,
.cms-contact__wrapper-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #203b35;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.cms-form button:hover,
.cms-contact__wrapper-form button:hover {
  background: #142925;
}

.cms-contact {
  padding: 90px 24px 120px;
  background: #edf2ef;
}
.cms-contact__container {
  width: 100%;
  max-width: 1120px;
}
.cms-contact__wrapper {
  padding: 0;
  gap: 80px;
  align-items: flex-start;
}
.cms-contact__wrapper-text {
  width: 42%;
}
.cms-contact__wrapper-text h1 {
  margin-bottom: 18px;
  color: #203b35;
  font-size: 48px;
  line-height: 1.05;
}
.cms-contact__wrapper-form {
  width: 58%;
  margin: 0;
  padding: 38px;
  border-color: rgba(32, 59, 53, 0.1);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(20, 41, 37, 0.1);
}
.cms-contact__wrapper-form > h3 {
  color: #203b35;
  font-size: 34px;
  line-height: 1.1;
}
.cms-contact__intro {
  margin-bottom: 30px;
  color: rgba(32, 38, 35, 0.66);
  font-size: 14px;
  line-height: 1.75;
}
.cms-contact__items {
  margin: 0;
}
.cms-contact__items > li i {
  background: rgba(32, 59, 53, 0.09);
  color: #e3a61d;
}
.cms-contact__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(32, 38, 35, 0.68);
  font-size: 12px;
}
.cms-contact__notice input {
  width: 17px;
  height: 17px;
  padding: 0;
  flex: 0 0 auto;
}
.cms-contact__notice a {
  color: #203b35;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  .header {
    padding: 13px 0;
  }
  .header__container {
    width: calc(100% - 40px);
  }
  .header__logo img {
    width: 205px;
    max-width: 205px;
  }
  .header__nav {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    padding: 10px 20px 20px;
  }
  .header__nav > ul {
    width: 100%;
    max-height: calc(100svh - 100px);
    margin: 0;
    padding: 18px;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    border: 1px solid rgba(32, 59, 53, 0.14);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(20, 41, 37, 0.2);
  }
  .header__nav > ul > li,
  .header__nav > ul > li > a {
    width: 100%;
  }
  .header__nav > ul > li > a {
    padding: 10px 9px;
    color: #203b35;
  }
  .header__nav > ul > li:last-child > a {
    justify-content: center;
    background: #203b35;
    color: #ffffff;
  }
  .header__nav .header__nav-item--mega {
    position: relative !important;
    flex-direction: column;
    align-items: stretch;
  }
  .header__nav .header__nav-item--mega > a {
    padding-right: 52px;
  }
  .header__nav .header__nav-item--mega.is-open .mega-menu {
    display: block !important;
  }
  .header__nav .header__nav-item--mega:hover .mega-menu, .header__nav .header__nav-item--mega:focus-within .mega-menu, .header__nav .header__nav-item--mega.is-open .mega-menu {
    right: auto !important;
    left: auto !important;
    transform: none !important;
  }
  .header__nav .mega-menu {
    width: 100% !important;
    max-width: none;
    position: static !important;
    display: none !important;
    right: auto !important;
    left: auto !important;
    padding: 4px 0 6px !important;
    visibility: visible;
    opacity: 1;
    transform: none !important;
  }
  .header__nav .mega-menu__panel {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .header__nav .mega-menu__intro {
    display: none;
  }
  .header__nav .mega-menu__list {
    grid-template-columns: 1fr;
    gap: 6px !important;
  }
  .header__nav .mega-menu__card {
    min-height: 52px;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr);
    background: #edf2ef;
  }
  .header__nav .mega-menu__media {
    width: 72px;
    height: 52px;
    aspect-ratio: auto;
  }
  .header__nav .mega-menu__content {
    min-height: 52px;
    align-items: flex-start;
    justify-content: center;
    padding: 7px 12px;
    text-align: left;
  }
  .header__nav .mega-menu__content small,
  .header__nav .mega-menu__content > span {
    display: none;
  }
  .header__nav .mega-menu__content strong {
    font-size: 16px;
    line-height: 1.15;
  }
  .header__mobile-menu {
    width: 44px;
    height: 44px;
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
  }
  .header__mobile-menu.is-open span {
    background: transparent;
  }
  .header__mobile-menu.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header__mobile-menu.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header__submenu-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 2;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #edf2ef;
    color: #203b35;
    cursor: pointer;
  }
  .header__submenu-toggle i {
    font-size: 18px;
    transition: transform 0.25s ease;
  }
  .header__submenu-toggle[aria-expanded=true] i {
    transform: rotate(180deg);
  }
  .hero__content {
    width: calc(100% - 80px);
  }
  .products__title,
  .numbers__container {
    width: calc(100% - 80px);
  }
  .about__container {
    gap: 70px 50px;
  }
}
@media (max-width: 820px) {
  .hero {
    height: 820px;
    min-height: 760px;
  }
  .hero::before {
    background: linear-gradient(0deg, rgba(20, 41, 37, 0.97) 0%, rgba(20, 41, 37, 0.76) 62%, rgba(20, 41, 37, 0.28) 100%);
  }
  .hero__content {
    width: calc(100% - 40px);
    top: auto;
    bottom: 115px;
    transform: translateX(-50%);
  }
  .hero__content h1 {
    margin: 12px 0 18px;
    font-size: clamp(44px, 12vw, 68px);
    line-height: 1.03;
  }
  .hero__content > p {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hero__scroll {
    display: none;
  }
  .hero__arrow {
    bottom: 28px;
  }
  .hero__arrow--left {
    left: 20px;
  }
  .hero__arrow--right {
    left: 84px;
  }
  .products {
    padding: 85px 20px 95px;
  }
  .products__title {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
  .products__title > div:first-child, .products__title-copy {
    width: 100%;
  }
  .products__title h4 {
    font-size: 42px;
    line-height: 1.05;
  }
  .products__container {
    width: 100%;
    padding: 0;
  }
  .products__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  .product__text h2 {
    font-size: 34px;
  }
  .about {
    padding: 90px 20px;
  }
  .about__container {
    width: 100%;
    display: flex;
    gap: 60px;
  }
  .about__text .title-sub h1 {
    font-size: 42px;
  }
  .about__locations {
    width: calc(100% - 18px);
  }
  .certificates {
    padding-top: 60px;
  }
  .certificates .title-sub h1 {
    font-size: 40px;
  }
  .numbers {
    padding: 85px 20px;
  }
  .numbers__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: stretch;
  }
  .numbers__intro {
    max-width: 620px;
  }
  .numbers__intro h2 {
    font-size: 42px;
  }
  .numbers__intro p {
    max-width: 560px;
  }
  .number {
    grid-template-columns: 48px 52px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 26px;
  }
  .number__icon {
    width: 52px;
    height: 52px;
  }
  .blogs {
    padding: 90px 20px;
  }
  .blogs__container {
    width: 100%;
  }
  .blogs__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .blogs__heading h2 {
    font-size: 42px;
  }
  .blog__img {
    width: 100%;
  }
  .blog__text {
    padding: 26px;
  }
  .footer {
    padding: 0 20px;
  }
  .footer__top {
    padding: 70px 0 45px;
  }
  .cms-title {
    padding: 75px 20px 55px;
  }
  .cms-title__container h1 {
    font-size: 48px;
  }
  .cms-title--blog {
    padding-top: 82px;
    padding-bottom: 62px;
  }
  .cms-title--blog h1 {
    font-size: 52px;
  }
  .cms-category {
    padding: 55px 20px 85px;
  }
  .cms-category__wrapper {
    grid-template-columns: 1fr;
  }
  .cms-category--blog .cms-category__wrapper--blog {
    grid-template-columns: 1fr;
  }
  .cms-post--featured {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .cms-post--featured .cms-post__img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .cms-post--featured .cms-post__body {
    padding: 32px;
  }
  .cms-post--featured .cms-post__body h2 {
    font-size: 36px;
  }
  .cms-page {
    padding: 60px 20px 85px;
  }
  .cms-page__title h1 {
    font-size: 48px;
  }
  .cms-page__content {
    font-size: 15px;
  }
  .cms-page__content h2 {
    margin-top: 38px;
    font-size: 32px;
  }
  .cms-page__cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
  }
  .cms-page--article {
    padding-top: 70px;
  }
  .cms-page--article .cms-page__title h1 {
    font-size: 54px;
  }
  .cms-page--article .cms-page__content {
    font-size: 16px;
  }
  .cms-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .cms-product {
    padding: 55px 20px 85px;
  }
  .cms-product__container {
    flex-direction: column;
    gap: 0;
  }
  .cms-product__hero {
    grid-template-columns: 1fr;
  }
  .cms-product__intro {
    order: -1;
    min-height: 500px;
    padding: 46px;
  }
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0;
  }
  .cms-product__top-img img {
    aspect-ratio: 16/10;
    border-radius: 12px;
  }
  .cms-product__details {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 65px;
  }
  .cms-product__article > h2 {
    font-size: 42px;
  }
  .cms-product__inquiry {
    position: relative;
    top: 0;
  }
  .cms-contact {
    padding: 65px 20px 90px;
  }
  .cms-contact__wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .cms-contact__wrapper-text, .cms-contact__wrapper-form {
    width: 100%;
  }
  .cms-contact__wrapper-text h1 {
    font-size: 44px;
  }
  .cms-contact__wrapper-form {
    padding: 26px;
  }
}
@media (max-width: 520px) {
  .header__container {
    width: calc(100% - 28px);
  }
  .header__logo img {
    width: 176px;
    max-width: 176px;
  }
  .hero {
    height: 780px;
  }
  .hero__content {
    bottom: 102px;
  }
  .hero__content h1 {
    font-size: 52px;
  }
  .hero__actions {
    width: 100%;
  }
  .hero__actions .button {
    flex: 1;
    padding: 0 15px;
  }
  .hero__note {
    align-items: flex-start;
    font-size: 11px;
  }
  .mega-menu__list {
    grid-template-columns: 1fr;
    gap: 6px !important;
  }
  .number {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 25px 20px;
  }
  .number__index {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    font-size: 22px;
  }
  .number__icon {
    grid-column: 1;
    grid-row: 2;
    width: 46px;
    height: 46px;
  }
  .number__text {
    grid-column: 2;
    grid-row: 1/span 2;
  }
  .number__text h3 {
    font-size: 27px;
  }
  .product {
    aspect-ratio: 1/1;
  }
  .product__text {
    padding: 24px;
  }
  .product__text h2 {
    font-size: 30px;
  }
  .blog__text h3 {
    font-size: 29px;
  }
  .cms-title--blog h1 {
    font-size: 43px;
  }
  .cms-category--blog {
    padding-right: 14px;
    padding-left: 14px;
  }
  .cms-post--blog .cms-post__body {
    padding: 25px 22px;
  }
  .cms-post--blog .cms-post__body h2 {
    font-size: 29px;
  }
  .cms-post--blog .cms-post__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .cms-post--featured .cms-post__body h2 {
    font-size: 32px;
  }
  .cms-page--article .cms-page__title h1 {
    font-size: 44px;
  }
  .cms-page__cta {
    padding: 27px 24px;
  }
  .cms-page__cta h2 {
    font-size: 30px;
  }
  .cms-page__cta .button {
    width: 100%;
  }
  .cms-product {
    padding-right: 14px;
    padding-left: 14px;
  }
  .cms-product__intro {
    min-height: 0;
    padding: 36px 25px;
  }
  .cms-product__intro h1 {
    font-size: 45px;
  }
  .cms-product__intro-actions {
    width: 100%;
  }
  .cms-product__intro-actions .button {
    width: 100%;
  }
  .cms-product__article > h2 {
    font-size: 37px;
  }
  .cms-product__richtext {
    font-size: 15px;
  }
  .cms-product__richtext h2 {
    font-size: 29px;
  }
  .cms-product__inquiry {
    padding: 27px 22px;
  }
  .cms-gallery {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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