/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) and (max-width: 1291px) {
    html {
        zoom: 0.7 !important;
    }
}

@media (max-width: 991px) {
    html {
        zoom: 0 !important;
    }
}

.submenu {
    display: none;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.submenu.show {
    display: block;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow.rotate {
    transform: rotate(90deg);
}

p {
    font-family: "Poppins", sans-serif;
    color: #848484;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

figure.attachment .attachment__caption {
    display: none !important;
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #29abe3;
    color: white;
    border: none;
    outline: none;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#backToTop:hover {
    background-color: #067fb3 !important;
}

.img-left-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 0.375rem; /* sama seperti Bootstrap rounded-start */
    border-bottom-left-radius: 0.375rem;
    display: block;
}

#backToTop:hover {
    background-color: #0056b3;
}

.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi ke 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.truncate-text1 {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Batasi ke 1 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.truncate-text3 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Batasi ke 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: 0;
}

.no-padding {
    padding: 0 !important;
}

.inline-block {
    display: inline-block;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure {
    margin: 0;
}

a {
    transition: all 0.3s ease-in 0s;
}

iframe {
    border: 0;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus,
a:hover {
    color: #28abe3;
}

.btn-main {
    background: #28abe3;
    border: 1px solid #28abe3;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 40px;
    text-transform: uppercase;
    border-radius: 40px;
}
.btn-main:hover {
    color: #fff;
}

.btn-transparent {
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 14px 35px;
    text-transform: capitalize;
    border-radius: 40px;
}

.btn-transparent:hover {
    color: #fff;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.section {
    padding: 100px 0;
}

.btn:focus {
    color: #ddd;
}

#home {
    position: relative;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-xs {
    padding: 40px 0;
}

#preloader {
    background: #fff;
    height: 100%;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999999999;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
    outline: 0;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.preloader {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
}

.preloader span {
    position: absolute;
    display: block;
    bottom: 0;
    width: 9px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
    -webkit-animation: preloader 2s infinite ease-in-out;
    animation: preloader 2s infinite ease-in-out;
}

.preloader span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
}

.preloader span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
}

.preloader span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}

.preloader span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: 800ms;
    animation-delay: 800ms;
}

.preloader span:nth-child(6) {
    left: 55px;
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms;
}

@-webkit-keyframes preloader {
    0% {
        height: 5px;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1);
    }
    25% {
        height: 30px;
        transform: translateY(15px);
        background: #28abe3;
    }
    50%,
    100% {
        height: 5px;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1);
    }
}
@keyframes preloader {
    0% {
        height: 5px;
        transform: translateY(0);
        background: #fff;
    }
    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }
    50%,
    100% {
        height: 5px;
        transform: translateY(0);
        background: #fff;
    }
}
.title {
    padding-bottom: 50px;
    overflow: hidden;
}
.title h2 {
    font-weight: 600;
    font-size: 35px;
    color: #232323;
}
.title p {
    color: #848484;
    margin: 0 auto;
}
.title.title-white h2 {
    color: #fff;
}

.border {
    height: 2px;
    margin: 20px auto 20px;
    position: relative;
    width: 80px;
    background: #28abe3;
}

.bg-gray {
    background: #f9f9f9;
}

.header-bradcrumb {
    background: transparent;
}
.header-bradcrumb a,
.header-bradcrumb .active {
    color: #cfcfcf;
    font-weight: 200;
    font-family: "Poppins", sans-serif;
}
.header-bradcrumb a:hover {
    color: #28abe3;
}

.colors-switcher {
    width: 100px;
    padding: 20px 18px 14px 20px;
    position: fixed;
    z-index: 1993;
    top: 90px;
    right: 0;
    background-color: #fff;
    border-radius: 2px 0 0 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
}
.colors-switcher #show-panel {
    position: absolute;
    left: -38px;
    top: 15px;
    width: 38px;
    height: 38px;
    z-index: 1992;
    display: block;
    background-color: #fff;
    border-radius: 2px 0 0 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    cursor: pointer;
}
.colors-switcher #show-panel i {
    color: #3d3d3d;
    font-size: 20px;
    line-height: 38px;
    margin-left: 10px;
}

.colors-list {
    margin: 0;
    padding: 0;
}
.colors-list li {
    display: inline-block;
    margin-bottom: 2px;
    margin-right: 4px;
}
.colors-list li a {
    text-align: center;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    cursor: pointer;
}

.colors-switcher .colors-list a.light-red {
    background-color: #ff432e;
}

.colors-switcher .colors-list li a:hover {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}

.colors-switcher .colors-list a.light-red {
    background-color: #ff432e;
}

.colors-switcher .colors-list a.blue {
    background-color: #28abe3;
}

.colors-switcher .colors-list a.light-blue {
    background-color: #69d2e7;
}

.colors-switcher .colors-list a.green {
    background-color: #5bb12f;
}

.colors-switcher .colors-list a.light-green {
    background-color: #bccf02;
}

.colors-switcher .colors-list a.yellow {
    background-color: #fed136;
}

.slick-slide {
    outline: none;
}

.logo {
    display: inline-block;
}

.single-page-header {
    background-image: url("../images/slider/KANTOR-PEMKAB.jpg");
    background-size: cover;
    background-position: center calc(50% - 30px);
    padding: 150px 0 70px;
    text-align: start;
    color: #fff;
    position: relative;
}

.single-page-header .container-fluid ol {
    display: flex;
    margin-top: -45px;
}

.single-page-header {
        text-align: left;
    }

    @media (max-width: 768px) {
        .single-page-header .col-md-12{
            margin-top: 100px !important;
            margin-bottom: 80px !important;
        }
        .single-page-header h2,
        .single-page-header p {
            text-align: center !important;
        }

        .single-page-header .breadcrumb {
            display: none !important;
        }

        .single-page-header {
            padding: 20px 10px !important;
        }
    }

@media (max-width: 991px) {
    .single-page-header {
        background-image: url("../images/slider/KANTOR-PEMKAB.jpg");
        background-size: cover;
        background-position: center calc(50% - 0px);
        padding: 100px 0 50px;
        text-align: start;
        color: #fff;
        position: relative;
    }

    .single-page-header .container-fluid h2 {
        text-align: center !important;
    }

    .single-page-header .container-fluid ol {
        justify-content: center !important;
        text-align: center !important;
        margin-top: 5px;
    }
}
.single-page-header:before {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

/* News Detail */
.news-detail .news-detail-page .container-fluid {
    margin-top: 50px;
    padding: 0% 10% 0% 10%;
}
.news-detail .news-detail-page .container-fluid .col-md-8 img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0.5rem !important;
}

.news-detail .news-detail-page .container-fluid .col-md-8 p {
    margin: 10px 0 10px 0;
    text-align: justify;
}

.news-detail .news-detail-page .container-fluid .col-md-8 .editor {
    margin: 50px 0 50px 0;
    text-align: start;
}

.news-detail .news-detail-page .container-fluid .row .col-md-4 .sidebar-box {
    border-radius: 0.75rem !important;
}

a:hover .media img {
    transform: scale(1.05);
}

.media img {
    transition: transform 0.4s ease;
    display: block;
}

.zoom-hover {
    overflow: hidden;
}

.zoom-hover img {
    transition: transform 0.4s ease;
    display: block;
}

.zoom-hover:hover img {
    transform: scale(1.05);
}

.news-detail
    .news-detail-page
    .container-fluid
    .row
    .col-md-4
    .sidebar-box
    .media
    .media-body
    strong {
    color: #212529;
}

.news-detail
    .news-detail-page
    .container-fluid
    .row
    .col-md-4
    .sidebar-box
    .media
    .media-body
    strong:hover {
    color: #60ace3 !important;
    transition: 1s ease;
}

/* Share Sosial Media*/

.share-container {
    display: block;
    align-items: center;
}

.share-label {
    margin-right: 15px;
    color: #757575; /* Warna abu-abu untuk "Bagikan Berita Via" */
    margin-left: 10px !important;
}

.share-icons {
    display: flex;
    margin-top: 30px;
    margin-left: 10px !important;
}

.share-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    text-decoration: none;
    color: #757575; /* Warna abu-abu untuk teks di bawah ikon */
    font-size: 0.875rem; /* Ukuran font perkiraan */
}

.share-icon-link:last-child {
    margin-right: 0;
}

.share-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px; /* Sesuaikan ukuran ikon */
    height: 20px; /* Sesuaikan ukuran ikon */
    border-radius: 50%;
    margin-bottom: 5px;
}

.share-icon i {
    font-size: 1.5rem; /* Ukuran ikon Font Awesome */
}

/* Warna ikon */
.share-icon.facebook {
    background-color: #e9ecef; /* Latar belakang abu-abu muda */
    color: #3b5998; /* Warna Facebook */
}

.share-icon.twitter {
    background-color: #e9ecef; /* Latar belakang abu-abu muda */
    color: #1da1f2; /* Warna Twitter */
}

.share-icon.whatsapp {
    background-color: #e9ecef; /* Latar belakang abu-abu muda */
    color: #25d366; /* Warna WhatsApp */
}

.share-icon.email {
    background-color: #e9ecef; /* Latar belakang abu-abu muda */
    color: #ea4335; /* Warna Email (Gmail) */
}

/*=================================================================
  Navigation
==================================================================*/
.navigation {
    transition: 0.3s all;
}
.navigation .logo-default {
    display: none;
}
.navigation .dropdown-toggle::before,
.navigation .dropdown-toggle::after {
    display: none;
}
.navigation .dropdown-toggle i {
    font-size: 10px;
    margin-left: 2px;
    vertical-align: 2px;
}
.navigation .navbar-light .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    padding: 20px 15px;
    letter-spacing: 1px;
    transition: 0.2s ease-in-out 0s;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    position: relative;
}
.navigation .navbar-light .navbar-nav .nav-item .nav-link:hover,
.navigation .navbar-light .navbar-nav .nav-item .nav-link:active,
.navigation .navbar-light .navbar-nav .nav-item .nav-link:focus {
    background: none;
    color: #28abe3;
}
.navigation .navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #28abe3;
}
@media (max-width: 991px) {
    .navigation .nav-link {
        padding: 6px !important;
    }
    .navigation .navbar-collapse.show {
        overflow-y: auto;
        max-height: calc(100vh - 55px);
    }
}

.navigation
    .navbar
    .navbar-collapse
    .navbar-nav
    .nav-item
    .dropdown-menu
    .active {
    color: #28abe3 !important;
    background-color: #fff !important;
}

.navigation .dropdown-submenu .dropdown-menu {
    margin: 0;
    background-color: #131313;
}
@media (min-width: 992px) {
    .navigation .dropdown-submenu .dropdown-menu {
        left: 100%;
        top: -5px;
    }
    .navigation .dropleft .dropdown-menu {
        left: auto;
        right: 100%;
        margin: 0;
        top: -5px;
    }
    .navigation .dropdown-submenu .dropdown-menu {
        background-color: #000;
    }
}
.navigation .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
}
.navigation .dropdown-menu {
    border: 0;
    border-radius: 0;
    top: 80%;
    left: 5px;
    display: block;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    background: #fff;
    transition: 0.3s ease;
    border-radius: 3px;
}
.navigation .dropdown-menu li:first-child {
    margin-top: 12px;
}
.navigation .dropdown-menu li:last-child {
    margin-bottom: 12px;
}
@media (max-width: 991px) {
    .navigation .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        text-align: center;
        transition: 0s;
    }
}
@media (max-width: 991px) {
    .navigation .dropdown-menu.show {
        display: block;
    }
    .navigation .dropdown-menu {
        float: left;
        width: 100%;
    }
}
.navigation .dropdown-item {
    color: rgba(0, 0, 0, 0.8);
    transition: 0.2s ease;
    padding: 8px 22px;
}
.navigation .dropdown-item:focus,
.navigation .dropdown-item:hover {
    color: #29abe3;
    background: transparent;
}

@media (max-width: 991px) {
    .navigation {
        box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
        background: #fff;
    }
    .navigation .navbar-light .navbar-nav .nav-item .nav-link {
        color: #000;
    }
    .navigation .logo-white {
        display: none;
    }
    .navigation .logo-default {
        display: block;
    }
    .navigation .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, 0.5);
        border-color: rgba(0, 0, 0, 0.1);
    }
}
.sticky-header {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
}
.sticky-header .navbar-light .navbar-nav .nav-item .nav-link {
    color: #000;
}
.sticky-header .logo-white {
    display: none;
}
.sticky-header .logo-default {
    display: block;
}

.navbar-brand {
    height: auto;
    padding: 8px 0;
}

.navbar-brand h1 {
    margin: 0;
}

/* Custom css */

/* Page */

/* beranda */
@media (max-width: 768px) {
    .hero-area {
        min-height: 100vh !important;
    }

    .bupati-wakil-bupati,
    .svg-divider {
        display: none !important;
    }

    .hero-area {
        background-position: center center;
        background-size: cover;
        height: 100vh; /* atau 90vh agar tidak terlalu tinggi */
        padding: 20px;
        text-align: center; /* Jika ingin teksnya center juga */
    }

    .hero-area .block {
        width: 100%;
    }

    .hero-area .container-fluid .block form {
        margin-top: 40px !important;
        width: 100% !important;
        /* height: 66px; */
        position: relative;
    }

    .hero-area .container-fluid .block h1 {
        font-size: 39px;
    }
}

.hero-area {
    background-image: url("../images/slider/KANTOR-PEMKAB.jpg");
    background-size: cover;
    height: 125vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-area .container-fluid .block form {
    margin-top: 30px;
    width: 470px;
    height: 66px;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.search-form .search {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 0;
    font-size: 1.1rem;
    color: #343a40;
    margin-right: 15px;
    height: 100%;
    background-color: transparent;
}

.search-form .search::placeholder {
    color: #bdbdbd; /* Warna placeholder abu-abu */
}

.search-form .main-button {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    color: #28abe3;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* Memberikan area klik yang cukup */
    height: 36px; /* Memberikan area klik yang cukup */
}

.svg-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 0;
    margin-bottom: -55px;
}

.svg-divider svg {
    display: block;
    width: 100%;
    height: auto;
}
.hero-area .news-block {
    text-align: center;
}

.hero-area .news-block h1 {
    font-size: 50px !important;
    margin-top: -200px !important;
    margin-bottom: 3rem !important;
}

.hero-area:before {
    background: rgba(0, 0, 0, 0.63);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.hero-area .block {
    color: #fff;
}
.hero-area .block h1 {
    font-size: 57px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-area .block p {
    color: #fff;
    width: 50%;
    margin-bottom: 20px;
}
.hero-area .block .btn-main {
    margin-right: 8px;
}
.hero-area .block .btn-main:hover {
    opacity: 0.8;
}

.hero-area-video {
    height: 100vh;
    position: inherit !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-area-video .block {
    color: #fff;
    text-align: center;
}
.hero-area-video .block h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-area-video .block p {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.hero-area-video .block .btn-main {
    margin-top: 20px;
}

.dark-bg {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

/* Visi-misi */

@media (max-width: 991px) {
    .visi-misi-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.visi-misi-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.visi-misi-section .visi-misi .visi .visi-content {
    margin-top: 40px;
}

.visi-misi-section .visi-misi .visi .visi-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #727272;
    text-align: justify !important;
}

.visi-misi-section .visi-misi .misi .misi-content {
    margin-top: 20px;
    margin-bottom: 40px;
}

.visi-misi-section .visi-misi .misi .misi-content ol {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #727272;
    padding-left: 0.75rem;
    gap: 1rem;
    flex-direction: column;
    display: flex;
    margin-top: 0.75rem;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
    padding-left: 1.5rem;
    list-style-type: decimal !important;
}

.visi-misi-section .visi-misi .misi .misi-content ol li {
    gap: 1.5rem;
    display: list-item;
    text-align: justify !important;
}

/* End Visi & Misi */

/* Ruang Lingkup */

@media (max-width: 991px) {
    .ruang-lingkup-page .ruang-lingkup-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.ruang-lingkup-page
    .ruang-lingkup-section
    .container-fluid
    .ruang-lingkup
    .row
    .ruang-lingkup-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.ruang-lingkup-page .ruang-lingkup-section .container-fluid {
    padding: 0% 10% 0% 10%;
}
.ruang-lingkup-page
    .ruang-lingkup-section
    .container-fluid
    .ruang-lingkup
    .row
    .ruang-lingkup-content
    p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #727272;
    text-align: justify !important;
}

.ruang-lingkup-page
    .ruang-lingkup-section
    .container-fluid
    .ruang-lingkup
    .row
    .ruang-lingkup-content
    ol {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #727272;
    padding-left: 0.75rem;
    gap: 1rem;
    flex-direction: column;
    display: flex;
    margin-top: 0.75rem;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
    padding-left: 1.5rem;
    list-style-type: decimal !important;
}

.ruang-lingkup-page
    .ruang-lingkup-section
    .container-fluid
    .ruang-lingkup
    .row
    .ruang-lingkup-content
    ol
    li {
    gap: 1.5rem;
    display: list-item;
    text-align: justify !important;
}

/* End Ruang Lingkup */

/* Tugas dan fungsi Pemerintahan */
@media (max-width: 991px) {
    .tugas-fungsi-pemerintahan-page
        .tugas-fungsi-pemerintahan-section
        .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.tugas-fungsi-pemerintahan-page
    .tugas-fungsi-pemerintahan-section
    .container-fluid
    .tugas-fungsi-pemerintahan
    .row
    .tugas-fungsi-pemerintahan-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.tugas-fungsi-pemerintahan-page
    .tugas-fungsi-pemerintahan-section
    .container-fluid {
    padding: 0% 10% 0% 10%;
}
.tugas-fungsi-pemerintahan-page
    .tugas-fungsi-pemerintahan-section
    .container-fluid
    .tugas-fungsi-pemerintahan
    .row
    .tugas-fungsi-pemerintahan-content
    p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #727272;
    text-align: justify !important;
}

.tugas-fungsi-pemerintahan-page
    .tugas-fungsi-pemerintahan-section
    .container-fluid
    .tugas-fungsi-pemerintahan
    .row
    .tugas-fungsi-pemerintahan-content
    ol {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #727272;
    padding-left: 0.75rem;
    gap: 1rem;
    flex-direction: column;
    display: flex;
    margin-top: 0.75rem;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
    padding-left: 1.5rem;
    list-style-type: decimal !important;
}

.tugas-fungsi-pemerintahan-page
    .tugas-fungsi-pemerintahan-section
    .container-fluid
    .tugas-fungsi-pemerintahan
    .row
    .tugas-fungsi-pemerintahan-content
    ol
    li {
    gap: 1.5rem;
    display: list-item;
    text-align: justify !important;
}
/* End Tugas dan fungsi Pemerintahan */

/* Pimpinan Daerah */
@media (max-width: 991px) {
    .pimpinan-daerah-page .pimpinan-daerah-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.pimpinan-daerah-page
    .pimpinan-daerah-section
    .container-fluid
    .pimpinan-daerah
    .row
    .pimpinan-daerah-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.pimpinan-daerah-page .pimpinan-daerah-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.pimpinan-daerah-page
    .pimpinan-daerah-section
    .container-fluid
    .pimpinan-daerah
    .row
    .pimpinan-daerah-content
    .text-center
    .bupati-wakil-bupati
    .elements-card
    .card {
    justify-content: center !important;
    text-align: center !important;
    align-items: center !important;
    border-radius: 18px;
    padding: 1rem;
    /* background: #29ABE3; */
    /* color: #fff; */
    font-weight: 700;
    width: 100%;
}

.pimpinan-daerah-page
    .pimpinan-daerah-section
    .container-fluid
    .pimpinan-daerah
    .row
    .pimpinan-daerah-content
    .text-center
    .bupati-wakil-bupati
    .elements-card
    .card
    .card-body
    p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    /* color: #fff; */
    text-align: center !important;
}
.pimpinan-daerah-page
    .pimpinan-daerah-section
    .container-fluid
    .pimpinan-daerah
    .row
    .pimpinan-daerah-content
    .text-center
    .bupati-wakil-bupati
    .elements-card
    .card
    a {
    width: 40%;
    background-color: #1698d0;
    border: 2px solid #1698d0;
}

.pimpinan-daerah-page
    .pimpinan-daerah-section
    .container-fluid
    .pimpinan-daerah
    .row
    .pimpinan-daerah-content
    h2 {
    margin-bottom: 15px;
}

.pimpinan-daerah-page
    .pimpinan-daerah-section
    .container-fluid
    .pimpinan-daerah
    .row
    .pimpinan-daerah-content
    .text-center
    h3 {
    margin-top: 15px;
}
/* End Pimpinan Daerah */

/* Perangkat Daerah */
@media (max-width: 991px) {
    .perangkat-daerah-page .perangkat-daerah-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .container-fluid
    .perangkat-daerah
    .row
    .perangkat-daerah-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.perangkat-daerah-page .perangkat-daerah-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .perangkat-daerah
    .row
    .col-peragkat-daerah
    .card {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0.75rem;
    margin-top: 35px;
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .perangkat-daerah
    .row
    .col-peragkat-daerah
    .card
    img {
    height: 80px;
    max-width: 100%;
    margin-bottom: 15px;
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .perangkat-daerah
    .row
    .col-peragkat-daerah
    .card
    .card-title {
    color: #1a4373;
    line-height: 26px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .perangkat-daerah
    .row
    .col-peragkat-daerah
    .card
    .text-muted {
    color: #1a4373 !important;
    line-height: 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .perangkat-daerah
    .row
    .col-peragkat-daerah
    .card
    .button-detail
    a {
    color: #fff;
    font-weight: 600;
    background: #29abe3;
    padding: 8px 20px 8px 20px;
    border-radius: 8px;
}

.perangkat-daerah-page
    .perangkat-daerah-section
    .perangkat-daerah
    .row
    .col-peragkat-daerah
    .card
    .button-detail
    a:hover {
    color: #fff;
    background: #157da9;
    transition: 1s ease;
}

/* End Perangkat Daerah */

/* Kecamatan */

@media (max-width: 991px) {
    .kecamatan-page .kecamatan-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.kecamatan-page
    .kecamatan-section
    .container-fluid
    .kecamatan
    .row
    .kecamatan-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.kecamatan-page .kecamatan-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.kecamatan-page .kecamatan-section .kecamatan .row .col-peragkat-daerah .card {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0.75rem;
    margin-top: 35px;
}

.kecamatan-page
    .kecamatan-section
    .kecamatan
    .row
    .col-peragkat-daerah
    .card
    img {
    height: 80px;
    max-width: 100%;
    margin-bottom: 15px;
}

.kecamatan-page
    .kecamatan-section
    .kecamatan
    .row
    .col-peragkat-daerah
    .card
    .card-title {
    color: #1a4373;
    line-height: 26px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.kecamatan-page
    .kecamatan-section
    .kecamatan
    .row
    .col-peragkat-daerah
    .card
    .text-muted {
    color: #1a4373 !important;
    line-height: 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

/* End Kecamatan */

/* Dokument Rencana Strategis */
@media (max-width: 991px) {
    .dokument-rencana-strategis-page
        .dokument-rencana-strategis-section
        .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .dokument-rencana-strategis
    .row
    .dokument-rencana-strategis-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid {
    padding: 0% 10% 0% 10%;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid {
    background: #fff !important;
}

/* .dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li {
    padding: 5px 0 5px 0;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize !important;
    line-height: 1.25rem;

}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a:hover {
        color: #29abe3;
    } */

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li {
    /* padding: 1px 0 1px 0; */
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a {
    /* color: #212529; */
    font-size: 16px;
    font-weight: 500;
    column-gap: 0.75rem;
    text-decoration: none;
    text-transform: capitalize !important;
    line-height: 1.25rem;
    align-items: center;
    /* display: grid; */
    /* padding: 0.5px; */
    border-radius: 0.75rem;
    grid-template-columns: 20px 1fr 20px;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a
    p {
    padding: 10px;
    margin: 3px 0 3px 0;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    .active {
    background-color: #29abe34b;
    color: #29abe3 !important;
    border-radius: 10px;
    padding: 10px;
    margin: 5px 0 5px 0;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    .active
    p {
    color: #29abe3 !important;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a:hover {
    color: #29abe3;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    h3 {
    margin-top: 25px;
    margin-bottom: 20px;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item {
    align-items: center;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content {
    margin-left: 20px;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item {
    display: flex;
    justify-content: space-between;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item
    p {
    border: 1px solid #ddd;
    background-color: #eeeeee;
    padding: 5px 10px;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.dokument-rencana-strategis-page
    .dokument-rencana-strategis-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item
    a {
    color: #ffffff;
    background-color: #29abe3;
    border: 1px solid #29abe3;
}

/* End Dokument rencana strategis */

/* Laporan Kinerja */
@media (max-width: 991px) {
    .laporan-kinerja-page .laporan-kinerja-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .laporan-kinerja
    .row
    .laporan-kinerja-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.laporan-kinerja-page .laporan-kinerja-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.laporan-kinerja-page .laporan-kinerja-section .container-fluid {
    background: #fff !important;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li {
    padding: 5px 0 5px 0;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize !important;
    line-height: 1.25rem;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    .active {
    color: #29abe3 !important;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu {
    width: 250px;
    font-family: Arial, sans-serif;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul {
    list-style: none;
    padding-left: 0;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    li {
    margin: 4px 0;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    a {
    text-decoration: none;
    color: #444;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    a.active {
    color: #29abe3;
    font-weight: bold;
}

.arrow {
    display: inline-block;
    width: 1em;
    text-align: center;
    margin-right: 6px;
    transition: transform 0.3s ease;
    color: #29abe3;
}

.rotate {
    transform: rotate(90deg);
}

.submenu {
    display: none;
    margin-left: 1.5em;
}

.submenu li a {
    font-weight: normal;
    color: #333;
}

.submenu li a.active {
    font-weight: bold;
    color: green;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a:hover {
    color: #29abe3;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    h3 {
    margin-top: 25px;
    margin-bottom: 20px;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item {
    /* display: flex; */
    align-items: center;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content {
    margin-left: 20px;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item {
    display: flex;
    justify-content: space-between;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item
    p {
    border: 1px solid #ddd;
    background-color: #eeeeee;
    padding: 5px 10px;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item
    a {
    color: #ffffff;
    background-color: #29abe3;
    border: 1px solid #29abe3;
    border-radius: 8px;
    font-weight:500;
}

.laporan-kinerja-page
    .laporan-kinerja-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    .item
    .text-content
    .footer-item
    a:hover {
        color: #ffffff;
        background-color: #1c90c2;
        border: 1px solid #29abe3;
    }

/* End Laporan Kinerja */

/* Start Layanan */
@media (max-width: 991px) {
    .layanan-page .layanan-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.layanan-page .layanan-section .container-fluid .layanan .row .layanan-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.layanan-page .layanan-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.layanan-page .layanan-section .container-fluid {
    background: #fff !important;
}

.layanan-page .layanan-section .container-fluid .row .sidebar-menu .body-list {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li {
    padding: 5px 0 5px 0;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a {
    /* color: #212529; */
    font-size: 16px;
    font-weight: 500;
    column-gap: 0.75rem;
    text-decoration: none;
    text-transform: capitalize !important;
    line-height: 1.25rem;
    align-items: center;
    display: grid;
    padding: 0.55rem;
    border-radius: 0.75rem;
    grid-template-columns: 20px 1fr 20px;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    .active {
    background-color: #29abe34b;
    color: red !important;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    .active
    p {
    color: #29abe3 !important;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .sidebar-menu
    .body-list
    ul
    li
    a:hover {
    color: #29abe3;
}

.layanan-page .layanan-section .container-fluid .row .table-content h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem !important;
    display: grid;
    list-style: none;
    margin: 5px;
    padding: 0;
    border: 0 solid #eee;
    box-sizing: border-box;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li {
    margin-bottom: 8px;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    a {
    padding: 1rem;
    border-width: 1px;
    background-color: #ffffff;
    grid-template-columns: 46px 1fr;
    display: grid;
    overflow: clip;
    column-gap: 1.5rem;
    width: 100%;
    height: 100%;
    border: 1px solid #dee2e6 !important;
    box-sizing: border-box;
    border-radius: 1rem;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    a
    h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    color: #424242;
    margin-bottom: 0.375rem;
}

.layanan-page
    .layanan-section
    .container-fluid
    .row
    .table-content
    .body-table
    ul
    li
    a
    p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: #757575;
    margin-bottom: 0.375rem;
}

/* End layanan */

/* Start Jelajah */
@media (max-width: 991px) {
    .jelajah-page .jelajah-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.jelajah-page .jelajah-section .container-fluid .jelajah .row .jelajah-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.jelajah-page .jelajah-section .container-fluid {
    padding: 0% 0% 0% 5%;
}

.jelajah-page .jelajah-section .container-fluid {
    background: #fff !important;
}

.jelajah-page
    .jelajah-section
    .container-fluid
    .jelajah-contnent
    .content-left
    p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 15px;
}

.jelajah-page
    .jelajah-section
    .container-fluid
    .jelajah-contnent
    .content-left
    .row
    .col-lg-6 {
    margin-top: 25px;
}

.jelajah-page
    .jelajah-section
    .container-fluid
    .jelajah-contnent
    .content-left
    .row
    .col-lg-6
    .card
    .card-body
    a {
    color: #000;
}

.jelajah-page
    .jelajah-section
    .container-fluid
    .jelajah-contnent
    .content-left
    .row
    .col-lg-6
    .card
    .card-body
    a:hover {
    color: #56ace3;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* End Jelajah */

/* Start Media */
@media (max-width: 991px) {
    .media-page .media-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.media-page .media-section .container-fluid .media .row .media-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.media-page .media-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.media-page .media-section .container-fluid {
    background: #fff !important;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4 {
    margin-top: 25px;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card
    img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card
    .card-body
    a {
    color: #000;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card
    .card-body
    a:hover {
    color: #56ace3;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card {
    transition: transform 0.4s ease;
}

.media-page
    .media-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card:hover {
    transform: scale(1.02);
}

/* End Media */

/* Start Media Detail */
@media (max-width: 991px) {
    .media-page .media-detail-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }
}

.media-page .media-detail-section .container-fluid .media .row .media-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.media-page .media-detail-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.media-page .media-detail-section .container-fluid {
    background: #fff !important;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4 {
    margin-top: 25px;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .text-justify
    p {
    color: #000 !important;
    margin-bottom: 20px;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card
    img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card
    .card-body
    a {
    color: #000;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card
    .card-body
    a:hover {
    color: #56ace3;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card {
    transition: transform 0.4s ease;
}

.media-page
    .media-detail-section
    .container-fluid
    .media-contnent
    .content-left
    .row
    .col-lg-4
    .card:hover {
    transform: scale(1.02);
}

/* End Media Detail */

.slider-item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.slider-item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
}
.slider-item .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.slider-item h1 {
    color: #fff;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
}
@media (max-width: 768px) {
    .slider-item h1 {
        font-size: 48px;
        line-height: 52px;
    }
}
@media (max-width: 480px) {
    .slider-item h1 {
        font-size: 38px;
        line-height: 46px;
    }
}
.slider-item p {
    color: #fff;
    margin-bottom: 20px;
}

.hero-slider {
    overflow-x: hidden;
}
.hero-slider .prevArrow {
    left: -100px;
}
.hero-slider .nextArrow {
    right: -100px;
}
@media (max-width: 768px) {
    .hero-slider .prevArrow,
    .hero-slider .nextArrow {
        display: none !important;
    }
}
.hero-slider:hover .prevArrow {
    left: 20px;
}
.hero-slider:hover .nextArrow {
    right: 20px;
}

/* slick style */
.slick-slide {
    outline: 0;
}

.slick-slide img {
    display: unset;
}

/* slick arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: 70px;
    width: 70px;
    background: rgba(40, 171, 227, 0.5);
    color: #fff;
    border: 0;
    line-height: 70px;
    font-size: 35px;
    transition: 0.2s ease;
    border-radius: 50%;
    cursor: pointer;
}
.slick-arrow::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background: transparent;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.2s ease;
}
.slick-arrow::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    transition: 0.2s ease;
}
.slick-arrow:focus {
    outline: 0;
}
.slick-arrow:hover {
    background: #28abe3;
}

.prevArrow {
    left: 0px;
}
.prevArrow::before {
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    right: 35px;
}
.prevArrow::after {
    right: 20px;
}

.nextArrow {
    right: 0px;
}
.nextArrow::before {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 35px;
}
.nextArrow::after {
    left: 20px;
}

/* /slick arrows */
/*=================================================================
  About us section
==================================================================*/
.about {
    padding: 3rem 0;
    background: #f7f7f7;
}
.about .btn-about {
    background: #28abe3;
}

.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1140px;
}

.about .col-lg-12 .gy-3 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.about .heading-title {
    color: #5a5c69;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 20px;
}

.about h4 {
    margin-top: 30px;
}
.about .feature-list {
    margin-top: 10px;
}
.about .feature-list li {
    width: 48%;
    display: inline-block;
    color: #666;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .about .feature-list li {
        width: auto;
        margin-right: 20px;
    }
}
.about .feature-list li i {
    color: #28abe3;
    margin-right: 8px;
}

/*=================================================================
  About us 2 section
==================================================================*/
.about-2 {
    background: #f7f7f7;
}
.about-2 .checklist {
    padding-left: 30px;
}
.about-2 .checklist li {
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #777;
    font-family: "Poppins", sans-serif;
}
.about-2 .checklist li:before {
    position: absolute;
    margin-right: 12px;
    margin-left: -45px;
    content: "\f375";
    font-family: "themefisher-font";
    opacity: 1;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 20px;
}

/*=================================================================
 Call To Action 1
==================================================================*/
.call-to-action {
    background: url("../images/bendungan-v1.jpg") center center / cover
        no-repeat;
    position: relative;
    color: white;
    padding: 100px 0;
}

.call-to-action .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.call-to-action .container-fluid {
    position: relative;
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-ring 2s infinite;
}

.play-btn-inner {
    width: 60px;
    height: 60px;
    background-color: #29abe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(62, 55, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(62, 55, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(62, 55, 255, 0);
    }
}

.stat-box h2 {
    font-weight: bold;
    font-size: 2.5rem;
}

.stat-box hr {
    width: 50px;
    border: 1px solid #29abe3;
    margin: 10px auto;
}

@media (max-width: 576px) {
    .stat-box h2 {
        font-size: 2rem;
    }
}

/*=================================================================
 Call To Action 2
==================================================================*/
.call-to-action-2 {
    padding: 100px 0;
    background-image: url("../images/call-to-action/call-to-action-bg.jpg");
    background-size: cover;
    color: #fff;
}
.call-to-action-2 h2 {
    line-height: 1.5;
}
.call-to-action-2 p {
    color: #fff;
}
.call-to-action-2 .btn-main {
    margin-top: 20px;
}

/*=================================================================
  Contact
  ==================================================================*/
.contact-us {
    padding: 100px 0 50px 0;
}

.contact-form {
    margin-bottom: 40px;
}
.contact-form .form-control {
    background-color: transparent;
    border: 1px solid #dedede;
    box-shadow: none;
    height: 45px !important;
    color: #0c0c0c;
    height: 38px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-radius: 0;
}
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form #contact-submit:hover {
    border-color: #28abe3;
}
.contact-form #contact-submit {
    border: none;
    padding: 15px 0;
    width: 100%;
    margin: 0;
    background: #28abe3;
    color: #fff;
    border-radius: 0;
}
.contact-form textarea.form-control {
    padding: 10px;
    height: 120px !important;
    outline: none;
}

.contact-details .contact-short-info {
    margin-top: 15px;
}
.contact-details .contact-short-info li {
    margin-bottom: 6px;
}

.social-icon {
    margin-top: 20px;
}
.social-icon ul li {
    display: inline-block;
    margin-right: 10px;
}
.social-icon ul li a {
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #dedede;
    text-align: center;
}
.social-icon ul li a:hover {
    background: #28abe3;
    color: #fff;
    border: 1px solid #28abe3;
}
.social-icon ul li a:hover i {
    color: #fff;
}
.social-icon ul li a i {
    color: #55606a;
    display: inline-block;
    font-size: 20px;
    line-height: 50px;
    margin: 0;
}

.google-map {
    position: relative;
}
.google-map .map_canvas {
    height: 400px;
    color: white;
    width: 100%;
}

/*=================================================================
  Item counter section
==================================================================*/
.counters-item {
    padding-bottom: 30px;
    color: #444;
    position: relative;
}
.counters-item.kill-border:before {
    background: none;
}
.counters-item:before {
    background: #e5e5e5;
    content: "";
    margin-top: -27.5px;
    height: 55px;
    width: 1px;
    position: absolute;
    right: -15px;
    top: 50%;
}
.counters-item > div {
    margin: 6px 0;
}
.counters-item span {
    display: inline;
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
}
.counters-item i {
    font-size: 40px;
    display: inline-block;
    color: #28abe3;
}
.counters-item h3 {
    font-size: 18px;
    margin: 0;
    color: #666;
}

/*=================================================================
  Pricing section
==================================================================*/
.pricing-table {
    padding: 100px 0;
    padding-bottom: 70px;
    background: url("../images/pricing-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}
.pricing-table .title p {
    color: #fff;
}
.pricing-table:before {
    background: rgba(0, 0, 0, 0.62);
    position: absolute;
    z-index: 999;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.pricing-table .container {
    position: relative;
    z-index: 999;
}
.pricing-table .pricing-item {
    padding: 40px 55px 65px;
    background: #fff;
    margin-bottom: 30px;
}
.pricing-table .pricing-item a.btn-main {
    text-transform: uppercase;
    margin-top: 20px;
}
.pricing-table .pricing-item li {
    font-weight: 400;
    padding: 10px 0;
    color: #666;
}
.pricing-table .pricing-item li i {
    margin-right: 6px;
}
.pricing-table .price-title {
    padding: 30px 0 20px;
}
.pricing-table .price-title > h3 {
    font-weight: 700;
    margin: 0 0 5px;
    font-size: 15px;
    text-transform: uppercase;
}
.pricing-table .price-title > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 5px;
}
.pricing-table .price-title .value {
    color: #28abe3;
    font-size: 50px;
    padding: 10px 0;
}

/*=================================================================
  Portfolio section
==================================================================*/
.portfolio-filter {
    margin-bottom: 40px;
    text-align: center;
}
.portfolio-filter button {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 8px 20px;
    text-transform: uppercase;
    background: #28abe3;
    border: none;
    color: #fff;
    outline: none;
    margin: 6px 4px;
}
.portfolio-filter button.active {
    background: #28abe3;
    color: #fff;
    border-radius: 50px;
}

.portfolio-block {
    position: relative;
    margin-bottom: 30px;
}
.portfolio-block:before {
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
}
.portfolio-block:hover:before {
    opacity: 1;
}
.portfolio-block:hover .caption h4 {
    top: 45%;
}
.portfolio-block:hover .caption {
    opacity: 1;
    top: 55%;
}
.portfolio-block .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 9;
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.portfolio-block .caption h4 {
    font-size: 16px;
}
.portfolio-block .caption h4 a {
    color: #fff;
}
.portfolio-block .caption .search-icon {
    background: #28abe3;
    color: #fff;
    display: inline-block;
    height: 45px;
    width: 45px;
    font-size: 17px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 47px;
}

:root {
    --primary: #28abe3; /* Bootstrap 4 danger color */
    --primary-light: #f8f9fa;
    --primary-dark: #28abe3;
    --secondary: #6c757d;
    --secondary-light: #e2e3e5;
    --secondary-dark: #5a6268;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --dark: #343a40;
    --light: #f8f9fa;
    --bg-light: #f8f9fa;
    --text-dark: #343a40;
    --text-gray: #6c757d;
    --border-color: #dee2e6;
    --transition: all 0.3s ease;
}

.daftar-opd {
    padding: 0px 0 80px 0;
    padding-top: 80px;
}
.daftar-opd .container-fluid .carousel .carousel-inner .carousel-item {
    text-align: center;
}
.daftar-opd .container-fluid .carousel .carousel-inner .carousel-item .card {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0.75rem;
}
.daftar-opd
    .container-fluid
    .carousel
    .carousel-inner
    .carousel-item
    .card
    img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
.daftar-opd
    .container-fluid
    .carousel
    .carousel-inner
    .carousel-item
    .card
    .card-title {
    font-weight: bold;
    color: #29abe3;
}
.daftar-opd .container-fluid .carousel .carousel-indicators button {
    background-color: #29abe3;
}

.daftar-opd .container-fluid .filter-tab-area a {
    background-color: transparent;
    border-radius: 45px;
    color: #29abe3;
    border: 2px solid #29abe3;
    height: 44px;
    line-height: 41px;
    padding: 0 35px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.daftar-opd .container-fluid .filter-tab-area a:hover {
    color: #fff;
    background-color: #29abe3;
    border: 2px solid #29abe3;
}
.btn-outline-dark {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: bold;
}

/* agenda */

.agenda {
    padding-bottom: 60px;
    padding-top: 80px;
    background: #ffffff;
}

.agenda .content {
    border: 1px solid #dddddd;
}

/* Galery destinasi */

@media (max-width: 768px) {
    .destinasi .container-fluid .text-right {
        text-align: center !important;
        margin-bottom: 30px !important;
        margin-top: -10px !important;
    }

    .destinasi .container-fluid .title {
        text-align: center !important;
        justify-content: center !important;
        margin-top: -50px !important;
    }

    .destinasi {
        padding-top: 40px !important;
    }
}

.destinasi {
    padding: 20px 0;
    margin-top: 60px;
}

.destinasi .container-fluid .filter-tab-area a {
    background-color: transparent;
    border-radius: 45px;
    color: #29abe3;
    border: 2px solid #29abe3;
    height: 44px;
    line-height: 41px;
    padding: 0 35px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 14px;
}

.destinasi .container-fluid .filter-tab-area a:hover {
    color: #fff;
    background-color: #29abe3;
    border: 2px solid #29abe3;
}

.destination-wrapper a .destination-card .destination-title:hover {
    color: #28abe3;
}
.destination-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 15px;
    height: 100%;
}
.destination-card {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #4169e1;
    color: white;
    padding: 5px 15px;
    transform: rotate(45deg) translate(18px, -10px);
    transform-origin: top right;
    font-size: 12px;
    font-weight: bold;
    width: 120px;
    text-align: center;
}
.lightning-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffdb58;
    color: white;
    padding: 5px;
    border-radius: 0 0 0 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 20px;
    font-size: 20px;
}
.row-5px {
    margin-left: -5px;
    margin-right: -5px;
}
.row-5px > div {
    padding-left: 5px;
    padding-right: 5px;
}
.h-200 {
    height: 200px;
}

.h-410 {
    height: 410px;
}

@media (max-width: 768px) {
    .h-410 {
        height: 200px !important;
    }
}

.mb-10 {
    margin-bottom: 10px;
}

/* News Section */

@media (max-width: 768px) {
    .news-section .container-fluid .text-right {
        text-align: center !important;
        margin-bottom: 30px !important;
        margin-top: -10px !important;
    }

    .news-section .container-fluid .title {
        text-align: center !important;
        justify-content: center !important;
    }

    .news-section .container-fluid {
        padding: 0% 5% 0% 5% !important;
    }

    .swiper-wrapper {
        padding: 0 0 15px 0 !important;
    }

    .swiper-wrapper a {
        margin: 0 20px 0 0 !important;
    }
}

.news-section .container-fluid {
    padding: 0% 10% 0% 10%;
}

.news-card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card .badge {
    padding: 0.4rem 0.7rem;
    font-weight: 500;
    font-size: 0.75rem;
}

.news-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card .card-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.news-section {
    background: #fafafa;
    padding-top: 80px;
}

.news-section .container-fluid .filter-tab-area a {
    background-color: transparent;
    border-radius: 45px;
    color: #29abe3 !important;
    border: 2px solid #29abe3;
    height: 44px;
    line-height: 41px;
    font-weight: 600;
    padding: 0 35px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
}

.news-section .container-fluid .filter-tab-area a:hover {
    color: #ffff !important;
    background-color: #29abe3;
    border: 2px solid #29abe3;
}

.news-section .container-fluid .news-card .card-body a {
    color: #29abe3;
}

.news-section .container-fluid .news-card .card-body a:hover {
    color: #000;
}

.news-section .container-fluid .row .swiper-wrapper .active {
    color: #ffffff;
    background-color: #28abe3;
    font-weight: 600;
    font-family: Roboto, sans-serif;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
}

.news-section .container-fluid .row .col-md-8 .news-card-news {
    overflow: hidden;
    cursor: pointer;
}

.news-section .container-fluid .row .col-md-8 .news-card-news img {
    transition: transform 0.4s ease;
}

.news-section .container-fluid .row .col-md-8 .news-card-news:hover img {
    transform: scale(1.05);
}

.news-section .container-fluid .row .col-md-8 .news-card-news {
    border-radius: 0.75rem !important;
}

.news-section
    .container-fluid
    .row
    .col-md-8
    .news-card-news
    .position-relative
    img {
    border-radius: 0.75rem 0 0 0.75rem !important;
}

.news-section .container-fluid .row .col-md-8 .news-card-news .card-body a {
    color: #212529;
}

.news-section
    .container-fluid
    .row
    .col-md-8
    .news-card-news
    .card-body
    a:hover {
    color: #60ace3;
}

.news-section .container-fluid .row .col-md-4 .sidebar-box {
    border-radius: 0.75rem !important;
}

.news-section
    .container-fluid
    .row
    .col-md-4
    .sidebar-box
    .media
    .media-body
    strong {
    color: #212529;
}

.news-section
    .container-fluid
    .row
    .col-md-4
    .sidebar-box
    .media
    .media-body
    strong:hover {
    color: #60ace3 !important;
    transition: 1s ease;
}

.news-card-news img {
    max-height: 280px;
    object-fit: cover;
}
.bookmark-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #29abe3;
    color: white;
    padding: 6px;
    border-radius: 50%;
    font-size: 14px;
}
.news-card-news {
    position: relative;
    margin-bottom: 30px;
}
.sidebar-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 30px;
}
.top-news-item {
    font-size: 14px;
    margin-bottom: 15px;
}
.top-news-item span {
    background: #29abe3;
    color: white;
    padding: 2px 8px;
    border-radius: 50%;
    margin-right: 5px;
}

/* Announchment */
.announcement-page
    .announcement-page-detail
    .container-fluid
    .row
    .col-md-8
    .announcemen-card-announcemen {
    border-radius: 0.75rem !important;
}

.announcement-page
    .container-fluid
    .row
    .col-md-8
    .announcemen-card-announcemen
    .card-body
    a {
    color: #212529;
}

.announcement-page-detail
    .container-fluid
    .row
    .col-md-8
    .announcemen-card-announcemen {
    margin-top: 15px;
}

.announcement-page-detail
    .container-fluid
    .row
    .col-md-8
    .announcemen-card-announcemen
    .card-body
    a:hover {
    color: #60ace3;
}

.announcement-page-detail
    .container-fluid
    .row
    .col-md-4
    .sidebar-box
    .media
    .media-body
    strong {
    color: #212529;
}

.announcement-page-detail .container-fluid .row .col-md-4 .sidebar-box {
    border-radius: 0.75rem !important;
    margin-top: 15px !important;
}

.announcement-page-detail
    .container-fluid
    .row
    .col-md-4
    .sidebar-box
    .media
    .media-body
    strong:hover {
    color: #60ace3 !important;
    transition: 1s ease;
}

.swiper-wrapper {
    display: flex;
    overflow-x: auto; /* Penting agar scrollbar tetap ada secara fungsional */
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 15px 0;
    margin: -60px 0 5px 0;
    cursor: grab; /* Menunjukkan bahwa elemen bisa digeser */
    user-select: none; /* Mencegah teks terpilih saat menggeser */
    /* Opsional: Efek transisi saat cursor berubah */
    transition: cursor 0.2s ease-in-out;
}

.swiper-wrapper.active {
    cursor: grabbing; /* Kursor berubah saat digeser */
}

/* Opsional: Menyembunyikan scrollbar secara visual jika kamu tidak menginginkannya */
.swiper-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.swiper-wrapper a {
    margin: 0 60px 0 0;
}

.swiper-wrapper::-webkit-scrollbar {
    display: none; /* Webkit (Chrome, Safari, Opera) */
}

.swiper-slide {
    flex: 0 0 auto; /* Agar item tidak mengecil dan memiliki lebar otomatis */
    margin-right: 10px; /* Berikan jarak antar item */
}

.swiper-slide:last-child {
    margin-right: 0; /* Hilangkan margin kanan pada item terakhir */
}

.nav-link-custom {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    color: #6c757d;
    white-space: nowrap;
}

.nav-link-custom.active {
    background-color: #56ace3; /* Warna hijau seperti di gambar */
    color: white;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background-color: #56ace3; /* Warna ungu seperti pada gambar */
    border-color: #3f51b5;
    color: white;
    border-radius: 50%; /* Membuat lingkaran */
    width: 36px; /* Sesuaikan lebar */
    height: 36px; /* Sesuaikan tinggi */
    line-height: 36px; /* Membuat teks vertikal di tengah */
    text-align: center;
    padding: 0; /* Hapus padding default */
}

.pagination .page-item .page-link {
    color: #757575; /* Warna abu-abu untuk angka lain */
    border: none; /* Hilangkan border default */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    padding: 0;
    margin: 0 4px; /* Berikan sedikit jarak antar item */
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 0.25rem; /* Kembalikan border radius untuk Next dan Last */
    width: auto;
    height: auto;
    line-height: inherit;
    padding: 0.5rem 0.75rem;
}

.pagination .page-item.disabled .page-link {
    color: #bdbdbd; /* Warna abu-abu lebih muda untuk disabled */
    background-color: transparent;
}

.pagination {
    justify-content: center; /* Tengahkan pagination */
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
/* Quick Links */
.quick-link-card {
    transition: var(--transition);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-link-card .icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.quick-link-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quick-link-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.quick-link-card .link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.quick-link-card .link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.quick-link-card .link:hover {
    color: var(--primary-dark);
}

.quick-link-card .link:hover i {
    transform: translateX(3px);
}

/*=================================================================
  layanans section
==================================================================*/

@media (max-width: 768px) {
    .layanans {
        margin-bottom: 50px !important;
    }
}
.layanans {
    padding: 50px 0 0px 0;
    margin-bottom: 100px;
}
.layanans .service-block.color-bg i,
.layanans .service-block.color-bg h3,
.layanans .service-block.color-bg p {
    color: #fff;
}
.layanans .service-block .service-icon {
    margin-bottom: 30px !important;
    color: red !important;
}
.layanans .service-block i {
    font-size: 75px;
    color: #28abe3;
}
.layanans .service-block h3 {
    color: #333;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}
.layanans .service-block p {
    font-size: 14px;
    color: #666;
}

@media only screen and (max-width: 767px) {
    .layanans .container .filter-tab-area {
        margin-bottom: 20px;
    }
}

.layanans .container .filter-tab-area a {
    background-color: transparent;
    border-radius: 45px;
    color: #000;
    border: 2px solid #000;
    height: 44px;
    line-height: 41px;
    padding: 0 35px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.layanans .container .filter-tab-area a:hover {
    color: #fff;
    background-color: #29abe3;
    border: 2px solid #29abe3;
}

.layanans .container .no-gutters .col-lg-4 .service-block {
    border: 1px solid #dddddd;
    box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

/*====
  daftar-opd section
*/

.daftar-opd {
    background: #fafafa;
}

.daftar-opd .container .row .clients-logo-slider .owl-item .review-item {
    width: 370px;
    width: 350px;
    height: 150px;
    background-color: #fff;
    box-shadow: 3px 3px 60px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 50px;
}

/*=================================================================
  Services section
==================================================================*/
.services {
    padding: 100px 0 130px;
}
.services .service-block.color-bg {
    background: #28abe3;
    color: #fff;
}
.services .service-block.color-bg i,
.services .service-block.color-bg h3,
.services .service-block.color-bg p {
    color: #fff;
}
.services .service-block .service-icon {
    margin-bottom: 30px;
}
.services .service-block i {
    font-size: 75px;
    color: #28abe3;
}
.services .service-block h3 {
    color: #333;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}
.services .service-block p {
    font-size: 14px;
    color: #666;
}

/*=================================================================
  Services section 2
==================================================================*/
.service-2 .service-item {
    border: 1px solid #eee;
    margin-bottom: 30px;
    padding: 50px 20px;
    transition: all 0.3s ease 0s;
}
.service-2 .service-item:hover {
    box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
}
.service-2 .service-item:hover i {
    background: #fff;
    color: #28abe3;
}
.service-2 .service-item i {
    font-size: 30px;
    display: inline-block;
    background: #28abe3 none repeat scroll 0 0;
    border-radius: 30px;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
    color: #fff;
    height: 55px;
    line-height: 55px;
    margin-bottom: 20px;
    width: 55px;
    transition: all 0.3s ease 0s;
}

/*=================================================================
  Our skills
==================================================================*/
.team-skills .progress-block {
    margin-top: 40px;
}
.team-skills .progress-block span {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}
.team-skills .progress-block .progress {
    box-shadow: none;
    border-radius: 0;
    height: 10px;
}
.team-skills .progress-block .progress .progress-bar {
    background: #28abe3;
    box-shadow: none;
}

.clients-logo-slider {
    margin-top: 50px;
}

/*=================================================================
  Step section
==================================================================*/
.development-steps .step {
    padding: 80px 20px;
}
.development-steps .step h4 {
    font-size: 20px;
    font-weight: 600;
}
.development-steps .step h4 i {
    font-size: 72px;
    font-weight: 500;
    margin-right: 10px;
}
.development-steps .step p {
    color: #cccccc;
    font-size: 14px;
    line-height: 22px;
}
.development-steps .step-1 {
    background-color: #f2f6f8;
}
.development-steps .step-1 h4 {
    color: #212121;
}
.development-steps .step-1 p {
    color: #838383;
}
.development-steps .step-2 {
    background-color: #28abe3;
}
.development-steps .step-2 h4,
.development-steps .step-2 p {
    color: #fff;
}
.development-steps .step-3 {
    background: #198dbf;
}
.development-steps .step-3 h4,
.development-steps .step-3 p {
    color: #fff;
}
.development-steps .step-4 {
    background: #167da9;
}
.development-steps .step-4 h4,
.development-steps .step-4 p {
    color: #fff;
}

/*=================================================================
  Our Team
==================================================================*/
.team {
    padding: 100px 0;
    padding-bottom: 70px;
    background: #f6f6f6;
}
.team .team-member {
    background: #fff;
    margin-bottom: 30px;
}
.team .team-member .member-content {
    padding: 25px 0;
}
.team .team-member .member-content h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #333;
}
.team .team-member .member-content span {
    font-size: 14px;
    color: #555;
}
.team .team-member .member-content p {
    color: #777;
    margin-top: 10px;
    padding: 0 15px;
}
.team .member-photo {
    overflow: hidden;
    position: relative;
}
.team .member-photo:hover img {
    transform: scale(1.1);
}
.team .member-photo img {
    transition: all 0.6s ease 0s;
}
.team .member-photo .mask {
    background: rgba(40, 171, 227, 0.7);
    position: absolute;
    width: 100%;
    bottom: 0;
    top: auto;
    opacity: 0;
    filter: alpha(opacity=0);
    left: 0;
    right: 0;
    cursor: pointer;
    padding: 0;
    height: 80px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}
.team .member-photo .mask ul {
    text-align: center;
    position: relative;
    margin-top: 22px;
}
.team .member-photo .mask ul li {
    display: inline-block;
    margin-right: 7px;
}
.team .member-photo .mask ul li a {
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #fff;
    display: block;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
}
.team .member-photo .mask ul li a::hover {
    background-color: #6cb670;
    border: 1px solid transparent;
}
.team .member-photo:hover .mask {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0%);
}

/*=================================================================
  Testimonial section
==================================================================*/
.testimonial {
    padding-top: 100px;
    background: #28abe3;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 80px;
}
.testimonial:before {
    content: "";
    display: block;
    position: absolute;
    left: 0%;
    right: 0%;
    bottom: 0;
    height: 145px;
    background-color: rgb(255, 255, 255);
}
.testimonial .item i {
    font-size: 60px;
    color: #fff;
    margin-bottom: 50px;
    display: inline-block;
}
.testimonial .item .client-details {
    padding-bottom: 30px;
}
.testimonial .item .client-details p {
    font-size: 17px;
    color: #fff;
    font-weight: 200;
    padding: 0 10%;
}
.testimonial .item .client-thumb img {
    display: inline-block;
    border-radius: 100%;
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/*=================================================================
  Latest Posts
==================================================================*/
.blog {
    padding-bottom: 60px;
    padding-top: 80px;
    background: #fafafa;
}

.posts {
    padding-bottom: 40px;
}

.post-item {
    background: #fff;
    margin-bottom: 30px;
}
.post-item .content {
    padding: 20px;
}
.post-item .content h3 a {
    color: #000;
}
.post-item .content p {
    color: #757575;
    margin: 10px 0;
}
.post-item .content .btn-main {
    padding: 12px 25px;
    margin: 15px 0;
}

/* 8.2.1 Blog Details */
.blog-details h3 {
    font-size: 30px;
    color: #000;
    margin-bottom: 10px;
}

/* 8.2.2 Post Content */
.post-content ul {
    margin-bottom: 20px;
}
.post-content ul li {
    color: #aaa;
}
.post-content ul li a {
    color: #aaa;
}
.post-content p {
    margin-bottom: 30px;
}
.post-content blockquote {
    border-left: 2px solid #28abe3;
    padding: 40px 35px;
    margin-bottom: 30px;
    background: rgb(238, 238, 238);
}
.post-content-share {
    margin-bottom: 100px;
}
.post-content-share li a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    border: 1px solid #ddd;
    text-align: center;
    background: #fff;
    transition: 0.3s ease;
    margin-right: 10px;
    color: #000;
    display: inline-block;
}
.post-content-share li a:hover {
    background: #28abe3;
    border-color: #28abe3;
    color: #fff;
}

/* 8.2.3 Comment List */
.comment-list {
    padding-left: 0;
    margin-bottom: 70px;
}
.comment-list-item {
    padding: 25px 0;
    position: relative;
    display: flex;
    border-bottom: 1px solid #ddd;
}
.comment-list-item:last-child {
    border: 0;
}
.comment-list-item-image {
    margin-right: 20px;
}
.comment-list-item-content h5 {
    color: #000;
    margin-bottom: 5px;
}
.comment-list-item-content h6 {
    color: #000;
    margin-bottom: 10px;
}
.comment-list-item-content p {
    margin-bottom: 5px;
}
.comment-list-item .comment-btn {
    position: absolute;
    top: 25px;
    right: 0;
    background: #fff;
    padding: 10px 30px;
    border: 1px solid #ddd;
    text-transform: capitalize;
    color: #000;
    font-size: 15px;
}
@media (max-width: 575px) {
    .comment-list-item .comment-btn {
        position: unset;
        margin-top: 15px;
        display: inline-block;
    }
}
.comment-list-item .comment-btn:hover {
    background: #28abe3;
    color: #fff;
}

/* 8.2.4 Comment Form */
.comment-form {
    margin-top: 40px;
}
.comment-form .form-control {
    background-color: transparent;
    border: 1px solid #dedede;
    box-shadow: none;
    height: 45px !important;
    color: #0c0c0c;
    height: 38px;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 20px;
}
.comment-form textarea.form-control {
    height: 200px !important;
}
.comment-form .btn-primary {
    background: #28abe3;
    border-radius: 0;
    padding: 10px 20px;
    border: 0;
}

/* 8.2.5 Widget Style */
.widget {
    margin-bottom: 30px;
}
.widget h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.widget-search {
    position: relative;
}
.widget-search .form-control {
    border: 1px solid #dedede;
    border-radius: 0;
    height: 50px;
}
.widget-search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: #28abe3;
    border: 0;
}
.widget-search-btn i {
    color: #fff;
}
.widget-categories-list {
    padding-left: 0px;
}
.widget-categories-list li {
    border-bottom: 1px solid #ddd;
}
.widget-categories-list li:last-child {
    border: 0;
}
.widget-categories-list li a {
    display: block;
    padding: 15px 0;
    color: #000;
    font-size: 15px;
    transition: 0.3s ease;
}
.widget-categories-list li a i {
    font-size: 10px;
    margin-right: 10px;
}
.widget-categories-list li a:hover {
    background: #28abe3;
    color: #fff;
    padding-left: 20px;
}
.widget-post-list {
    padding-left: 0;
}
.widget-post-list-item {
    padding: 15px 0;
    display: flex;
}
.widget-post-image {
    margin-right: 10px;
    height: 90px;
    width: 130px;
    overflow: hidden;
}
.widget-post-image img {
    height: 90px;
    width: auto;
}
.widget-post-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: 0.3s ease;
    color: #000;
}
.widget-post-content h5:hover {
    color: #28abe3;
}

/*=================================================================
  Single Blog Page
==================================================================*/
#blog-banner {
    padding-bottom: 100px;
    padding-top: 150px;
}

#blog-page {
    margin: 0 0 40px;
}

.post-meta {
    font-size: 13px;
    margin: 20px 0 0;
    padding: 0 20px 10px;
}
.post-meta a {
    color: #28abe3;
}
.post-meta > span {
    color: #666;
    border-right: 1px solid #dedede;
    display: inline-block;
    font-size: 13px;
    margin: 10px 10px 0 0;
    padding-right: 10px;
}
.post-meta > span:last-child {
    border-right: 0;
}
.post-meta > span i {
    margin-right: 5px;
}

.post-excerpt {
    padding: 0 20px;
    margin-bottom: 60px;
}
.post-excerpt h3 a {
    color: #000;
}
.post-excerpt blockquote {
    line-height: 22px;
    margin: 20px 0;
    font-size: 16px;
}

.single-blog {
    background-color: #fff;
    margin-bottom: 50px;
    padding: 20px;
}

.blog-subtitle {
    font-size: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.next-prev {
    border-bottom: 1px solid #dedede;
    border-top: 1px solid #dedede;
    margin: 20px 0;
    padding: 25px 0;
}
.next-prev a {
    color: #000;
}
.next-prev a:hover {
    color: #28abe3;
}
.next-prev .prev-post i {
    margin-right: 10px;
}
.next-prev .next-post i {
    margin-left: 10px;
}

.social-profile ul li {
    margin: 0 10px 0 0;
    display: inline-block;
}
.social-profile ul li a {
    color: #4e595f;
    display: block;
    font-size: 16px;
}
.social-profile ul li a i:hover {
    color: #28abe3;
}

.comments-section {
    margin-top: 35px;
}

.author-about {
    margin-top: 40px;
}

.post-author {
    margin-right: 20px;
}

.post-author > img {
    border: 1px solid #dedede;
    max-width: 120px;
    padding: 5px;
    width: 100%;
}

.comment-list ul {
    margin-top: 20px;
}
.comment-list ul li {
    margin-bottom: 20px;
}

.comment-wrap {
    border: 1px solid #dedede;
    border-radius: 1px;
    margin-left: 20px;
    padding: 10px;
    position: relative;
}
.comment-wrap .author-avatar {
    margin-right: 10px;
}
.comment-wrap .media .media-heading {
    font-size: 14px;
    margin-bottom: 8px;
}
.comment-wrap .media .media-heading a {
    color: #28abe3;
    font-size: 13px;
}
.comment-wrap .media .comment-meta {
    font-size: 12px;
    color: #888;
}
.comment-wrap .media p {
    margin-top: 15px;
}

.comment-reply-form {
    margin-top: 80px;
}
.comment-reply-form input,
.comment-reply-form textarea {
    height: 35px;
    border-radius: 0;
    box-shadow: none;
}
.comment-reply-form input:focus,
.comment-reply-form textarea:focus {
    box-shadow: none;
    border: 1px solid #28abe3;
}
.comment-reply-form textarea,
.comment-reply-form .btn-main {
    height: auto;
}

/*=================================================================
  Footer section
==================================================================*/
.top-footer {
    background-color: #222222;
    border-top: 1px solid #404040;
    padding: 100px 0 80px;
}
.top-footer h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.top-footer p {
    font-size: 13px;
    line-height: 25px;
    color: #bdbdbd;
    font-weight: 300;
    letter-spacing: 1px;
    padding-right: 20px;
}
.top-footer li a {
    font-size: 13px;
    line-height: 30px;
    color: #bdbdbd;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: color 0.3s;
    font-family: "Poppins", sans-serif;
    display: block;
}
.top-footer li a:hover {
    color: #28abe3;
}

.footer-bottom {
    text-align: start;
    background-color: #1b1b1b;
    border-top: 1px solid #2c2c2c;
    padding: 30px 0;
    background-color: #222222 !important;
}
.footer-bottom h5 {
    font-size: 12px;
    line-height: 1;
    color: #888888;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-top: 7px;
    margin-bottom: 3px;
}
.footer-bottom h6 {
    font-size: 11px;
    line-height: 15px;
    color: #888888;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.footer-bottom a {
    color: #28abe3;
}

.page-404 {
    display: flex;
    align-items: center;
    height: 100vh;
}
.page-404 h1 {
    font-size: 200px;
}

/*============================================================
	For Small Desktop
==============================================================*/
@media (min-width: 700px) and (max-width: 1090px) {
    .counters-item:before {
        display: none;
    }
}
@media (min-width: 980px) and (max-width: 1150px) {
    /* parallax section */
    .parallax-section {
        background-position: center top !important;
    }
    /* about us */
    .feature-desc h3 {
        margin-top: 0;
    }
    /* our team */
    .team-mate {
        margin-bottom: 30px;
    }
    .mask ul {
        top: 85px;
    }
    .mask ul li {
        margin: 0 5px;
    }
    .team-mate > h4 {
        margin-bottom: 10px;
    }
    .team-mate img {
        margin: 0 auto;
    }
    .member-info ul li {
        margin-right: 10px;
    }
    /* testimonial */
    .client-info {
        width: 55%;
    }
    /* blog page */
    .tab-post-nav li a {
        padding: 15px 8px;
    }
    /* single blog page */
    .author-bio h5 {
        margin-left: 70px;
    }
}
/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/
@media (min-width: 768px) and (max-width: 979px) {
    .counters-item:before {
        display: none;
    }
    /* parallax section */
    .parallax-section {
        background-position: center top !important;
    }
    /* navigation */
    .navbar-inverse .navbar-nav li a {
        padding: 20px 10px;
    }
    /* about us */
    .wrap-about {
        margin: 0 0 75px;
    }
    .about-content {
        margin: 0 auto;
        width: 60%;
    }
    /* fun facts */
    #counter {
        padding-bottom: 50px;
    }
    .counters-item {
        margin-bottom: 30px;
    }
    /* our team */
    .team-mate {
        margin: 0 auto 30px;
        width: 280px;
    }
    /* our skills */
    .skill-chart {
        margin: 0 auto 40px;
        width: 300px;
    }
    .skill-chart {
        margin: 0 auto 40px;
        width: 90%;
    }
    .skill-chart > h3 {
        margin: 15px 0;
    }
    /* pricing table */
    .pricing {
        margin: 0 auto 30px;
        width: 300px;
    }
    /* testimonial */
    .client-info {
        width: 75%;
    }
    /* latest posts */
    .note {
        margin-bottom: 30px;
    }
    /* blog page */
    .tab-post-nav li a {
        padding: 10px;
    }
    /* singla blog page */
    .author-social {
        margin-left: 0;
    }
}
/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/
@media only screen and (max-width: 767px) {
    .counters-item:before {
        display: none;
    }
    .clients-logo-slider {
        text-align: center;
    }
    /* parallax section */
    .parallax-section {
        background-position: center top !important;
    }
    /* h1 font size home slider */
    h1 {
        font-size: 30px;
    }
    .wrap-about {
        margin: 0 auto 80px;
        width: 85%;
    }
    .feature-desc a {
        margin: 5px 5px 5px 0;
    }
    /* fun facts */
    /* services */
    #services .title {
        padding-bottom: 60px;
    }
    /* our skills */
    .skill-chart {
        margin: 0 auto 40px;
        width: 280px;
    }
    /* our team */
    .team-mate {
        margin: 0 auto 31px;
        width: 280px;
    }
    .team-mate img {
        margin: 0 auto;
    }
    .member-info ul {
        text-align: center;
        margin-bottom: 10px;
    }
    /* pricing table */
    .pricing {
        margin: 0 auto 20px;
        width: 280px;
    }
    /* portfolio */
    .portfolio-filter ul li a {
        margin: 0 10px 10px 0;
        padding: 5px 10px;
    }
    /* testimonials */
    .sub-title h3 {
        font-size: 18px;
    }
    .client-info {
        width: 100%;
    }
    /* latest posts */
    .note {
        margin-bottom: 30px;
    }
    .note .excerpt {
        padding: 0 20px 20px;
    }
    .all-post {
        margin: 20px 0 30px;
    }
    /* contact */
    .contact-info {
        margin: 0 0 30px;
    }
    #map-canvas {
        height: 250px;
    }
    /* footer */
    .social-icon ul li,
    .social-icon ul li:first-child {
        margin: 15px;
    }
    .social-icon ul li a {
        width: 50px;
        height: 50px;
    }
    .social-icon ul li a i {
        font-size: 24px;
        line-height: 50px;
    }
    .blog-title h1 {
        font-size: 28px;
    }
    /* blog page */
    #blog-page {
        margin: 0;
    }
    #blog-posts {
        margin: 0 0 40px;
    }
    .post-excerpt h3 {
        font-size: 20px;
    }
    .post-pagination ul li {
        margin: 0 10px 10px 0;
    }
    .tab-post-nav li a {
        padding: 8px 5px;
    }
    /* single blog page */
    .author-social {
        margin-left: 0;
    }
    .author-avatar {
        margin-right: 10px;
    }
}
/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .title h2 {
        font-size: 32px;
    }
    .counter .counter-title h2 {
        font-size: 35px;
    }
    /* about us */
    .wrap-about {
        margin: 0 auto 75px;
        width: 70%;
    }
    /* our team */
    .team-mate {
        margin: 0 auto 30px;
        width: 280px;
    }
    .team-mate img {
        margin: 0 auto;
    }
    /* portfolio */
    .og-grid li {
        width: 245px;
    }
    /* skills */
    .skill-chart {
        margin: 0 auto 40px;
        width: 300px;
    }
    /* pricing table */
    .pricing {
        margin: 0 auto 30px;
        width: 350px;
    }
    /* testimonials */
    .client-info {
        width: 74%;
    }
    /* latest posts */
    .note {
        margin: 0 auto 30px;
        width: 75%;
    }
    /* contact */
    .contact-info {
        width: 100%;
    }
    /* blog page */
    .tab-post-nav li a {
        padding: 10px 15px;
    }
}
/*# sourceMappingURL=style.css.map */
