/*Theme default CSS */
body {
    font-family: 'IBM Plex Sans Thai', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    position: relative;
    visibility: visible;
    color: #000;
    background-color: #fff;;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'IBM Plex Sans Thai', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
}

h1 {
    font-size: 30px;
    line-height: 1.7rem;
}

h2 {
    font-size: 26px;
    line-height: 1.7rem;
}

h3 {
    font-size: 20px;
    line-height: 1.7rem;
}

h4 {
    font-size: 18px;
    line-height: 1.7rem;
}

h5 {
    font-size: 14px;
    line-height: 1.7rem;
}

h6 {
    font-size: 12px;
    line-height: 1.7rem;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #18375d;
}
.btn{
    color: #fff;
    background-color: #18375d;
}
.btn:hover{
    color: #fff;
    background-color: #1e4575;
}
.font-s20{
    font-size: 20px;
}

/* button */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  font-size: 16px;
  padding: 8px 12px;
  text-decoration: none;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-top-color: transparent;
  border-radius: 50%;
  transition: transform 0.3s;
}
.view-more-btn:hover .spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* font size */
.text-shadow{text-shadow: 10px 10px #484646;}
.font-size-4rem{font-size:4rem;}
.font-size-2rem{font-size:2rem;}


/* section highlight home */
.main-hilight{
    overflow: hidden;
    padding-bottom: 4rem;
}
.hilight-home{
    position: relative;
    text-align: center;
}
.hilight-home-content{
    position: absolute;
  top: 80%;
  left: 50%;
  display: block;
  background-color: #e7e1d8;
  z-index: 8;   
    max-width: 760px;
    max-height: 260px;
    min-height: 0px;
    min-width: 0px;
    padding: 2rem;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}
.hilight-home-content .center-block{
    display: table;
    height: 100%;
    width: 100%;
}
.hilight-home-content .center-block .content{
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle !important;
}

/* section-function */
.section-function .icon {
    width: 77px;
    height: auto;
    flex-shrink: 0;
  }
  
  /* section products */
  .product-img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-img:hover {
  transform: scale(1.05);
}
.section-products h4{
    font-size: 44px;
}
.section-products .block-title{
    background-color: #e7dfd4;;
}

/* section reviews */
.section-reviews{
    background-color: #e7dfd4;
    margin-bottom: 3rem;
}
.section-reviews h3{
    font-size: 1.4rem;
}

.section-expertise{padding: 3rem 0;}
.section-expertise p{margin-bottom: 0.4rem;}

/* section-contact */
.section-contact-bg{
    background-image: url(../../asset/image/img-sec-contact.jpg);
    background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}
.section-contact-bg-closet{
    background-image: url(../../asset/image/img-sec-contact-closet.jpg);
    background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}
.section-contact-bg-bathroom{
    background-image: url(../../asset/image/img-sec-contact-bathroom.jpg);
    background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}

.section-contact .text{
    display: table;
  padding: 8rem 0;
  width: 100%;
}
.section-contact .text a{
    font-size: 2.4rem;
    font-weight: 600;
  font-style: normal;
    color: #fff;
}

.star-popular i{color: #f1d411;}

 .img-hover {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  object-fit: cover;
  transition: transform 0.3s ease;
}
.img-hover:hover {
  transform: scale(1.05);
}

/* footer */
.footer{
    padding: 70px 20px;
}
.footer h5{
    font-size: 16px;
}
.footer .text-footer p{
    line-height: 1.7em;
    margin-bottom: 0.4em;
}

