/*---------------------------------
 * 
 * homde page custom style 
 * */




.tab-content {
/*   display: none;
  opacity: 0; */
  transform: translateX(-50px);
  transition: all 0.5s ease-in-out;
}

.tab-content.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.loading {
  text-align: center;
  padding: 60px 0;
  color: #777;
  font-weight: 500;
}

/* -------------------------
   Bootstrap Slim CSS
   Grid + Utilities only
   ------------------------- */

*, ::after, ::before {
    box-sizing: border-box;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, .75rem);
  padding-right: var(--bs-gutter-x, .75rem);
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x, .75rem) * -1);
  margin-right: calc(var(--bs-gutter-x, .75rem) * -1);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: var(--bs-gutter-x, .75rem);
  padding-right: var(--bs-gutter-x, .75rem);
}

/* Columns (12 grid system) */
.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-1 { flex: 0 0 auto; width: 8.333333%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* Responsive columns */
@media (min-width: 576px) {
  .col-sm { flex: 1 0 0%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }
  .col-sm-1 { width: 8.333333%; }
  .col-sm-2 { width: 16.666667%; }
  .col-sm-3 { width: 25%; }
  .col-sm-4 { width: 33.333333%; }
  .col-sm-5 { width: 41.666667%; }
  .col-sm-6 { width: 50%; }
  .col-sm-7 { width: 58.333333%; }
  .col-sm-8 { width: 66.666667%; }
  .col-sm-9 { width: 75%; }
  .col-sm-10 { width: 83.333333%; }
  .col-sm-11 { width: 91.666667%; }
  .col-sm-12 { width: 100%; }
}
@media (min-width: 768px) {
  .col-md { flex: 1 0 0%; }
  .col-md-auto { flex: 0 0 auto; width: auto; }
  .col-md-1 { width: 8.333333%; }
  .col-md-2 { width: 16.666667%; }
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-5 { width: 41.666667%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-9 { width: 75%; }
  .col-md-10 { width: 83.333333%; }
  .col-md-11 { width: 91.666667%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg { flex: 1 0 0%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; }
  .col-lg-1 { width: 8.333333%; }
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .col-lg-11 { width: 91.666667%; }
  .col-lg-12 { width: 100%; }
}

/* -------------------------
   Utilities (essential set)
   ------------------------- */

/* Spacing (m=margin, p=padding) */
.m-0 { margin:0!important; }
.mt-1 { margin-top:.25rem!important; }
.mt-2 { margin-top:.5rem!important; }
.mt-3 { margin-top:1rem!important; }
.mt-4 { margin-top:1.5rem!important; }
.mt-5 { margin-top:3rem!important; }
.mb-1 { margin-bottom:.25rem!important; }
.mb-2 { margin-bottom:.5rem!important; }
.mb-3 { margin-bottom:1rem!important; }
.mb-4 { margin-bottom:1.5rem!important; }
.mb-5 { margin-bottom:3rem!important; }
.p-0 { padding:0!important; }
.p-1 { padding:.25rem!important; }
.p-2 { padding:.5rem!important; }
.p-3 { padding:1rem!important; }
.p-4 { padding:1.5rem!important; }
.p-5 { padding:3rem!important; }

/* Display */
.d-block { display:block!important; }
.d-inline { display:inline!important; }
.d-inline-block { display:inline-block!important; }
.d-flex { display:flex!important; }
.d-none { display:none!important; }

/* Flexbox */
.flex-row { flex-direction:row!important; }
.flex-column { flex-direction:column!important; }
.justify-content-start { justify-content:flex-start!important; }
.justify-content-center { justify-content:center!important; }
.justify-content-end { justify-content:flex-end!important; }
.justify-content-between { justify-content:space-between!important; }
.align-items-start { align-items:flex-start!important; }
.align-items-center { align-items:center!important; }
.align-items-end { align-items:flex-end!important; }

/* Text */
.text-start { text-align:left!important; }
.text-center { text-align:center!important; }
.text-end { text-align:right!important; }
.text-muted { color:#6c757d!important; }
.text-primary { color:#0d6efd!important; }
.text-success { color:#198754!important; }
.text-danger { color:#dc3545!important; }
.text-warning { color:#ffc107!important; }
.text-info { color:#0dcaf0!important; }
.text-light { color:#f8f9fa!important; }
.text-dark { color:#212529!important; }

/* Backgrounds */
.bg-primary { background-color:#0d6efd!important; color:#fff; }
.bg-success { background-color:#198754!important; color:#fff; }
.bg-danger { background-color:#dc3545!important; color:#fff; }
.bg-warning { background-color:#ffc107!important; color:#212529; }
.bg-info { background-color:#0dcaf0!important; color:#fff; }
.bg-light { background-color:#f8f9fa!important; color:#212529; }
.bg-dark { background-color:#212529!important; color:#fff; }
