/**
* Template Name: MediTrust
* Template URL: https://bootstrapmade.com/meditrust-bootstrap-hospital-website-template/
* Updated: Jul 04 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2c3031; /* Default color used for the majority of the text content across the entire website */
  --leftcollight-color: #EEFAE3; /* */
  --leftcoldark-color: #228222; /* */
  --gold-color: #cc813;
  --heading-color: #18444c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #049ebb; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #496268;  /* The default color of the main navmenu links */
  --nav-hover-color: #049ebb; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #496268; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #049ebb; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--bs-primary);/*var(--accent-color);*/
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding-top: 10px;
  transition: all 0.5s;
  /*transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
  z-index: 997;
}
.header .info-badges .badge-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
}
.header .info-badges .badge-content span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}
.header .info-badges .badge-content a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.header .info-badges .badge-content:hover a {
  color: var(--accent-color);
}
.header .info-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .info-badges .badge-item .badge-content {
  display: flex;
  flex-direction: column;
}
.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  margin-top: 20px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.header.scrolled {
  padding-top: 4px;
  --background-color: rgba(255, 255, 255, 0.999);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: padding-top 0.5s ease;
}
.header.scrolled .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  margin-top: 0;
  padding: 10px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
}
.header.scrolled .info-badges .badge-item i {
  font-size: 1.5em;
  color: var(--accent-color);
  transition: all 0.5s ease;
}
.header.scrolled .info-badges .badge-content span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.8rem;
  transition: all 0.5s ease;
}
.header.scrolled .info-badges .badge-content a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.header.scrolled .info-badges .badge-content:hover a {
  color: var(--accent-color);
}
.header.scrolled .info-badges .badge-content strong {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  transition: all 0.5s ease;
}
.header.scrolled .info-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.5s ease;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo svg {
  height: 32px;
  padding-right: 5px;
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .header .logo svg {
    height: 28px;
  }
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 20px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 15px;
  margin: 0 0 0 10px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1540px) {
  .header .header-container {
    justify-content: end !important;
  }
  .header .info-badges .badge-item {
    max-width: 22%;
  }
  .header .info-badges .badge-item i {
    font-size: 1.5rem;  
  }
  .header .info-badges .badge-item span {
    font-size: 0.8rem;  
  }
  .header .info-badges .badge-item strong {
    font-size: 0.9rem;  
  }
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 1px 8px 1px 8px;
    padding: 6px 15px;
    text-align: center;
  }

  .header .navmenu {
    order: 3;
  }
}
menu-sva-btn
@media (max-width: 992px) {
  .header .header-container {
    justify-content: flex-end !important;
  }
  .header .info-badges .badge-content span {
    display: none;
  }
  .header .info-badges .badge-content strong {
    font-size: 0.8rem;
  }
}

@media (max-width: 500px) {
  .menu-sva-btn {
    flex-direction: column;
  }
  .btn-donate {
    margin-bottom: 0.3rem !important;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1400px) {
  .navmenu {
    padding-right: 3rem !important;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 16px !important;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 150px 0 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer .social-links img {
  filter: grayscale(90%);
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer .social-links img:hover {
  filter: none;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 120px 0 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--surface-color);
  padding: 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero .ckbsva-logo {
  position: fixed;
  top: 10px;
  left: 50px;
  transition: transform 0.8s ease;
}
.hero .logo-bg {
    /*display: none;*/
    width: 117px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    /* background: blue; */
    position: fixed;
    top: 146px;
    left: 71px;
    z-index: 996;
    border-end-start-radius: 15px;
    border-end-end-radius: 15px;
    backdrop-filter: blur(4px);
}
.hero .hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  padding: 150px 0 60px 0;
}

.hero .hero-wrapper .logo {
  z-index: 998;
}

.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  --background-color: #ffffff70;
}

.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
  z-index: 2;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  width: 100%;
}

.hero .hero-content .content-box {
  padding: 1rem 1rem 4rem 4rem;
}

.hero .hero-content .content-box .badge-accent {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box h1 {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .hero-content .content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .hero-content .content-box .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero .hero-content .content-box .cta-group .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-content .content-box .cta-group .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .hero-content .content-box .cta-group .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .info-badges {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .content-box .info-badges-hero .badge-item-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .hero-content .content-box .info-badges-hero .badge-item-hero i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-content .content-box .info-badges-hero .badge-item-hero .badge-content-hero {
  display: flex;
  flex-direction: column;
}

.hero .info-badges-hero .badge-content-hero a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.hero .info-badges-hero .badge-content-hero:hover a {
  color: var(--accent-color);
}
.hero .hero-content .content-box .info-badges-hero .badge-item-hero .badge-content-hero span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}

.hero .hero-content .content-box .info-badges-hero .badge-item-hero .badge-content-hero strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero .features-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  padding: 2rem;
  margin-top: 15px;
}

.hero .features-wrapper .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.hero .features-wrapper .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  flex-shrink: 0;
}

.hero .features-wrapper .feature-item .feature-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.hero .features-wrapper .feature-item .feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero .features-wrapper .feature-item .feature-text p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 1599px) {
  .hero .hero-wrapper .ckbsva-logo {
	position: fixed;
	left: 0px;
  }
  .hero .hero-wrapper .logo-bg {
    left: 21px;
  }
}

@media (max-width: 1200px) {
  .hero .hero-content .content-box h1 {
    font-size: 3rem;
  }
  .logo-scrolled {
    /*min-width: 114px;
    max-height: 140px;
    transition: all 0.5s ease;*/
    transform: scale(0.7);
    transform-origin: 50% 0%;
  }
  .logo-bg-scrolled {
    top: 105px !important;
    left: 39px !important;
    height: 45px !important;
    width: 83px !important;
  }
  .hero .floating-features .features-wrapper {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    height: auto;
    min-height: 600px;
  }
/*  .hero .hero-content .content-box {
    padding: 10rem 0 0 0;
  }*/
  .hero .info-badges-hero {
    flex-wrap: wrap;
  }
  .hero .info-badges-hero .badge-item-hero {
    flex: 1 1 calc(50% - 0.25rem);
  }
  .hero .hero-content .content-box h1 {
    font-size: 2.0rem;
  }

  .hero .hero-content .content-box p {
    font-size: 0.9rem;
  }

  .hero .hero-content .content-box .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero .hero-content .content-box .cta-group .btn {
    width: 40%;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .hero .floating-features {
    position: relative;
    transform: translateY(0);
    padding: 3rem 0;
  }

  .hero .floating-features .features-wrapper {
    flex-direction: column;
  }

  .hero .floating-features .features-wrapper .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .hero .floating-features .features-wrapper .feature-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrapper {
    min-height: 500px;
  }

/*  .hero .hero-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
*/
  .hero .hero-content .content-box h1 {
    font-size: 2.0rem;
  }

  .hero .hero-content .content-box p {
    font-size: 0.9rem;
  }

  .hero .hero-content .content-box .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero .hero-content .content-box .cta-group .btn {
    width: 40%;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .hero .hero-content .content-box .info-badges-hero {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .content-box {
    padding: 1rem 0;
  }

  .hero .hero-content .content-box h1 {
    font-size: 1.8rem;
  }
  .logo-scrolled {
    transform-origin: 0% 0%;
  }
}

@media (max-width: 500px) {
  .logo-bg-scrolled {
    left: 15px !important;
  }
}
/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .about-image {
  position: relative;
}

.home-about .about-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .about-image .experience-badge {
  position: absolute;
  bottom: 0;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(30%);
}

.home-about .about-image .experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.home-about .about-image .experience-badge .text {
  font-size: 14px;
  display: block;
}

@media (max-width: 576px) {
  .home-about .about-image .experience-badge {
    right: 15px;
    padding: 15px;
  }

  .home-about .about-image .experience-badge .years {
    font-size: 28px;
  }

  .home-about .about-image .experience-badge .text {
    font-size: 12px;
  }
}

.home-about .about-content h2 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  .home-about .about-content h2 {
    font-size: 28px;
  }
}

.home-about .about-content .lead {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

.home-about .about-content p {
  margin-bottom: 16px;
}

.home-about .feature-item {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-about .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-about .feature-item .icon {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.home-about .feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.home-about .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.home-about .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.home-about .cta-wrapper .btn {
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
}

.home-about .cta-wrapper .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.home-about .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.home-about .cta-wrapper .btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.home-about .cta-wrapper .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.home-about .certifications-row {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.home-about .certifications-row .certification-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.home-about .certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.home-about .certifications .certification-item {
  flex: 0 0 210px;/* 150px */
  text-align: center;
  transition: transform 0.3s;
}

.home-about .certifications .certification-item img {
  max-width: 100%;
  height: auto;
  /*filter: grayscale(90%);*//* 100% */
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}

.home-about .certifications .certification-item:hover {
  transform: translateY(-5px);
}

.home-about .certifications .certification-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 576px) {
  .home-about .certifications .certification-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 768px) {
  .home-about .certifications {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .home-about .about-content {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Common Section
--------------------------------------------------------------*/
.common h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 768px) {
  .common h1 {
    font-size: 2rem;
  }
/*
  .common p {
    font-size: 1rem;
  }*/
}

@media (max-width: 576px) {
  .common h1 {
    font-size: 1.75rem;
  }
}

  /* На больших экранах — карточки вертикально */
.category-col .cards-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.category-col .colnews {
  margin-bottom: 0.5rem;
}

/* На md (≥768px) — ничего не меняем */

/* На sm и меньше (<768px) — карточки горизонтально внутри колонки */
@media (max-width: 767.98px) {
  .category-col .cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .category-col .colnews {
    margin-bottom: 0; /* убираем mb-2 */
    flex: 1 1 calc(50% - 0.25rem); /* 2 карточки в строку */
    min-width: 120px; /* но не слишком узкие */
    max-width: 480px;
   /* height: 60px;*/
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.common .service-card {
  flex: auto;
  background: var(--leftcollight-color);
  border-radius: 10px;
  padding: 20px 10px;
  /*height: 100%;*/
  min-width: 240px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--leftcoldark-color), transparent 90%);
  position: relative;
  /*overflow: hidden;*/
}

.common .service-card:hover {
  /*transform: translateY(-5px);*/
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--leftcoldarkt-color), transparent 70%);
}

.common .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--leftcoldark-color), color-mix(in srgb, var(--leftcoldark-color), var(--leftcoldark-color) 30%));
}

.common .service-title {
  justify-content: center;
  align-items: center;
}

.common .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--leftcoldark-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.common .service-icon i {
  font-size: 36px;
  color: var(--leftcoldark-color);
  transition: all 0.3s ease;
}

.service-card:hover .common .service-icon {
  background: var(--leftcoldark-color);
  transform: scale(1.1);
}

.service-card:hover .common .service-icon i {
  color: var(--contrast-color);
}

.common .service-label h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.service-card:hover .common .service-label h3 {
  color: var(--accent-color);
}

.common .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.common .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 5px 0;
}

.common .service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--default-color);
}

.common .service-features li:last-child {
  margin-bottom: 0;
}

.common .service-features li i {
  color: var(--leftcoldark-color);
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.common .service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.common .service-btn i {
  margin-left: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.common .service-btn:hover {
  color: var(--heading-color);
  text-decoration: none;
}

.common .service-btn:hover i {
  transform: translateX(5px);
}

.common .news-label {
  background: var(--accent-color);
}

.common .pubs-label {
  background: var(--gold-color);
}

.common .info-label {
  background: var(--danger-color);
}

.common .service-depart-label {
  background: var(--leftcoldark-color);
}

.common .page-content a {
  color: var(--bs-primary);
}

@media (max-width: 1200px) {
  .common .service-features li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .common .service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .common .service-icon {
    width: 70px;
    height: 70px;
  }

  .common .service-icon i {
    font-size: 30px;
  }

  .common .service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .common .service-content p {
    font-size: 14px;
  }

  .common .service-features li {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

.common .colnews {
  display: flex;
  position: relative;
  gap: 15px;
  padding: 10px 10px 10px 15px;
  margin: 10px 0;
  min-width: 240px;
  background: var(--surface-color);
  border-radius: 15px;
  /*border-left: 4px solid var(--accent-color);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.common .colnews:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.common .colnews::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 4px;
  height: 0px;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.common .colnews:hover::before {
  height: 100%;
}

.common .colnews .news-img {
  flex: 0 0 80px;
}

.common .colnews .news-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.common .colnews .news-content {
  flex: 1;
}

.common .colnews .news-title {
  font-size: 1rem;
  line-height: 1.4;
  /*margin-bottom: 8px;*/
}

.common a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.common a:hover {
  color: var(--accent-color);
}

.common .colnews .news-meta {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding-bottom: 5px;
}

.common .about-image {
  display: flex;
  justify-content: center;
}

/*--------------------------------------------------------------
# Offcanvas
--------------------------------------------------------------*/
.offcanvas {
  background: var(--leftcollight-color);
}
 .offcanvas-header {
  background: var(--leftcoldark-color);
  color: white;
}

.offcanvas-header h3 {
  color: var(--leftcollight-color);
}

.btn-close {
  --bs-btn-close-color: var(--leftcollight-color);
  color: var(--bs-btn-close-color);
}

.offcanvas-body .service-icon i {
  font-size: 36px;
  color: var(--leftcoldark-color);
  transition: all 0.3s ease;
}

.offcanvas-body .service-features li i {
  color: var(--leftcoldark-color);
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}
.offcanvas-body .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 5px 0;
}

.offcanvas-body .service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--default-color);
}

.offcanvas-body .service-features li:last-child {
  margin-bottom: 0;
}

.offcanvas-body .service-label h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.service-card:hover .offcanvas-body .service-label h3 {
  color: var(--accent-color);
}

.offcanvas-body .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.offcanvas-body a {
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.offcanvas-body a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Cookie Section
--------------------------------------------------------------*/
.hospplan {
  width:100%;
  transition: 1s;
  position: relative;
}
.hospplan:hover {
  transform: scale(1.7);
  z-index: 9999;
}

#prav-cookie-note {
  display: none;
  position: fixed;
  bottom: 15px;
  left: 50%;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 20px;
  background-color:#fcebeb;
  border-radius: 15px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
#prav-cookie-note p {
  margin: 0 10px;
  font-size:0.9rem;
  text-align:left;
  color:black;
  line-height:1.2rem;
}
.prav-cookie-accept {
  width:20%;
  background: var(--bs-danger);
  border:none;
  border-radius:50px;
  color:white;
  padding:2px 10px;
  min-width: 50px;
}
@media (min-width: 576px) { #prav-cookie-note.show{ display: flex; } }
@media (max-width: 575px) { #prav-cookie-note.show{ display: block; text-align: left; } }


/*--------------------------------------------------------------
# OLD STYLES
--------------------------------------------------------------*/
ul.u-list, ul.u-years, ul.u-months {
  list-style-type: none;
}
.u-list li {
    padding: 0 0 14px 0;
    background: none;
}
.u-list li span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.u-list li h4 {
  font-size: 1rem;
}
.b-pagination {
    text-align: center;
    padding-top: 50px;
    clear: both;
}
.b-pagination span {
    display: inline-block;
    padding: 3px 7px;
    margin: 0 2px;
    color: #FFF;
    background: var(--accent-color);
}
.b-archive {
    /* width: 208px; */
    padding-right: 5px;
}

.b-subright {
    float: right;
}
.b-subright .h-right {
    padding: 16px 0 7px;
    font-size: 1em;
    color: #9EA6A7;
    text-transform: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: normal;
}
.b-subleft {
    padding-right: 25px;
    overflow: hidden;
}
.b-content li.active {
    background: var(--accent-color);
}
.b-content li.active a {
    background: var(--accent-color);
    color: var(--surface-color);
    font-weight: bold;
}
.ditto_page {
    padding: 1rem;
}
/* ---------------------  DONATION --------------- */
.cppayment {
    min-width: 310px;
    max-width: 620px;
    margin: auto;
    text-align: center;
    align-items: center;
}
.cpheader {
    font-weight: 700;
    padding: 0px 0px 4px 0px;
}
.cpheight {
    height: 10px;
}
.cpwidth {
    width: 5px;
}
.cppayment .radio-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 50px;
}
.cppayment .radio-container * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.cppayment .radio-container .radio-btn {overflow: hidden;}
.cppayment .radio-container .radio-btn1 {overflow: hidden;}
.cppayment .radio-container .radio-btn input {display: none;}
.cppayment .radio-container .radio-btn1 input {display: none;}
.cppayment .radio-container .radio-btn.nth {
    width: calc(50% - 1px);
}
.cppayment .radio-container .radio-btn1.nth {
    width: 145px;
}
.cppayment .amount_str {
    width: 155px;
    height: 30px;
    text-align: center;
}
.cppayment .cpemail {
    width: 250px;
    height: 30px;
    text-align: center;
}
#cpbutton:disabled {
    display: inline-block;
    cursor: pointer;
    width: 50%;
    height: 35px;
    color: #fff;
    background-color: #c3c8cbf5;
    border-radius: 50px;
    font-size: 1.0em;
}
#cpbutton:enabled {
    display: inline-block;
    cursor: pointer;
    width: 50%;
    height: 35px;
    color: #fff;
    background-color: #1684C1;
    border-radius: 50px;
    font-size: 1.0em;
}
.cppayment .radio-container .radio-btn input:checked + label {
    background-color: #1684C1;
    color: #fff;
}
.cppayment .radio-container .radio-btn:first-child label {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-left: 1px solid #c0c0c0;
}
.radio-container .radio-btn label {
    cursor: pointer;
    background-color: transparent;
    display: block;
    padding: 10px 10px;
    text-align: center;
    color: #7e7e7e;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
}
.cppayment .radio-container .radio-btn:last-child label {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.cppayment .radio-container .radio-btn1 label {
    cursor: pointer;
    background-color: transparent;
    display: block;
    padding: 10px 10px;
    margin: 0.3rem;
    text-align: center;
    color: #7e7e7e;
    border: 1px solid #c0c0c0;
    border-radius: 50px;
}
.cppayment .radio-container .radio-btn1 input:checked + label {
    background-color: #1684C1;
    color: #fff;
}
/*--------------------------------------------------------------
# ADMINISTRATION
--------------------------------------------------------------*/
.adm-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}
.adm-card .adm-image {
  position: relative;
  overflow: hidden;
}
.adm-card .adm-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}
.adm-card .adm-image-sovet img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}
.adm-card .adm-image:hover img {
  transform: scale(1.1);
}
.adm-card .adm-content {
  padding: 30px 25px;
  text-align: center;
}
.adm-card .adm-content .adm-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .adm-card .adm-content {
    padding: 25px 20px;
  }

  .adm-card .adm-content .adm-name {
    font-size: 20px;
  }

  .adm-card .adm-content .adm-specialty {
    font-size: 15px;
  }

  .adm-card .adm-content .adm-bio {
    font-size: 15px;
  }
}