@import url("https://fonts.googleapis.com/css2?family=Prata&family=Space+Grotesk:wght@300..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: 3.3333333333px;
  background: #C1A869;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: #af9248;
}

.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-form {
  padding: 40px;
  border: 1px solid #EEEEEE;
  background: white;
  border-radius: 10px;
  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: 5px;
  background: #C1A869;
  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: 10px;
  color: #C1A869;
  background: rgba(193, 168, 105, 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: 10px;
  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: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #C1A869;
  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: 10px;
  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: 10px;
}
.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: 10px;
  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: 10px;
  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: 5px;
  border: 1px solid #EEEEEE;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #C1A869;
  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: 10px;
  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: 5px;
  background: #C1A869;
  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: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #C1A869;
  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: 10px;
}
.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: 5px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #C1A869;
}
.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: 5px;
  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: #C1A869;
  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: 10px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #C1A869;
  background: rgba(193, 168, 105, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #C1A869;
  background: rgba(193, 168, 105, 0.1);
  border-radius: 5px;
  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: #C1A869;
  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: 10px;
}
.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(193, 168, 105, 0.03);
  border-radius: 10px;
  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: #C1A869;
}

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: #C1A869;
}

.button {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.button i {
  color: #C1A869;
}
.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: 55px;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 45px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__logo img {
    height: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    height: 45px;
  }
}
.header__nav {
  width: 100%;
  max-width: 660px;
  display: flex;
}
@media (max-width: 480px) {
  .header__nav {
    left: 0px;
    top: 80px;
    position: absolute;
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav {
    left: 0px;
    top: 80px;
    position: absolute;
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav {
    left: 0px;
    top: 80px;
    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: 10px;
    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: 10px;
    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: 10px;
    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: #C1A869;
}
@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: #C1A869;
}
@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: 10px;
  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: #C1A869;
  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: 10px;
  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: 150px;
  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: #C1A869;
}
.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: 16px;
  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: 10px;
}

.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: 20px;
}
@media (max-width: 480px) {
  .location img {
    border-radius: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .location img {
    border-radius: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .location img {
    border-radius: 10px;
  }
}
.location:nth-child(1) {
  grid-area: top;
}
.location:nth-child(1) img {
  aspect-ratio: 16/9;
}
.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: 20px;
  overflow: hidden;
  background: #F5F5F7;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .blog {
    border-radius: 10px;
    flex-direction: column;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog {
    border-radius: 10px;
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog {
    border-radius: 10px;
    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__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: #C1A869;
}
.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: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}
.number:hover {
  border-color: #C1A869;
}
.number i {
  font-size: 55px;
}
.number__text {
  display: flex;
  flex-direction: column;
}
.number__text h5 {
  font-size: 36px;
  color: #C1A869;
  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: 2/3;
  border-radius: 16px;
}
.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: #C1A869;
}
.certificates__pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #C1A869;
}

.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;
}

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