@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,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: "Poppins", 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: 6.6666666667px;
  background: #4b2802;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(25.3246753247, 13.5064935065, 0.6753246753);
}

.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 rgba(75, 40, 2, 0.062745098);
  background: white;
  border-radius: 20px;
  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: #4b2802;
  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: 20px;
  color: #4b2802;
  background: rgba(75, 40, 2, 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: 20px;
  overflow: hidden;
}
.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 rgba(75, 40, 2, 0.062745098);
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #4b2802;
  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: 20px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: rgba(75, 40, 2, 0.062745098);
}
@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: rgba(75, 40, 2, 0.062745098);
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  border-radius: 20px;
}
.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: rgba(75, 40, 2, 0.062745098);
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  border-radius: 20px;
  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: 20px;
  border: 1px solid rgba(75, 40, 2, 0.062745098);
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(75, 40, 2, 0.062745098);
  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 rgba(75, 40, 2, 0.062745098);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #4b2802;
  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: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: rgba(75, 40, 2, 0.062745098);
  border: 1px solid rgba(75, 40, 2, 0.062745098);
}

.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: #4b2802;
  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 rgba(75, 40, 2, 0.062745098);
  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: #4b2802;
  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: rgba(75, 40, 2, 0.062745098);
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  border-radius: 20px;
}
.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: rgba(75, 40, 2, 0.062745098);
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  border-radius: 10px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #4b2802;
}
.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 {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  border-radius: 10px;
  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 rgba(75, 40, 2, 0.062745098);
  color: #4b2802;
  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 rgba(75, 40, 2, 0.062745098);
  border-radius: 20px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #4b2802;
  background: rgba(75, 40, 2, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #4b2802;
  background: rgba(75, 40, 2, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(75, 40, 2, 0.3);
  border-radius: 50%;
  border-top-color: #4b2802;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #1d1d1b;
  background: #ffffff;
}

a {
  color: #1d1d1b;
  transition: color 0.3s ease;
}
a:hover {
  color: #4b2802;
  text-shadow: none;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(100px);
  }
  100% {
    transform: rotate(360deg) translate(100px);
  }
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  width: max-content;
}
.button--ghost {
  padding: 15px 25px;
  border: 1px solid #1d1d1b;
  color: #1d1d1b;
}
.button--ghost:hover {
  border: 1px solid #4b2802;
  color: #4b2802;
  box-shadow: none;
}

.title-main {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}
.title-main h6 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}
@media (max-width: 480px) {
  .title-main h6 {
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-main h6 {
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-main h6 {
    font-size: 14px;
  }
}
.title-main h5 {
  background: none;
  -webkit-text-fill-color: initial;
  color: #1d1d1b;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .title-main h5 {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-main h5 {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-main h5 {
    font-size: 22px;
  }
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.header::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #4b2802;
  opacity: 0.2;
}
.header__container {
  width: 100%;
  max-width: 1340px;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__container {
    padding: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container {
    padding: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container {
    padding: 15px;
  }
}
.header__container nav {
  display: flex;
  width: 100%;
  max-width: 850px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .header__container nav {
    display: none;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
    left: 15px;
    top: 80px;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav {
    display: none;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
    left: 15px;
    top: 80px;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav {
    display: none;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
    left: 15px;
    top: 80px;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
.header__container nav ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 480px) {
  .header__container nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
.header__container nav ul li {
  display: flex;
}
@media (max-width: 480px) {
  .header__container nav ul li {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul li {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul li {
    width: 100%;
  }
}
.header__container nav ul a {
  display: flex;
  position: relative;
  color: #1d1d1b;
}
@media (max-width: 480px) {
  .header__container nav ul a {
    color: #1d1d1b !important;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul a {
    color: #1d1d1b !important;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul a {
    color: #1d1d1b !important;
    width: 100%;
  }
}
.header__container nav ul a:hover {
  color: #4b2802;
}
.header__container nav ul a:hover::before {
  width: 100%;
  opacity: 1;
}
.header__container nav ul a::before {
  content: "";
  height: 3px;
  width: 0;
  opacity: 0;
  border-radius: 3px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #4b2802;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__container nav ul a::before {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul a::before {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul a::before {
    display: none;
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 75px;
}
@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__mobile-menu {
  width: 45px;
  height: 45px;
  border: 1px solid #1d1d1b;
  color: #1d1d1b;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@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;
  }
}
.header__mobile-menu:hover {
  color: #4b2802;
  border: 1px solid #4b2802;
  box-shadow: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100vh - 125px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media (max-width: 480px) {
  .hero {
    height: 800px;
    padding: 0 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    height: 800px;
    padding: 0 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: 800px;
    padding: 0 15px;
  }
}
.hero i {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #4b2802;
  z-index: 3;
  opacity: 0.1;
}
.hero__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.hero__container h1 {
  font-size: 76px;
  line-height: 90px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .hero__container h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__container h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__container h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
.hero__container h1 strong {
  background: none;
  -webkit-text-fill-color: initial;
}
.hero__container p {
  font-size: 24px;
  font-weight: 300;
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 480px) {
  .hero__container p {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__container p {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__container p {
    font-size: 18px;
  }
}

.welcome {
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 480px) {
  .welcome__container {
    padding: 60px 15px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__container {
    padding: 60px 15px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__container {
    padding: 60px 15px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
  }
}
.welcome__container::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #4b2802;
  opacity: 0.1;
}
@media (max-width: 480px) {
  .welcome__container::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__container::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__container::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
.welcome__img {
  width: 660px;
  height: 550px;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .welcome__img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.welcome__img img {
  position: absolute;
}
@media (max-width: 480px) {
  .welcome__img img {
    position: relative;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img img {
    position: relative;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img img {
    position: relative;
  }
}
.welcome__img-1 {
  width: 285px;
  height: 285px;
  left: 0px;
  top: 0px;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 480px) {
  .welcome__img-1 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img-1 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img-1 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
.welcome__img-2 {
  width: 285px;
  height: 240px;
  left: 0px;
  bottom: 0px;
  border-radius: 20px 0 20px 20px;
}
@media (max-width: 480px) {
  .welcome__img-2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img-2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img-2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
.welcome__img-3 {
  width: 350px;
  height: 550px;
  right: 0px;
  top: 0px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .welcome__img-3 {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img-3 {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img-3 {
    display: none;
  }
}
.welcome__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.welcome__text h2 {
  font-size: 38px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .welcome__text h2 {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__text h2 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__text h2 {
    font-size: 28px;
  }
}
.welcome__text-description {
  font-weight: 300;
  line-height: 1.75;
}
.welcome__text-description p:last-child {
  margin-bottom: 0px;
}

.products {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .products {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products {
    padding: 60px 15px;
  }
}
.products__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}
@media (max-width: 480px) {
  .products__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__container {
    width: 100%;
    gap: 15px;
  }
}
.products__slider {
  width: 800px;
  margin: auto;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .products__slider {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider {
    width: 100%;
  }
}
.products__slider-wrapper {
  display: flex;
}
.products__slider-arrow {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #1d1d1b;
  color: #ffffff;
  font-size: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .products__slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
.products__slider-arrow:hover {
  opacity: 1;
}
.products__slider-arrow--left {
  left: 20px;
}
@media (max-width: 480px) {
  .products__slider-arrow--left {
    left: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider-arrow--left {
    left: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider-arrow--left {
    left: 5px;
  }
}
.products__slider-arrow--right {
  right: 20px;
}
@media (max-width: 480px) {
  .products__slider-arrow--right {
    right: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider-arrow--right {
    right: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider-arrow--right {
    right: 5px;
  }
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  background: #ffffff;
  transition: all 0.3s ease;
}
.product:hover {
  box-shadow: 0 15px 30px rgba(75, 40, 2, 0.15);
  transform: translateY(-5px);
  border-color: rgba(75, 40, 2, 0.3);
}
.product:hover svg {
  right: 20px;
  opacity: 1;
}
.product img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .product img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.product__text {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 25px 30px;
  height: auto;
  background: #ffffff;
  color: #1d1d1b;
  border-top: 1px solid rgba(75, 40, 2, 0.062745098);
}
@media (max-width: 480px) {
  .product__text {
    padding: 20px;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__text {
    padding: 20px;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product__text {
    padding: 20px;
    height: auto;
  }
}
.product__text > span {
  font-size: 13px;
  font-weight: 600;
  color: #4b2802;
  opacity: 0.8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .product__text > span {
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__text > span {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product__text > span {
    font-size: 12px;
  }
}
.product__text > h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1b;
  line-height: 1.4;
  margin: 0;
  padding-right: 40px;
}
@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 svg {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0.3;
  width: 28px;
  height: 28px;
}
.product svg path {
  fill: #4b2802 !important;
  stroke: #4b2802 !important;
  transition: all 0.3s ease;
}

.slogans {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: #f9f9f9;
}
@media (max-width: 480px) {
  .slogans {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans {
    padding: 60px 15px;
  }
}
.slogans__container {
  max-width: 1340px;
  padding: 0 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 480px) {
  .slogans__container {
    padding: 0px;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans__container {
    padding: 0px;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans__container {
    padding: 0px;
    gap: 15px;
  }
}
.slogans__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .slogans__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans__wrapper {
    grid-template-columns: 1fr;
  }
}

.slogan {
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(75, 40, 2, 0.062745098);
  transition: all 0.3s ease;
  border-radius: 20px;
  background: #ffffff;
}
@media (max-width: 480px) {
  .slogan {
    padding: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan {
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan {
    padding: 20px;
  }
}
.slogan:hover {
  border: 1px solid #4b2802;
  background: #ffffff;
}
.slogan:hover svg {
  opacity: 1;
}
.slogan:hover svg path {
  fill: #4b2802 !important;
  stroke: #4b2802 !important;
}
.slogan:hover i {
  background: #4b2802;
  color: #ffffff;
}
.slogan i {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: #f9f9f9;
  color: #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .slogan i {
    margin-bottom: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan i {
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan i {
    margin-bottom: 20px;
  }
}
.slogan i::before {
  position: relative;
  z-index: 2;
}
.slogan i::after {
  display: none;
}
.slogan h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.slogan span {
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .slogan span {
    margin-bottom: 0px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan span {
    margin-bottom: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan span {
    margin-bottom: 0px;
  }
}
.slogan svg {
  opacity: 0.1;
}
@media (max-width: 480px) {
  .slogan svg {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan svg {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan svg {
    display: none;
  }
}
.slogan svg path {
  fill: #1d1d1b !important;
  stroke: #1d1d1b !important;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}
@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding: 60px 15px;
  }
}
.about__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 480px) {
  .about__container {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__container {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__container {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
}
.about__img {
  width: 600px;
  height: 700px;
  flex-shrink: 0;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .about__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about__text h3 {
  font-size: 38px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .about__text h3 {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text h3 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text h3 {
    font-size: 28px;
  }
}
.about__text-description {
  font-weight: 300;
  line-height: 1.75;
}

.contact {
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .contact {
    height: auto;
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact {
    height: auto;
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact {
    height: auto;
    padding: 60px 15px;
  }
}
.contact__container {
  width: 1200px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 480px) {
  .contact__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__container {
    width: 100%;
  }
}
.contact__container img {
  max-width: 500px;
  transform: rotate(-35deg);
  position: absolute;
  right: -50px;
  top: -30xpx;
}
@media (max-width: 480px) {
  .contact__container img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__container img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__container img {
    width: 70%;
    height: auto;
  }
}
.contact__text {
  width: 620px;
  display: flex;
  flex-direction: column;
}
.contact__text span {
  font-size: 46px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .contact__text span {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__text span {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__text span {
    font-size: 22px;
  }
}
.contact__text strong {
  font-weight: 700;
  font-size: 46px;
  margin-bottom: 10px;
  background: none;
  -webkit-text-fill-color: initial;
  color: #4b2802;
}
@media (max-width: 480px) {
  .contact__text strong {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__text strong {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__text strong {
    font-size: 22px;
  }
}

.blogs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .blogs {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs {
    padding: 60px 15px;
  }
}
.blogs__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 480px) {
  .blogs__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs__container {
    width: 100%;
    gap: 15px;
  }
}
.blogs__slider {
  display: flex;
}
.blogs__slider-wrapper {
  display: flex;
}

.blog {
  display: flex;
  flex-direction: column;
  width: 550px;
}
@media (max-width: 480px) {
  .blog {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog {
    width: 100%;
  }
}
.blog__img {
  display: flex;
}
.blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 20px;
}
.blog__text {
  width: calc(100% - 40px);
  position: relative;
  z-index: 2;
  border-radius: 20px;
  background: #f9f9f9;
  padding: 30px;
  margin-left: 20px;
  margin-top: -40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .blog__text {
    padding: 20px;
    margin-top: -20px;
    margin-left: 10px;
    width: calc(100% - 20px);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text {
    padding: 20px;
    margin-top: -20px;
    margin-left: 10px;
    width: calc(100% - 20px);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text {
    padding: 20px;
    margin-top: -20px;
    margin-left: 10px;
    width: calc(100% - 20px);
  }
}
.blog__text:hover svg {
  opacity: 1;
}
.blog__text > h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .blog__text > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.blog__text > span {
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .blog__text > span {
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text > span {
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text > span {
    margin-bottom: 10px;
  }
}
.blog__text-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog__text-footer span {
  opacity: 0.4;
  font-weight: 300;
}
.blog__text-footer svg {
  opacity: 0.4;
  transition: all 0.3s ease;
}
.blog__text-footer svg path {
  fill: #1d1d1b !important;
  stroke: #1d1d1b !important;
}

.footer {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  color: #1d1d1b;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
@media (max-width: 480px) {
  .footer__top {
    padding: 0px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top {
    padding: 0px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top {
    padding: 0px 15px;
  }
}
.footer__top-container {
  width: 100%;
  max-width: 1340px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 480px) {
  .footer__top-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
.footer__top-container::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #4b2802;
  opacity: 0.1;
}
.footer__logo {
  display: flex;
}
.footer__logo img {
  height: 75px;
}
@media (max-width: 480px) {
  .footer__logo img {
    height: 45px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__logo img {
    height: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__logo img {
    height: 45px;
  }
}
.footer__social {
  display: flex;
  gap: 15px;
}
.footer__social li {
  display: flex;
}
.footer__social a {
  display: flex;
}
.footer__social i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #1d1d1b;
  transition: all 0.3s ease;
  color: #1d1d1b;
}
.footer__social i:hover {
  border: 1px solid #4b2802;
  background: #4b2802;
  color: #ffffff;
  box-shadow: none;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 70px 0;
  position: relative;
}
@media (max-width: 480px) {
  .footer__nav {
    padding: 30px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__nav {
    padding: 30px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__nav {
    padding: 30px 0;
  }
}
.footer__nav::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #4b2802;
  opacity: 0.2;
}
.footer__nav-container {
  width: 100%;
  max-width: 1340px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 480px) {
  .footer__nav-container {
    padding: 0px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__nav-container {
    padding: 0px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__nav-container {
    padding: 0px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__menu {
    gap: 10px;
  }
}
.footer__menu--col-3 {
  max-width: 610px;
}
.footer__menu--col-3 ul {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
}
@media (max-width: 480px) {
  .footer__menu--col-3 ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__menu--col-3 ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__menu--col-3 ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
.footer__menu h3 {
  font-size: 22px;
  font-weight: 600;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 300;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  display: flex;
  width: fit-content;
  color: #1d1d1b;
}
.footer__menu ul a:hover {
  color: #4b2802;
}
.footer__contact {
  width: 385px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .footer__contact {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__contact {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__contact h3 {
  font-size: 22px;
  font-weight: 600;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
}
.footer__contact-item > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.footer__contact-item > span:last-child, .footer__contact-item a {
  color: #1d1d1b;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
@media (max-width: 480px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
.footer__copyright-container {
  max-width: 600px;
  text-align: center;
  font-size: 14px;
}
.footer__copyright-container a {
  color: #4b2802;
  text-decoration: underline;
}
.footer__copyright-container p:last-child {
  margin-bottom: 0px;
}

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