:root{
    --mainColor: #0092de;
    --secondaryColor: #005472;
    --successColor: #17b46b;
    --linearColor-1: linear-gradient(to right, #016588 50%, #05DEAF 100%);
    --linearColor-2: linear-gradient(to right, #00688C, #06E4B1, #005A8C);
    --colorDark: #353535;
    --colorWhite: #FFFFFF;
    --colorGrey: #cacaca;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    width: 100%;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: var(--mainColor) !important;
    cursor: pointer;
}

/* Background Custom */
.bg-transparent{
    background: transparent;
}

.bg-grey{
    background: var(--colorGrey) !important;
}

.bg-gradient2{
    background: linear-gradient(to right, #0092de, #4a92ff);
}

.bg-overlay{
    background: #e9e9e9ab;
    backdrop-filter: blur(2px);
}

.bg-main-light{
    background: #ddeaff;
}

/* Button Custom */
.btn{
    border: none;
    outline: none;
    border-radius: 10px;
}

.btn-primary-cst,
.btn-primary{
    background-color: var(--mainColor) !important;
    color: var(--colorWhite) !important;
}

.btn-primary-cst:hover,
.btn-primary:hover{
    background-color: #025683 !important;
}

.btn-outline-primary{
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
}

.btn-outline-primary:hover{
    border: 1px solid var(--mainColor);
    background: var(--mainColor);
    color: var(--colorWhite);
}

.btn-outline-success{
    border: 1px solid var(--successColor);
    color: var(--successColor) !important;
}

.btn-outline-success:hover{
    border: 1px solid var(--successColor);
    background: var(--successColor);
    color: var(--colorWhite) !important;
}

.btn_tipe_responden{
    flex: 1 0 25%;
    margin-bottom: 16px;
}

/* Input */
.form-control:focus{
    box-shadow: 0 0 3px var(--mainColor);
    /* border: 1px solid var(--mainColor); */
}

.select2-container{
    width: 100% !important;
}

.select2{
    height: 38px;
}

.select2-dropdown{
    border-radius: 0 0 10px 10px;
}

.select2-results__options li:last-child{
    border-radius: 0 0 10px 10px;
}

.select2-container--default .select2-selection--single{
    height: 38px;
    border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    height: 38px;
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 38px;
}

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

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

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

.v-middle{
    vertical-align: middle;
}

.pointer-none{
    pointer-events: none;
}

/* Text Color Custom */
.text-primary-cst,
.text-primary{
    color: var(--mainColor) !important;
}

/* Font Size */
.fs-12{
    font-size: 12px !important;
}
.fs-14{
    font-size: 14px !important;
}
.fs-16{
    font-size: 16px !important;
}
.fs-18{
    font-size: 18px !important;
}
.fs-20{
    font-size: 20px !important;
}
.fs-22{
    font-size: 22px !important;
}
.fs-24{
    font-size: 24px !important;
}
.fs-26{
    font-size: 26px !important;
}
.fs-28{
    font-size: 28px !important;
}
.fs-30{
    font-size: 30px !important;
}
.fs-32{
    font-size: 32px !important;
}
.fs-34{
    font-size: 34px !important;
}
.fs-36{
    font-size: 36px !important;
}
.fs-38{
    font-size: 38px !important;
}
.fs-40{
    font-size: 40px !important;
}
.fs-42{
    font-size: 42px !important;
}
.fs-44{
    font-size: 44px !important;
}
.fs-48{
    font-size: 48px !important;
}
.fs-50{
    font-size: 50px !important;
}
.fs-52{
    font-size: 52px !important;
}

/* Global */
.h-90{
    height: 90% !important;
}
.h-80{
    height: 80% !important;
}
.h-70{
    height: 70% !important;
}
.border-main{
    border: 2px solid var(--mainColor);
}

/* Card */
.card{
    transition: .4s;
    /* min-height: 150px; */
    height: 100%;
    border-radius: 16px;
    /* border: 1px solid #ebebeb; */
    border: 1px solid transparent;
    background: 
      linear-gradient(to right, white, white), 
      linear-gradient(to right, #0092de, #015886);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

img.card-img-top{
    object-fit: cover;
    height: 100%;
}

.border-none{
    border: none !important;
}

.card:hover{
    box-shadow: 3px 3px 10px #1313132a;
}

.card-hover-1:hover{
    box-shadow: 0 0 10px #00000038;
}

/* Accordion */
.accordion{
    border-radius: 12px;
}

.accordion-item{
    border: none;
    box-shadow: 3px 3px 15px #6d6a6a1a;
    margin: 12px;
    border-radius: 12px !important;
}

.accordion-item .accordion-button{
    border-radius: 12px !important;
}

.accordion-item .accordion-button{
    border: none;
}

.accordion-button:not(.collapsed){
    color: var(--mainColor);
}

.accordion-button:focus{
    box-shadow: none;
    border-color: var(--mainColor) !important;
}

/* Navtab */
.nav-line{
    border-right: 1px solid #ddd;
}

.nav-line .nav-link{
    background: transparent;
    border: none;
    outline: none;
    position: relative;
    text-align: left;
    color: #6c757d;
    font-weight: 400;
    padding: 12px 24px;
}

.nav-link.active{
    font-weight: 700;
    color: var(--mainColor);
}

.nav-line .nav-link.active::after{
    content: '';
    position: absolute;
    left: calc(100% - 1.5px);
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--mainColor);
}

/* Data Table */
.table.table-striped thead tr:first-child{
    background-color: var(--mainColor);
}

.table.table-striped thead tr th:first-child{
    border-radius: 8px 0 0 8px;
}

.table.table-striped thead tr th:last-child{
    border-radius: 0 8px 8px 0;
}

.table.table-striped thead tr th{
    color: var(--colorWhite);
}

.pagination .page-item:not(.disabled) .page-link{
    color: var(--mainColor) !important;
}

.pagination .page-item.active .page-link{
    background: var(--mainColor);
    color: var(--colorWhite) !important;
    box-shadow: none;
}

/* Navbar */
.navbar{
    transition-delay: .1s;
    z-index: 30;
    transition: .4s;
}

.navbar-fixed{
    background-color: var(--colorWhite);
    box-shadow: 0 3px 10px #0000001e;
}

.navbar-fixed .navbar-collapse .navbar-nav .nav-link{
    color: var(--mainColor) !important;
}

.navbar-fixed .nav-link::before,
.dropdown-item::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--mainColor) !important;
    transform-origin: center;
    transform: scale(0);
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-fixed .nav-link.active::before,
.navbar-fixed .nav-link:hover::before,
.navbar-fixed .nav-link:focus::before{
    transform: scale(1);
}

.navbar-nav{
    gap: 8px;
}

.nav-link{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: normal !important;
}

.navbar .nav-link::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--colorWhite);
    transform-origin: center;
    transform: scale(0);
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar .nav-link,
.navbar .nav-link.active{
    font-weight: 700;
    color: var(--colorWhite) !important;
    position: relative;
}

.nav-link.active::before,
.nav-link:hover::before,
.nav-link:focus::before{
    transform: scale(1);
}

.dropdown-menu{
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: height .4s ease-in-out;
    border-radius: 8px;
    border: none;
    box-shadow: 3px 3px 10px #0000001e;
    overflow: hidden;
    min-width: 300px;
}

.dropdown-menu[data-bs-popper]{
    margin-top: 12px;
}

.dropdown-item{
    padding: 12px 24px;
    text-wrap: wrap;
    -webkit-text-wrap: wrap;
    position: relative;
    background: none !important;
    transition: .4s;
    color: var(--colorDark) !important;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover{
    transform: translateX(5px);
}

.dropdown-item::before{
    width: 90%;
    margin: 0 auto;
}

.dropdown-item:hover::before{
    transform: scale(1);
}

.dropdown-menu.show{
    pointer-events: auto;
    transition: height .4s ease-in-out;
    opacity: 1;
}

.btn.faq{
    border-radius: 10px;
}

button.navbar-toggler{
    outline: none;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 50px;
    height: auto;
    min-height: 30px;
}

button.navbar-toggler:where(:focus, :active, :hover){
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

button.navbar-toggler span.bar{
    width: 25px;
    height: 3px;
    background: var(--mainColor);
    display: block;
    position: absolute;
    transition: .4s;
    transform: rotate(0);
    z-index: 10;
}

button.navbar-toggler span.bar:first-child{
    top: 5px;
    transform-origin: right;
    position: absolute;
}

button.navbar-toggler[aria-expanded="true"] span.bar:first-child{
    transform: rotate(-42deg);
}

button.navbar-toggler[aria-expanded="true"] span.bar:nth-child(2){
    transform: scale(0);
}

button.navbar-toggler span.bar:last-child{
    bottom: 5px;
    position: absolute;
}

button.navbar-toggler[aria-expanded="true"] span.bar:last-child{
    transform: rotate(42deg);
    transform-origin: right;
}

/* Hero */
.bg-hero{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding-top: 86px;
}

.bg-hero::before{
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, #c9c9c9d8 13%, #001b246e 100%); */
    background-color: #000000b4;
    z-index: -1;
    pointer-events: none;
}

.bg-breadcrumb{
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Breadcrumb */
.breadcrumb-item{
    color: var(--colorWhite);
}

.breadcrumb-item a{
    color: var(--mainColor);
}

.breadcrumb-item.active{
    color: var(--colorWhite);
}

.deskripsi-hero{
    margin-top: 30px;
}

.layanan {
    width: 100%;
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}
  
.layanan .item {
    border: 2px solid transparent;
    background: 
      linear-gradient(to right, white, white), 
      linear-gradient(to right, #0092de, #015886);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    position: relative;
    margin-right: -2px;
    transition: 0.4s;
    overflow: hidden;
}

.layanan .item .icon-box{
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0090de1f;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -20px;
    right: -20px;
    opacity: .5;
    z-index: 1;
}

.layanan .item .icon-box i{
    color: var(--mainColor);
    font-size: 36px;
}

.layanan .item .deskripsi{
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.layanan .item .deskripsi .title{
    color: #000;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

/* Swiper Custom */
.swiper.bgSwiper{
    height: 100vh;
}

.bgSwiper .swiper-slide{
    display: flex;
    width: 100% !important;
    height: 100%;
    justify-content: center;
    flex-direction: column;
}

.swiper-button-next,
.swiper-button-prev{
    padding: 20px;
    background: #00000038;
    border-radius: 8px;
    color: var(--colorWhite);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 20px;
}

.swiper.swiperThree {
    width: 100%;
    height: 100%;
}

.swiperThree .swiper-wrapper{
    margin: 36px 12px;
}

.swiperThree .swiper-wrapper .swiper-slide a{
    min-height: 150px;
    width: 100%;
}

.swiperThree .swiper-wrapper .swiper-slide a .card h5{
    transition: .4s;
}

.swiperThree .swiper-wrapper .swiper-slide a:hover .card h5{
    transform: translateY(-8px);
}

.swiper .swiper-wrapper .swiper-slide a .card{
    min-height: 150px;
    width: 100%;
    border: none;
    box-shadow: 0 3px 8px #4242421f;
    position: relative;
    overflow: hidden;
}

.swiper .swiper-wrapper .swiper-slide a .card .card-bg-img{
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    filter: saturate(.3);
    opacity: .4;
}

.swiperThree .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiperThree .swiper-slide img {
    display: block;
    object-fit: cover;
}

/* Section */
.section{
    padding: 6rem 0;
    position: relative;
}

.title-section{
    position: relative;
    display: inline-block;
    min-width: 100px;
}

.section-card{
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 3px 3px 13px #29292917;
    background: var(--colorWhite);
    cursor: pointer;
    transition: .4s;
    border: 1px solid white;
    height: auto;
}

.section-card:hover{
    transition: .4s;
    border: 1px solid var(--mainColor);
}

.section-card:hover .card-body .row [class^='col-'] :where(.text-black){
    color: var(--mainColor) !important;
    transition: .4s;
}

.section-card .card-body .row [class^='col-'] i{
    transform: translateX(-8px);
    transition: .4s;
    color: #000;
}

.section-card:hover .card-body .row [class^='col-'] i{
    transform: translateX(2px);
    color: var(--mainColor) !important;
}

.hexagon{
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    max-height: 300px;
    z-index: 10;
}

.select-group :where(div, select){
    border: 0;
}

.select-group div{
    border-radius: 40px 0 0 40px;
}

.select-group select{
    border-radius: 0 40px 40px 0;
    background: #eeeeee;
    appearance: none;
}

.select-group select:focus{
    border: 0;
    outline: none;
}

.card-statistik{
    max-width: 300px;
    background-color: var(--mainColor);
    width: 100%;
    min-width: 200px;
    margin: 0 auto;
    gap: 12px;
    border-radius: 50px;
    padding: 20px;
    flex-wrap: wrap;
}

.card-statistik *{
    color: var(--colorWhite);
    font-size: 20px;
    margin-bottom: 0;
}

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

/* Detail Pengumuman */
.announcement-img{
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.announcement-img img{
    object-fit: cover;
}

.announcement-title{
    margin: 24px 0;
}

.announcement-icon{
    margin: 6px 0;
}

.announcement-icon ul{
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 0;
}

.announcement-icon ul li{
    display: flex;
    align-items: center;
    position: relative;
    color: #999999;
}

.announcement-icon ul li:not(:last-child)::before{
    content: '|';
    position: absolute;
    right: -16px;
    bottom: 0;
}

.announcement{
    margin-top: 24px;
}

.footer{
    background-color: #1c4155;
    padding: 32px 0;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.img-footer{
    top: 0;
    left: 0;
    opacity: .5;
    pointer-events: none;
    mix-blend-mode: color-dodge;
    filter: brightness(.8);
    height: 100%;
    max-width: 100%;
}

.footer .copyright{
    margin-top: auto;
    z-index: 2;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex: 1; */
}

.icon{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    align-items: center;
    margin-top: 16px;
}

.icon-link{
    font-size: 16px;
    color: var(--colorWhite) !important;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    border: 1px solid var(--colorWhite);
    align-items: center;
    background: transparent;
    transition: .4s;
    justify-content: center;
}

.icon-link:hover{
    background: linear-gradient(90deg,
        #0071ad 30.73%,
        #4a92ff 100%,
        #005a8c 100%);
    border: 1px solid #1c4155;
}

ul.list{
    padding-left: 32px;
    margin: 0;
    list-style-type: none;
}

li.list-item{
    list-style: none;
    margin-bottom: 12px;
    position: relative;
}

li.list-item::before{
    content: "\23";
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    left: -24px;
    color: var(--secondaryColor);
}

.footer{
    margin-top: 4rem;
}

.footer-item{
    list-style: none;
    padding: 0;
}

.footer-item *{
    color: var(--colorWhite) !important;
}

.footer-item li{
    margin-bottom: 12px;
}

.btn-toTop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--mainColor);
    color: var(--colorWhite);
    transition: .4s;
    box-shadow: 0 3px 8px #2222224d;
    border: none;
    outline: none;
}

.btn-toTop:hover{
    background: var(--secondaryColor);
    color: var(--colorWhite);
}

/* Responsive */
@media (min-width:768px) {
    .layanan .item:first-child{
        border-radius: 16px 0 0 0;
    }
    .layanan .item:nth-child(3){
        border-radius: 0 16px 0 0;
    }
    .layanan .item:nth-child(4){
        border-radius: 0 0 0 16px;
    }
    .layanan .item:last-child{
        border-radius: 0 0 16px 0;
    }
    .layanan .item{
        flex: 1 0 33.3333%;
        margin-top: -2px;
    }
    .order-md-2{
        order: 2 !important;   
    }
    .order-md-1{
        order: 1 !important;
    }
}

@media (max-width:767px){
    .deskripsi-hero{
        text-align: center;
    }
    .dropdown-menu{
        background: transparent;
        box-shadow: none;
    }
    .navbar.bg-overlay{
        box-shadow: 0 3px 10px #0000001e;
    }
    .img-footer{
        opacity: .2;
        width: 100%;
    }
    .nav-line{
        border-bottom: 1px solid #ddd;
        border-right: none;
    }
    .nav-line .nav-link::before{
        left: 0;
        bottom: 1px;
        width: 100%;
        height: 3px;
    }
    .card-flip .card-body .card-front .title,
    .card-flip .card-body .card-back .title{
        font-size: 20px;
    }
    .layanan .item:first-child{
        border-radius: 16px 0 0 0;
    }
    .layanan .item:nth-child(2){
        border-radius: 0 16px 0 0;
    }
    .layanan .item:nth-child(5){
        border-radius: 0 0 0 16px;
    }
    .layanan .item:last-child{
        border-radius: 0 0 16px 0;
    }
    .layanan .item{
        flex: 1 0 50%;
        margin-top: -2px;
    }
}

@media (max-width:576px) {
    .deskripsi-hero{
        margin: 0 60px;
    }
    .layanan .item:first-child{
        border-radius: 16px 16px 0 0;
    }
    .layanan .item:nth-child(2){
        border-radius: 0 0 0 0;
    }
    .layanan .item:nth-child(5){
        border-radius: 0 0 0 0;
    }
    .layanan .item:last-child{
        border-radius: 0 0 16px 16px;
    }
    .layanan .item{
        flex: 1 0 100%;
        margin-top: -2px;
    }
}

@media(max-width:480px){
    .section{
        padding: 5rem 0;
    }
    .bgSwiper.swiper{
        height: 100vh;
    }
    .bg-breadcrumb{
        height: 65vh;
    }
    .deskripsi-hero{
        margin-top: 60px;
    }
    .deskripsi-hero :where(h1,h2,h3){
        font-size: 30px;
    }
    .deskripsi-hero :where(h4,h5,h6,p){
        font-size: 18px;
    }
    .card-statistik *{
        font-size: 16px;
    }
}

