/* Import fonts from @fonts/ directory */


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Body Styling */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-position: top -10px center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.btn{
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn-primary{
    border-radius: 999px;
    background: #B91C1C;
    color: #FFF;
}
/* Container căn giữa */
.owl-carousel .owl-dots {
    position: absolute; /* hoặc relative nếu muốn */
    left: 0;
    right: 0;
    bottom: 12px; /* cao hơn/hạ thấp tùy ý */
    text-align: center;
    pointer-events: none; /* để tránh chồng sự kiện nếu cần */
  }
  
  /* Mỗi dot */
  .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
    pointer-events: auto;
  }
  
  /* Hình dạng dot */
  .owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    transform: scale(1);
  }
  
  /* Active dot */
  .owl-carousel .owl-dots .owl-dot.active span {
    background: #B91C1C;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }
  .box-home-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #B91C1C;
    width: 137px;
    height: 2px;
  }
  .right-box-profile{
    position: relative;
  }
  /* .right-box-profile::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/icon-line.png');
    background-repeat: no-repeat;
    z-index: 99;
  }
  @media (max-width: 767px) {
    .right-box-profile::after{
      background-image: url('../images/icon-line-mobile.png');
      bottom: -19px;
      top: auto;
      left: 0px;
      width: 100%;
      height: 90px;
      z-index: 9999;
      background-size: 100% 100%;
    }
  } */
  .clamp-2{
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3{
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 767px) {
    .gap-10 {
      gap: 1rem !important;
    }
    .py-\[72px\] {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .mt-\[42px\] {
    margin-top: 20px;
}
}