.logo-header {
  width: 126px;
}
.menu {
  background-color: #fff;
}
.menu ul li a.active span {
  color: #c7a138 !important;
}
.menu ul ul a {
  font-weight: bold;
  color: #000;
  padding: 10px 14px;
  text-transform: uppercase;
}
.about-content {
  max-width: 520px;
}
.footer-ul li a {
  color: #fff;
}
.prose img {
  display: inline-block;
}
.tab-title {
  border-bottom: 1px solid #000;
}
.home-search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.home-search {
  display: flex;
  width: 100%;
  max-width: 400px;
  height: 40px;
}
.home-search input {
  flex: auto;
  height: 100%;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px 0 0 8px;
  padding-left: 10px;
}
.home-search button {
  width: 40px;
  height: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 0 8px 8px 0;
}
.about-image-container {
  width: 45%;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .about-image-container {
    width: 100%;
    padding-bottom: 0;
  }
}
.section1-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.section1-item-content {
  width: 40%;
  flex-shrink: 0;
}
.section1-item-thumb {
  flex: auto;
}
.section1-item-thumb img {
  width: 100%;
}
.section1-item-content > h3 {
  font-weight: bold;
  margin-bottom: 12px;
}
.section1-item:nth-child(even) {
  flex-direction: row-reverse;
}
.section2 {
  padding: 60px 0;
}
.section2-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 30px;
  position: relative;
}
.section2-tab {
  background: transparent;
  border: 0;
  padding: 10px 0 14px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #101010;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}
.section2-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  border-radius: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}
.section2-tab:hover {
  color: #91532c;
}
.section2-tab.active {
  color: #91532c;
}
.section2-tab.active::after {
  background: #97a784;
}
.section2-content {
  width: 100%;
}
.section2-content-item {
  display: none;
}
.section2-content-item.active {
  display: block;
}
.section2-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.section2-grid-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.section3-item {
  padding: 8px;
  background-color: #f5f5f5;
}
.section3-item h3 {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.section3 .owl-item:nth-child(even) .section3-item {
  background-color: #fff;
}
.section1-item-reverse {
  flex-direction: row-reverse;
}
.section-text {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .section2-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .section2-tabs {
    gap: 20px;
  }
  .section2-tab {
    font-size: 14px;
  }
  .section2-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .section1-item {
    flex-direction: column;
  }
  .section1-item-content {
    width: 100%;
  }
  .section1-item-thumb {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .section2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
