/*
 * Theme Ver 2 - Custom CSS Override
 * File này dùng để viết CSS ghi đè khi phát triển thêm
 * Được load sau theme.css để có độ ưu tiên cao hơn
 */

/* =========================
 * CUSTOM STYLES - ADD YOUR CSS BELOW
 * ========================= */

 /* ================================================
   COMMON
   ================================================ */
.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.owl-carousel .owl-dot span {
  background: #FFF !important;
}

.owl-carousel .owl-dot.active span {
  background: var(--cl-1) !important;
}
   
/* ================================================
   SERVICE TABS (sbshouse-service-tabs)
   ================================================ */
.sbshouse-service-tabs{ 
  --sbs-service-bg: #1a1919;
  --sbs-service-accent: var(--cl-1);
  /* background-color: var(--sbs-service-bg); */
  padding: 100px 0 88px 0;
}
.sbshouse-service-tabs h2{ 
  margin-bottom: 57px;
}
.sbs-why-choose h2 {
  margin-bottom: 79px;
}
.sbshouse-service-tabs .sc_tabs-body-item{
  display: none;
}
.sbshouse-service-tabs .sc_tabs-body-item.active{
  display: block;
}
.sbshouse-service-tabs__nav-wrap{
  background-color: var(--sbs-service-bg);
  padding: 14px 0;
}
.sbshouse-service-tabs__nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 72px;
}
.sbshouse-service-tabs__tab {
  color: #686868 !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 8px 12px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: unset !important;
}
.sbshouse-service-tabs__tab.active,
.sbshouse-service-tabs__tab:hover{
  color: #111111 !important;
  background-color: var(--sbs-service-accent) !important;
}
.sbshouse-service-tabs__panel{
  background-color: var(--sbs-service-bg);
  padding: 54px 0 64px;
}
.sbshouse-service-tabs__panel-inner{
  display: flex;
  align-items: center;
  /* gap: 48px; */
}
.sbshouse-service-tabs__media{
  /* flex: 0 0 46%; */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  width: 524px;
  height: 329px;
  /* object-fit: cover; */
}
.sbshouse-service-tabs__media img{
  /* width: 100%;
  height: auto; */
  display: block;
  width: 524px;
  height: 329px;
  object-fit: cover;
}
.sbshouse-service-tabs__content{
  flex: 1;
  color: #ffffff;
  margin-left: 124px;
}
.sbshouse-service-tabs__title{
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sbshouse-service-tabs__desc{
  color: #e6e6e6;
  font-size: 14px;
  line-height: 1.5;
  max-width: 560px;
}
.sbshouse-service-tabs__accent{
  display: block;
  width: 130px;
  height: 6px;
  margin-top: 18px;
  background-color: var(--sbs-service-accent);
}
@media (max-width: 991px){
  .sbshouse-service-tabs__nav{
    padding: 0 24px;
    justify-content: center;
  }
  .sbshouse-service-tabs__panel-inner{
    flex-direction: column;
    text-align: center;
  }
  .sbshouse-service-tabs__media{
    width: 100%;
    flex: 0 0 auto;
  }
  .sbshouse-service-tabs__accent{
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px){
  .sbshouse-service-tabs__tab{
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ================================================
   WHY CHOOSE SBS HOUSE (sbs-why-choose)
   ================================================ */
.sbs-why-choose{
  background-color: #000;
  padding-bottom: 90px;
}
.sbs-why-choose__title{
  color: #ffba00;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.sbs-why-choose__layout{
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.sbs-accordion{
  flex: 1;
}
.sbs-accordion__item{
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
}
.sbs-accordion__toggle{
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
.sbs-accordion__index{
  color: #ffba00;
  font-size: 34px;
  font-weight: 700;
  min-width: 58px;
}
.sbs-accordion__label{
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  flex: 1;
}
.sbs-accordion__icon{
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 22px;
}
.sbs-accordion__icon::before,
.sbs-accordion__icon::after{
  content: "";
  position: absolute;
  background-color: #cfcfcf;
}
.sbs-accordion__icon::before{
  width: 22px;
  height: 2px;
  left: 0;
  top: 10px;
}
.sbs-accordion__icon::after{
  width: 2px;
  height: 22px;
  left: 10px;
  top: 0;
  transition: opacity 0.2s ease-in-out;
}
.sbs-accordion__item.active .sbs-accordion__icon::after{
  opacity: 0;
}
.sbs-accordion__content{
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.6;
  margin-left: 76px;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  will-change: max-height, opacity;
}
.sbs-accordion__item.active .sbs-accordion__content{
  opacity: 1;
}
.sbs-why-choose__media{
  flex: 0 0 40%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.sbs-why-choose__media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 991px){
  .sbs-why-choose__title{
    font-size: 40px;
    text-align: center;
  }
  .sbs-why-choose__layout{
    flex-direction: column;
  }
  .sbs-why-choose__media{
    width: 100%;
  }
  .sbs-accordion__content{
    margin-left: 0;
  }
}
@media (max-width: 576px){
  .sbs-why-choose{
    padding: 50px 0 70px;
  }
  .sbs-why-choose__title{
    font-size: 30px;
  }
  .sbs-accordion__index{
    font-size: 26px;
    min-width: 46px;
  }
  .sbs-accordion__label{
    font-size: 16px;
  }
}

/* ================================================
   FEATURED PROJECTS (sbs-featured-projects)
   ================================================ */
.sbs-featured-projects{
  background-color: #000;
  padding: 80px 0 90px;
}
.sbs-featured-projects__title{
  color: #ffba00;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 50px;
}
.sbs-featured-projects__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 36px;
}
.sbs-featured-projects__card{
  display: block;
  background-color: #202020;
  border: 1px solid #414141;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sbs-featured-projects__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.sbs-featured-projects__image{
  padding: 16px 16px 0;
}
.sbs-featured-projects__image img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}
.sbs-featured-projects__body{
  padding: 14px 16px 18px;
}
.sbs-featured-projects__type{
  color: #ffba00;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.sbs-featured-projects__name{
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.sbs-featured-projects__location{
  color: #cfcfcf;
  font-size: 14px;
}
.sbs-featured-projects__cta{
  text-align: center;
  margin-top: 38px;
}
.sbs-featured-projects__button{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #ffba00;
  color: #ffba00;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sbs-featured-projects__button svg{
  width: 16px;
  height: 16px;
}
.sbs-featured-projects__button:hover{
  background-color: #ffba00;
  color: #111111;
}
@media (max-width: 991px){
  .sbs-featured-projects__title{
    font-size: 40px;
  }
  .sbs-featured-projects__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px){
  .sbs-featured-projects{
    padding: 60px 0 70px;
  }
  .sbs-featured-projects__title{
    font-size: 30px;
  }
  .sbs-featured-projects__grid{
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

/* Root rem definition */
:root {
  font-size: 16px;
}

html {
  font-size: 16px;
}

html, body {
  background-color: #000;
}

.box_video_full {
    height: 600px;
}

.footer-top{
    border-bottom: 1px solid var(--cl-1);
    display: flex;
    align-items: center;
    padding-top: 106px;
    margin-bottom: 37px;
    justify-content: space-between;
}

.footer-top.container::before, .footer-top.container::after {
    content: none;
}

.footer-top .footer-top-social {
    display: flex;
    align-items: center;
    gap: 35px;
}

.footer-top .title {
    color: var(--cl-1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 24px;
}

.footer-inner {
    padding: 0px !important;
}

.footer-follow iframe {
    width: 100% !important;
    max-width: 236px !important;
    height: 135px !important;
}


/* ================================================
   FORM CONTACT
   ================================================ */

/* --- Form Layout --- */
.sc_form-contact form {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.sc_form-contact input {
  margin-bottom: 0;
}

/* --- Input Fields (2 Columns) --- */
.sc_form-contact input[type="text"],
.sc_form-contact input[type="email"],
.sc_form-contact .custom-select {
  width: 50%;
  flex: 1 1 calc(50% - 1rem);
  line-height: 2.8125rem;
  padding: 0 1.5rem;
  border: 0;
  border-bottom: 1px solid #545454;
  background-color: var(--cl-w);
  color: #717171;
  font-size: var(--fs-base);;
  font-family: inherit;
  box-sizing: border-box;
}

/* --- Custom Select Dropdown --- */
.sc_form-contact .custom-select {
  position: relative;
  width: 100%;
  padding: 0;
}

.sc_form-contact .custom-select input[type="text"] {
  width: 100%;
}

/* Placeholder */
.sc_form-contact input::placeholder {
  color: #717171;
}

/* Arrow Icon */
.sc_form-contact .custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.625rem;
  background-image: url("data:image/svg+xml;utf8,<svg width='16' height='10' viewBox='0 0 16 10' xmlns='http://www.w3.org/2000/svg'><path d='M7.5831 9.91455L0.000384115 0L15.1658 0L7.5831 9.91455Z' fill='%23D3D3D3'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.sc_form-contact .custom-select.open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* --- Options List --- */
.sc_form-contact .select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #191919;
  border-bottom: 1px solid #545454;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sc_form-contact .select-options li {
  padding: 0.75rem 1.5rem;
  color: var(--cl-0);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.sc_form-contact .select-options li:hover {
  background-color: #222;
}

.sc_form-contact .custom-select.open .select-options {
  display: block;
}

/* --- Textarea --- */
.sc_form-contact textarea {
  flex: 1 1 100%;
  height: 10.9375rem;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-bottom: 1px solid #545454;
  background-color: var(--cl-0);
  color: #717171;
  font-size: var(--fs-base);;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 0;
}

footer .sc_form-contact {
  padding-top: 0;
}

footer .sc_form-contact form {
  flex-direction: column;
  width: auto;
}

footer .sc_form-contact form input{
  width: 100% !important;
}

button.btnSite {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  cursor: pointer;
}

/* HEADER */
.sc_header_body {
  padding: 20px 0;
}

.main_menu a {
  line-height: 55px;
}

.menu-primary-container {
  background-color: #1A1919;
}

header#sc_header {
  background-color:#000;
}

.main_menu li {
  display: block;
  text-align: unset;
  margin-left: unset;
}

.main_menu li a {
  font-size: 16px;
  font-weight: 600;
}
.main_menu .menu {
  display: flex;
  justify-content: space-around;
  gap: 36px;
}

.logo {
  background: unset;
}

.sc_header-right {
  width: 70px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .sc_form-contact input,
  .sc_form-contact .custom-select {
    flex: 1 1 100%;
  }
}

/* ================================================
   3D CAROUSEL (sc_carousel-3d)
   ================================================ */
.sc_carousel-3d {
  margin-bottom: 3.875rem;
}

/* --- 3D Carousel Items --- */
.sc_carousel-3d .item{
    height:350px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:70px;
    font-weight:bold;
    color:#fff;
    border-radius:10px;
    transition:.45s ease-in-out;
    transform-origin:center center;
}

/* Default rotate */
.sc_carousel-3d .owl-item .item{
    padding: 0;
    margin: 0;
    transform:perspective(900px) rotateY(35deg) scale(.82);
    opacity:.35;
}

.sc_carousel-3d .owl-item .item img{
    height: 100%;
    object-fit: cover;
}

/* Center item */
.sc_carousel-3d .owl-item.center .item{
    transform:perspective(900px) rotateY(0deg) scale(1);
    opacity:1;
    z-index:5;
}

/* Right-side items */
.sc_carousel-3d .owl-item.center ~ .owl-item.active .item{
    transform:perspective(900px) rotateY(-35deg) scale(.82);
    opacity:.75;
}

.sc_carousel-3d .owl-item.center ~ .owl-item .item{
    transform:perspective(900px) rotateY(-35deg) scale(.82);
}

/* --- 3D Carousel Navigation --- */
.sc_carousel-3d{
    position: relative;
}

.sc_carousel-3d .owl-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

.sc_carousel-3d .owl-nav .owl-prev,
.sc_carousel-3d .owl-nav .owl-next{
    width: 89px !important;
    height: 54px !important;
    background: #212121 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.sc_carousel-3d .owl-nav .owl-prev{
    left: -100px !important;
}

.sc_carousel-3d .owl-nav .owl-next{
    right: -100px !important;
}

.sc_carousel-3d .owl-nav .owl-prev::before,
.sc_carousel-3d .owl-nav .owl-next::before{
    content: '' !important;
    width: 33px !important;
    height: 32px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M24.4235 13.5816L7.32491e-05 13.5816L7.30737e-05 17.5891L24.4235 17.5891L13.6605 28.3371L16.4977 31.1704L32.1045 15.5853L16.4977 0.000239645L13.6605 2.83353L24.4235 13.5816Z' fill='%23FFBA00'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    position: absolute !important;
    transition: all 0.3s ease !important;
}

.sc_carousel-3d .owl-nav .owl-prev{
  transform: rotate(-180deg) !important;
}

.sc_carousel-3d .owl-nav .owl-prev i,
.sc_carousel-3d .owl-nav .owl-next i{
    display: none !important;
}

/* ================================================
  SERVICE PAGE TEMPLATE
  ================================================ */

/* Service Wrapper */
.home-service-section .service-wrap {
  display: flex;
  gap: 0.9375rem; /* 15px */
  width: 100%;
  margin-top: 5rem; /* 80px */
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
}

.home-service-section .wrapper {
  padding: 131px 0 88px 0;
}

/* Service Items */
.home-service-section .service-item {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 0;
  transition: flex 0.45s ease;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.15);
  color: var(--cl-w);
  background: #000;
  overflow: hidden;
  cursor: pointer;
  height: 21.6875rem; /* 347px */
  min-width: 0;
}

.home-service-section .service-item:last-child {
  border-right: none;
}

/* Service Item Top Section */
.home-service-section .service-item .top {
  padding: 2.25rem 1rem; /* 36px 16px */
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Service Item Bottom Section */
.home-service-section .service-item .bottom {
  padding: 1rem;
  border-top: 0.0625rem solid var(--cl-w);
  margin-top: auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  height: 5rem; /* 70px */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -23.81%, rgba(0, 0, 0, 0.6) 37.05%);
}

/* Service Item Title */
.home-service-section .service-item h3 {
  position: relative;
  z-index: 2;
  letter-spacing: 0.0625rem; /* 1px */
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--cl-w);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.075625rem; /* 17.21px */
  font-weight: 700;
  line-height: normal;
}

/* Service Item Icon */
.home-service-section .service-item .icon {
  position: relative;
  z-index: 2;
  font-size: 1.75rem; /* 28px */
  margin-bottom: 1rem; /* 16px */
  opacity: 0.9;
}

/* Service Item Content */
.home-service-section .service-item .content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  position: relative;
  z-index: 2;
  color: var(--cl-w);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 0.8125rem; /* 13px */
  font-style: normal;
  font-weight: 600;
  line-height: 0.9375rem; /* 15px */
  letter-spacing: -0.040625rem; /* -0.65px */
}

/* Service Item Background Effects */
.home-service-section .service-item::before,
.home-service-section .service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.home-service-section .service-item::before {
  background: var(--bg) center / cover no-repeat;
}

.home-service-section .service-item::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Service Item Hover States */
.home-service-section .service-item:hover {
  flex: 4 1 0;
}

.home-service-section .service-item:hover::before,
.home-service-section .service-item:hover::after {
  opacity: 1;
}

.sc_home-work {
  background-color: #000;
  padding-bottom: 8.125rem;
}

.sc_home-work .center-title{
  text-align: center;
  background: var(--cl-1);
  color: #000;
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 307px  ;
  height: 40px;
  padding: 10px 24px;
  margin: 0 auto;
}

.sc_home-slide-item .title {
  border: none;
}

.sc_home-slide-item .content-top::after {
  content: "";
  display: table;
  clear: both;
}

.sc_home-slide-item .horizontal-line {
  width: 100%;
  height: 1px;
  background: #000;
  /* margin: 20px 0; */
}

.sc_home-slide-item .content-bottom {
  position: relative;
}

.sc_home-slide-item .content-bottom .col-xs-12:first-child {
  position: relative;
  padding-right: 30px;
}

.sc_home-slide-item .vertical-line {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ccc;
}

.sc_home-baochi .sc_home-gallery .item {
  width: 100%;
  background-color: unset
}

.sc_home-baochi .sc_home-gallery img {
  object-fit: contain;
}

a.tld_chat_show, .tld_faq_show, .tld_chat_box_single img {
  width: 50px;
  height: 50px;
}

.tld_faq_box {
  bottom: 130px;
}

/* Responsive - Large Tablet */
@media (max-width: 1024px) {
  .home-service-section .service-wrap {
   margin-top: 4rem;
   gap: 0.625rem; /* 10px */
  }

  .home-service-section .service-item .top {
   padding: 1.5rem 0.75rem;
  }

  .home-service-section .service-item h3 {
   font-size: 0.9375rem; /* 15px */
  }

  .home-service-section .service-item .content {
   font-size: 0.75rem; /* 12px */
   line-height: 0.875rem; /* 14px */
  }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .home-service-section .service-wrap {
   flex-direction: column;
   margin-top: 3rem;
   gap: 0;
  }

  .home-service-section .service-item {
   height: 12.5rem; /* 200px */
   border-right: none;
   border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
   flex: none;
  }

  .home-service-section .service-item:last-child {
   border-bottom: none;
  }

  .home-service-section .service-item .top {
   padding: 1.5rem 1rem;
  }

  .home-service-section .service-item:hover {
   flex: none;
   height: 18.75rem; /* 300px */
  }

  .home-service-section .service-item h3 {
   font-size: 0.9375rem; /* 15px */
   margin-bottom: 0.75rem;
  }

  .home-service-section .service-item .icon {
   font-size: 1.5rem; /* 24px */
   margin-bottom: 0.75rem;
  }

  .home-service-section .service-item .content {
   font-size: 0.8125rem; /* 13px */
   line-height: 0.9375rem; /* 15px */
  }

  .home-service-section .service-item .bottom {
   height: 3.75rem; /* 60px */
   padding: 0.75rem 1rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .home-service-section .service-wrap {
   margin-top: 2rem;
  }

  .home-service-section .service-item {
   height: 10rem; /* 160px */
  }

  .home-service-section .service-item:hover {
   height: 16.25rem; /* 260px */
  }

  .home-service-section .service-item .top {
   padding: 1.25rem 0.875rem;
  }

  .home-service-section .service-item h3 {
   font-size: 0.875rem; /* 14px */
  }

  .home-service-section .service-item .content {
   font-size: 0.75rem; /* 12px */
   line-height: 0.875rem; /* 14px */
   -webkit-line-clamp: 3;
   line-clamp: 3;
  }

  .home-service-section .service-item .bottom {
   height: 3.125rem; /* 50px */
  }
}
