body.page {
    --asmc-font: "DM Sans", sans-serif;
    --asmc-gray: #3a3939;
    --asmc-white: #ffffff;
    --asmc-base: var(--site-navbar-color, #002a05);
    --asmc-black: #151515;
    --asmc-primary: #f3f3f3;
    --asmc-bdr-color: #dddddd;
    --asmc-letter-spacing: -0.04em;
    --asmc-letter-spacing-two: -0.02em;
    background: #f3f3f3;
}

body.page .repository-shell-header,
body.page .repository-shell-sticky,
body.page .repository-shell-footer,
body.page .mobile-nav__wrapper {
    font-family: var(--asmc-font);
}

body.page .repository-shell-header,
body.page .repository-shell-sticky,
body.page #content {
    position: relative;
    z-index: 2;
}

body.page #content {
    padding-bottom: 0 !important;
}

body.page .content-container {
    width: min(100%, 1320px);
    padding-top: clamp(22px, 4vw, 42px);
}

body.page.public-shell-page .content-container {
    width: min(100%, 1160px);
}

body.page.login-page .content-container {
    padding-top: clamp(18px, 3vw, 28px);
}

body.page .student-history-selected-name {
    display: block;
    margin-top: 6px;
    color: #0b4d26;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 767px) {
    body.page .student-history-selected-name {
        font-size: 18px;
    }
}

body.page .repository-shell-header .container,
body.page .repository-shell-sticky .container,
body.page .repository-shell-footer .container {
    width: min(100%, 1200px);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 15px;
}

body.page .repository-shell-header a,
body.page .repository-shell-sticky a,
body.page .repository-shell-footer a {
    text-decoration: none;
}

body.page .repository-shell-header ul,
body.page .repository-shell-sticky ul,
body.page .repository-shell-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page .repository-shell-header .main-header-three__top {
    position: relative;
    display: block;
    background-color: var(--asmc-base);
}

body.page .repository-shell-header .main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

body.page .repository-shell-header .main-header-three__logo a {
    position: relative;
    display: block;
    padding: 27px 0;
}

body.page .repository-shell-header .main-header-three__logo img {
    display: block;
    width: auto;
    height: 82px;
}

body.page .repository-shell-header .main-header-three__content-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #000000;
    padding-left: 50px;
    padding-top: 24px;
    padding-bottom: 24px;
    z-index: 1;
}

body.page .repository-shell-header .main-header-three__content-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    right: -100000px;
    background-color: #000000;
    z-index: -1;
}

body.page .repository-shell-header .main-header-three__contact-list {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

body.page .repository-shell-header .main-header-three__contact-list li {
    display: flex;
    align-items: center;
}

body.page .repository-shell-header .main-header-three__contact-list li + li {
    margin-left: 30px;
}

body.page .repository-shell-header .main-header-three__contact-list .icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

body.page .repository-shell-header .main-header-three__contact-list .icon i {
    font-size: 12px;
}

body.page .repository-shell-header .main-header-three__contact-list .text {
    margin-left: 10px;
}

body.page .repository-shell-header .main-header-three__contact-list .text p,
body.page .repository-shell-header .main-header-three__contact-list .text a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: var(--asmc-letter-spacing-two);
}

body.page .repository-shell-header .main-header-three__search-lan-switcher-btn {
    display: flex;
    align-items: center;
    margin-left: 95px;
}

body.page .repository-shell-header .main-header-three__search-box {
    display: block;
    margin-right: 30px;
    padding: 14.5px 0;
    position: relative;
}

body.page .repository-shell-header .main-header-three__search-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

body.page .repository-shell-header .main-header-three__btn-box {
    display: block;
    margin-left: 30px;
}

body.page .repository-shell-header .thm-btn {
    --thm-btn-fg: var(--asmc-white);
    --thm-btn-base-bg: var(--asmc-base);
    --thm-btn-hover-bg: var(--asmc-white);
    border: none;
    position: relative;
    isolation: isolate;
    display: inline-block;
    vertical-align: middle;
    appearance: none;
    outline: none !important;
    background-color: var(--thm-btn-base-bg);
    background-image: radial-gradient(circle, var(--thm-btn-hover-bg) 0 47%, rgba(255, 255, 255, 0) 49%);
    background-repeat: no-repeat;
    background-size: 220% 220%;
    background-position: 50% 148%;
    color: var(--thm-btn-fg);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 50px;
    overflow: hidden;
    text-shadow: none;
    -webkit-text-stroke: 0 transparent;
    transition:
        color .18s ease,
        background-color .18s ease,
        background-position .8s ease,
        border-color .18s ease,
        box-shadow .5s linear,
        transform .5s linear;
    z-index: 1;
}

body.page .repository-shell-header .thm-btn::before {
    content: none;
}

body.page .repository-shell-header .thm-btn:hover::before,
body.page .repository-shell-header .thm-btn:focus-visible::before,
body.page .repository-shell-header .thm-btn:active::before {
    content: none;
}

body.page .repository-shell-header .thm-btn:hover,
body.page .repository-shell-header .thm-btn:focus-visible,
body.page .repository-shell-header .thm-btn:active {
    --thm-btn-fg: var(--asmc-base);
    background-position: 50% -42%;
}

body.page .repository-shell-header .thm-btn > *,
body.page .repository-shell-header .thm-btn .btn__label {
    position: relative;
    z-index: 2;
    color: inherit;
}

body.page .repository-shell-nav {
    position: relative;
    display: block;
}

body.page .repository-shell-header .main-menu-three__wrapper {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

body.page .repository-shell-header .main-menu-three__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

body.page .repository-shell-header .main-menu-three__main-menu-box {
    display: flex;
    align-items: center;
    min-width: 0;
}

body.page .repository-shell-primary-nav,
body.page .repository-shell-sticky-nav {
    min-width: 0;
}

body.page .repository-shell-primary-nav .main-menu__list,
body.page .repository-shell-sticky-nav .main-menu__list {
    display: none;
    align-items: center;
}

@media (min-width: 1200px) {
    body.page .repository-shell-primary-nav .main-menu__list,
    body.page .repository-shell-sticky-nav .main-menu__list {
        display: flex;
    }
}

body.page .repository-shell-primary-nav .main-menu__list > li,
body.page .repository-shell-sticky-nav .main-menu__list > li {
    position: relative;
    padding-top: 19px;
    padding-bottom: 19px;
}

body.page .repository-shell-primary-nav .main-menu__list > li + li,
body.page .repository-shell-sticky-nav .main-menu__list > li + li {
    margin-left: 42px;
}

body.page .repository-shell-primary-nav .main-menu__list > li > a,
body.page .repository-shell-sticky-nav .main-menu__list > li > a {
    display: flex;
    align-items: center;
    color: var(--asmc-gray);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: var(--asmc-letter-spacing-two);
    transition: all 0.5s ease;
    white-space: nowrap;
}

body.page .repository-shell-primary-nav .main-menu__list > li.current > a,
body.page .repository-shell-primary-nav .main-menu__list > li:hover > a,
body.page .repository-shell-sticky-nav .main-menu__list > li.current > a,
body.page .repository-shell-sticky-nav .main-menu__list > li:hover > a {
    color: var(--asmc-black);
    text-shadow: 1px 0 0 rgba(21, 21, 21, 0.8);
}

body.page .repository-shell-primary-nav .sub-menu,
body.page .repository-shell-sticky-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.7s ease;
    z-index: 99;
    background-color: #ffffff;
    padding: 13px 20px 16px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}

body.page .repository-shell-primary-nav li:hover > .sub-menu,
body.page .repository-shell-sticky-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0);
}

body.page .repository-shell-primary-nav .sub-menu li,
body.page .repository-shell-sticky-nav .sub-menu li {
    width: 100%;
}

body.page .repository-shell-primary-nav .sub-menu li + li,
body.page .repository-shell-sticky-nav .sub-menu li + li {
    margin-top: 4px;
}

body.page .repository-shell-primary-nav .sub-menu a,
body.page .repository-shell-sticky-nav .sub-menu a {
    position: relative;
    width: 100%;
    display: flex;
    padding: 8px 20px 4px;
    background-color: #ffffff;
    color: var(--asmc-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: var(--asmc-letter-spacing-two);
    transition: 0.5s;
}

body.page .repository-shell-primary-nav .sub-menu a:hover,
body.page .repository-shell-sticky-nav .sub-menu a:hover {
    background-color: var(--asmc-base);
    color: var(--asmc-white);
    text-shadow: 1px 0 0 rgba(255, 255, 255, 0.8);
}

body.page .repository-shell-nav .mobile-nav__toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--asmc-base);
    cursor: pointer;
    transition: 0.5s;
    padding: 18px 0;
    margin-right: 18px;
}

body.page .repository-shell-nav .mobile-nav__toggler:hover {
    color: var(--asmc-black);
}

@media (min-width: 1200px) {
    body.page .repository-shell-nav .mobile-nav__toggler {
        display: none;
    }
}

body.page .main-menu-three__social {
    display: flex;
    align-items: center;
}

body.page .main-menu-three__social a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--asmc-gray);
    transition: all 0.5s ease;
}

body.page .main-menu-three__social a + a {
    margin-left: 25px;
}

body.page .main-menu-three__social a:hover {
    color: var(--asmc-base);
}

.repository-shell-nav-meta,
.repository-shell-sticky-inner,
.repository-shell-sticky-meta,
.repository-shell-utilities {
    display: flex;
    align-items: center;
}

.repository-shell-nav-meta {
    gap: 18px;
}

.repository-shell-utilities {
    gap: 12px;
}

body.page .repository-shell-utility-link,
body.page .repository-shell-login-link,
body.page .repository-shell-utility-btn,
body.page .repository-shell-user-btn {
    border: 1px solid var(--site-navbar-color-border, rgba(0, 42, 5, 0.12));
    background: #ffffff;
    color: var(--asmc-base);
    box-shadow: 0 14px 30px var(--site-navbar-color-soft, rgba(0, 42, 5, 0.12));
}

body.page .repository-shell-utility-link,
body.page .repository-shell-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

body.page .repository-shell-utility-link:hover,
body.page .repository-shell-login-link:hover {
    background: var(--asmc-base);
    color: #ffffff;
}

body.page .repository-shell-utility-btn {
    min-width: 46px;
}

body.page .repository-shell-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 6px 8px 6px 14px;
    border-radius: 999px;
}

body.page .repository-shell-utility-btn:hover,
body.page .repository-shell-dropdown.is-open .repository-shell-utility-btn,
body.page .repository-shell-dropdown:focus-within .repository-shell-utility-btn,
body.page .repository-shell-user-btn:hover,
body.page .repository-shell-user-dropdown.is-open .repository-shell-user-btn,
body.page .repository-shell-user-dropdown:focus-within .repository-shell-user-btn {
    background: #ffffff;
    color: var(--asmc-base);
    border-color: var(--site-navbar-color-strong, rgba(0, 42, 5, 0.18));
}

.repository-shell-user-avatar-wrap {
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 50%;
    flex: 0 0 34px;
}

.repository-shell-user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repository-shell-user-copy {
    display: grid;
    gap: 2px;
    text-align: left;
}

.repository-shell-user-copy strong,
.repository-shell-user-copy span {
    display: block;
    line-height: 1.1;
}

.repository-shell-user-copy strong {
    font-size: 13px;
    color: var(--asmc-black);
}

.repository-shell-user-copy span {
    color: #5c5f62;
    font-size: 11px;
}

.repository-shell-dropdown {
    position: relative;
}

.repository-shell-dropdown .dd-menu {
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: 300px;
    border-radius: 24px;
    overflow: hidden;
}

.repository-shell-user-dropdown .dd-menu {
    min-width: 320px;
}

body.page .repository-shell-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 0.5s ease, visibility 0.5s ease;
    background-color: #ffffff;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
    z-index: 991;
}

body.page .repository-shell-sticky.stricky-fixed {
    visibility: visible;
    transform: translateY(0);
}

body.page .repository-shell-sticky .sticky-header__content {
    padding: 14px 0;
}

.repository-shell-sticky-inner {
    gap: 28px;
    justify-content: space-between;
}

.repository-shell-sticky-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.repository-shell-sticky-logo img {
    width: auto;
    height: 54px;
}

.repository-shell-sticky-nav {
    flex: 1 1 auto;
}

.repository-shell-sticky-meta {
    flex: 0 0 auto;
    gap: 14px;
}

.repository-shell-sticky-meta a {
    color: var(--asmc-base);
    font-size: 18px;
}

.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 0.5s ease 0.5s, visibility 0.5s ease 0.5s;
    visibility: hidden;
}

@media (min-width: 1200px) {
    .mobile-nav__wrapper {
        display: none !important;
    }
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s ease 0ms, visibility 0.5s ease 0ms;
}

.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    z-index: 10;
    width: min(320px, calc(100vw - 36px));
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: var(--asmc-black);
    padding: 30px 15px 24px;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    transform: translateX(0);
}

.mobile-nav__close {
    position: absolute;
    top: 18px;
    right: 16px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

.mobile-nav__content .logo-box {
    margin-bottom: 32px;
}

.mobile-nav__content .logo-box img {
    width: auto;
    height: 84px;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav__content .main-menu__list > li > ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--asmc-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button {
    width: 30px;
    height: 30px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--asmc-base);
    color: #ffffff;
    transform: rotate(-90deg);
    transition: transform 0.5s ease;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded {
    transform: rotate(0deg);
    background-color: #ffffff;
    color: var(--asmc-base);
}

.mobile-nav__contact {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    color: #ffffff;
}

.mobile-nav__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav__contact a {
    color: #ffffff;
    font-size: 14px;
}

.mobile-nav__top {
    margin-top: 20px;
}

.mobile-nav__social {
    display: flex;
    gap: 12px;
}

.mobile-nav__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.repository-shell-mobile-auth {
    display: grid;
    gap: 18px;
    margin: 22px 0 24px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.repository-shell-mobile-user {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.repository-shell-mobile-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.repository-shell-mobile-user strong,
.repository-shell-mobile-user span {
    display: block;
    color: #ffffff;
}

.repository-shell-mobile-user span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin-top: 4px;
}

.repository-shell-mobile-actions {
    display: grid;
    gap: 10px;
}

.repository-shell-mobile-actions a,
.repository-shell-mobile-actions button {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.repository-shell-mobile-actions form {
    margin: 0;
}

.repository-shell-mobile-actions--guest {
    margin: 22px 0 24px;
}

body.mobile-nav-open {
    overflow: hidden;
}

.scroll-to-top {
    display: none;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 99;
    border-radius: 50%;
    background: var(--asmc-base);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 50px;
    display: inline-block;
    transform: rotate(-90deg);
}

.scroll-to-top:hover {
    background-color: var(--asmc-black);
}

.repository-shell-footer-band {
    height: 16px;
    margin: -0.5em 0;
}

.repository-shell-footer-band--top {
    background-color: #000000;
}

.repository-shell-footer-band--bottom {
    background-color: #0a3d14;
}

body.page .repository-shell-footer {
    position: relative;
    display: block;
    color: #ffffff;
    z-index: 1;
}

#hero2.repository-shell-footer-hero {
    background: url("../asmc-assets/images/backgrounds/footbanner.jpg") center center / cover no-repeat;
    background-attachment: fixed;
}

.repository-shell-footer-hero .inner {
    min-height: 600px;
    position: relative;
}

.repository-shell-footer-hero .social-one__icon {
    display: flex;
    justify-content: center;
    padding-top: 42px;
}

.repository-shell-footer-hero .social-one__icon img {
    display: block;
}

body.page .repository-shell-footer .site-footer__middle {
    padding-top: 73px;
    padding-bottom: 80px;
}

body.page .repository-shell-footer .site-footer__middle .row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)) minmax(0, 1.15fr);
    gap: 30px;
}

body.page .repository-shell-footer .footer-widget__title-box {
    margin-bottom: 24px;
}

body.page .repository-shell-footer .footer-widget__title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: var(--asmc-letter-spacing-two);
}

body.page .repository-shell-footer .footer-widget__Contact-text {
    color: #ffffff;
    letter-spacing: var(--asmc-letter-spacing-two);
}

body.page .repository-shell-footer .footer-widget__Contact-text img {
    margin-top: 16px;
}

body.page .repository-shell-footer .footer-widget__link-list li + li {
    margin-top: 8px;
}

body.page .repository-shell-footer .footer-widget__link-list a {
    color: #ffffff;
    letter-spacing: var(--asmc-letter-spacing-two);
    transition: all 0.5s ease;
}

body.page .repository-shell-footer .footer-widget__link-list a:hover,
body.page .repository-shell-footer .site-footer__bottom-text a:hover {
    color: #7df56f;
}

body.page .repository-shell-footer .site-footer__bottom {
    padding: 32px 0 34px;
    text-align: center;
}

body.page .repository-shell-footer .site-footer__bottom-text,
body.page .repository-shell-footer .site-footer__bottom-text a {
    color: #ffffff;
}

body.page .repository-shell-footer .site-footer__bottom-text a {
    transition: all 0.5s ease;
}

body.page .repository-shell-footer .site-footer__bottom-text a.repository-shell-powered-by {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
}

body.login-page .repository-shell-header,
body.login-page .content {
    z-index: 2;
}

body.login-page .repository-shell-sticky {
    z-index: 3;
}

@media (max-width: 1399px) {
    body.page .repository-shell-primary-nav .main-menu__list > li + li,
    body.page .repository-shell-sticky-nav .main-menu__list > li + li {
        margin-left: 28px;
    }

    .repository-shell-user-copy {
        display: none;
    }

    body.page .repository-shell-user-btn {
        padding-left: 8px;
    }
}

@media (max-width: 1199px) {
    body.page .repository-shell-header .main-header-three__search-box {
        display: none;
    }

    body.page .repository-shell-header .main-header-three__search-lan-switcher-btn {
        margin-left: 20px;
    }

    body.page .repository-shell-header .main-menu-three__wrapper-inner {
        padding: 18px 0;
    }

    .repository-shell-nav-meta {
        gap: 12px;
    }

    .repository-shell-sticky {
        display: none !important;
    }
}

@media (max-width: 991px) {
    body.page .repository-shell-header .main-header-three__content-box {
        display: none;
    }

    body.page .repository-shell-header .main-header-three__top-inner {
        justify-content: center;
    }

    .repository-shell-nav-meta {
        display: none;
    }

    body.page .content-container {
        width: min(100%, 100%);
        padding-inline: 16px;
    }

    body.page .repository-shell-footer .site-footer__middle .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #hero2.repository-shell-footer-hero {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .repository-shell-footer-band {
        height: 10px;
    }

    body.page .repository-shell-header .main-header-three__logo img {
        height: 74px;
    }

    body.page .repository-shell-footer .site-footer__middle {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    body.page .repository-shell-footer .site-footer__middle .row {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .repository-shell-footer-hero .inner {
        min-height: 0;
    }

    .repository-shell-footer-hero .social-one__icon {
        padding-top: 28px;
    }

    .scroll-to-top {
        right: 18px;
        bottom: 18px;
    }
}
