body {
  scroll-behavior: smooth;
  font-family: var(--font-sans-serif) !important;
  color: var(--color-base-black) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

a {
  text-decoration: none;
}

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
}

h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
}

h5 {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
}

h6 {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
}

hr {
  border-top: 1.2px solid var(--color-tertiary-200);
}

.blockquote {
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  border-radius: var(--border-radius);
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

.btn-xs {
  padding: 0 10px;
  height: 20px;
  font-size: var(--font-size-smallest);
  line-height: var(--line-height-caption-small);
}

.btn-sm {
  padding: 0 13px;
  height: 28px;
  font-size: var(--font-size-caption-small);
  line-height: var(--line-height-caption-small);

  @media (max-width: 62em) {
    padding: 0 20px !important;
  }
}

.btn-normal {
  padding: 0 16px;
  height: 36px;
}

.btn-lg {
  padding: 0 20px;
  height: 44px;
}

.btn-xlarge {
  padding: 0 23px;
  height: 52px;
  font-size: var(--font-size-body-large);
  line-height: var(--line-height-body-large);
}

.btn-close {
  outline: none !important;
  box-shadow: none !important;
}

/* Navbar */
.blur-background {
  background-color: var(--header-background, hsla(0, 0%, 100%, .7)) !important;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  transition: background-color .3s linear;
}

.divider-vertical {
  width: 1px;
  height: 2.5rem;
  margin: 0;
}

.navbar {
  right: 0;
  left: 0;
  top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  z-index: 999;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.navbar-desktop .nav-item .nav-link {
  padding: 20px 0;
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  font-weight: 600;
  text-transform: capitalize !important;

  @media (min-width: 1200px) {
    font-size: 0.938rem;
    line-height: var(--line-height-body-large);
  }
}

.navbar-desktop .nav-item.dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
}

.navbar-desktop .nav-item.dropdown .dropdown-menu {
  display: none;
  margin-top: 0;
  margin-left: -20px;
  position: absolute;
  min-width: 15rem;
  padding: 0.625rem;
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: var(--elevation);
  -moz-box-shadow: var(--elevation);
  box-shadow: var(--elevation);
}

.navbar-toggler .navbar-toggler-icon {
  color: var(--color-base-white) !important;
}

.navbar-desktop .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-desktop .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.938rem;
  line-height: var(--line-height-body-regular);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.dropdown-between .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.dropdown-between .dropdown-toggle::after {
  margin-left: auto;
  margin-right: 0.5rem;
}

.navbar-header-menu {
  padding: 0;
  list-style: none;
  padding: 0;
}

.navbar-header-menu li {
  padding: 1rem;
  text-transform: capitalize;
  font-size: var(--font-size-body-regular);
  font-weight: 500;
  text-decoration: none;
}

.navbar-header-menu li button {
  text-transform: capitalize;
  font-size: var(--font-size-body-regular);
  font-weight: 500;
  width: 100%;
  text-align: left;
  background: inherit;
  outline: 0;
  box-shadow: none;
  border: none;
  padding: 0;
}

.navbar-header-menu li .collapsible:after {
  font-family: FontAwesome;
  content: "\f078";
  font-size: var(--font-size-caption-small);
  float: right;
}

.navbar-header-menu li .collapsible[aria-expanded="true"]:after {
  font-family: FontAwesome;
  content: "\f077";
  font-size: var(--font-size-caption-small);
  float: right;
}

.navbar-header-menu .sub-menu-list-mobile {
  padding: 0.625rem;
}

.navbar-header-menu .sub-menu-list-mobile a {
  padding: 0.625rem 0;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: var(--font-size-body-regular);
  text-decoration: none;
}

.navbar-header-menu__action {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.offcanvas-navbar.active {
  transform: translateX(0);
}

.offcanvas-navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  padding: 0 1rem;
  color: black;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
}

.offcanvas-body .navbar-nav {
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  text-transform: capitalize;
  gap: 10px;
}

.offcanvas-body .navbar-nav .nav-item.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.offcanvas-body .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  width: 100%;
  background-color: transparent;
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  font-weight: 600;
  border: 0;
}

.offcanvas-body .navbar-nav .nav-link {
  padding: 0.75rem;
  font-weight: 600;
}

.offcanvas-body .navbar-nav .nav-item.dropdown .dropdown-menu.show .dropdown-item {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

@media (min-width: 62em) {
  .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .navbar-mobile {
    display: none;
  }
}

@media (max-width: 62em) {
  .navbar-desktop {
    display: none;
  }

  .navbar {
    top: 0 !important;
  }

  .navbar-mobile {
    display: block;
  }
}

/* Section */
.section-header {
  padding: 50px 80px;
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  @media (max-width: 62em) {
    margin-top: 4rem;
    padding: 50px 20px;
  }
}

.section-title {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: bold;
  margin-bottom: 10px;
}

.section-description {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-description p,
.section-description p span {
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  max-width: 100%;
  color: var(--color-tertiary-500);
  text-align: center !important;
  margin-bottom: 0 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;

  @media (min-width: 1200px) {
    max-width: 50%;
  }
}

.section-content {
  padding: 0 20px 80px;
}

.section-content-title {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* Image styles */
.img-content {
  width: min(200px, 100%);
  height: auto;

  @media (max-width: 62em) {
    width: min(140px, 100%);
  }
}

/* Datatables Custom Style */
.dt-layout-row {
  font-size: 13px !important;
}

.dt-length label {
  margin-left: 10px !important;
}

.dt-top,
.dt-bottom {
  font-size: 13px !important;
  color: #000 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;

  @media (max-width: 62em) {
    flex-direction: column !important;
    padding: 0 0.5rem !important;
  }
}

.dt-top {
  margin-bottom: 10px;
}

.dt-top .dt-button {
  color: var(--color-base-white) !important;
  padding: 10px 15px !important;
}

div.dt-container .dt-search {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

div.dt-container .dt-search input {
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  color: var(--color-base-black);
  background-color: var(--color-base-white);
  border: 1px solid var(--color-tertiary-100);
  border-radius: var(--border-radius);
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out;
}

div.dt-container .dt-search input:focus,
div.dt-container .dt-search input:hover {
  outline: none !important;
  border: 1px solid var(--color-primary-500) !important;
}

.dt-bottom {
  margin-top: 10px;
  margin-bottom: 10px;
}

.dt-paging-button {
  font-size: 13px;
  color: var(--color-base-black);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.5rem 0.9rem !important;
  background-color: #f9fafe !important;
  line-height: var(--line-height-caption-re--font-size-caption-small);
  transition: background-color 0.2s ease;
  border-radius: 5px !important;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background-color: var(--color-primary-500) !important;
  color: var(--color-base-white) !important;
}

.dt-paging-button.disabled.previous,
.dt-paging-button.disabled.previous:hover,
.dt-paging-button.disabled.next,
.dt-paging-button.disabled.next:hover {
  background-color: #f9fafe !important;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form */
.form-label {
  font-size: var(--font-size-caption-large);
  line-height: var(--line-height-caption-large);
  font-weight: bold;
}

.form-select {
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  padding: 12px 15px;
  outline: none !important;
  box-shadow: none !important;
}

/* Breadcrumb */
.breadcrumb-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 62em) {
  .breadcrumb-navigation .btn-back {
    display: none;
  }
}

.breadcrumb {
  background: none;
  padding: 0;
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

/* Form */
.form-control {
  font-size: var(--font-size-body-regular);
  line-height: var(--line-height-body-regular);
  color: var(--color-base-black);
  background-color: var(--color-base-white);
  border: 1px solid var(--color-tertiary-100);
  border-radius: var(--border-radius);
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out;
}

/* Table */
.table {
  width: 100%;
  border-collapse: collapse;
  color: var(--tbl-text);
  margin-bottom: 0;
  --bs-table-bg: transparent !important;
}

.table-wrap {
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid var(--tbl-border);
  overflow: hidden;
}

.table thead th {
  background: var(--color-primary-500);
  color: #fff;
  text-align: left;
  font-size: .95em;
  line-height: var(--line-height-caption-small);
  font-weight: 700;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--color-primary-500);
  vertical-align: middle;
}

.table tbody tr td {
  padding: 0.625rem 0.75rem !important;
}

.table tbody td {
  padding: 10px 14px;
  font-size: .95em;
  line-height: var(--line-height-caption-small);
  border-bottom: 1px solid var(--tbl-border);
  vertical-align: middle;
}

.table tbody tr:nth-child(even) {
  background-color: #fafbfe;
}

.table tbody tr:hover {
  background-color: var(--color-primary-50);
}


.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Carousel Custom Style */
.carousel-control-next,
.carousel-control-prev {
  width: 50px;
  height: 50px;
  opacity: .5;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 26px rgba(54, 53, 53, 0.12);
  -moz-box-shadow: 0 5px 26px rgba(54, 53, 53, 0.12);
  box-shadow: 0 5px 26px rgba(54, 53, 53, 0.12);

  @media (max-width: 990px) {
    width: 30px;
    height: 30px;
    padding: 5px;
  }
}

.carousel-control-next {
  position: absolute;
  right: 20px;
  bottom: 55%;
  top: 45%;
}

.carousel-control-prev {
  position: absolute;
  left: 20px;
  bottom: 55%;
  top: 45%;
}

.carousel-control-prev-icon {
  background-image: url("data: image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23204384' ><path%20d='M11.354%201.646a.5.5%200%200%201%200%20.708L5.707%208l5.647%205.646a.5.5%200%200%201-.708.708l-6-6a.5.5%200%200%201%200-.708l6-6a.5.5%200%200%201%20.708%200' /></svg>");
  opacity: 1;
}

.carousel-control-next-icon {
  background-image: url("data: image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23204384' ><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708' /></svg>");
  opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data: image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' ><path%20d='M11.354%201.646a.5.5%200%200%201%200%20.708L5.707%208l5.647%205.646a.5.5%200%200%201-.708.708l-6-6a.5.5%200%200%201%200-.708l6-6a.5.5%200%200%201%20.708%200' /></svg>");
  opacity: 1;
}

.carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data: image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' ><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708' /></svg>");
  opacity: 1;
}

.address {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.address__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}

.address__item .address__item-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 24px;
  height: 35px;
  min-width: 35px;
  padding-top: 3px;
}

.address__item .address__item-data {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.address__item .address__item-data a {
  color: var(--color-base-black);
  transition: all 0.3s ease-in-out;
}