html,
body {
  font-family: "SFProDisplay", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #262626;
  overflow-x: hidden;
}

body.home {
  padding-top: 0;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.s-title {
  font-size: 30px;
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.bg-none {
  background: none !important;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-arrow {
  z-index: 100;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0.8;
  border: none;
  cursor: pointer;
}
.slick-arrow img {
  width: 20px;
  height: 20px;
  display: block;
  transition: all 0.3s;
}
.slick-arrow:hover {
  opacity: 1;
  background: #FF2D55;
}
.slick-arrow:hover img {
  filter: brightness(0) invert(1);
}
.slick-arrow.slick-prev {
  left: calc(50% - 220px);
}
@media (max-width: 768px) {
  .slick-arrow.slick-prev {
    left: 10px;
  }
}
.slick-arrow.slick-next {
  right: calc(50% - 220px);
}
@media (max-width: 768px) {
  .slick-arrow.slick-next {
    right: 10px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.breadcrumb {
  background: none;
  padding-left: 0;
  padding-top: 0;
  color: #262626;
  border-radius: 0;
  font-size: 14px;
  margin: 15px auto;
  display: block;
  border-bottom: 1px solid #f3f8fd;
}
.breadcrumb a {
  color: #0c71c3;
}
.breadcrumb a:hover {
  color: #0c71c3;
}
.breadcrumb .active {
  color: #0c71c3;
}

.breadcrumb > span > span > a {
  color: #0c71c3;
}

body.single .breadcrumb_last {
  display: none;
}

.table-of-contents {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}
.table-of-contents .toc-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background-color 0.2s;
}
.table-of-contents .toc-header:hover {
  background-color: #fafafa;
}
.table-of-contents .toc-header .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.table-of-contents .toc-header .icon img,
.table-of-contents .toc-header .icon svg {
  width: 20px;
  height: 20px;
}
.table-of-contents .toc-header span {
  font-weight: 700;
  font-size: 16px;
  color: #262626;
}
.table-of-contents .toc-header .toggle-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.table-of-contents .toc-header .toggle-icon img,
.table-of-contents .toc-header .toggle-icon svg {
  width: 16px;
  height: 16px;
}
.table-of-contents .toc-header[aria-expanded=true] .toggle-icon {
  transform: rotate(180deg);
}
.table-of-contents #tocContent ul {
  padding: 15px 20px;
  margin: 0;
  list-style: none;
}
.table-of-contents #tocContent ul li {
  margin-bottom: 10px;
}
.table-of-contents #tocContent ul li:last-child {
  margin-bottom: 0;
}
.table-of-contents #tocContent ul li a {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.2s;
  display: block;
  padding-left: 15px;
  position: relative;
}
.table-of-contents #tocContent ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ddd;
  border-radius: 50%;
  transition: background 0.2s;
}
.table-of-contents #tocContent ul li a:hover {
  color: #0c71c3;
  text-decoration: none;
  transform: translateX(5px);
}
.table-of-contents #tocContent ul li a:hover:before {
  background: #0c71c3;
}

.related-posts {
  border-top: 1px solid #eee;
  padding-top: 40px;
}
.related-posts .related-title {
  font-size: 24px;
  font-weight: 800;
  position: relative;
  padding-left: 15px;
}
.related-posts .related-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background: #0c71c3;
  border-radius: 4px;
}
.related-posts .post-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.related-posts .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.related-posts .post-item:hover .post-thumb img {
  transform: scale(1.05);
}
.related-posts .post-item .post-thumb {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.related-posts .post-item .post-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-posts .post-item .post-thumb .post-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0c71c3;
  padding: 4px 10px;
  border-radius: 20px;
}
.related-posts .post-item .post-thumb .post-cat a {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.related-posts .post-item .post-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.related-posts .post-item .post-content .post-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}
.related-posts .post-item .post-content .post-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.related-posts .post-item .post-content .post-title a {
  color: #262626;
  transition: color 0.3s;
}
.related-posts .post-item .post-content .post-title a:hover {
  color: #0c71c3;
}
.related-posts .post-item .post-content .read-more {
  color: #0c71c3;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: auto;
}
.related-posts .post-item .post-content .read-more:hover {
  text-decoration: underline;
}

.page-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
.page-header .header-inner {
  min-height: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .page-header .navbar-collapse.collapse,
  .page-header .navbar-collapse.collapsing {
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 320px;
    max-width: 90vw;
    height: 100vh !important;
    background-color: #ffffff;
    z-index: 9999;
    margin: 0;
    padding: 24px 20px;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.15);
    display: flex !important;
    flex-direction: column;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow-y: auto;
  }
  .page-header .navbar-collapse.show {
    left: 0;
  }
  .page-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  .page-header .btn-close-menu {
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .page-header .btn-close-menu:hover {
    transform: rotate(90deg);
    color: #0c71c3 !important;
    outline: none;
  }
}
@media (max-width: 991px) {
  .page-header .navbar > .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between !important;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-header .navbar > .container .navbar-toggler {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-start;
    z-index: 10;
  }
  .page-header .navbar > .container .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 !important;
  }
  .page-header .navbar > .container .logo img {
    max-width: 140px;
    height: auto;
  }
  .page-header .navbar > .container .mobile-search-trigger {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
    margin: 0 !important;
  }
}
.page-header .navbar-toggler, .page-header .btn-search-mobile {
  flex-shrink: 0;
}
.page-header .logo img {
  max-width: 180px;
}
.page-header .btn-search-mobile {
  color: #475569;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .btn-search-mobile:hover {
  color: #0c71c3;
  transform: scale(1.1);
}
.page-header .navbar-toggler {
  color: #475569;
  transition: all 0.3s ease;
}
.page-header .navbar-toggler:hover {
  color: #0c71c3;
}
.page-header .btn-theme-toggle {
  width: 44px;
  height: 44px;
  background-color: #f1f5f9;
  border-radius: 12px;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-header .btn-theme-toggle:hover, .page-header .btn-theme-toggle:focus {
  background-color: #e2e8f0;
  color: #0f172a;
  outline: none;
}
.page-header .mobile-search-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  z-index: 1000;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.page-header .mobile-search-wrapper.active {
  height: 60px;
  opacity: 1;
  visibility: visible;
}
.page-header .mobile-search-wrapper .search-form-mobile {
  width: 100%;
  height: 44px;
}
.page-header .mobile-search-wrapper .search-form-mobile .form-control {
  flex: 1;
  width: 100%;
  font-size: 15px;
}
.page-header .mobile-search-wrapper .search-form-mobile .form-control::placeholder {
  color: #94a3b8;
}
.page-header .btn-theme-toggle {
  width: 44px;
  height: 44px;
  background-color: #f1f5f9;
  border-radius: 12px;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-header .btn-theme-toggle:hover, .page-header .btn-theme-toggle:focus {
  background-color: #e2e8f0;
  color: #0f172a;
  outline: none;
}
.page-header .navbar-nav {
  margin: 0;
}
@media (max-width: 991px) {
  .page-header .navbar-nav {
    margin-left: 0 !important;
    align-items: flex-start !important;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }
  .page-header .navbar-nav li.nav-item:last-child {
    border-bottom: none;
  }
}
.page-header .navbar-nav li.nav-item a.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item a.nav-link {
    padding: 16px 0;
    font-size: 18px;
    color: #0f172a;
  }
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item a.nav-link {
    padding: 28px 0;
  }
}
.page-header .navbar-nav li.nav-item a.nav-link:hover {
  color: #1a202c;
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item a.nav-link:hover {
    color: #0c71c3;
    padding-left: 5px;
  }
}
.page-header .navbar-nav li.nav-item a.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item a.nav-link.dropdown-toggle {
    justify-content: space-between !important;
    width: 100%;
  }
}
.page-header .navbar-nav li.nav-item a.nav-link.dropdown-toggle::after {
  margin-left: 8px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
  border-bottom-width: 0;
  transition: transform 0.3s ease;
}
.page-header .navbar-nav li.nav-item a.nav-link.dropdown-toggle.active::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item a.nav-link:hover.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-mega-menu {
    position: static !important;
  }
  .page-header .navbar-nav li.nav-item.has-mega-menu:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    display: block;
  }
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #f1f5f9;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    display: block;
  }
  .page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
  }
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu {
    display: none;
    padding: 10px 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .container {
    padding: 0;
    max-width: 100%;
  }
  .page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .row > div {
    margin-bottom: 25px;
  }
  .page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .row > div:last-child {
    margin-bottom: 0;
  }
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #0c71c3;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li {
  margin-bottom: 12px;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li:last-child {
  margin-bottom: 0;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li a {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li a .icon-circle {
  width: 34px;
  height: 34px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c71c3;
  transition: all 0.3s ease;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li a.d-flex {
  display: flex !important;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li a:hover {
  color: #0c71c3;
  transform: translateX(5px);
  text-decoration: none;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-list li a:hover .icon-circle {
  background: #0c71c3;
  color: #ffffff;
  transform: rotate(10deg);
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-promo {
  transition: transform 0.3s ease;
}
.page-header .navbar-nav li.nav-item.has-mega-menu .mega-menu .mega-menu-promo:hover {
  transform: translateY(-5px);
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-multi-level:hover > .dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu {
  border-radius: 12px;
  margin-top: 5px;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
  }
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu .dropdown-item svg {
  color: #94a3b8;
  transition: color 0.2s ease;
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu .dropdown-item:hover {
  background-color: #f8fafc;
  color: #0c71c3;
  padding-left: 28px;
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu .dropdown-item:hover svg {
  color: #0c71c3;
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu .dropdown-item:active {
  background-color: #0c71c3;
  color: #ffffff;
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-menu .dropdown-item.dropdown-toggle::after {
  display: none !important;
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu {
  position: relative;
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu .dropdown-toggle::after {
    display: none !important;
  }
}
.page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu > .dropdown-menu {
  top: -10px;
  left: 100%;
  margin-top: 0;
  margin-left: 5px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu .dropdown-toggle::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu > .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    margin: 10px 15px;
    box-shadow: none !important;
    display: none;
    background-color: #f8fafc;
    border-radius: 12px;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: auto;
  }
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu.active > .dropdown-toggle {
    color: #0c71c3;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu-left > .dropdown-menu {
    left: auto !important;
    right: 106% !important;
    transform: translateX(-15px) !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .page-header .navbar-nav li.nav-item.has-multi-level .dropdown-submenu-left:hover > .dropdown-menu {
    transform: translateX(0) !important;
  }
}
@media (max-width: 991px) {
  .page-header .header-right {
    margin-left: 0 !important;
    justify-content: flex-start !important;
    width: 100%;
    margin-top: 20px;
  }
  .page-header .header-right .btn-get-started {
    width: auto !important;
    flex-grow: 0 !important;
  }
}
.page-header .btn-get-started {
  background-color: #0c71c3;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 0 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  height: 44px;
}
.page-header .btn-get-started:hover, .page-header .btn-get-started:focus {
  background-color: #0c71c3;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}
.page-header .btn-get-started svg {
  transition: transform 0.3s ease;
}
.page-header .btn-get-started:hover svg {
  transform: translateX(4px);
}

.page-footer {
  background-color: #070e1c;
  color: #94a3b8;
  padding-top: 80px;
}
.page-footer .footer-top {
  padding-bottom: 60px;
}
.page-footer .footer-logo {
  margin-bottom: 24px;
}
.page-footer .footer-logo img {
  max-width: 250px;
  filter: brightness(0) invert(1);
}
.page-footer .footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #94a3b8;
  padding-right: 20px;
}
.page-footer .footer-socials {
  display: flex;
  gap: 20px;
}
.page-footer .footer-socials a {
  color: #94a3b8;
  transition: color 0.3s ease;
}
.page-footer .footer-socials a:hover {
  color: #ffffff;
}
.page-footer .footer-socials a svg {
  width: 18px;
  height: 18px;
}
.page-footer .footer-widget .widget-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-footer .footer-widget .widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-footer .footer-widget .widget-list li {
  margin-bottom: 16px;
}
.page-footer .footer-widget .widget-list li:last-child {
  margin-bottom: 0;
}
.page-footer .footer-widget .widget-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.page-footer .footer-widget .widget-list li a:hover {
  color: #ffffff;
}
.page-footer .footer-widget .contact-item {
  margin-bottom: 24px;
  font-size: 14px;
}
.page-footer .footer-widget .contact-item:last-child {
  margin-bottom: 0;
}
.page-footer .footer-widget .contact-item .contact-title {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}
.page-footer .footer-widget .contact-item .contact-title svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: #0c71c3;
}
.page-footer .footer-widget .contact-item .contact-text {
  padding-left: 24px;
  color: #94a3b8;
}
.page-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 14px;
}
.page-footer .footer-bottom .copyright-text {
  color: #94a3b8;
}
.page-footer .footer-bottom .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.page-footer .footer-bottom .footer-links a:hover {
  color: #ffffff;
}

main.page-content {
  padding: 30px 0;
  min-height: 50vh;
}

.sidebar {
  padding-left: 30px;
  position: sticky;
  top: 130px;
}
@media (max-width: 991px) {
  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}
.sidebar .widget {
  margin-bottom: 40px;
}
.sidebar .widget .widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  position: relative;
}
.sidebar .widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #0c71c3;
}
.sidebar .widget-recent-posts .recent-post-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar .widget-recent-posts .recent-post-item:last-child {
  margin-bottom: 0;
}
.sidebar .widget-recent-posts .recent-post-item .thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}
.sidebar .widget-recent-posts .recent-post-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.sidebar .widget-recent-posts .recent-post-item .thumb:hover img {
  transform: scale(1.1);
}
.sidebar .widget-recent-posts .recent-post-item .content .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}
.sidebar .widget-recent-posts .recent-post-item .content .title a {
  color: #262626;
  transition: color 0.3s;
}
.sidebar .widget-recent-posts .recent-post-item .content .title a:hover {
  color: #0c71c3;
}
.sidebar .widget-recent-posts .recent-post-item .content .date {
  font-size: 13px;
  color: #888;
}
.sidebar .widget-policy-links {
  background-color: #f7f9fc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}
.sidebar .widget-policy-links ul li {
  margin-bottom: 12px;
  border-bottom: 1px solid #eef1f6;
  padding-bottom: 12px;
}
.sidebar .widget-policy-links ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar .widget-policy-links ul li a {
  color: #262626;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  display: block;
}
.sidebar .widget-policy-links ul li a:hover, .sidebar .widget-policy-links ul li a.active {
  color: #0c71c3;
  padding-left: 5px;
  font-weight: 600;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes floatX {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
}
@keyframes pulseStar {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
  }
}
.hero-master {
  background-color: #fafbfd;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-master {
    padding: 50px 0 30px;
  }
}
.hero-master .hero-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-master .hero-decor .hero-decor-icon {
  position: absolute;
  z-index: 0;
}
.hero-master .hero-decor .hero-decor-icon.icon-1 {
  top: 15%;
  left: 8%;
  width: 60px;
  animation: floatY 4s ease-in-out infinite;
}
@media (min-width: 1400px) {
  .hero-master .hero-decor .hero-decor-icon.icon-1 {
    width: 90px;
  }
}
.hero-master .hero-decor .hero-decor-icon.icon-2 {
  top: 40%;
  right: 6%;
  width: 70px;
  animation: floatY 5s ease-in-out infinite reverse;
}
@media (min-width: 1400px) {
  .hero-master .hero-decor .hero-decor-icon.icon-2 {
    width: 110px;
    top: 15%;
  }
}
.hero-master .hero-decor .hero-decor-icon.icon-3 {
  bottom: 25%;
  left: 12%;
  width: 50px;
  animation: floatX 6s ease-in-out infinite;
  opacity: 0.9;
}
@media (min-width: 1400px) {
  .hero-master .hero-decor .hero-decor-icon.icon-3 {
    width: 75px;
  }
}
.hero-master .hero-decor .hero-decor-icon.icon-4 {
  top: 25%;
  left: 20%;
  width: 25px;
  animation: pulseStar 3s ease-in-out infinite;
}
.hero-master .hero-decor .hero-decor-icon.icon-5 {
  top: 15%;
  right: 22%;
  width: 20px;
  animation: pulseStar 4s ease-in-out infinite 1s;
}
.hero-master .hero-decor .hero-decor-icon.icon-6 {
  bottom: 15%;
  right: 15%;
  width: 30px;
  animation: pulseStar 3.5s ease-in-out infinite 0.5s;
  opacity: 0.7;
}
.hero-master .container {
  position: relative;
  z-index: 1;
}
.hero-master .hero-master-content {
  max-width: 900px;
}
.hero-master .hero-master-content .badge-tag {
  background-color: #e6f7f4;
  color: #149b85;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-master .hero-master-content .hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-master .hero-master-content .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.hero-master .hero-master-content .hero-title .highlight {
  color: #0c71c3;
}
.hero-master .hero-master-content .hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-master .hero-master-content .hero-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.hero-master .hero-master-content .hero-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 720px;
}
@media (max-width: 768px) {
  .hero-master .hero-master-content .hero-description {
    font-size: 15px;
  }
}
.hero-master .hero-master-content .hero-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 155, 133, 0) 0%, rgba(20, 155, 133, 0.3) 50%, rgba(20, 155, 133, 0) 100%);
  margin: 60px auto 0;
  max-width: 500px;
}

.hero-booking {
  position: relative;
  z-index: 10;
  padding-bottom: 50px;
}
.hero-booking .booking-wrapper {
  border-radius: 16px;
  max-width: 1100px;
  transform: translateY(50%);
  margin-bottom: -40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .hero-booking .booking-wrapper {
    transform: none;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }
}
@media (min-width: 992px) {
  .hero-booking .booking-wrapper .border-right-lg {
    border-right: 1px solid #e5e7eb;
  }
  .hero-booking .booking-wrapper .border-top-lg-0 {
    border-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .hero-booking .booking-wrapper .border-top-md-0 {
    border-top: 0 !important;
  }
}
.hero-booking .booking-wrapper label svg {
  color: #0c71c3;
}
.hero-booking .booking-wrapper .booking-input {
  font-size: 16px;
  color: #111827;
  background-color: transparent;
}
.hero-booking .booking-wrapper .booking-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.hero-booking .booking-wrapper .booking-input:focus {
  outline: none;
  box-shadow: none;
}
.hero-booking .booking-wrapper .booking-col:focus-within {
  z-index: 20;
}
.hero-booking .booking-wrapper .booking-col:focus-within .booking-suggestion {
  display: block !important;
  animation: fadeInBooking 0.3s ease;
}
.hero-booking .booking-wrapper .booking-suggestion {
  left: 0;
  top: 100%;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-booking .booking-wrapper .booking-suggestion .suggestion-item {
  transition: all 0.2s ease;
  border-radius: 8px;
  padding: 6px;
  margin: -6px;
}
.hero-booking .booking-wrapper .booking-suggestion .suggestion-item:hover {
  background-color: #f3f4f6;
}
.hero-booking .booking-wrapper .booking-suggestion .suggestion-item:hover .icon-box {
  background-color: rgba(20, 155, 133, 0.1) !important;
  color: #0c71c3 !important;
}
.hero-booking .booking-wrapper .booking-suggestion .suggestion-tag {
  transition: all 0.2s ease;
}
.hero-booking .booking-wrapper .booking-suggestion .suggestion-tag:hover {
  background-color: rgba(20, 155, 133, 0.1);
  color: #0c71c3 !important;
  border-color: rgba(20, 155, 133, 0.2) !important;
}

@keyframes fadeInBooking {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-about {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .home-about {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.home-about .about-images {
  height: 500px;
}
.home-about .about-images .img-main {
  width: 75%;
  height: auto;
  object-fit: cover;
  border-radius: 20px !important;
}
.home-about .about-images .img-overlay {
  width: 60%;
  height: auto;
  right: 0;
  bottom: -80px;
  border: 10px solid #ffffff;
  border-radius: 20px !important;
  z-index: 2;
}
@media (max-width: 991px) {
  .home-about .about-images {
    height: auto;
    margin-bottom: 40px;
  }
  .home-about .about-images .img-main {
    width: 80%;
  }
  .home-about .about-images .img-overlay {
    display: block;
    width: 55%;
    bottom: -30px;
    border-width: 6px;
  }
}
.home-about .about-content .section-subtitle {
  color: #0c71c3;
  font-size: 16px;
}
.home-about .about-content .section-title {
  color: #111827;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}
.home-about .about-content .section-title span {
  color: #0c71c3;
}
@media (max-width: 768px) {
  .home-about .about-content .section-title {
    font-size: 32px;
  }
}
.home-about .about-content .section-desc {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}
.home-about .about-content .features-list .feature-item {
  font-size: 15px;
  color: #1a202c;
}
.home-about .about-content .features-list .feature-item svg {
  color: #0c71c3 !important;
  flex-shrink: 0;
}
.home-about .about-content .features-list .feature-item .font-weight-500 {
  font-weight: 500;
}
.home-about .about-content .btn-book-appointment {
  background-color: #4a7be5;
  border-color: #4a7be5;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.home-about .about-content .btn-book-appointment:hover {
  background-color: #205bdc;
  border-color: #205bdc;
}

.home-featured-list {
  background-color: #000c46;
  padding: 70px 0;
}
.home-featured-list .featured-item .featured-number {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 768px) {
  .home-featured-list .featured-item .featured-number {
    font-size: 32px;
  }
}
.home-featured-list .featured-item .featured-text {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  letter-spacing: 0.2px;
}

.home-service {
  background-color: #f4f6fa;
  padding-top: 100px;
  padding-bottom: 100px;
}
.home-service .section-header .section-subtitle {
  color: #4a7be5;
  font-size: 16px;
}
.home-service .section-header .section-title {
  color: #111827;
  font-size: 40px;
}
@media (max-width: 768px) {
  .home-service .section-header .section-title {
    font-size: 32px;
  }
}
.home-service .section-header .section-desc {
  color: #8b96a8;
  font-size: 16px;
  max-width: 600px;
  line-height: 1.6;
}
.home-service .service-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}
.home-service .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: #e2e8f0;
}
.home-service .service-card .service-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.home-service .service-card .service-title {
  font-size: 18px;
  color: #111827;
}
.home-service .service-card .service-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}
.home-service .service-card .btn-circle-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  color: #111827;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.home-service .service-card .btn-circle-plus:hover {
  background-color: #4a7be5;
  color: #ffffff;
  border-color: #4a7be5;
}
.home-service .btn-view-all {
  background-color: #4a7be5;
  border-color: #4a7be5;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}
.home-service .btn-view-all:hover {
  background-color: #205bdc;
  border-color: #205bdc;
  color: #fff;
}

.home-toplist {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ffffff;
}
.home-toplist .section-header .section-subtitle {
  color: #0c71c3;
  font-size: 16px;
}
.home-toplist .section-header .section-title {
  color: #111827;
  font-size: 40px;
}
@media (max-width: 768px) {
  .home-toplist .section-header .section-title {
    font-size: 32px;
  }
}
.home-toplist .section-header .section-desc {
  color: #8b96a8;
  font-size: 16px;
  max-width: 620px;
  line-height: 1.6;
}
.home-toplist .filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}
.home-toplist .filter-tag svg {
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.home-toplist .filter-tag:hover {
  border-color: #0c71c3;
  color: #0c71c3;
  background-color: rgba(12, 113, 195, 0.04);
}
.home-toplist .filter-tag:hover svg {
  opacity: 1;
}
.home-toplist .filter-tag.active {
  background-color: #0c71c3;
  border-color: #0c71c3;
  color: #ffffff;
}
.home-toplist .filter-tag.active svg {
  opacity: 1;
  stroke: #ffffff;
}
.home-toplist .toplist-card {
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
}
.home-toplist .toplist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(12, 113, 195, 0.2);
}
@media (max-width: 991px) {
  .home-toplist .toplist-card {
    flex-direction: column;
  }
}
.home-toplist .toplist-rank {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.home-toplist .toplist-rank .rank-number {
  font-size: 13px;
  font-weight: 800;
  color: #0c71c3;
}
.home-toplist .toplist-rank .rank-trend {
  font-size: 10px;
  line-height: 1;
}
.home-toplist .toplist-rank .rank-trend.up {
  color: #22c55e;
}
.home-toplist .toplist-rank .rank-trend.down {
  color: #ef4444;
}
.home-toplist .toplist-rank .rank-trend.stable {
  color: #94a3b8;
  font-size: 8px;
}
.home-toplist .toplist-img {
  width: 200px;
  min-height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-right: 1px solid #f1f5f9;
}
.home-toplist .toplist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (max-width: 991px) {
  .home-toplist .toplist-img {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
}
.home-toplist .toplist-body {
  padding: 1.5rem 2rem;
  flex-grow: 1;
  min-width: 0;
}
@media (max-width: 576px) {
  .home-toplist .toplist-body {
    padding: 1rem;
  }
}
.home-toplist .toplist-side {
  width: 280px;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-left: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .home-toplist .toplist-side {
    width: 100%;
    border-left: none;
    border-top: 1px solid #f1f5f9;
  }
}
.home-toplist .toplist-name {
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
}
.home-toplist .toplist-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.home-toplist .toplist-name a:hover {
  color: #0c71c3;
}
@media (max-width: 576px) {
  .home-toplist .toplist-name {
    font-size: 18px;
  }
}
.home-toplist .toplist-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-toplist .toplist-location {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  margin-bottom: 12px;
}
.home-toplist .toplist-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.home-toplist .service-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #0c71c3;
  background-color: rgba(12, 113, 195, 0.08);
  border: 1px solid rgba(12, 113, 195, 0.1);
  border-radius: 50px;
}
.home-toplist .criteria-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-bottom: 8px;
}
.home-toplist .criteria-item:last-child {
  margin-bottom: 0;
}
.home-toplist .criteria-label {
  font-size: 12px;
  color: #64748b;
  min-width: 90px;
  flex-shrink: 0;
}
.home-toplist .criteria-bar {
  flex-grow: 1;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.home-toplist .criteria-fill {
  height: 100%;
  background: linear-gradient(90deg, #0c71c3, #2a98f2);
}
.home-toplist .criteria-score {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  min-width: 20px;
  text-align: right;
}
.home-toplist .toplist-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  margin-top: 15px;
}
.home-toplist .toplist-rating .stars {
  display: flex;
  gap: 2px;
}
.home-toplist .toplist-rating .rating-score {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.home-toplist .toplist-rating .rating-count {
  font-size: 13px;
  color: #94a3b8;
}
.home-toplist .btn-view {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background-color: #0c71c3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-toplist .btn-view:hover {
  background-color: #0b63ab;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(12, 113, 195, 0.25);
}
.home-toplist .btn-loadmore {
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  background-color: #ffffff;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-toplist .btn-loadmore svg {
  transition: transform 0.3s ease;
}
.home-toplist .btn-loadmore:hover {
  border-color: #0c71c3;
  color: #0c71c3;
  background-color: rgba(12, 113, 195, 0.04);
}
.home-toplist .btn-loadmore:hover svg {
  transform: rotate(-360deg);
}
.home-toplist .btn-loadmore:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 113, 195, 0.15);
}

.home-doctor {
  padding: 80px 0 80px;
  background: #f0f4f8;
  position: relative;
  overflow: hidden;
}
.home-doctor::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12, 113, 195, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.home-doctor .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.home-doctor .section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.home-doctor .section-title p {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.home-doctor .doctor-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.home-doctor .doctor-filter .filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.home-doctor .doctor-filter .filter-btn:hover {
  border-color: #0c71c3;
  color: #0c71c3;
  transform: translateY(-2px);
}
.home-doctor .doctor-filter .filter-btn.active {
  background: #0c71c3;
  color: #ffffff;
  border-color: #0c71c3;
  box-shadow: 0 10px 20px rgba(12, 113, 195, 0.2);
}

.doctor-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 30px;
  position: relative;
}

.doctor-scroll {
  padding: 20px 40px;
}
@media (max-width: 768px) {
  .doctor-scroll {
    padding: 20px 10px;
  }
}
.doctor-scroll .slick-slide {
  outline: none;
}
.doctor-scroll .slick-list {
  margin: 0 -15px;
  padding: 15px 0 40px;
}
.doctor-scroll .slick-prev,
.doctor-scroll .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.doctor-scroll .slick-prev::before,
.doctor-scroll .slick-next::before {
  display: none;
}
.doctor-scroll .slick-prev svg,
.doctor-scroll .slick-next svg {
  color: #475569;
  transition: color 0.3s ease;
}
.doctor-scroll .slick-prev:hover,
.doctor-scroll .slick-next:hover {
  background: #0c71c3;
  border-color: #0c71c3;
  box-shadow: 0 8px 25px rgba(12, 113, 195, 0.3);
  transform: scale(1.1);
}
.doctor-scroll .slick-prev:hover svg,
.doctor-scroll .slick-next:hover svg {
  color: #ffffff;
}
.doctor-scroll .slick-prev {
  left: 5px;
}
.doctor-scroll .slick-next {
  right: 5px;
}
.doctor-scroll .slick-dots {
  bottom: -35px;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex !important;
  justify-content: center;
  gap: 8px;
}
.doctor-scroll .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.doctor-scroll .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.doctor-scroll .slick-dots li button::before {
  display: none;
}
.doctor-scroll .slick-dots li button:hover {
  background: rgba(12, 113, 195, 0.5);
  transform: scale(1.2);
}
.doctor-scroll .slick-dots li.slick-active button {
  background: #0c71c3;
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(12, 113, 195, 0.3);
}
.doctor-scroll .doctor-card {
  margin: 0 15px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px 24px;
  text-align: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  outline: none;
}
.doctor-scroll .doctor-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 113, 195, 0.15);
}
.doctor-scroll .doctor-avatar {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
}
.doctor-scroll .doctor-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f1f5f9;
  transition: border-color 0.3s ease, transform 0.5s ease;
}
.doctor-scroll .doctor-avatar .doctor-badge {
  position: absolute;
  bottom: 0;
  right: 5px;
  background: #0c71c3;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(12, 113, 195, 0.3);
  letter-spacing: 0.5px;
}
.doctor-scroll .doctor-card:hover .doctor-avatar img {
  border-color: rgba(12, 113, 195, 0.3);
  transform: scale(1.05);
}
.doctor-scroll .doctor-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.doctor-scroll .doctor-title {
  font-size: 11px;
  font-weight: 800;
  color: #0c71c3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.doctor-scroll .doctor-name {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.3;
}
.doctor-scroll .doctor-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.doctor-scroll .doctor-name a:hover {
  color: #0c71c3;
}
.doctor-scroll .doctor-specialty {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  font-weight: 500;
}
.doctor-scroll .doctor-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  margin-bottom: 20px;
  margin-top: auto;
}
.doctor-scroll .doctor-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}
.doctor-scroll .doctor-meta .meta-item svg {
  color: #0c71c3;
  opacity: 0.7;
}
.doctor-scroll .btn-booking {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.doctor-scroll .btn-booking:hover {
  background: #0c71c3;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(12, 113, 195, 0.25);
}

.home-news {
  padding: 100px 0;
  background-color: #ffffff;
}
.home-news .section-header .section-subtitle {
  color: #0c71c3;
  font-size: 16px;
}
.home-news .section-header .section-title {
  color: #111827;
  font-size: 40px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .home-news .section-header .section-title {
    font-size: 32px;
  }
}
.home-news .section-header .section-desc {
  color: #8b96a8;
  font-size: 16px;
  line-height: 1.6;
  max-width: 650px;
}
.home-news .news-card-v4 {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
}
.home-news .news-card-v4:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(12, 113, 195, 0.2);
}
.home-news .news-card-v4:hover .news-img img {
  transform: scale(1.08);
}
.home-news .news-card-v4:hover .news-title a {
  color: #0c71c3;
}
.home-news .news-card-v4.featured {
  display: flex;
  flex-direction: column;
}
.home-news .news-card-v4.featured:hover {
  transform: translateY(-8px);
}
.home-news .news-card-v4.featured:hover .news-readmore {
  background-color: #0c71c3;
  color: #ffffff !important;
  transform: translateX(3px);
}
.home-news .news-card-v4.featured .news-img {
  aspect-ratio: 16/10;
}
@media (max-width: 768px) {
  .home-news .news-card-v4.featured .news-img {
    aspect-ratio: 4/3;
  }
}
.home-news .news-card-v4.featured .news-title {
  font-size: 26px;
}
.home-news .news-card-v4.featured .news-title a {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
@media (max-width: 768px) {
  .home-news .news-card-v4.featured .news-title {
    font-size: 22px;
  }
}
.home-news .news-card-v4.featured .news-desc {
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news .news-card-v4.list-item:hover {
  transform: translateX(5px);
  border-left: 3px solid #0c71c3;
}
.home-news .news-card-v4.list-item:hover .news-readmore-text {
  transform: translateX(5px);
}
.home-news .news-card-v4.list-item .news-img {
  height: 100%;
  max-height: 150px;
  border-radius: 20px;
}
.home-news .news-card-v4.list-item .news-title {
  font-size: 16px;
  line-height: 1.4;
}
.home-news .news-card-v4.list-item .news-title a {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.home-news .news-card-v4.list-item .news-readmore-text {
  transition: transform 0.3s ease;
  text-decoration: none;
}
.home-news .news-card-v4 .news-img {
  overflow: hidden;
  position: relative;
}
.home-news .news-card-v4 .news-img img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-news .news-card-v4 .news-img .news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  min-width: 60px;
}
.home-news .news-card-v4 .news-img .news-date .day {
  font-size: 22px;
  line-height: 1;
  color: #0c71c3;
}
.home-news .news-card-v4 .news-img .news-date .month {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .home-news .news-card-v4 .news-img .news-date {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    min-width: 50px;
  }
  .home-news .news-card-v4 .news-img .news-date .day {
    font-size: 18px;
  }
  .home-news .news-card-v4 .news-img .news-date .month {
    font-size: 10px;
  }
}
.home-news .news-card-v4 .news-img .news-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(12, 113, 195, 0.3);
}
.home-news .news-card-v4 .news-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news .news-card-v4 .news-readmore {
  border-radius: 50%;
  background-color: rgba(12, 113, 195, 0.1);
  transition: all 0.3s ease;
  color: #0c71c3;
}
.home-news .news-card-v4 .news-readmore svg {
  transition: transform 0.3s ease;
}

/* ==========================================================================
   Home CTA Section
   ========================================================================== */
.home-cta {
  position: relative;
  z-index: 10;
  margin-top: -30px;
}
@media (max-width: 991px) {
  .home-cta {
    margin-top: 0;
  }
}
.home-cta .cta-inner {
  border-radius: 20px;
  background: linear-gradient(135deg, #1bc5ed 0%, #0d4fa2 100%);
  box-shadow: 0 20px 50px rgba(12, 113, 195, 0.2) !important;
  overflow: hidden;
}
.home-cta .cta-inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../images/bg-footer-2.webp") no-repeat center center;
  z-index: 1;
  width: 300px;
}
.home-cta .cta-inner .cta-blob {
  animation: pulse-blob 8s infinite alternate;
}
.home-cta .cta-inner .yellow-corner-patch {
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #ffd166;
  border-top-left-radius: 100%;
  box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.05);
}
.home-cta .cta-inner .cta-content {
  min-height: 380px;
}
.home-cta .phone-case img {
  position: relative;
  z-index: 2;
  margin-right: 40px;
}
.home-cta .hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.home-cta .hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}
.home-cta .hover-lift:hover.btn-outline-light {
  background-color: #ffffff;
  color: #0c71c3 !important;
}

@keyframes pulse-blob {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(20px, -20px);
  }
  100% {
    transform: scale(0.9) translate(-20px, 20px);
  }
}
/* ==========================================================================
   Home Deal Section
   ========================================================================== */
.home-deal {
  position: relative;
  background: url("../images/bg-footer-1.webp") no-repeat left bottom/450px, url("../images/bg-footer-2.webp") no-repeat right bottom/550px, linear-gradient(135deg, #08477b 0%, #0c71c3 100%);
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-deal {
    padding: 50px 0;
    background-size: 250px, 300px;
  }
  .home-deal .home-deal-row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .home-deal .home-deal-row > [class*=col-] {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px !important;
  }
}
.home-deal .container {
  position: relative;
  z-index: 2;
}
.home-deal .section-subtitle {
  color: #fde047 !important;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
}
.home-deal .section-title {
  color: #ffffff;
}
@media (max-width: 768px) {
  .home-deal .section-title {
    font-size: 24px;
  }
}
.home-deal .btn-outline-light {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: all 0.3s ease;
}
.home-deal .btn-outline-light:hover {
  background-color: #ffffff;
  color: #0c71c3;
  border-color: #ffffff;
}
.home-deal .deal-card {
  border-radius: 20px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
.home-deal .deal-card img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.home-deal .deal-card:hover {
  border-color: #fde047;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-8px);
}
.home-deal .deal-card:hover img {
  transform: scale(1.08) !important;
}

.home-partner .partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .home-partner .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .home-partner .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .home-partner .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.home-partner .partner-grid .partner-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.home-partner .partner-grid .partner-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.home-partner .partner-grid .partner-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: rgba(12, 113, 195, 0.3);
}
.home-partner .partner-grid .partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.error404 {
  padding: 80px 0;
  text-align: center;
}
.error404 .error-code {
  font-size: 15rem;
  font-weight: 900;
  color: #f1f1f1;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .error404 .error-code {
    font-size: 8rem;
  }
}
.error404 .error-code span {
  color: #0c71c3;
}
.error404 .error-content {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .error404 .error-content {
    margin-top: -30px;
  }
}
.error404 .error-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.error404 .error-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error404 .error-content .btn-home {
  background-color: #0c71c3;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(12, 113, 195, 0.3);
}
.error404 .error-content .btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(12, 113, 195, 0.4);
}

.archive-page-title {
  font-weight: 900;
  font-size: 48px;
  margin-bottom: 10px;
  margin-top: 50px;
}

.list-post-grid {
  margin-top: 50px;
}
.list-post-grid .post-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.list-post-grid .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.list-post-grid .post-item:hover .post-thumb img {
  transform: scale(1.05);
}
.list-post-grid .post-item .post-thumb {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.list-post-grid .post-item .post-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.list-post-grid .post-item .post-thumb .post-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0c71c3;
  padding: 5px 12px;
  border-radius: 20px;
}
.list-post-grid .post-item .post-thumb .post-cat a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.list-post-grid .post-item .post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.list-post-grid .post-item .post-content .post-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}
.list-post-grid .post-item .post-content .post-meta .date {
  margin-right: 15px;
  position: relative;
}
.list-post-grid .post-item .post-content .post-meta .date:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #ddd;
  border-radius: 50%;
}
.list-post-grid .post-item .post-content .post-meta a {
  color: #262626;
  font-weight: 600;
}
.list-post-grid .post-item .post-content .post-meta a:hover {
  color: #0c71c3;
}
.list-post-grid .post-item .post-content .post-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.list-post-grid .post-item .post-content .post-title a {
  color: #262626;
  transition: color 0.3s;
}
.list-post-grid .post-item .post-content .post-title a:hover {
  color: #0c71c3;
}
.list-post-grid .post-item .post-content .post-excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}
.list-post-grid .post-item .post-content .read-more {
  color: #0c71c3;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.list-post-grid .post-item .post-content .read-more:hover {
  text-decoration: underline;
}

.btn-load-more {
  background: transparent;
  border: 2px solid #0c71c3;
  color: #0c71c3;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-load-more:hover, .btn-load-more:focus {
  background: #0c71c3;
  color: #fff;
  box-shadow: 0 5px 15px rgba(12, 113, 195, 0.3);
}
.btn-load-more .spinner-border {
  margin-left: 8px;
}

.category-filter {
  margin-bottom: 40px;
}
.category-filter ul {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.category-filter ul li {
  margin: 0 15px;
}
.category-filter ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  position: relative;
  padding-bottom: 18px;
  display: block;
}
.category-filter ul li a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0c71c3;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.category-filter ul li a.active, .category-filter ul li a:hover {
  color: #0c71c3;
}
.category-filter ul li a.active:after, .category-filter ul li a:hover:after {
  transform: scaleX(1);
}

.category-filter {
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}
.category-filter ul {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.category-filter ul li {
  margin: 0 15px;
}
.category-filter ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  position: relative;
  padding-bottom: 18px;
  display: block;
}
.category-filter ul li a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0c71c3;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.category-filter ul li a.active, .category-filter ul li a:hover {
  color: #0c71c3;
}
.category-filter ul li a.active:after, .category-filter ul li a:hover:after {
  transform: scaleX(1);
}

.page-title {
  font-weight: 700;
}

body.single .page-header {
  border-bottom: 1px solid #ECECEC;
}

.single-post-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.single-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #111827;
}
.single-post-meta .author-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.single-post-meta .author-info .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}
.single-post-meta .author-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post-meta .author-name a {
  color: #262626;
}
.single-post-meta .post-time {
  color: #111827;
}
.single-post-meta .rating-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-post-meta .rating-info .stars {
  display: flex;
  gap: 2px;
}
.single-post-meta .rating-info .stars img {
  width: 16px;
  height: 16px;
}
.single-post-meta .rating-info .rating-text {
  color: #111827;
}

.table-of-contents {
  background: #F9FAFB;
  border-radius: 8px;
  margin-bottom: 24px;
}
.table-of-contents .toc-header {
  display: flex;
  align-items: center;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  color: #111827;
  cursor: pointer;
}
.table-of-contents .toc-header .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.table-of-contents .toc-header .icon img {
  width: 20px;
  height: 20px;
}
.table-of-contents .toc-header .toggle-icon {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.table-of-contents .toc-header .toggle-icon img {
  width: 20px;
  height: 20px;
}

.entry {
  line-height: 1.8;
  font-size: 16px;
}
.entry ul,
.entry ol {
  padding-left: 30px;
}
.entry blockquote {
  padding: 15px;
  background: #262626;
}
.entry blockquote ul {
  list-style: square;
}
.entry blockquote ul li {
  margin-bottom: 8px;
}
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {
  font-weight: 700;
}
.entry h1,
.entry .h1 {
  font-size: 26px;
}
.entry h2,
.entry .h2 {
  font-size: 24px;
}
.entry h3,
.entry .h3 {
  font-size: 20px;
}
.entry h4,
.entry .h4 {
  font-size: 16px;
}
.entry h5,
.entry .h5 {
  font-size: 14px;
}
.entry h6,
.entry .h6 {
  font-size: 13px;
}
.entry iframe {
  max-width: 100%;
}

.entry blockquote {
  position: relative;
  padding: 16px;
  margin: 16px 0;
  background: #f1f8fe 100% 100% no-repeat;
  border-radius: 6px;
  padding-top: 42px;
}

.entry blockquote:before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: block;
  width: 18px;
  height: 18px;
}

.entry ul,
.entry ol {
  padding-left: 30px;
}

.entry table td {
  padding: 5px;
}

.entry {
  word-break: break-word;
}

.entry figure {
  max-width: 100% !important;
}
.entry .wp-caption-text {
  font-size: 14px;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
  font-style: italic;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/*# sourceMappingURL=maps/style.css.map */
