* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pc_block {
  display: block !important;
}

.sp_block {
  display: none !important;
}

@media (max-width: 768px) {
  .pc_block {
    display: none !important;
  }

  .sp_block {
    display: block !important;
  }
}

body {
  overflow-x: hidden;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* HEADER */

header {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 800;
}

header > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 30px;
}

header div > a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

header h2 {
  max-width: 200px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  /* color gradient left to right wood color to black */
  background: linear-gradient(to left, #0079c3, #69a446);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 12px;
}

header img.logo {
  height: 60px;
  padding: 4px;
}

header .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  min-width: 200px;
  max-width: 600px;
  margin: 0 12px;
}

header .header-right #searchBoxHeader {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

header nav a {
  margin-left: 18px;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

header nav {
  display: flex;
  justify-content: flex-end;
  min-width: 340px;
  transition: all 0.3s ease;
}

header nav a:hover {
  opacity: 0.8;
}

header .header-right #menuButton {
  display: none;
}

header #menuOverlay {
  display: none;
}

header #menuOverlay div {
  display: none;
}

@media (max-width: 1280px) {
  header h2 {
    max-width: 200px;
    font-size: 1.5vw;
    margin-left: 6px;
  }
}

/* mobile css */

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px;
  }

  header img.logo {
    height: 40px;
    padding: 0;
  }

  header h2 {
    font-size: 18px;
  }

  header h2 br {
    display: none;
  }

  header .header-right {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 6px 0 0;
  }

  header .header-right #searchBoxHeader {
    width: 85%;
    max-width: 400px;
    height: 40px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    background: #fff;
    color: #333;
    font-weight: 500;
  }

  header .header-right #menuButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 14px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    color: #333;
    font-weight: 500;
  }

  header .header-right #menuButton img {
    width: 20px;
    height: 20px;
  }

  header #menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1001;
  }

  header #menuOverlay div {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding: 24px;
    border-radius: 12px;
  }

  header #menuOverlay div a {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
  }

  header #menuOverlay #closeMenuButton {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
  }

  header #menuOverlay #closeMenuButton img {
    width: 20px;
    height: 20px;
  }

  header nav {
    display: none;
  }
}

/* SLIDER */
.slider {
  position: relative;
  height: 21vw;
  min-height: 400px;
  max-height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide .slide_background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.slide .slide_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slide .slide_wipe {
  position: absolute;
  width: 100%;
  height: 40%;
  top: 30%;
  z-index: 3;
  opacity: 0.6;
}

.slide_yellow .slide_wipe {
  background: #e9b310;
}

.slide_yellow .slide_diagonal div:nth-child(1) {
  background: #e9b310;
}

.slide_yellow .slide_diagonal div:nth-child(2) {
  background: #e9b310;
}

.slide_blue .slide_wipe {
  background: #0056b3;
}

.slide_blue .slide_diagonal div:nth-child(1) {
  background: #0056b3;
}

.slide_blue .slide_diagonal div:nth-child(2) {
  background: #0056b3;
}

.slide_red .slide_wipe {
  background: #ff0000;
}

.slide_red .slide_diagonal div:nth-child(1) {
  background: #ff0000;
}

.slide_red .slide_diagonal div:nth-child(2) {
  background: #ff0000;
}

.slide .slide_diagonal {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.slide .slide_diagonal div {
  position: absolute;
  width: 100vw;
  height: 100vw;
  z-index: 4;
  opacity: 0.4;
  rotate: 120deg;
}

.slide .slide_diagonal div:nth-child(1) {
  right: -60%;
}

.slide .slide_diagonal div:nth-child(2) {
  right: -75%;
}

.slide .slide_content {
  position: absolute;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 30px;
  z-index: 5;
}

.slide .slide_content div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.slide .slide_content div h3 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.slide .slide_content div img {
  width: 100%;
  max-width: 350px;
}

.slide.active {
  opacity: 1;
}

.slide-caption {
  position: absolute;
  bottom: 30px;
  left: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
}

section {
  padding: 20px 20px;
  max-width: 1100px;
  margin: auto;
}

section > h2 {
  margin-bottom: 15px;
}

/* mobile css */
@media (max-width: 768px) {
  .slider {
    margin-top: 110px;
    width: 100%;
    height: 400px;
  }

  .slide .slide_wipe {
    height: 60%;
  }

  .slide .slide_diagonal div {
    width: 200vw;
    height: 200vw;
  }

  .slide .slide_diagonal div:nth-child(1) {
    right: -135%;
  }

  .slide .slide_diagonal div:nth-child(2) {
    right: -160%;
  }

  .slide .slide_content {
    padding: 18px;
  }

  .slide .slide_content div img {
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: cover;
  }

  .slide .slide_content div h3 {
    font-size: 18px;
    text-align:  center;
  }

  .slide .slide_content div {
    flex-direction: column-reverse;
  }

  section {
    padding: 20px 18px;
  }

  section > h2 {
    font-size: 20px;
  }
}

/* SERVICE */
#services {
  display: flex;
  flex-direction: column;
}

#services > div {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

#services .service-item {
  display: flex;
  gap: 50px;
}

#services .service-item:nth-child(even) {
  position: relative;
  z-index: 1;
  flex-direction: row;
}

#services .service-item:nth-child(even)::before {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  top: -40px;
  bottom: 40px;
  width: 100vw;
  height: calc(100% + 80px);
  background-color: #fff6db;
}

#services .service-item:nth-child(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  #services .service-item {
    flex-direction: column !important;
  }

  #services .service-item .service-content p {
    margin-bottom: 0px !important;
  }
}

#services .service-item .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#services .service-item .service-content h3 {
  font-size: 22px;
}

#services .service-item .service-content p {
  font-size: 16px;
  margin-bottom: 30px;
}

#services .service-item .service-image {
  flex: 1;
}

#services .service-item .service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

/* mobile css */
@media (max-width: 768px) {
  #services .service-item {
    gap: 20px;
  }

  #services > div {
    gap: 40px;
  }

  #services .service-item:nth-child(even)::before {
    display: none;
  }

  #services .service-item {
    flex-direction: column;
  }

  #services .service-item .service-content h3 {
    font-size: 18px;
  }

  #services .service-item h3 {
    font-size: 16px;
  }

  #services .service-item p {
    font-size: 16px;
  }

  #services .service-item .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #services .service-item .service-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
  }

  #services .service-item .service-image img {
    width: 100%;
    height: 220px;
  }
}

#about > div,
#contact form {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#about > div {
  font-size: 16px;
}

#about > div .info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  margin-top: 10px;
}

#about > div .info ul {
  list-style: none;
}

#about > div .info ul li {
  gap: 10px;
  margin-bottom: 5px;
}

#about > div .info ul li svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-right: 10px;
  transform: translateY(2px);
}

#about > div .info ul li a {
  line-height: 1.35;
  color: #333;
  margin-top: 5px;
  transition: all 0.3s ease;
}

#about > div .info ul li a:hover {
  opacity: 0.8;
}

footer {
  background: #222;
  color: #ddd;
  text-align: center;
  padding: 30px 30px 20px;
  margin-top: 30px;
}

footer > div {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  background: url(https://i.postimg.cc/jS3MSThK/map-overlay.png) no-repeat center;
}

footer > div > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  list-style: none;
  gap: 20px;
  margin-right: 6vw;
  margin-bottom: 30px;
}

footer > div > ul > li > a {
  text-decoration: none;
  color: #ddd;
  transition: all 0.3s ease;
}

footer > div > ul > li > a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 16px;
  }

  footer > div {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  footer > div > ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-right: 0;
    margin-bottom: 0;
  }

  footer > div > ul > li:first-of-type {
    display: none;
  }
}

footer a {
  color: #ddd;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #fff;
}

footer img.logo {
  height: 70px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

form button {
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  opacity: 0.8;
}

#searchBox {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

/* CONTACT */

#contact ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 20px;
}

#contact ul li a {
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  background: #fff;
  padding: 24px;
  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#contact ul li a img {
  width: 50px;
}

#contact ul li a p {
  margin-top: 5px;
}

/* mobile css */

@media (max-width: 768px) {
  #contact ul {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }

  #contact ul li a {
    min-width: 120px;
    width: calc(50% - 14px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    padding: 24px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }

  #contact ul li a img {
    width: 40px;
  }
}

/* contactfixed */
#contactFixed {
  position: fixed;
  z-index: 1000;
  bottom: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#contactFixed ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: flex-end;
  gap: 14px;
}

#contactFixed ul li a {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  padding: 4px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  background-color: white;
  border-radius: 100px;
  border: 1px solid #e2e2e2;
}

#contactFixed ul li a img {
  width: 45px;
  padding: 0px;
}

#contactFixed ul li a {
  transition: transform 0.3s ease;
}

#contactFixed ul li a:hover {
  transform: scale(1.1);
}

/* mobile css */
@media (max-width: 768px) {
  #contactFixed {
    right: 0;
    bottom: 0;
  }

  #contactFixed ul li a img {
    width: 40px;
  }
}

/* PRODUCT */

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.product-image {
  align-self: center;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.1);
}

.product > div {
  display: flex;
  flex-direction: column;
}

.product > div strong {
  margin-top: 6px;
}

.product img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  border-radius: 6px;
}

.product-info {
  flex: 1;
}

.product-info a {
  color: #333;
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-list .product-info a:hover {
  opacity: 0.8;
}

.product-list .product-info a span,
.product .product-info a span {
  color: #8d6812;
}

@media (max-width: 768px) {
  /* 2 columns */
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-list .product {
    padding: 12px;
  }

  .product-list .product img {
    height: 225px;
  }

  .product-list .product-info {
    gap: 10px;
  }

  .product-list .product-info a {
    font-size: 16px;
  }

  .product-list .product-info p {
    font-size: 14px;
  }

  .product-list .product-info strong {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header > div {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  nav {
    margin-top: 10px;
  }

  .slide-caption {
    left: 20px;
    right: 20px;
  }
}
