.ademeba-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0.35rem;
    background-image: url('/imgs/imgMainAdemebaZac.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.ademeba-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.20); */
}

.ademeba-hero-content {
    position: relative;
    z-index: 1;
}

.ademeba-hero-content h1,
.ademeba-hero-content p {
    font-weight: 700;
    color: #fff;
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         2px  2px 4px rgba(0, 0, 0, 0.65);
}

.hero-logo {
    height: 170px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.site-footer {
    background-color: #000;
    color: #fff;
}

.footer-top-bar {
    height: 8px;
    background-color: #198754;
}

.footer-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #198754;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-social-links i {
    color: #fff;
    font-size: 1.1rem;
}

.footer-menu-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-menu-links i {
    color: #fff;
    font-size: 1rem;
    margin-right: 5px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background-color: #000;
}

.footer-bottom-content {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-size: 0.94rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.footer-bottom-content a,
.footer-bottom-content a:visited,
.footer-bottom-content a:focus {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom-content a:hover {
    color: #198754;
}

@media (max-width: 767.98px) {
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-link-icon i {
    font-size: 1rem;
    margin-right: 5px;
}

.navbar .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.navbar .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.navbar .dropdown-menu .dropdown-item i {
    width: 1.1rem;
    text-align: center;
    margin-right: 0;
}

.navbar-brand-icon {
    font-size: 1.25rem;
    margin-right: 8px;
    color: #198754;
}

.btn-primary {
    background-color: #198754 !important;
    border-color: #198754 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #157347 !important;
    border-color: #157347 !important;
}

.academy-cropper-wrap {
    display: inline-block;
    border: 1px dashed #ced4da;
    border-radius: 8px;
    padding: 8px;
    background-color: #f8f9fa;
}

.academy-logo-preview img {
    border: 1px solid #dee2e6;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.cropFrame {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.cropImage {
    position: absolute;
    top: 0;
    left: 0;
    cursor: move;
    max-width: none;
}

.cropControls {
    background: #000;
    width: 100%;
    height: 26px;
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity .25s linear;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cropFrame.hover .cropControls {
    opacity: .55;
    filter: alpha(opacity=55);
}

.cropControls span {
    display: block;
    float: left;
    color: #fff;
    font-size: 11px;
    margin: 7px 0 0 5px;
}

.cropZoomIn,
.cropZoomOut {
    display: block;
    float: right;
    margin: 4px 4px 0 0;
    padding: 0;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    line-height: 16px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.cropZoomIn::after,
.cropZoomIn .after {
    content: "+";
    display: block;
    text-align: center;
}

.cropZoomOut::after,
.cropZoomOut .after {
    content: "-";
    display: block;
    text-align: center;
}

