@import url('//fonts.googleapis.com/css2?family=Anaheim&family=Inter:wght@400;500;600;700&display=swap');
@import url(unicons.css);

body, h1, h2, h3, h4, h5, h6, .menu-link {
    font-family: 'Inter', sans-serif;
}

.limit-1-line-text {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.limit-2-line-text {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.limit-3-line-text {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a {
    transition: .15s all ease;
}

a:hover {
    color: #0092de !important;
}

.btn-primary {
    background-color: #0092de;
}

#gotoTop:hover {
    background-color: #0092de;
}

.w-fit-content {
    width: fit-content;
}

.button {
    background-color: #0092de;
    white-space: normal;
}

.button-reveal:hover {
    border-color: #fff;
    color: #fff !important;
}

header.sticky-header .top-search-form .form-control::placeholder,
header:not(.header-beranda) .top-search-form .form-control::placeholder {
    color: #555;
    opacity: 1;
    text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #fff;
}

.breadcrumb-section {
    padding: 7rem 0 !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-section::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(3, 77, 162, 0.75);
}

.flex-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.flex-heading h2 {
    position: relative;
}

.flex-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 5px;
    background-color: #0092de;
}

.default-section p {
    margin-bottom: 12px;
    line-height: normal !important;
}

.default-section .title-section {
    font-size: 34px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
    line-height: 4rem;
}

.default-section .title-section h1 {
    font-weight: 600;
}

.default-section .title-section::after {
    content: "";
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    position: absolute;
    background-color: #0092de;
}

.tusi-section .title-section {
    position: relative;
    width: fit-content;
}

.tusi-section .title-section::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0092de;
}

.tusi-section ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}

.tusi-section ul li::before {
    content: "\e971";
    font-family: Unicons;
    position: absolute;
    top: 2px;
    left: 0;
    color: #fff;
    line-height: 1;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0092de;
}

.slider-caption {
    max-width: 850px;
}

.slider-caption.slider-caption-right {
    text-align: right;
}

.slider-caption.slider-caption-center a {
    display: block;
    margin: 0 auto;
}

.slider-caption.slider-caption-right a {
    display: block;
    margin-left: auto;
}

.swiper-slide-bg {
    object-fit: cover;
    object-position: top;
}

.img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: rgba(0, 95, 163, 0.5);
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.menu-container > .menu-item > .menu-link {
    padding: 20px 15px !important;
    text-transform: uppercase;
}

#header-wrap {
    background-color: transparent;
}

.card-layanan {
    color: #0092de;
}

.card-layanan .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-layanan .card-body i {
    font-size: 40px;
    margin-bottom: 15px;
}

.card-layanan .card-body span {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}

.list-agenda .agenda {
    background-color: #f9f9f9;
    padding: 15px;
    display: flex;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.list-agenda .agenda .date {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    background-color: #393939;
    color: #fff;
    border-bottom-left-radius: 15px;
}

a.card {
    transition: all .2s ease;
}

a.card:hover {
    transform: translateY(-10px);
}

.majalah-wrap a {
    position: relative;
}

.majalah-wrap a::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.35);
}

.majalah-wrap a::after {
    content: "Klik disini untuk melihat selengkapnya";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all .2s ease-in-out;
    transform: translate(-50%, -50%);
}

.majalah-wrap a:hover::before,
.majalah-wrap a:hover::after {
    opacity: 1;
}

.majalah-wrap .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    color: #fff;
}

.card-karya .img-karya {
    padding: 10px;
    background-color: #3e71bd;
}

.single-specialities-item.bg-color-1 {
    background-color: #1aa5bd;
}

.single-specialities-item.bg-color-1 .icon {
    background-color: #297987;
}

.single-specialities-item.bg-color-2 {
    background-color: #e74c3c;
}

.single-specialities-item.bg-color-2 .icon {
    background-color: #9b2c21;
}

.single-specialities-item.bg-color-3 {
    background-color: #1abc4d;
}

.single-specialities-item.bg-color-3 .icon {
    background-color: #118937;
}

.single-specialities-item {
    overflow: hidden;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.single-specialities-item .content .title {
    /* color: #fff; */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-specialities-item .content .description {
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
}

.single-specialities-item .icon {
    width: 150px;
    height: 150px;
    background-color: #25a3d4;
    padding: 45px 15px 20px 50px;
    border-radius: 50%;
    color: #fff;
    position: relative;
    margin-left: -60px;
    margin-top: -70px
}

.single-specialities-item .icon img {
    max-width: 70px;
}

.single-specialities-item .content {
    text-align: center;
    padding-top: 20px;
}

.card-kab {
    height: 150px;
    overflow: hidden;
    border-radius: 15px;
}

.card-kab .title {
    font-size: 28px;
    max-width: 300px;
    position: relative;
}

.card-kab .icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
}

.card-kab .icon img {
    max-width: 150px;
}

#chart-map {
    width: 100%;
    height: 500px;
}

.link-unit {
    position: relative;
    height: 300px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.link-unit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.link-unit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.link-unit span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.link-unit .card-body {
    position: absolute;
    /* bottom: 0; */
    top: 0;
    left: 0;
    z-index: 2;
}

.card-unit {
    border: 0;
    text-align: center;
}

.more-link {
    color: #0092de;
    border-bottom-color: #0092de;
}

.search-wrap .form-control {
    font-size: .85rem;
}

.search-wrap .form-control:focus {
    border-color: #0092de;
}

.related-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.entry-title.title-sm h2 {
    max-width: calc(100% - 150px);
}

.detail-map a,
.detail-map span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.card-rounded {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 100%;
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #dcdcdc;
    height: 100%;

}

.card-rounded:hover {
    box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.15);
}

.card-rounded .title {
    font-size: 20px;
    margin-bottom: 5px;
}

.card-rounded .img-round {
    padding: 15px;
    width: fit-content;
    border-radius: 15px;
    margin: 0 auto 15px;
}

.card-rounded .img-round img {
    max-width: 50px;
}

.footer-logo {
    max-width: 500px;
    margin-bottom: 15px;
}

.btn-download {
    background-color: #0092de;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    display: inline-block;
}

.btn-download:hover {
    color: #fff !important;
    transform: translateY(-3px);
}

.nav-jobseek {
    border: none;
    margin-bottom: 15px;
}

.nav-jobseek .nav-link {
    color: #000;
    display: flex;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-direction: column;
    border: 1px solid #dcdcdc;
}

.nav-jobseek .nav-link i {
    font-size: 40px;
    margin-bottom: 10px;
}

.nav-jobseek .nav-link span {
    min-height: 50px;
}

.nav-jobseek .nav-link:hover,
.nav-jobseek .nav-link.active {
    color: #fff !important;
    border: 1px solid #dcdcdc;
    background-color: #0092de;
}

.card-jobseek {
    color: #000;
    border-radius: 10px;
}

.card-jobseek:hover {
    background-color: #f4f4f4;
}

.card-jobseek .job-head {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-jobseek .job-role {
    padding: 5px 15px;
    line-height: 1;
    font-size: 14px;
    color: #0092de;
    border-radius: 5px;
    border: 1px solid #0092de;
    background-color: #ecf8ff;
    display: inline-block;
    margin-right: 10px;
}

.card-jobseek .job-head .head-img {
    width: 100%;
    max-width: 60px;
    border-radius: 10px;
}

.card-jobseek .job-head .title h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-jobseek .job-head .title p {
    color: #a9a8ab;
    font-size: 14px;
    margin-bottom: 0;
}

.grid-filter li a:hover,
.grid-filter li.activeFilter a {
    color: #fff !important;
    background-color: #0092de;
}

.berita-portfolio .portfolio-item h4 a {
    color: #0092de;
}

.berita-portfolio .portfolio-item h4 a:hover,
.berita-portfolio .portfolio-item h4 a:focus {
    color: #0071ad !important;
}

.berita-portfolio .portfolio-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.berita-portfolio .portfolio-item .btn-link {
    font-size: 14px;

}

.berita-portfolio .portfolio-item .related-image img {
    height: 200px;
}

.running-text {
    color: #fff;
    padding: 16px;
    margin-bottom: -7px;
    background-color: #0071ad;
}

.grid-filter li a {
    margin: 0;
    border: none;
}

.grid-filter li.activeFilter a {
    font-weight: 400;
    padding: 10px 20px;
}

.karya-portfolio .bg-overlay-content .content {
    position: absolute;
    left: 0;
    font-size: 14px;
    bottom: 20px;
    border-radius: 0 5px 5px 0;
    color: #000;
    width: 250px;
    padding: 5px 10px;
    line-height: 2;
    background-color: #fff;
}

.list-announce {
    list-style: none;
}

.list-announce .title {
    font-size: 18px;
    font-weight: 600;
    color: #0092de;
    margin-bottom: 10px;
}

.list-announce .desc {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5 !important;
}

.pengumuman-card img {
    height: 280px !important;
    object-fit: cover;
}

.input-radio::before {
    transition: .2s all ease-in-out;
    border-color: #0092de;
}

.radio-style:checked + .input-radio::before {
    background-color: #0092de;
}

@media (min-width: 1600px) {
    .slider-caption h2 {
        font-size: 48px;
    }
}

@media (max-width: 1400px) {
    .slider-caption h2 {
        font-size: 36px;
    }

    .slider-caption p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .header-beranda:not(.sticky-header) .menu-container > .menu-item > .menu-link:hover {
        color: #fff !important;
    }

    .header-beranda {
        position: absolute !important;
    }

    .header-beranda:not(.sticky-header) .header-misc-icon > a,
    .header-beranda:not(.sticky-header) .top-search-form input,
    .header-beranda:not(.sticky-header) .menu-container > .menu-item > .menu-link {
        color: #fff;
    }

    .menu-item .menu-link:hover {
        text-decoration: underline !important;
    }

    .header .logo-light,
    .header-beranda.sticky-header .logo-light,
    .header-beranda:not(.sticky-header) .logo-dark {
        display: none !important;
    }

    .menu-button:hover > .mega-menu-content,
    .menu-button:hover > .sub-menu-container {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        display: block;
        z-index: 399;
        pointer-events: auto;
        transition: opacity .3s ease, margin .25s ease;
    }

    .top-search-form input::placeholder {
        color: #fff;
        font-weight: 600;
    }

    #logo img {
        max-height: 62px;
    }

    .col-lg-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (max-width: 992px) {
    .header-beranda .logo-light {
        display: none !important;
    }
}

@media (min-width: 768px) {
    #logo img {
        max-height: 62px;
    }

    .map-upt-section .detail-map {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1050;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, .125);
        background-color: #fff;
        max-width: 350px;
    }
}

@media screen and (max-width: 768px) {
    #logo .logo-light {
        display: none;
    }

    .card-rounded {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    #logo img {
        max-width: 40px;
        max-height: 40px;
    }

    .footer-logo {
        max-width: 300px;
    }

    .map-upt-section #chart-map {
        margin-bottom: 15px;
    }
}