﻿
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

.header-carousel-wrap {
    position: relative;
}

.header-carousel .header-carousel-item {
     height: 700px;
 }

.header-carousel .header-carousel-item.bg-primary {
    background: #0147a6;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
      box-shadow: inset 0 0 100px 0 var(--bs-secondary);
      color: var(--bs-white);
  }

  .header-carousel .owl-nav {
        display: none;
    }

  .header-carousel .header-carousel-item .carousel-caption {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        background: #0147a6;
        display: flex;
        align-items: center;
    }

  .header-cta-navigation {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        padding: 0 60px;
        align-items: center;
        z-index: 50;
    }

  .header-cta-btn {
        width: 62px;
        height: 62px;
        border-radius: 999px;
        background: var(--bs-white);
        color: var(--bs-primary);
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 15px 30px rgba(15, 58, 68, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
    }

  .header-cta-btn--left {
        margin-right: auto;
    }

  .header-cta-btn--right {
        margin-left: auto;
    }

.header-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 35px rgba(15, 58, 68, 0.35);
  }

.header-cta-btn i {
      line-height: 1;
  }


@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

  @media (max-width: 767px) {
     .header-carousel .header-carousel-item {
          height: 950px;
      }

     .header-cta-navigation {
          position: relative;
          padding: 0;
          justify-content: center;
          gap: 30px;
      }

     .header-cta-btn {
          width: 54px;
          height: 54px;
          font-size: 24px;
      }
  }
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

  .status-pill {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     padding: 3px 8px;
     border-radius: 999px;
     background: #e6f5ef;
     color: #0f8d55;
     font-size: 0.75rem;
     font-weight: 600;
     border: 1px solid rgba(154, 224, 185, 0.8);
     box-shadow: inset 0 0 0 1px rgba(59, 207, 130, 0.15);
  }
  
  .status-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #3bcf82;
     box-shadow: 0 0 6px rgba(59, 207, 130, 0.45);
  }
  
  .status-pill-counter {
     margin-bottom: 6px;
     font-size: 0.7rem;
     color: #0f8d55;
     display: inline-flex;
     align-items: center;
     gap: 4px;
     justify-content: center;
  }

  .counter-subtext {
     font-size: 0.85rem;
     color: #2a2a2a;
     margin: 0 0 8px;
     line-height: 1.3;
  }

  .status-pill-small {
     font-size: 0.7rem;
     padding: 3px 8px;
     border-radius: 999px;
     letter-spacing: 0.02em;
     border: 1px solid rgba(154, 224, 185, 0.6);
     background: rgba(230, 245, 239, 0.9);
     box-shadow: 0 0 6px rgba(59, 207, 130, 0.15);
 }
 
  .counter-item .status-pill-counter .status-dot {
     width: 6px;
     height: 6px;
     box-shadow: 0 0 6px rgba(59, 207, 130, 0.4);
}

.status-pill-small .status-dot {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 4px rgba(59, 207, 130, 0.35);
}

.service-item-main {
    position: relative;
    z-index: 2;
    border: 1px solid #bcd6f5;
    background: #f2f7ff;
    box-shadow: 0 32px 50px rgba(12, 61, 154, 0.16);
    transform: translateY(-18px) scale(1.02);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.service-item-main:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 36px 60px rgba(12, 61, 154, 0.2);
}
.service-item-main .service-content {
    background: #f2f7ff;
}
@media (max-width: 991px) {
    .service-item-main {
        transform: none;
        box-shadow: 0 18px 32px rgba(12, 61, 154, 0.08);
    }
}

.service-item-sub {
    border: 1px solid rgba(0,0,0,0.05);
    background: rgba(245, 247, 251, 0.9);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

/* Service detail modals: friendlier tone while keeping formal content */
.service-detail-modal .modal-dialog {
    max-width: 880px;
}

.service-detail-modal .modal-content {
    border-radius: 22px;
    border: 1px solid #dbe7f6 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 26px 60px rgba(1, 71, 166, 0.18) !important;
    overflow: hidden;
}

.service-detail-modal .modal-header {
    padding: 22px 22px 8px;
    background: linear-gradient(180deg, #eef5ff 0%, rgba(238, 245, 255, 0) 100%);
}

.service-detail-modal .modal-header h3 {
    color: #1d2b44;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 700;
}

.service-detail-modal .modal-header .text-uppercase.small {
    display: inline-block;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #4e6d95 !important;
    margin-bottom: 6px;
}

.service-detail-modal .modal-body {
    padding: 14px 22px 8px;
}

.service-detail-modal .modal-body .bg-light.rounded.h-100 {
    background: #edf4ff !important;
    border: 1px solid #d5e4f8;
    border-radius: 16px !important;
}

.service-detail-modal .modal-body .bg-white.border.rounded {
    background: #fffdf8 !important;
    border: 1px solid #ece2cf !important;
    border-radius: 16px !important;
}

.service-detail-modal .list-unstyled li {
    position: relative;
    padding-left: 14px;
    line-height: 1.55;
}

.service-detail-modal .list-unstyled li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0f67ca;
    opacity: 0.75;
}

.service-detail-modal .badge.bg-primary.rounded-pill {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    background: #0f67ca !important;
}

.service-detail-modal .badge.rounded-pill.bg-primary {
    background: #0f67ca !important;
}

.service-detail-modal .badge.rounded-pill.bg-secondary {
    background: #22b8de !important;
}

.service-detail-modal .badge.rounded-pill.bg-light.text-dark.border {
    background: #eaf1fa !important;
    border-color: #ccdaea !important;
    color: #24364d !important;
}

.service-detail-modal .btn-close {
    padding: 10px;
    border-radius: 999px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(15, 57, 110, 0.12);
    opacity: 0.9;
}

.service-detail-modal .modal-footer {
    padding: 8px 22px 18px;
}

.service-detail-modal .modal-footer .btn-outline-primary {
    border-width: 2px;
    border-color: #0f67ca;
    color: #0f67ca;
    font-weight: 700;
    background: #ffffff;
    padding: 10px 24px;
}

.service-detail-modal .modal-footer .btn-outline-primary:hover {
    background: #0f67ca;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .service-detail-modal .modal-dialog {
        margin: 0.7rem;
    }

    .service-detail-modal .modal-header {
        padding: 18px 16px 6px;
    }

    .service-detail-modal .modal-body {
        padding: 12px 16px 4px;
    }

    .service-detail-modal .modal-footer {
        padding: 8px 16px 16px;
    }

    .service-detail-modal .modal-footer .btn-outline-primary {
        width: 100%;
    }
}

/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: visible;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service-img-main::before,
.service-img-sub::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: -1;
}

.service-img-main::before {
    background: linear-gradient(135deg, rgba(141, 183, 255, 0.7), rgba(217, 235, 255, 0.9));
}

.service-img-sub::before {
    width: 180px;
    height: 180px;
    background: rgba(240, 240, 240, 0.6);
}

.service-item-main .service-img img {
    position: relative;
    z-index: 1;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service-status {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-disabled {
    background: #cfd6df;
    color: #6b7280;
    cursor: not-allowed;
    border: 0;
    pointer-events: none;
}

.service-item-disabled {
    position: relative;
    opacity: 0.8;
    filter: grayscale(0.3);
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.service-item-disabled .service-icon {
    background: #e7e9ee;
}

.service-item-disabled .service-content {
    background: #eef1f5;
}

.service-item-disabled.is-denied {
    opacity: 0.9;
    filter: grayscale(0.4);
    background: #fde7ef;
    border-color: #f2b6ca;
    box-shadow: inset 0 0 0 1px rgba(242, 182, 202, 0.35);
    animation: denyShake 0.35s ease;
}

@keyframes denyShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.counter-item h4 {
    font-family: "DM Sans","Inter",system-ui,-apple-system,sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0b0c1a;
    margin-top: 8px;
}

.counter-item p {
    font-family: "DM Sans","Inter",system-ui,-apple-system,sans-serif;
    font-size: 0.95rem;
    color: #262a35;
    line-height: 1.3;
    margin: 0;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}
.team .team-item .team-title .team-divider {
    display: block;
    width: 60%;
    max-width: 240px;
    height: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 6px 0 8px;
}
.team .team-item .team-title .team-divider.team-divider--wide {
    width: 70%;
    max-width: 260px;
    margin: 8px 0 10px;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/

/*** Footer Lite Start ***/
.footer-lite {
    background: #f7f7f7;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 36px 0;
}

.footer-lite__container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-lite__brand-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: stretch;
}

.footer-lite__brand {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
}

.footer-lite__mark {
    width: 10px;
    height: 32px;
    border-radius: 6px;
    background: var(--bs-primary);
    display: inline-block;
    margin-top: 2px;
}

.footer-lite__title-group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    max-width: none;
}

.footer-lite__text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    white-space: nowrap;
}

.footer-lite__subtitle {
    display: block;
    font-size: 12px;
    color: #6b6b6b;
    line-height: 1.25;
    max-width: 26ch;
}

.footer-lite__legal {
    font-size: 12px;
    color: #6b6b6b;
    margin-top: auto;
    padding-top: 12px;
    transform: translateY(10px);
}

.footer-lite__menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-lite__mini-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.footer-lite__mini-link:hover {
    color: var(--bs-primary);
}

.footer-lite__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-lite__stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-lite__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.footer-lite__link i {
    font-size: 14px;
    color: #1a1a1a;
}

.footer-lite__link:hover {
    color: var(--bs-primary);
}

.footer-lite__link:hover i {
    color: var(--bs-primary);
}

@media (max-width: 575.98px) {
    .footer-lite__container {
        align-items: flex-start;
    }

    .footer-lite__menu,
    .footer-lite__contacts {
        width: 100%;
    }
}
/*** Footer Lite End ***/

/*** Legal Pages Start ***/
.legal-page .page-header h4.display-4 {
    font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.legal-page .breadcrumb-item,
.legal-page .breadcrumb-item a {
    font-size: 0.78rem;
}

.legal-page__eyebrow {
    font-size: 0.56rem !important;
    letter-spacing: 0.08em;
}

.legal-page__title {
    font-size: clamp(0.98rem, 1.1vw, 1.15rem) !important;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.65rem !important;
}

.legal-page__panel p,
.legal-page__panel li {
    font-size: 0.75rem;
    line-height: 1.4;
}

.legal-page__panel h4 {
    font-size: 0.8rem;
    line-height: 1.2;
}

.legal-page__panel ul {
    padding-left: 1rem;
}

.legal-page__panel .rounded.border,
.legal-page__panel .bg-light.rounded {
    padding: 0.95rem !important;
}

.legal-page__identity-wrap {
    display: flex;
}

.legal-page__identity-card {
    width: min(100%, 360px);
    background: #fcfcfc !important;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: none !important;
}

.legal-page__identity-card h4 {
    font-size: 0.72rem;
    margin-bottom: 0.45rem !important;
}

.legal-page__identity-card p {
    font-size: 0.66rem;
    line-height: 1.28;
    margin-bottom: 0.22rem !important;
}

.legal-page__identity-card p:last-child {
    margin-bottom: 0 !important;
}

@media (min-width: 992px) {
    .legal-page__panel {
        padding: 1.15rem !important;
    }
}
/*** Legal Pages End ***/

/*** Service Document Start ***/
.service-doc-page .page-header h4.display-4 {
    font-size: clamp(1.8rem, 2.5vw, 2.35rem);
}

.service-doc__panel {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    background: #fff;
}

.service-doc__masthead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 1rem;
}

.service-doc__masthead-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
}

.service-doc__masthead-copy {
    text-align: right;
}

.service-doc__masthead-brand {
    font-size: 0.82rem;
    font-style: italic;
    font-weight: 700;
    color: #8a8a8a;
    line-height: 1.2;
}

.service-doc__masthead-date {
    margin-top: 0.15rem;
    font-size: 0.68rem;
    color: #9a9a9a;
    line-height: 1.3;
}

.service-doc__print-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.55rem;
    border: 1px solid rgba(13, 110, 253, 0.28);
    background: #f4f8ff;
    color: var(--bs-primary);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.service-doc__print-btn:hover {
    background: #eaf1ff;
    border-color: rgba(13, 110, 253, 0.4);
    color: #0a58ca;
}

.service-doc__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.18);
    margin: 0.9rem 0 1rem;
}

.service-doc__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

.service-doc__title {
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
    line-height: 1.12;
    margin-bottom: 0.55rem;
    text-transform: uppercase;
    font-weight: 800;
}

.service-doc__intro {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #4e4e4e;
    max-width: none;
}

.service-doc__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    margin: 0.6rem 0 1rem;
}

.service-doc__meta-item {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0.76rem;
    line-height: 1.5;
    color: #666;
}

.service-doc__meta-item strong {
    font-weight: 700;
    color: #555;
}

.service-doc__search-wrap {
    margin: 0;
}

.service-doc__search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.service-doc__search-icon {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #666;
    box-shadow: none;
    font-size: 1rem;
}

.service-doc__search-input {
    width: min(100%, 360px);
    border: 1px solid rgba(0, 0, 0, 0.35);
    background: #fff;
    outline: 0;
    font-size: 0.82rem;
    color: #444;
    padding: 0.28rem 0.42rem;
    border-radius: 2px;
}

.service-doc__search-input::placeholder {
    color: #888;
}

.service-doc__app {
    margin-top: 1rem;
}

.service-doc__toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-doc__toolbar-note {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #666;
    max-width: 62ch;
}

.service-doc__layout {
    display: grid;
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.service-doc__sidebar {
    position: sticky;
    top: 120px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
    border-radius: 12px;
    max-height: 70vh;
    overflow: hidden;
}

.service-doc__sidebar-head {
    padding: 0.9rem 1rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #4d4d4d;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f3f3f3;
}

.service-doc__nav {
    padding: 0.5rem;
    overflow: auto;
    max-height: calc(70vh - 48px);
}

.service-doc__nav-btn {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.service-doc__nav-btn:hover,
.service-doc__nav-btn.is-active {
    background: #eef4ff;
}

.service-doc__nav-btn[hidden] {
    display: none !important;
}

.service-doc__nav-code {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1.2;
}

.service-doc__nav-title {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1b2f4a;
}

.service-doc__nav-subtitle {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.74rem;
    line-height: 1.45;
    color: #6c7785;
}

.service-doc__nav-match {
    display: none;
    margin-top: 0.3rem;
    font-size: 0.73rem;
    line-height: 1.45;
    color: #4f6282;
}

.service-doc__nav-match.is-visible {
    display: block;
}

.service-doc__viewer {
    min-width: 0;
}

.service-doc__article {
    display: none;
    max-width: 92ch;
}

.service-doc__article.is-active {
    display: block;
}

.service-doc__article-code {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 0.35rem;
}

.service-doc__article-title {
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    line-height: 1.15;
    color: #18314f;
    margin-bottom: 0.45rem;
}

.service-doc__article-subtitle {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #687689;
    margin-bottom: 0.6rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-doc__article-match {
    display: none;
    margin-bottom: 1rem;
    padding: 0.55rem 0.7rem;
    border-left: 3px solid var(--bs-primary);
    background: #f5f8ff;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #52647f;
}

.service-doc__article-match.is-visible {
    display: block;
}

.service-doc__results {
    display: grid;
    gap: 16px;
    max-width: 96ch;
}

.service-doc__result {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
}

.service-doc__result:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-doc__result-code {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 0.3rem;
}

.service-doc__result-title {
    font-size: 1.05rem;
    line-height: 1.3;
    color: #18314f;
    margin-bottom: 0.2rem;
}

.service-doc__result-section {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #6a768a;
    margin-bottom: 0.6rem;
}

.service-doc__result-excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4c5768;
}

.service-doc__result-excerpt mark {
    background: #fff1a8;
    color: inherit;
    padding: 0 0.1em;
}

.service-doc__article-body {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #4c5768;
}

.service-doc__article-body .service-doc__content-inner {
    padding: 0;
    max-width: none;
}

.service-doc__article-body p,
.service-doc__article-body li {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #4c5768;
}

.service-doc__article-body p {
    margin-bottom: 0.75rem;
}

.service-doc__article-body p:last-child {
    margin-bottom: 0;
}

.service-doc__article-body ul {
    margin: 0.15rem 0 0.35rem;
    padding-left: 1.2rem;
}

.service-doc__article-body .service-doc__block {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.service-doc__article-body .service-doc__block:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.service-doc__article-body .service-doc__block-title {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    background: #7d7d7d;
    padding: 0.18rem 0.45rem;
    margin-bottom: 0.55rem;
}

.service-doc__article-body mark,
.service-doc__nav-match mark {
    background: #fff1a8;
    color: inherit;
    padding: 0 0.1em;
}

.service-doc__empty {
    display: none;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: #fafafa;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666;
}

.service-doc__empty.is-visible {
    display: block;
}

.service-doc__source {
    display: none !important;
}

.service-doc__print-shell {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 210mm;
    visibility: hidden;
    pointer-events: none;
}

.about-intro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-intro-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #d9dee7;
    border-radius: 999px;
    background: #f8fafc;
    color: #2f3a4c;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
}

.about-intro-chip i {
    color: var(--bs-primary);
    font-size: 0.9rem;
}

.about-essential-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex: 0 0 42px;
}

.about-essential-icon i {
    font-size: 14px;
}

/* Base layout for JS pagination before print preview */
.service-doc__print-doc {
    color: #222;
    font-family: "Inter", sans-serif;
    font-size: 10pt;
    line-height: 1.45;
}

.service-doc__print-page {
    width: 210mm;
    height: 297mm;
    box-sizing: border-box;
    padding: 10mm 12mm 10mm;
}

.service-doc__print-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8mm;
    min-height: 10mm;
    padding-bottom: 2mm;
    border-bottom: 0.3mm solid #d8d8d8;
}

.service-doc__print-header-left {
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #5f5f5f;
}

.service-doc__print-header-right {
    text-align: right;
    white-space: nowrap;
}

.service-doc__print-brand {
    font-size: 9pt;
    font-weight: 700;
    color: #7d7d7d;
}

.service-doc__print-brand-main {
    font-style: normal;
}

.service-doc__print-brand-sub {
    font-style: italic;
}

.service-doc__print-date {
    margin-top: 1mm;
    font-size: 7.4pt;
    color: #8d8d8d;
}

.service-doc__print-page-num {
    margin-top: 0.7mm;
    font-size: 7.6pt;
    color: #7a7a7a;
}

.service-doc__print-page-body {
    height: 261mm;
    margin-top: 3mm;
    overflow: hidden;
}

.service-doc__print-chunk {
    margin: 0 0 2.4mm;
}

.service-doc__print-chunk--intro {
    margin-bottom: 3.2mm;
}

.service-doc__print-chunk--section-title {
    margin: 0 0 1.8mm;
    break-after: avoid;
    page-break-after: avoid;
}

.service-doc__print-eyebrow {
    font-size: 8pt;
    color: #4d4d4d;
    margin-bottom: 2mm;
}

.service-doc__print-title {
    margin: 0;
    font-size: 16pt;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: #404040;
}

.service-doc__print-intro {
    margin: 3mm 0 0;
    font-size: 8.8pt;
    line-height: 1.45;
    color: #333;
}

.service-doc__print-divider {
    height: 0.35mm;
    background: #8b8b8b;
    margin: 5mm 0 4mm;
}

.service-doc__print-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4mm;
    margin-bottom: 0;
    font-size: 8pt;
    color: #555;
}

.service-doc__print-meta strong {
    color: #3a3a3a;
}

.service-doc__print-section-title {
    margin: 0 0 2.5mm;
    padding: 0.75mm 1.4mm;
    background: #d8f0f7;
    color: #0d8bb5;
    font-size: 11pt;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: underline;
    text-transform: none;
}

.service-doc__print-section-code {
    margin-right: 1.4mm;
}

.service-doc__print-body {
    font-size: 8.8pt;
    line-height: 1.42;
    color: #222;
}

.service-doc__print-body p,
.service-doc__print-body li {
    font-size: 8.8pt;
    line-height: 1.42;
    color: #222;
}

.service-doc__print-body p {
    margin: 0 0 1.8mm;
}

.service-doc__print-body ul {
    margin: 0 0 1.8mm;
    padding-left: 4.8mm;
}

.service-doc__print-body .service-doc__block {
    margin-top: 2.6mm;
    break-inside: auto;
    page-break-inside: auto;
}

.service-doc__print-body .service-doc__block-title {
    display: block;
    width: 100%;
    padding: 0.55mm 1.4mm;
    margin: 0 0 1.5mm;
    background: #878787;
    color: #fff;
    font-size: 7.9pt;
    font-weight: 800;
    line-height: 1.25;
    break-after: avoid;
    page-break-after: avoid;
}

.service-doc__print-body strong {
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .service-doc__panel {
        padding: 1.2rem !important;
    }

    .service-doc__masthead {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-doc__masthead-copy {
        text-align: left;
    }

    .service-doc__print-btn {
        align-self: flex-start;
    }

    .service-doc__title {
        font-size: 1.35rem;
    }

    .service-doc__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .service-doc__layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-doc__sidebar {
        position: static;
        max-height: none;
    }

    .service-doc__nav {
        max-height: none;
    }

    .service-doc__article-title {
        font-size: 1.35rem;
    }

    .service-doc__article-body p,
    .service-doc__article-body li,
    .service-doc__result-excerpt,
    .service-doc__empty {
        font-size: 0.84rem;
    }
}

@page {
    size: A4;
    margin: 0;
}

@media print {
    body.service-doc-page {
        background: #fff !important;
    }

    body.service-doc-page #spinner,
    body.service-doc-page .topbar,
    body.service-doc-page .nav-bar,
    body.service-doc-page .bg-breadcrumb,
    body.service-doc-page .footer-lite,
    body.service-doc-page .back-to-top {
        display: none !important;
    }

    body.service-doc-page .container-fluid.bg-light.py-5,
    body.service-doc-page .container.py-5 {
        background: #fff !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
    }

    body.service-doc-page .service-doc__panel {
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: #fff !important;
    }

    body.service-doc-page .service-doc__masthead,
    body.service-doc-page .service-doc__eyebrow,
    body.service-doc-page .service-doc__title,
    body.service-doc-page .service-doc__intro,
    body.service-doc-page .service-doc__divider,
    body.service-doc-page .service-doc__meta,
    body.service-doc-page .service-doc__app {
        display: none !important;
    }

    body.service-doc-page .service-doc__print-shell {
        display: block !important;
        position: static !important;
        left: auto !important;
        width: auto !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .service-doc__print-doc {
        color: #222;
        font-family: "Inter", sans-serif;
        font-size: 10pt;
        line-height: 1.45;
    }

    .service-doc__print-page {
        width: 210mm;
        height: 297mm;
        box-sizing: border-box;
        padding: 10mm 12mm 10mm;
        break-after: page;
        page-break-after: always;
    }

    .service-doc__print-page:last-child {
        break-after: auto;
        page-break-after: auto;
    }

    .service-doc__print-page-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8mm;
        min-height: 10mm;
        padding-bottom: 2mm;
        border-bottom: 0.3mm solid #d8d8d8;
    }

    .service-doc__print-header-left {
        font-size: 8pt;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: #5f5f5f;
    }

    .service-doc__print-header-right {
        text-align: right;
        white-space: nowrap;
    }

    .service-doc__print-brand {
        font-size: 9pt;
        font-weight: 700;
        color: #7d7d7d;
    }

    .service-doc__print-brand-main {
        font-style: normal;
    }

    .service-doc__print-brand-sub {
        font-style: italic;
    }

    .service-doc__print-date {
        margin-top: 1mm;
        font-size: 7.4pt;
        color: #8d8d8d;
    }

    .service-doc__print-page-num {
        margin-top: 0.7mm;
        font-size: 7.6pt;
        color: #7a7a7a;
    }

    .service-doc__print-page-body {
        height: 261mm;
        margin-top: 3mm;
        overflow: hidden;
    }

    .service-doc__print-chunk {
        margin: 0 0 2.4mm;
    }

    .service-doc__print-chunk--intro {
        margin-bottom: 3.2mm;
    }

    .service-doc__print-chunk--section-title {
        margin: 0 0 1.8mm;
        break-after: avoid;
        page-break-after: avoid;
    }

    .service-doc__print-eyebrow {
        font-size: 8pt;
        color: #4d4d4d;
        margin-bottom: 2mm;
    }

    .service-doc__print-title {
        margin: 0;
        font-size: 16pt;
        font-weight: 800;
        line-height: 1.15;
        text-transform: uppercase;
        color: #404040;
    }

    .service-doc__print-intro {
        margin: 3mm 0 0;
        font-size: 8.8pt;
        line-height: 1.45;
        color: #333;
    }

    .service-doc__print-divider {
        height: 0.35mm;
        background: #8b8b8b;
        margin: 5mm 0 4mm;
    }

    .service-doc__print-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0 4mm;
        margin-bottom: 0;
        font-size: 8pt;
        color: #555;
    }

    .service-doc__print-meta strong {
        color: #3a3a3a;
    }

    .service-doc__print-section-title {
        margin: 0 0 2.5mm;
        padding: 0.75mm 1.4mm;
        background: #d8f0f7;
        color: #0d8bb5;
        font-size: 11pt;
        font-weight: 800;
        line-height: 1.25;
        text-decoration: underline;
        text-transform: none;
    }

    .service-doc__print-section-code {
        margin-right: 1.4mm;
    }

    .service-doc__print-body {
        font-size: 8.8pt;
        line-height: 1.42;
        color: #222;
    }

    .service-doc__print-body p,
    .service-doc__print-body li {
        font-size: 8.8pt;
        line-height: 1.42;
        color: #222;
    }

    .service-doc__print-body p {
        margin: 0 0 1.8mm;
    }

    .service-doc__print-body ul {
        margin: 0 0 1.8mm;
        padding-left: 4.8mm;
    }

    .service-doc__print-body .service-doc__block {
        margin-top: 2.6mm;
        break-inside: auto;
        page-break-inside: auto;
    }

    .service-doc__print-body .service-doc__block-title {
        display: block;
        width: 100%;
        padding: 0.55mm 1.4mm;
        margin: 0 0 1.5mm;
        background: #878787;
        color: #fff;
        font-size: 7.9pt;
        font-weight: 800;
        line-height: 1.25;
        break-after: avoid;
        page-break-after: avoid;
    }

    .service-doc__print-body strong {
        font-weight: 700;
    }
}
/*** Service Document End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/


