:root {
  --title_color: #292929;
  --content_color: #9ba182;
  --gap: 20px;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
a,
h3 {
  font-family: "Fira Sans", sans-serif;
}
.head span.subtitle {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--theme_color);
  font-weight: 600;
  font-family: "Fira Sans", sans-serif;
}
.head h1 {
  color: var(--theme_color);
  font-family: "Fira Sans", sans-serif;
}
.head h2 {
  font-size: 3rem;
  line-height: 1;
  color: var(--title_color);
  font-weight: 600;
  font-family: "Fira Sans", sans-serif;
}
.head p {
  color: var(--content_color);
  line-height: 1.5;
}
.head a {
  color: var(--theme_color);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
}
.head .divider {
  width: min(60px, 50%);
  height: 3px;
  background-color: var(--theme_color);
  margin: 10px 0;
}
.gap {
  gap: var(--gap);
}
.btn {
  display: inline-block;
  vertical-align: top;
  border: 3px solid var(--theme_color);
  color: var(--theme_color);
  font-size: 24px;
  line-height: 1;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  color: #fff;
  background-color: var(--theme_color);
}
header {
  height: 110px;
}
.page_breadcrumbs {
  background-color: #f3f5eb;
}
.page_breadcrumbs .breadcrumbs {
  padding: 20px;
}
.page_breadcrumbs .breadcrumbs span {
  color: var(--content_color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 24px;
}
.page_breadcrumbs .breadcrumbs span a {
  color: var(--content_color);
  font-size: 1rem;
  display: block;
  line-height: 19px;
  transition: all 0.3s;
  font-weight: normal;
}
.page_breadcrumbs .breadcrumbs span a:hover {
  color: #79873e;
}
.page_breadcrumbs .breadcrumbs span span:last-child a {
  color: #79873e;
}
.gallery_imgs {
  padding: 78px 0;
}
.gallery_imgs .content {
  max-width: 1296px;
}
.gallery_imgs h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title_color);
}
.gallery_imgs .main {
  margin-top: 56px;
}
.gallery_imgs .main ul {
  display: grid;
  gap: 30px var(--gap);
  grid-template-columns: repeat(3, 1fr);
}
.gallery_imgs .main ul li a {
  display: block;
  padding: 15px;
  border: 1px solid #e9e7db;
  overflow: hidden;
}
.gallery_imgs .main ul li a:hover img {
  transform: scale(1.05);
}
.gallery_imgs .main ul li .pic {
  overflow: hidden;
  background-color: #f2f5e6;
}
.gallery_imgs .main ul li img {
  width: 100%;
  aspect-ratio: 380/285;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
}
.gallery_items .gallery_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
}
.gallery_items .gallery_item a:hover {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.gallery_items .gallery_item a:hover img {
  transform: scale(1.05);
}
.gallery_items .gallery_item .img {
  aspect-ratio: 380/285;
  overflow: hidden;
  background-color: #f2f5e6;
}
.gallery_items .gallery_item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  vertical-align: top;
}
.gallery_items .gallery_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.gallery_items .gallery_item .info strong {
  display: block;
  color: var(--title_color);
  font-size: 22px;
  margin-bottom: 8px;
}
.gallery_items .gallery_item .info p {
  flex: 1;
  line-height: 1.5;
  color: var(--content_color);
  margin-bottom: 1rem;
}
.gallery_items .gallery_item .info span {
  color: var(--theme_color);
  font-weight: 500;
  line-height: 1.2;
}
.gallery_more {
  padding: 150px 0 120px;
  background-color: #f3f5eb;
}
.gallery_more .content {
  max-width: 1296px;
}
.gallery_more .head h2 {
  line-height: 1.2;
}
.gallery_more .main {
  margin-top: 3rem;
}
.gallery_more .main ul {
  display: grid;
  gap: 30px max(20px, 1.852%);
  grid-template-columns: repeat(3, 1fr);
}
.gallery_more .main ul li .info {
  gap: 1rem;
}
