:root {
  --maintheme: #fc6e51;
  --textcolor: #000000;
  --themeblack: #333333;
  --footerbg: #252525;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  background-color: #ffffff;
  color: var(--textcolor);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 14px;
  position: relative;
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.header {
  position: relative;
  z-index: 3;
}

.topheader {
  background: var(--maintheme);
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  color: #ffffff;
}

.topheader p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btmheader {
  width: 100%;
  padding: 20px 20px;
  background: var(--themeblack);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  position: relative;
  left: 0;
  top: 100%;
  z-index: 2;
}

.btmheader.hometop_banner {
  background: transparent;
  position: absolute;
  left: 0;
  top: 100%;
}

.btmheader .nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btmheader .nav a {
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px;
  color: #ffffff;
  border: 2px solid transparent;
}

.btmheader .nav a.currentpage,
.btmheader .nav a:hover {
  border: 2px solid #ffffff;
  border-radius: 2px;
}

.top_banner {
  position: relative;
}

.topbannerSwiper {
  height: 500px;
}

.topbannerSwiper .swiper-slide {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top_banner .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  color: #ffffff;
  gap: 20px;
  padding: 0px 20px;
}

.top_banner .content .title {
  font-weight: 600;
  font-size: 30px;
}

.top_banner .content a {
  border-radius: 6px;
  border: 2px solid #ffffff;
  padding: 15px 20px;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
}

.top_banner .content a:hover {
  background: #ffffff;
}

.row {
  width: 100%;
  padding: 0px 20px;
}

.row-cover {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.company-introduction {
  padding: 50px 0px;
  text-align: center;
}

.company-introduction .title {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 20px;
  color: var(--textcolor);
}

.company-introduction p {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 40px;
}

.product-listing {
  padding: 50px 0px;
}

.product-listing .title {
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 20px;
}

.product-listing .box {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  row-gap: 20px;
}

.product-listing .box .item {
  border: 1px solid #d7d7d7;
  padding: 20px 15px;
  width: 23.5%;
  background: #ffffff;
}

.product-listing .box .item .image {
  width: 100%;
  padding: 20px;
}

.product-listing .box .item .pname {
  text-align: center;
  color: #000000;
}

.product-listing .box .item:hover {
  border: 1px solid var(--maintheme);
}

.discoverus {
  padding: 50px 0px;
  display: flex;
  align-items: center;
}

.discoverus .left {
  width: calc(100% - 500px);
  padding-right: 100px;
}

.discoverus .left .title {
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 20px;
  padding-right: 50px;
  line-height: 1.3;
}

.discoverus .left p {
  line-height: 1.5;
  padding-bottom: 20px;
}

.discoverus .left a {
  background: var(--maintheme);
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  padding: 20px 20px;
  border-radius: 4px;
}

.discoverus .left a:hover {
  opacity: 0.7;
}

.faq {
  padding: 50px 0px;
}

.faq .title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
}

.faq .cover {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--maintheme);
  border-radius: 4px;
  overflow: hidden;
}

.faq .cover .quiz {
  width: 100%;
  border-bottom: 1px solid #d33211;
}

.faq .cover .quiz span {
  display: block;
  background: var(--maintheme);
  color: #ffffff;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq .cover .quiz span i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}

.faq .cover .quiz:last-child {
  border-bottom: none;
}

.faq .cover .quiz .answer {
  background: #f8f8f8;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 1.5;
  display: none;
}

.footer {
  background: #00373f;
  width: 100%;
  padding: 0px 20px;
}

.footer .cover {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 50px 0px;
}

.footer .cover .left {
  width: 500px;
  padding-right: 80px;
}

.footer .cover .left .logo {
  padding-bottom: 30px;
}

.footer .cover .left p {
  color: #d7d7d7;
  line-height: 1.5;
}

.footer .cover .right {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  width: calc(100% - 500px);
}

.footer .cover .right .sitemap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer .cover .right .sitemap b {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.footer .cover .right .sitemap a {
  color: #d7d7d7;
  font-size: 16px;
}

.footer .cover .right .sitemap a:hover {
  color: #ffffff;
}

.footer .cover .right .contactinfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .cover .right .contactinfo b {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.footer .cover .right .contactinfo p {
  color: #d7d7d7;
  line-height: 1.3;
}

.footer .cover .right .sitemap .social-link {
  display: flex;
  gap: 20px;
  flex-wrap: Wrap;
}

.footer .cover .right .sitemap .social-link a i {
  font-size: 30px;
}

.copyright {
  background: var(--maintheme);
  padding: 10px 20px;
}

.copyright .cover {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright .cover p {
  color: #ffffff;
}

.contact-us {
  padding: 100px 0px;
}

.contact-us .title {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
}

.contact-us .content {
  display: flex;
  gap: 50px;
}

.contact-us .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.contact-us .map {
  width: 50%;
}

.contact-us .form .input-cover {
  width: 100%;
}

.contact-us .form .input-field {
  padding: 15px 20px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  color: #000000;
  width: 100%;
  background: #f3f3f3;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.contact-us .form .input-cover .sub {
  background: var(--maintheme);
  border: none;
  border-radius: 4px;
  padding: 15px 20px;
  display: block;
  width: 200px;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.contact-us .form textarea {
  height: 200px;
  resize: none;
}

.productdetail {
  padding: 100px 0 50px;
}

.productdetail .title {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
}

.productdetail .image-info {
  display: flex;
  gap: 30px;
}

.productdetail .image-info .left {
  width: 500px;
}

.productdetail .image-info .right {
  width: calc(100% - 500px);
}

.productSwiper {
  width: 100%;
  border: 1px solid #d7d7d7;
}

.productSwiper .swiper-slide {
  width: 100%;
}

.productSwiper .swiper-pagination-bullet-active {
  background: var(--maintheme);
}

.productthumbSwiper {
  margin-top: 20px;
}

.productthumbSwiper .swiper-slide {
  border: 1px solid #d7d7d7;
  cursor: pointer;
}

.productthumbSwiper .swiper-slide:hover {
  border: 1px solid var(--maintheme);
}

.productthumbSwiper .thumb-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.productthumbSwiper .thumb-prev {
  position: absolute;
  right: left;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.productdetail .image-info .right .type {
  color: var(--maintheme);
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}

.productdetail .image-info .right .name {
  font-size: 35px;
  font-weight: 800;
  color: #000000;
  padding-bottom: 20px;
}

.productdetail .image-info .right .desc {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 30px;
}

.productdetail .image-info .right .note {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.productdetail .image-info .right .quote {
  display: block;
  margin-top: 60px;
  padding: 20px;
  border-radius: 10px;
  background: var(--maintheme);
  color: #ffffff;

  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.product-specification {
  padding-bottom: 50px;
}

.product-specification .option {
  display: flex;
  gap: 20px;
}

.product-specification .option a {
  background: #f3f3f3;
  text-align: center;
  width: 50%;
  padding: 20px;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}

.product-specification .option a.active,
.product-specification .option a:hover {
  background: var(--maintheme);
  color: #ffffff;
}

.product-specification .wrapper {
  padding-top: 30px;
}

.product-specification .wrapper table {
  width: 100%;
}

.product-specification .wrapper table thead tr th {
  background: #f2f2f2;
  border: 1px solid #d7d7d7;
  padding: 15px 20px;
}

.product-specification .wrapper table thead tr th:first-child {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  width: 200px;
}

.product-specification .wrapper table tbody tr td {
  padding: 10px 20px;
  border: 1px solid #d7d7d7;
  font-size: 15px;
}

.product-specification .wrapper table tbody tr td:first-child {
  text-align: center;
}

.product-specification #dimension {
  display: none;
}
