* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    text-decoration: none;
    background: transparent;
    border: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Default theme (light mode) */
:root {
    --pri: #1e70ff;
    --pri-2: #1a60df;
    --bg: #f9f9f9;
    --bg-2: #ffffff;
    --bg-3: #f0f0f0;
    --br: #d1d5db;
    --br-2: #e5e7eb;
    --co: #4b5563;
    --cl: #111827;
    --dgr: #e11d48;
    --scs: #10b981;
    --wrn: #f59e0b;
    --word: #2563eb;
    --start-linear: linear-gradient(to bottom, #ffffff00, #f0f0f0);
    --start-linear-2: linear-gradient(to bottom, #ffffff00, #f0f0f0ef, #f0f0f0);

    --br-2-rgb: 229,231,235;
}

/* Dark mode */
[data-theme="dark"] {
    --pri: #1e90ff;
    --pri-2: #1a7fdf;
    --bg: #0a1622;
    --bg-2: #0f1d2e;
    --bg-3: #142438;
    --br: #2a3a4d;
    --br-2: #2a3a4d4e;
    --co: #a3a0b2;
    --cl: #fdfaff;
    --dgr: #fb4270;
    --scs: #42fbd6;
    --wrn: #dffb42;
    --word: #3675fd;
    --start-linear: linear-gradient(to bottom, #0a162200, #0d1b29);
    --start-linear-2: linear-gradient(to bottom, #15355500, #0d1b29ef, #0d1b29);

    --br-2-rgb: 42,58,77;
}




.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle input[type="checkbox"] {
    display: none;
}

.theme-toggle label {
    width: 80px;
    height: 35px;
    border-radius: 999px;
    background: var(--bg-3);
    box-shadow: inset 10px 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background 0.3s ease;
}

.theme-toggle .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-2);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 30px rgba(0, 0, 0, 0.05) inset;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle svg {
    width: 15px;
    height: 15px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .sun {
    color: #ffd600;
    opacity: 1;
    transform: translateY(0);
}

.theme-toggle .moon {
    color: var(--cl);
    opacity: 0;
    transform: translateY(-20px);
}

.theme-toggle input[type="checkbox"]:checked + label {
    background: var(--bg-3);
    justify-content: flex-end;
}

.theme-toggle input[type="checkbox"]:checked + label .circle {
    left: calc(100% - 35px);
    background: var(--bg-2);
}

.theme-toggle input[type="checkbox"]:checked + label .sun {
    opacity: 0;
    transform: translateY(20px);
}

.theme-toggle input[type="checkbox"]:checked + label .moon {
    opacity: 1;
    transform: translateY(0);
}












::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cl);
}
body {
    background: var(--bg);
    overflow: hidden;
}
.overflowy-auto {
    overflow-y: auto;
    width: 100vw;
    height: 100vh;
}
body::before {
    content: "";
    height: 400px;
    z-index: -1;
    position: fixed;
    left: -60px;
    top: -120px;
    right: -60px;
    border-radius: 50%;
    background: #1e8fff05;
    filter: blur(50px);
}
html {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: var(--co);
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: transparent;
    appearance: none;
    cursor: pointer;
    border: 1px solid var(--br);
    position: relative;
    padding: 0 0;
}
input[type="checkbox"]:checked {
    background: var(--scs);
    border-color: transparent;
}
input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: 2px solid transparent;
    border-left: none;
    border-top: none;
    transform: rotate(45deg) scale(1);
}
input[type="checkbox"]:checked::before {
    border-color: var(--cl);
    animation: checkAnim 0.2s ease;
}
.co {
    opacity: 0.85;
}

.d-flex {
    display: flex;
}
.d-grid {
    display: grid;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-between {
    justify-content: space-between;
}
.column {
    flex-direction: column;
}
.w-full {
    width: 100%;
}
.g-36px {
    gap: 36px;
}
.g-20px {
    gap: 20px;
}
.g-1 {
    gap: 1rem;
}
.g-4px {
    gap: 4px;
}
.light {
    font-weight: 300;
}
.medium {
    font-weight: 500;
}
.size-11 {
    font-size: 11px;
}
.size-12 {
    font-size: 12px;
}
.size-13 {
    font-size: 13px;
}
.size-14 {
    font-size: 14px;
}
.size-16 {
    font-size: 16px;
}
.size-18 {
    font-size: 18px;
}
.size-20 {
    font-size: 20px;
}
.size-26 {
    font-size: 26px;
}
.size-28 {
    font-size: 28px;
}
.size-40 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    width: 730px;
    animation: fade 1s ease-in-out;
}
.size-50 {
    font-size: 40px;
}
.p-w {
    max-width: 730px;
    animation: fade 1.5s ease-in-out;
}
.anim-2 {
    animation: fade 2s ease-in-out;
}
.anim-3 {
    animation: fade 2s ease-in-out;
}
.color {
    color: var(--cl);
}
.color-opac {
    color: var(--co);
}
.color-system {
    color: var(--pri);
}
.color-sucess {
    color: var(--scs);
}
.color-warning {
    color: var(--wrn);
}
.error {
    color: var(--dgr);
    font-size: 11px;
}
.bold {
    font-weight: 600;
}
.bold-2 {
    font-weight: 700;
}
.logo-img {
    height: 38px;
    object-fit: cover;
}
.capitalize {
    text-transform: capitalize;
}
.p-16 {
    padding: 16px;
}
.g-8px {
    gap: 8px;
}
i {
    display: grid;
    place-items: center;
}
.btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    transition: all 300ms ease-out;
    padding: 0 16px;
    font-weight: 600;
}
.btn:hover {
    opacity: 0.89;
}
.btn-bg {
    background: var(--cl);
    color: var(--bg);
}
.btn-br {
    background: var(--br-2);
    border: 1px solid var(--br);
    color: var(--co);
}
.number {
    width: 25px;
    height: 25px;
    place-items: center;
    display: grid;
    background: var(--bg-3);
    border-radius: 6px;
    font-size: 9px;
}
.btn-pri {
    background: var(--pri);
    color: var(--cl);
}
.h-full {
    height: 100%;
}
.btn-suc {
    background: var(--scs);
}
.btn-dgr {
    background: var(--dgr);
    color: var(--cl);
}
.user-im {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}
.sm-btn {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--br);
    transition: all 300ms ease-out;
}
.sm-btn:hover {
    color: var(--pri);
    border-color: #1a80df52;
}
.nav-global {
    padding: 20px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    transition: background-color 0.5s ease;
}
.nav-global#main-header.scrolled {
    background-image:
        linear-gradient(rgba(var(--br-2-rgb, 229,231,235), 0.85), rgba(var(--br-2-rgb, 229,231,235), 0.85)),
        url('/assets/_images/headerback.jpg');
    background-size: cover;
    background-position: center;
}
.nav-global#main-header.scrolled .bb-image {
    display: none;
}
.nav-global#main-header.scrolled {
    /*background-color: var(--br-2);*/
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    z-index: 6;
}
.nav-global#main-header.scrolled::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(to right, var(--dgr), var(--wrn));
}
.nav-global .grid-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 16rem auto 16rem;
}
.nav-global .grid-nav a {
    transition: all 300ms ease-out;
}
.nav-global .grid-nav a:hover {
    color: var(--pri);
}
.relative {
    position: relative;
}
li .abs-lks {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    display: none;
    transition: all 300ms ease-out;
    padding-top: 3rem;
}
li {
    cursor: pointer;
    transition: all 300ms ease-out;
}
.nav-global .grid-nav li:hover .abs-lks {
    display: flex;
    transition: all 300ms ease-out;
}
.nav-global .grid-nav li a {
    transition: all 300ms ease-out;
}
.nav-global .grid-nav li a:hover {
    color: var(--pri);
}
li .abs-lks .inside {
    background: var(--bg-2);
    border-radius: 12px;
    box-shadow: 3px 3px 30px 30px #14243802;
    position: relative;
}
li .abs-lks .inside:before {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    background: var(--bg-2);
    top: -10px;
    left: 16px;
    transform: rotate(45deg);
}
li .abs-lks .inside img {
    width: 170px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--br-2);
}
li .abs-lks .inside a {
    padding: 8px 4px;
}
.nowrap {
    white-space: nowrap;
    overflow: hidden;
}

.logo {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
}
.logo::before,
.logo::after {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--cl);
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 6px;
}
.logo.bigger::before,
.logo.bigger::after {
    width: 60px;
    height: 60px;
    border-radius: 26px;
}
.logo::after {
    background: var(--pri);
    right: -5px;
    top: -5px;
}
.bars {
    display: flex;
    flex-direction: column;
    gap: 3.5px;
}
.bars .bar {
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: var(--cl);
}

.mt-350 {
    margin-top: 250px;
}

.appear {
    display: none;
}

.w-pdg {
    padding: 20px 30px;
}
.start-linear {
    height: 1200px;
    background-image: var(--start-linear);
    position: relative;
}
.start-linear::before {
    content: "";
    width: 100%;
    height: 400px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--start-linear-2);
    z-index: 2;
    animation: fade 1s ease-out;
}

.video-background {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.151);
    border-radius: 20px;
    margin-top: 120px;
}

.video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: #0d1b2975;
    z-index: 0;
    animation: fade 1s ease-in-out;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.notices-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 100px;
}

.main-ntc {
    width: 100%;
}
.big-ntc {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.color-danger {
    color: var(--dgr);
}
.uppercase {
    text-transform: uppercase;
}

.notice {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.abs-ntc {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 600ms ease-in-out;
}
.notice:hover .abs-ntc {
    opacity: 1;
    transform: translateY(0px);
}
.abs-ntc:hover h6.color {
    transition: all 300ms ease-out;
}
.abs-ntc:hover h6.color {
    color: var(--dgr);
}
.notice .img::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 400ms ease-in-out;
}
.notice:hover .img::before {
    background-image: linear-gradient(to bottom, #0a162200, #0d1b29e8);
}
.img-fluid {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 300ms ease-out;
    transform: translateY(0) scale(0.98);
}
.notice:hover .img-fluid {
    transform: scale(100px);
    transform: translateX(0px) scale(1);
}
.p-12 {
    padding: 12px;
}
.br-lft {
    padding-left: 10px;
    border-left: 1px solid var(--cl);
    margin-left: 4px;
}
.notice .onfire {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fb427044;
    display: grid;
    place-items: center;
    color: var(--dgr);
}
.mt-100 {
    margin-top: 100px;
}
.text-center {
    text-align: center;
}

.compg-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fr-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.one-four {
    padding: 12px;
    overflow: hidden;
    border-radius: 12px;
    transition: all 300ms ease-out;
    opacity: 0.89;
}
.one-four:hover {
    background: var(--br-2);
    opacity: 1;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid-services .service {
    padding: 16px;
    border-radius: 10px;
    background: var(--bg-2);
    transition: all 300ms ease-out;
}
.grid-services .service:hover {
    background: var(--br-2);
}
.grid-services .service .lg-sc i {
    font-size: 60px;
}

.gird-gov {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gov-m {
    width: 100%;
    padding: 16px;
}
.gov-m:hover .im-g {
    background: var(--br-2);
}
.gov-m .im-g {
    background: var(--bg-2);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 300ms ease-out;
    border-radius: 8px;
    overflow: hidden;
}
.gov-m .im-g img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

#map {
    height: 400px;
    width: 100%;
    opacity: 0.7;
}

.map-container {
    width: 100%;
    text-align: center;
}
#get-location {
    background: var(--pri);
    padding: 10px 16px;
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
#status {
    margin-top: 10px;
    font-style: italic;
}

.faq-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}
.faq-item {
    border-bottom: 1px solid var(--br-2);
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.plus-icon {
    font-size: 24px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 39px;
}

.faq-answer p {
    padding: 10px 0 20px;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.sm-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.carousel-track {
    display: flex;
    animation: carousel-animation 20s infinite linear;
    will-change: transform;
    width: max-content;
}
.carousel-item {
    width: 360px;
    flex: 0 0 14%;
    padding: 0 10px;
    background: var(--bg-2);
    padding: 16px;
    border-radius: 12px;
    margin: auto 8px;
}

@keyframes carousel-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.linear-ground {
    height: 370px;
    background-image: linear-gradient(to right, var(--pri), var(--word));
    align-items: center;
}
.size-30 {
    font-size: 38px;
}

.footer {
    display: grid;
    grid-template-columns: 30rem auto;
    gap: 2rem;
    padding-top: 100px !important;
    padding-bottom: 200px !important;
    background: var(--bg-3);
}
.grid-lks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
input {
    color: var(--cl);
    font-size: 12px;
    width: 100%;
    height: 100%;
    padding: 0 16px;
}
input::placeholder {
    color: var(--co);
}
.news-ltr {
    height: 48px;
    background: var(--br-2);
    border-radius: 12px;
    border: 1px solid var(--br);
}
.news-ltr button {
    background: var(--pri);
    padding: 0 16px;
    height: 100%;
    display: grid;
    place-items: center;
    margin: 8px auto;
    border-radius: 8px;
    font-size: 11px;
    color: var(--cl);
    cursor: pointer;
    transition: all 300ms ease-out;
}
.news-ltr button:hover {
    opacity: 0.9;
}
.footer a,
.footer a i {
    transition: all 300ms ease-out;
}
.footer a:hover,
.footer a:hover i {
    color: var(--pri);
}

.hidden-el {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.notice:nth-child(1) {
    transition-delay: 200ms;
}
.notice:nth-child(2) {
    transition-delay: 400ms;
}

.one-four:nth-child(1) {
    transition-delay: 200ms;
}
.one-four:nth-child(2) {
    transition-delay: 400ms;
}
.one-four:nth-child(3) {
    transition-delay: 600ms;
}
.one-four:nth-child(4) {
    transition-delay: 800ms;
}

.service:nth-child(1) {
    transition-delay: 200ms;
}
.service:nth-child(2) {
    transition-delay: 400ms;
}
.service:nth-child(3) {
    transition-delay: 600ms;
}
.service:nth-child(4) {
    transition-delay: 800ms;
}
.gov-m:nth-child(1) {
    transition-delay: 200ms;
}
.gov-m:nth-child(2) {
    transition-delay: 400ms;
}
.gov-m:nth-child(3) {
    transition-delay: 600ms;
}
.gov-m:nth-child(4) {
    transition-delay: 800ms;
}
.faq-item:nth-child(1) {
    transition-delay: 200ms;
}
.faq-item:nth-child(2) {
    transition-delay: 400ms;
}
.faq-item:nth-child(3) {
    transition-delay: 600ms;
}
.faq-item:nth-child(4) {
    transition-delay: 800ms;
}
.faq-item:nth-child(5) {
    transition-delay: 1s;
}
.faq-item:nth-child(6) {
    transition-delay: 1.2s;
}
.faq-item:nth-child(7) {
    transition-delay: 1.4s;
}
.faq-item:nth-child(8) {
    transition-delay: 1.6s;
}
.faq-item:nth-child(9) {
    transition-delay: 1.8s;
}
.faq-item:nth-child(10) {
    transition-delay: 2s;
}
.sm-mn:nth-child(1) {
    transition-delay: 200ms;
}
.sm-mn:nth-child(2) {
    transition-delay: 400ms;
}
.sm-mn:nth-child(3) {
    transition-delay: 600ms;
}

.bg-2 {
    background: var(--bg-2);
}
.news-ltr,
.map-container {
    transition-delay: 600ms;
}
.grid-lks .hidden-el:nth-child(1) {
    transition-delay: 200ms;
}
.grid-lks .hidden-el:nth-child(2) {
    transition-delay: 400ms;
}
.grid-lks .hidden-el:nth-child(3) {
    transition-delay: 600ms;
}

/*NOTICES SECTION*/

.search-notice {
    width: 780px;
    background: var(--bg-2);
    border: 1px solid var(--br-2);
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 10px;
}
button {
    cursor: pointer;
}
.search-notice button {
    color: var(--cl);
    background: var(--dgr);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 300ms ease-out;
    flex-shrink: 0;
    animation-delay: 2.5s;
}
.search-notice input {
    font-size: 14px;
}
.search-notice button:hover {
    opacity: 0.85;
}

.grid-mn-notices {
    display: grid;
    grid-template-columns: auto 40rem;
    gap: 2rem;
}
.big-notice-mn {
    padding: 16px;
}
.big-notice-mn img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.89;
    transition: all 300ms ease-out;
}
.big-notice-mn:hover img {
    opacity: 1;
}
.br-lft.color-opac {
    border-color: var(--co) !important;
}
.big-notice-mn .size-28 {
    transition: all 300ms ease-out;
}
.big-notice-mn:hover .size-28 {
    color: var(--dgr);
}

.fltrs {
    width: 780px;
    justify-content: center;
    flex-wrap: wrap;
}

.sm-bump {
    background: var(--br-2);
    border: 1px solid var(--br-2);
    padding: 4px 12px;
    border-radius: 6px;
    color: var(--co);
    font-size: 11px;
    opacity: 0.6;
    transition: all 300ms ease-out;
}
.sm-bump:hover {
    opacity: 1;
}
.sm-bump.active {
    color: var(--cl);
    background: var(--dgr);
    opacity: 1;
}

.grid-sm-mn {
    display: grid;
    grid-template-columns: 1fr;
}
.grid-sm-mn .sm-mn img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}
.grid-sm-mn .sm-mn {
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 300ms ease-out;
}
.grid-sm-mn .sm-mn .size-16 {
    transition: all 300ms ease-out;
}
.grid-sm-mn .sm-mn:hover .size-16 {
    color: var(--dgr);
}
.grid-sm-mn .sm-mn:hover {
    background: var(--br-2);
}

.topper-abs {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0a16225d;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    z-index: 6;
}

.abs-frm {
    background: var(--bg-2);
    width: 920px;
    height: 630px;
    border-radius: 12px;
    position: fixed;
    z-index: 7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 4px 4px 30px 30px #0a16220a;
    display: grid;
    grid-template-columns: 30rem auto;
    overflow: hidden;
    border: 1px solid var(--br);
}
.linear {
    overflow: hidden;
    display: grid;
    place-items: center;
}
.w-80-h-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.dft-in {
    height: 48px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid var(--br-2);
    width: 100%;
    background: var(--bg-3);
    transition: all 300ms ease-out;
}
.dft-in:hover,
.dft-in:active,
.dft-in:focus {
    border-color: var(--br);
    background: var(--br-2);
}
.underline {
    text-decoration: underline;
}
.mt-12 {
    margin-top: 12px;
}
.mt-30 {
    margin-top: 30px;
}
.p-25 {
    padding: 25px;
}
.close-abs {
    transition: all 300ms ease-out;
    position: absolute;
    top: 16px;
    right: 16px;
}
.close-abs:hover {
    opacity: 1;
}
.hover-a a,
.hover-a button {
    transition: all 300ms ease-out;
}
.hover-a a:hover,
.hover-a button:hover {
    color: var(--dgr);
}
.br-bt {
    border-bottom: 1px solid var(--br);
}
.pb-10 {
    padding-bottom: 10px;
}
.inside-gd-ntc {
    padding-top: 50px;
    display: grid;
    grid-template-columns: 180px auto 250px;
}
.inside-gd-ntc .search-notice {
    width: 600px;
}
.compg-four.compg-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.rasc-img {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    object-fit: cover;
}
.sm-nt-ntcs a {
    padding: 6px;
    border-radius: 6px;
    transition: all 300ms ease-out;
}
.sm-nt-ntcs a:hover {
    background: var(--br-2);
}
.user {
    padding: 8px;
    border-radius: 8px;
    transition: all 300ms ease-out;
}
.user:hover {
    background: var(--br-2);
    border-color: var(--br);
}
.inside-user {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    z-index: 2;
}
.inside-user div.hover-a {
    margin-top: 4rem;
    margin-right: 10px;
    background: var(--bg-2);
    width: 250px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--br);
}

.usr-hover:hover .inside-user {
    display: flex;
}
.radius-12 {
    border-radius: 12px;
}
.p-10 {
    padding: 10px;
}
.pb-16 {
    padding-bottom: 16px;
}
.grid-form-notices,
.editor-grid {
    display: grid;
    grid-template-columns: 180px auto;
    gap: 36px;
}
.grid-form-notices {
    padding-top: 50px;
}
.size-9 {
    font-size: 9px;
}
.justify-end {
    justify-content: flex-end;
}
.editor-grid {
    height: 93vh;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 70px;
    padding-top: 0;
}
.editor-grid {
    grid-template-columns: auto 40rem;
    gap: 36px;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
    padding: 10px;
    background: var(--bg-3);
    border-radius: 5px;
}
.toolbar button {
    padding: 5px 10px;
    cursor: pointer;
    background: var(--bg-2);
    border: 1px solid var(--br);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--cl);
    opacity: 0.7;
}
select.dft-in {
    color: var(--cl);
    background: var(--bg-3);
    padding: 0 16px;
}
select.dft-in option {
    background: var(--bg-3);
}
.toolbar button:hover {
    background: var(--br);
    opacity: 1;
}
.toolbar select {
    padding: 5px;
    border: 1px solid var(--br);
    border-radius: 8px;
    background: var(--bg-2);
    color: var(--cl);
    opacity: 0.7;
}

#news-content {
    width: 100%;
    min-height: 250px;
    padding: 10px;
    border: 1px solid var(--br-2);
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}
#news-content:hover,
#news-content:active,
#news-content:focus {
    background: var(--bg-3);
}
.character-count {
    margin-top: 5px;
    text-align: right;
    color: var(--co);
    font-size: 12px;
}
.grid-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 180px;
    padding: 16px;
}
.grid-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
textarea.dft-in {
    min-height: 210px;
    resize: none;
    padding: 16px;
    color: var(--cl);
}
.grid-photos label {
    background: var(--bg-3);
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    transition: all 300ms ease-out;
    cursor: pointer;
    overflow: hidden;
}
.grid-photos label i {
    font-size: 24px;
}
.grid-photos label:hover {
    background: var(--br-2);
}
.pb-100 {
    padding-bottom: 100px;
}
input[type="color"] {
    width: 100%;
    height: 40px;
    cursor: pointer;
}
#category-color {
    padding: 0;
}
.hex-value {
    border-radius: 3px;
    text-align: center;
    font-family: monospace;
    color: var(--cl);
    height: 40px;
    display: grid;
    place-items: center;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.default-abs-form {
    width: 450px;
    box-shadow: 6px 12px 30px 20px rgba(31, 38, 135, 0.041);
    background: var(--bg-3);
}
.default-abs-form .dft-in {
    background: var(--br-2);
}
.w-480px {
    width: 480px;
}
.grid-notice-details {
    display: grid;
    grid-template-columns: auto 35rem;
    width: 100vw;
    margin-top: 130px;
}

.image-switcher img {
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.grid-notice-details .grid-sm-mn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-background2 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1b2975;
    z-index: 0;
}

.video-background2 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.h-100vh {
    height: 100vh;
}
.w-50-h-50 {
    width: 50px;
    height: 50px;
}
.abs-16-tp {
    position: absolute;
    top: 16px;
    left: 16px;
}
.overflow-comp-four {
    height: 68vh;
    overflow-y: auto;
    padding-bottom: 60px;
}
.overflow-comp-four .compg-four .one-four .size-16 {
    font-size: 14px;
}

.w-30-h-30 {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.grid-imp-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    height: 120px;
    gap: 20px;
}
.grid-imp-links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.grid-imp-links a {
    opacity: 0.7;
    transition: all 300ms ease-out;
    padding: 12px;
    border-radius: 8px;
    background-image: linear-gradient( to right, var(--dgr), var(--wrn));
}
.grid-imp-links a:hover {
    opacity: 1;
    background-image: linear-gradient(to right, var(--wrn), var(--dgr));
}


.place-all-center {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
}

.loadering {
  width: 30px;
  height: 30px;
  /*border: 2px solid var(--br);*/
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loadering::after,
.loadering::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--dgr);
  width: 6px;
  height: 6px;
  transform: translate(150%, 150%);
  border-radius: 50%;
}
.loadering.bg-d::after,
.loadering.bg-d::before {
    background: var(--cl);
}

.loadering::before {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  transform: translate(-150%, -150%);
}

.logger-logo {
    height: 70px;
    width: auto;
    object-fit: cover;
}
.bb-image {
    height: 130px;
    width: 100%;
    object-fit: cover;
}
.br-red {
    border-bottom: 3px solid var(--dgr);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}







@media (prefers-reduced-motion) {
    .hidden-el {
        transition: none;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

@media screen and (min-width: 1440px) {
    .nav-global {
        padding: 20px 180px;
    }
    .w-pdg {
        padding: 20px 220px;
    }
    .desa-1440 {
        display: none;
    }
}
@media screen and (max-width: 1400px) {
    .editor-grid {
        grid-template-columns: 47rem auto;
    }
    .grid-photos {
        grid-template-columns: 1fr;
        height: 400px;
    }
}
@media screen and (max-width: 1280px) {
    .desa-1280 {
        display: none;
    }
    .inside-gd-ntc {
        grid-template-columns: 180px auto;
    }
    .grid-notice-details {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1024px) {
    .appear {
        display: flex !important;
    }
    .nav-global .grid-nav {
        display: flex;
        justify-content: space-between;
    }
    li .abs-lks .inside {
        z-index: 7;
    }
    .nav-global .grid-nav ul {
        position: fixed;
        z-index: 6;
        top: 70px;
        left: -100%;
        width: 100%;
        height: 100vh;
        align-items: flex-start;
        justify-content: flex-start;
        background: var(--bg-2);
        flex-direction: column;
        padding: 20px 30px;
        transition: all 300ms ease-out;
    }
    .nav-global .grid-nav ul#menu.active {
        left: 0;
        background: var(--bg-2);
    }

    .compg-four,
    .gird-gov {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-section,
    .footer {
        grid-template-columns: 1fr;
    }
    .compg-four.compg-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .desa-1024 {
        display: none;
    }
    .inside-gd-ntc,
    .grid-form-notices {
        grid-template-columns: 1fr;
    }
    .nav-ntcs {
        flex-direction: row;
        width: 90vw;
        overflow-x: auto;
    }
    .editor-grid {
        grid-template-columns: 30rem auto;
    }
}

@media screen and (max-width: 940px) {
    .abs-frm {
        width: 450px;
        grid-template-columns: 1fr;
    }
    .abs-frm .linear {
        display: none;
    }
    .desa-940 {
        display: none;
    }
    .inside-gd-ntc {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hidden {
        display: none;
    }
    .nav-global {
        padding: 20px 16px;
    }
    .w-pdg {
        padding: 0 0;
    }
    .prspsv {
        padding: 20px 20px;
    }
    .size-40,
    .p-w {
        min-width: 100%;
        width: 100%;
    }
    .size-40 {
        font-size: 32px;
    }
    .p-w.size-16 {
        font-size: 14px;
    }
    .mt-350 {
        margin-top: 170px;
    }
    .video-background {
        height: 300px;
    }

    .start-linear {
        height: 1100px;
    }

    ::-webkit-scrollbar {
        display: none !important;
        background: transparent;
    }
    .grid-lks,
    .grid-mn-notices,
    .grid-sm-mn {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .grid-sm-mn.sm-mn {
        border-radius: 0;
    }

    .search-notice,
    .fltrs {
        width: 100%;
    }
    .grid-imp-links {
        display: flex;
        overflow-x: auto;
    }
    .grid-imp-links a {
        min-width: 290px !important;
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .overflowy-auto {
        overflow-x: hidden;
    }
    .notices-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .notices-grid .notice {
        min-width: 320px;
    }
    .notices-grid .notice .img-fluid {
        height: 270px;
    }

    .compg-four {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .one-four {
        flex-direction: row;
        min-width: 330px;
        align-items: center;
    }
    .fr-img {
        width: 100px;
        height: 100px;
    }
    .one-four .size-16 {
        font-size: 13px;
    }
    .grid-services,
    .gird-gov {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        flex: 0 0 8%;
    }
    .big-notice-mn img {
        height: 260px;
    }
    .grid-mn-notices {
        gap: 80px;
    }
    .grid-mn-notices .grid-sm-mn {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
    }
    .grid-sm-mn .sm-mn {
        flex-direction: row-reverse;
        min-width: 420px;
        gap: 1rem;
    }
    .grid-sm-mn .sm-mn img {
        width: 140px;
        height: 140px;
    }
    .grid-sm-mn .sm-mn .size-16 {
        font-size: 13px;
    }

    .flow-notices .compg-four {
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .flow-notices .compg-four .one-four {
        min-width: 100%;
        width: 100%;
    }
    .big-notice-mn .size-28 {
        font-size: 20px;
    }
    .abs-frm .p-25 {
        padding: 0;
    }
    .abs-frm {
        height: 100%;
        width: 100%;
        border-radius: 0;
        padding-top: 30px;
        border: none;
    }
    .grid-notice-details .size-26 {
        font-size: 18px;
    }
    .abs-notice-component {
        position: fixed;
        height: 100vh;
        top: 80px;
        left: -100%;
        width: 100vw;
        background: var(--bg-2);
        flex-direction: column;
        align-items: flex-start;
        z-index: 3;
        padding: 16px;
    }
    #menu-news.active .abs-notice-component {
        left: 0;
    }
    .overflow-comp-four .compg-four {
        flex-direction: column;
        overflow-x: hidden;
    }
    .inside-gd-ntc .search-notice {
        width: 100%;
        height: 50px;
        margin: auto 10px;
    }
    .inside-gd-ntc {
        padding-top: 10px;
    }
    .slide-around {
        width: 100vw;
        flex-shrink: 0;
        white-space: nowrap;
        display: flex;
        padding: 10px;
        overflow-x: auto;
    }
    .slide-around .nav-ntcs,
    .slide-around .nav-ntcs button {
        flex-shrink: 0;
        white-space: nowrap;
        display: flex;
        gap: 8px;
        justify-content: flex-start;
        width: auto;
    }
    .slide-around .nav-ntcs {
        gap: 20px;
    }
    .me-10 {
        margin: auto 10px;
    }
    .topper-abs.with-modal {
        justify-content: flex-end;
        align-items: flex-end;
    }
    .default-abs-form {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
    .editor-grid {
        display: flex;
        flex-direction: column-reverse;
        padding: 0;
        padding-bottom: 130px;
    }
    .editor-grid button {
        margin: auto 10px;
    }
    .logger-logo {
        height: 35px;
    }
}
