:root {
    /* Fonts family */
    --font-mona: "Mona Sans", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-releway: "releway", sans-serif;
    --font-open: "Open Sans", sans-serif;
    --hue-color: 200;

    /*========== Font weight ==========*/
    --font-regular-weight: 400;
    --font-medium-weight: 500;
    --font-semi-bold-weight: 600;
    --font-bold-weight: 700;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Syne", sans-serif;
    --font-small-font: 22px;
    --font-medium-font: 26px;
    --font-large-font: 28px;
    --h2-font-size: 1.25rem;
    --normal-font-size: 0.938rem;

    /* color */
    --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
    --color-primary: #2c4964;
    --color-primary-hover: #2c4964;
    --color-section: #f1f7fd;
    --color-section-2: #ffedeb;
    --color-secondary: #1a2a46;
    --color-secondary-hover: #1c2e4a;
    --tertiary-color-soft: #ffedeb;
    --tertiary-color: #e65b48;
    --tertiary-color-hover: #c04c3d;
    --font-grey: rgba(255, 255, 255, 0.6);
    --font-white-primary: #f5f5fa;
    --font-white-secondary: #f9f4f4;
    --font-black-primary: #101014;
    --font-black-secondary: #1f1f29;
    --title-color: hsl(230, 75%, 15%);
    --text-color: hsl(230, 12%, 40%);
    --container-color: hsl(0, 0%, 99%);
    --border-color: hsl(230, 25%, 80%);
    --border-color-soft: #f1f1f1;
    --btn-color: #e65b48;
    --btn-color-hover: #c04c3d;

    /*========== rgba ==========*/
    --accent-color-rgb: 232, 69, 69;
    --accent-color: #e65b48;

    /*========== border ==========*/
    --border-radius: 15px;

    /*========== box shadow ==========*/
    --box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px -20px;

    /*========== z index ==========*/
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 0.6rem;
    border-radius: 0.1rem;
    /* background-color: var(--scroll-bar-color); */
    background-color: #cacaca;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(139, 139, 139);
    border-radius: 0.1rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(129, 129, 129);
    /* background-color: hsl(207, 4%, 55%); */
}

/* End Scrollbar */

/* Start  Skeleton */
.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    border-radius: var(--border-radius);
    position: relative;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

@media screen and (max-width: 900px) {
    .artpengu .postingan-slider .swiper-item .title,
    .artpengu .postingan-slider .swiper-item .title-content {
        width: 250px !important;
    }

    .artpengu .postingan-slider .swiper-item .title2,
    .artpengu .postingan-slider .swiper-item .title-content2 {
        width: 200px !important;
    }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Monrope", sans-serif;
    /* letter-spacing: 1px; */
    scroll-behavior: smooth;
    color: #444444;
}

a {
    color: #1977cc;
    text-decoration: none;
}

a:hover {
    color: #3291e6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Monrope", sans-serif;
}

input,
button {
    border: none;
    outline: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--color-secondary);
    border-top-color: #d1e6f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--tertiary-color);
    width: 40px;
    height: 40px;
    /* border-radius: 4px; */
    border-radius: 50%;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--tertiary-color-hover);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #fff;
    height: 70px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
    /* border-bottom: 1px solid #eee; */
}

#topbar img {
    max-width: 350px;
}

#topbar.topbar-scrolled {
    top: -70px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #1977cc;
}

#topbar .contact-info i {
    color: #437099;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: #437099;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #1977cc;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

@media screen and (max-width: 991px) {
    #topbar img {
        max-width: 200px;
        /* display: none; */
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(0, 0, 139, 0.24);
    transition: all 0.3s;
    z-index: 997;
    padding: 10px 0;
    top: 70px;
    /* box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1); */
}

#header.header-scrolled {
    padding: 5px 0;
    top: 0;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
    background: var(--color-secondary);
}

#header .logo i {
    font-size: 20px;
    cursor: pointer;
    color: var(--font-white-primary);
}

@media screen and (max-width: 984px) {
    #header .logo {
        margin-right: auto;
    }
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    max-height: 40px;
}

/**
* Appointment Button *
*/
.appointment-btn {
    margin-left: 25px;
    background: var(--btn-color);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}

.appointment-btn:hover {
    background: var(--btn-color-hover);
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/* SEARCH NAVBAR */

#search,
.login {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    background-color: hsla(230, 75%, 15%, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* For safari */
    padding: 8rem 1.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.search__close,
.login__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--font-white-primary);
    cursor: pointer;
}

/*=============== SEARCH ===============*/
#search .search__form {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);
    padding-inline: 1rem;
    border-radius: 0.5rem;
    transform: translateY(-1rem);
    transition: transform 0.4s;
}

#search .search__icon {
    font-size: 1.25rem;
    color: var(--title-color);
}

#search .search__input {
    width: 100%;
    padding-block: 1rem;
    background-color: var(--container-color);
    color: var(--text-color);
    border: none;
    outline: none;
}

#search .search__input::placeholder {
    color: var(--text-color);
}

/* Search show */
#search.show-search {
    opacity: 1;
    pointer-events: initial;
}

#search.show-search .search__form {
    transform: translateY(0);
}

/*=============== LOGIN ===============*/
.login__form,
.login__group {
    display: grid;
}

.login__form {
    background-color: var(--container-color);
    padding: 2rem 1.5rem 2.5rem;
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);
    border-radius: 1rem;
    row-gap: 1.25rem;
    text-align: center;
    transform: translateY(-1rem);
    transition: transform 0.4s;
}

.login__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
}

.login__group {
    row-gap: 1rem;
}

.login__label {
    display: block;
    text-align: initial;
    color: var(--title-color);
    font-weight: var(--font-medium-weight);
    margin-bottom: 0.25rem;
}

.login__input {
    width: 100%;
    background-color: var(--container-color);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 14px;
}

.login__input:focus {
    border-color: var(--btn-color);
}

.login__input::placeholder {
    color: var(--text-color);
}

.login__signup {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.login__signup a {
    color: var(--btn-color);
}

.login__signup a:hover {
    text-decoration: underline;
    color: var(--tertiary-color-hover);
}

.login__forgot {
    font-size: 14px;
    display: inline-block;
    color: var(--btn-color);
    margin-bottom: 1.25rem;
}

.login__forgot:hover {
    text-decoration: underline;
    color: var(--tertiary-color-hover);
}

.login__button {
    display: inline-block;
    background-color: var(--btn-color);
    width: 100%;
    color: var(--font-white-primary);
    font-weight: var(--font-medium-weight);
    /* padding: 1rem; */
    padding: 10px;
    /* border-radius: 0.5rem; */
    border-radius: 50px;
    cursor: pointer;
    transition: box-shadow 0.4s;
    letter-spacing: 1px;
}

.login__button:hover {
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, 0.4);
    color: var(--font-white-primary);
}

/* SHOW LOGIN */
.show-login {
    opacity: 1;
    pointer-events: initial;
    /* overflow-y: auto; */
}

.show-login .login__form {
    transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
    #search,
    .login {
        padding-top: 10rem;
    }

    .search__form {
        max-width: 450px;
        margin-inline: auto;
    }

    #search .search__close,
    .login__close {
        width: max-content;
        top: 4rem;
        left: 0;
        right: 0;
        margin-inline: auto;
        font-size: 1.5rem;
    }

    .login__form {
        max-width: 400px;
        margin-inline: auto;
    }
}

/* For large devices */
@media screen and (min-width: 1023px) {
    .login__form {
        /* padding: 3rem 2rem 3.5rem; */
    }
}

@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    font-family: "Open Sans", sans-serif;
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    /* transition: 0.3s; */
    padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
}

.navbar .dropdown:hover i {
    transition: all 0.3s ease;
    transform: rotate(180deg);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: rgb(247, 247, 247);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 6px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    border-radius: 6px;
    margin: 0 10px;
    font-size: 14px;
    font-weight: 550;
    text-transform: none;
    color: #082744;
    border: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    background-color: var(--color-section);
    color: var(--color-primary);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--font-white-primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: var(--font-medium-weight);
    color: var(--color-primary);
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--tertiary-color-hover);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    background-color: var(--color-section);
    color: var(--color-primary);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    font-family: var(--font-open);
    /* margin-top: 90px; */
    width: 100%;
    height: calc(120vh - 110px);
    padding: 0;
    overflow: hidden;
    /* background: #000; */
}

#hero .carousel-item {
    width: 100%;
    height: calc(120vh - 110px);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(13, 30, 45, 0.6);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 150px;
    left: 0;
    right: 0;
    overflow: hidden;
}

#hero .carousel-content {
    text-align: left;
}

@media (max-width: 992px) {
    #hero,
    #hero .carousel-item {
        height: calc(100vh - 70px);
    }

    #hero .carousel-content.container {
        padding: 0 50px;
    }

    #hero .carousel-content h2 {
        font-size: 20px;
    }

    #hero .carousel-content {
        font-size: 14px;
    }
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    position: absolute;
    top: 350px;
    background: none;
    font-size: 28px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    cursor: pointer;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    /* border-radius: 5px; */
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px 0;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 0;
    background: var(--btn-color);
}

#hero .btn-get-started:hover {
    background: var(--btn-color-hover);
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 992px) {
    #hero,
    #hero .carousel-item {
        height: calc(120vh - 110px);
    }

    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
    }
}

@media (max-height: 500px) {
    #hero,
    #hero .carousel-item {
        height: 120vh;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-bg-2 {
    background-color: #ffedeb;
}

.section-title {
    text-align: start;
    padding-bottom: 30px;
}

.section-title span {
    padding: 5px 15px;
    background: #eee;
    border-radius: 50px;
    line-height: 19px;
    background: rgba(var(--accent-color-rgb), 0.09);
    color: var(--accent-color);
}

.section-title h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    /* padding-bottom: 20px; */
    position: relative;
    color: #2c4964;
}

/* .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tertiary-color);
    bottom: 0;
} */

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f7fd;
    min-height: 40px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 100px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 30px;
    background: var(--color-secondary);
    border-radius: var(--border-radius);
    color: var(--font-white-primary);
    box-shadow: var(--box-shadow);
}

.why-us .content h3 {
    font-weight: var(--font-medium-weight);
    font-size: var(--font-large-font);
    margin-bottom: 30px;
}

.why-us .content p {
    margin-bottom: 30px;
    color: var(--font-white-secondary);
}

.more-btn {
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.2); */
    background: var(--btn-color);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.2s;
}

.more-btn i {
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: 1.5px;
    transition: all 0.3s ease;
}

.more-btn:hover i {
    transform: translateX(0.25rem);
    /* transition: all 0.1s ease; */
}

.more-btn:hover {
    color: #fff;
    background: var(--btn-color-hover);
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 15px;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color-soft);
    transition: all 0.2s ease;
}

.why-us .icon-boxes .icon-box:hover {
    /* box-shadow: 0 4px 24px hsla(230, 41%, 52%, 0.4); */
    border: 1px solid var(--color-secondary);
}

.why-us .icon-boxes .icon-box img {
    max-width: 100px;
}

/* .why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
} */

.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: var(--font-black-primary);
}

.why-us .icon-boxes .icon-box:hover h4 {
    color: var(--color-primary);
}

.why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: var(--text-color);
}

/*--------------------------------------------------------------
# Berita
--------------------------------------------------------------*/

#berita .card {
    border: none;
    outline: none;
}

#berita .card .img {
    border-radius: 10px;
    overflow: hidden;
}

#berita .card img {
    width: fit-content;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    transition: all ease-in-out 0.2s;
}

#berita .card:hover img {
    transform: scale(1.1);
}

#berita .card .title {
    border-radius: 6px;
    font-size: 14px;
    color: var(--font-white-primary);
    padding: 24px;
    background: linear-gradient(180deg, transparent, #1a2a46);
    backdrop-filter: blur(1px);
    /* -webkit-backdrop-filter: blur(14px); */
}

#berita .card .title p {
    font-weight: 600;
    font-size: 24px;
    color: var(--font-white-primary);
}

#berita .card .title .meta-berita-beranda .meta {
    display: flex;
    align-items: center;
}

#berita .card .title .meta-berita-beranda i {
    margin-right: 5px;
    position: relative;
    top: 1px;
}

#berita .berita-kanan .nav-pills .nav-link {
    border-radius: unset;
    background: none;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 4px solid var(--border-color);
    color: var(--color-primary);
    font-weight: var(--font-semi-bold-weight);
}

#berita .berita-kanan .nav-pills .nav-link.active {
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

#berita .berita-kanan img {
    height: 80px;
    width: 90px;
    margin-left: 10px;
    object-fit: cover;
    border-radius: 6px;
}

#berita .berita-kanan .content {
    line-height: 23px;
    font-size: 16px;
    font-weight: var(--font-medium-weight);
    color: var(--color-primary);
}

#berita .berita-kanan .meta {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 12px;
}

#berita .berita-kanan .meta i {
    font-size: 14px;
    margin-right: 5px;
}

#berita .berita-kanan .card_right {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    /* border: 1px solid #e6e6e6; */
}

#berita .berita-kanan .card_right:hover .content .meta {
    color: var(--font-black-primary);
}

/* #berita .berita-kanan .card_right:hover .content {
  color: var(--font-black-primary);

} */

#berita .berita-kanan .card_right:hover {
    background: #f1f7fd;
    /* border: 1px solid var(--color-secondary); */
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02),
    0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02); */
}

/*--------------------------------------------------------------
# artpengu
--------------------------------------------------------------*/
.artpengu {
    padding: 60px 60px 0;
    border-radius: var(--border-radius);
    background: #fafafa;
}

.artpengu .container .swiper-item {
    padding: 30px 20px;
    background: #fff;
    border-top-right-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px -20px;
}

@media (max-width: 991px) {
    .artpengu {
        padding: 20px 10px 0;
    }

    .artpengu .container {
        padding: 20px 10px;
    }

    .artpengu .container .swiper-slide {
        display: flex;
        flex-direction: column;
    }
}

.artpengu .title-head span {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: var(--font-semi-bold-weight);
    padding: 4px 24px;
    background: #f1f7fd;
    border-radius: var(--border-radius);
}

.artpengu .title-head i {
    position: relative;
    top: 3px;
    margin-right: 10px;
    color: var(--tertiary-color);
    font-size: 20px;
}

.artpengu .card {
    margin-bottom: 20px;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid var(--border-color-soft);
}

.artpengu .card .time {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: var(--font-bold-weight);
}

.artpengu .card-artpengu {
    padding: 10px 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.artpengu .card-artpengu:hover {
    background: #f1f7fd;
    border-radius: var(--border-radius);
}

.artpengu .card-artpengu .number .number-num {
    background: #f1f7fd;
    border-radius: 8px;
    padding: 8px 9px;
}

.artpengu .card-artpengu .number i {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

.artpengu .content {
    color: var(--color-secondary);
}

.artpengu .content .title {
    font-size: 16px;
    font-weight: var(--font-bold-weight);
}

.artpengu .content .title-content {
    font-size: 14px;
    display: block;
    overflow: hidden;
    max-height: 2.6em;
    line-height: 1.3em;
    /* background: #000; */
}

.artpengu .content .time {
    font-size: 12px;
    font-weight: var(--font-bold-weight);
}

/*--------------------------------------------------------------
# layanan_mandiri
--------------------------------------------------------------*/
.layanan_mandiri .card_layanan_mandiri {
    border-radius: var(--border-radius);
    background: var(--color-section);
    padding: 0 0 0 12px;
}

.layanan_mandiri .layanan_mandiri-slider .swiper-slide .member-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layanan_mandiri .layanan_mandiri-slider {
    padding: 20px 0;
}

.layanan_mandiri .layanan_mandiri-slider .swiper-slide img {
    max-width: 400px;
}

.layanan_mandiri .swiper-pagination {
    position: static;
    margin-top: 60px;
    /* position: relative; */
}

@media screen and (max-width: 900px) {
    .layanan_mandiri .swiper-pagination {
        position: unset;
        margin-top: 40px;
    }

    .layanan_mandiri .card_layanan_mandiri {
        margin: 40px;
    }
}

.layanan_mandiri .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--btn-color);
    /* border: 1px solid var(--color-primary); */
}

.layanan_mandiri .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--btn-color);
    /* background-color: var(--color-primary) */
}

.layanan_mandiri .icon-boxes {
    padding: 10px;
}

.layanan_mandiri .icon-boxes p {
    padding: 10px;
}

.layanan_mandiri .icon-boxes h4 {
    font-size: 18px;
    color: #4b7dab;
    margin-bottom: 15px;
}

.layanan_mandiri .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c4964;
    margin-bottom: 15px;
}

/*=============== LOGIN LAYANAN_MANDIRI ===============*/
.layanan_mandiri .login__form_mandiri,
.layanan_mandiri .login__group {
    display: grid;
}

.layanan_mandiri .login__form_mandiri {
    background-color: var(--container-color);
    margin: 10px 0;
    padding: 2rem 1.5rem 2.5rem;
    /* box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2); */
    box-shadow: var(--box-shadow);
    border-radius: 1rem;
    row-gap: 1.25rem;
    text-align: center;
    transition: transform 0.4s;
}

.layanan_mandiri .login__title {
    font-size: 16px;
    color: var(--title-color);
    text-align: start;
    margin-bottom: 40px;
}

.layanan_mandiri .login__group {
    row-gap: 1rem;
}

.layanan_mandiri .login__label {
    display: block;
    text-align: initial;
    color: var(--title-color);
    font-weight: var(--font-bold-weight);
    margin-bottom: 0.25rem;
}

.layanan_mandiri .login__group i {
    position: absolute;
    /* top: 50%; */
    transform: translateY(17%);
    color: #999;
    font-size: 22px;
}

.layanan_mandiri .login__group i.icon {
    left: 15px;
}

.layanan_mandiri .login__group i.showHidePw {
    right: 0;
    cursor: pointer;
    padding: 0 10px;
}

.layanan_mandiri .login__input {
    width: 100%;
    background-color: var(--container-color);
    border: 1px solid var(--border-color);
    padding: 10px 50px;
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 16px;
    font-weight: var(--font-medium-weight);
}

.layanan_mandiri .login__input:focus {
    border-color: var(--btn-color);
}

.layanan_mandiri .login__input:focus ~ i {
    color: var(--btn-color);
}

.layanan_mandiri .login__input::placeholder {
    color: var(--text-color);
}

.layanan_mandiri .login__signup {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.layanan_mandiri .login__signup a {
    color: var(--btn-color);
}

.layanan_mandiri .login__forgot {
    color: var(--text-color);
    margin: 0;
    font-size: 14px;
}

.layanan_mandiri .login__button {
    display: inline-block;
    background-color: var(--btn-color);
    width: 100%;
    color: var(--font-white-primary);
    font-weight: var(--font-medium-weight);
    /* padding: 1rem; */
    padding: 10px;
    /* border-radius: 0.5rem; */
    border-radius: 50px;

    cursor: pointer;
    transition: box-shadow 0.4s;
    letter-spacing: 1px;
}

.layanan_mandiri .login__button:hover {
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, 0.4);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    background: #f1f7fd;
    padding: 70px 0 60px;
}

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
}

.counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: #1977cc;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #082744;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

/*--------------------------------------------------------------
# KEUNGAN
--------------------------------------------------------------*/
.keuangan .card {
    border: none;
    outline: none;
    margin-bottom: 30px;
}

.keuangan .skills-content {
    /* background: var(--color-section); */
    padding: 30px 20px 10px 20px;
    border: 1px solid var(--border-color-soft);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.keuangan .skills-content:hover {
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-primary);
}

.keuangan .skills-content .title span {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: var(--font-semi-bold-weight);
    padding: 4px 30px;
    background: #f1f7fd;
    border-radius: var(--border-radius);
}

/* .keuangan .skills-content:hover .title span {
  background: var(--color-section-2);
  color: var(--tertiary-color);
} */

.keuangan .skills-content p {
    padding-bottom: 10px;
    margin: 10px 0 20px 0;
    font-weight: var(--font-medium-weight);
    border-bottom: 1px solid var(--border-color);
}

.keuangan .progress {
    padding: 10px 0;
    height: auto;
    display: block;
    background: none;
    border-radius: 0;
}

.keuangan .progress .title-progress {
    font-weight: bold;
    font-size: 14px;
}

.keuangan .progress .skill {
    font-size: 14px;
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    color: #37517e;
}

.keuangan .progress .skill .val {
    float: right;
    font-style: normal;
}

.keuangan .progress-bar-wrap {
    background: #e8edf5;
    border-radius: var(--border-radius);
    height: 17px;
}

.keuangan .progress-bar {
    border-radius: var(--border-radius);
    width: 1px;
    height: 17px;
    transition: 1s ease 0.3s;
    background-color: var(--color-primary);
}

.keuangan .progress-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team Section - Home Page
------------------------------*/
#team .member {
    position: relative;
}

#team .swiper-slide {
    /* padding: 10px 0; */
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color-soft);
    box-shadow: var(--box-shadow);
}

#team .swiper-slide:hover {
    background: var(--color-section);
}

#team .member .member-img {
    /* width: 200px; */
    /* margin: 0 30px; */
    /* margin: 10px; */
    /* border-radius: var(--border-radius); */
    border-top-right-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    /* border: 2px solid var(--border-color-soft); */
}

@media (max-width: 1024px) {
    #team .member .member-img {
        margin: 0 60px;
    }

    #team .swiper-slide:hover {
        background: unset;
    }

    #team .swiper-slide {
        border: unset;
        box-shadow: unset;
    }
}

#team .member .member-img img {
    position: relative;
    z-index: 1;
}

#team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: #2c496475;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

#team .member .member-img .social a {
    transition: 0.3s;
    color: var(--color-primary);
    font-size: 20px;
    margin: 0 8px;
}

#team .member .member-img .social a:hover {
    color: var(--color-section);
}

#team .member .member-info {
    margin-top: 30px;
}

#team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

#team .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: rgba(var(--default-color-rgb), 0.6);
    margin-bottom: 10px;
}

#team .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

#team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

#team .swiper-pagination {
    margin-top: 60px;
    position: relative;
}

#team .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--btn-color);
    /* border: 1px solid var(--color-primary); */
}

#team .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--btn-color);
    /* background-color: var(--color-primary) */
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .container-fluid {
    padding: 0;
}

.gallery .gallery-item {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    padding: 30px;
}

@media (max-width: 575px) {
    .gallery .gallery-item {
        min-height: 500px;
    }
}

.gallery .gallery-item:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    transition: 0.3s;
}

.gallery .gallery-item:hover::before {
    background: rgba(0, 0, 0, 0.25);
}

.gallery .gallery-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

/* .gallery .gallery-item h3::before {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tertiary-color);
    bottom: 0;
} */

.gallery .gallery-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .gallery .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

.gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid var(--btn-color);
    opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--tertiary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #f1f1f1;
    font-size: 14px;
    background: var(--color-secondary);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-bottom {
    border-top: 1px solid #fafafa;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: var(--font-bold-weight);
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #f1f1f1;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #f1f1f1;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #1c84e3;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #c2c2c2;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

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

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #f1f1f1;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1977cc;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #1c84e3;
}

#footer .copyright {
    color: #fff;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #f1f1f1;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--btn-color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--btn-color-hover);
    color: #fff;
    text-decoration: none;
}

.no-data i {
    font-size: 32px;
    color: #efc15a;
}

.no-data h5 {
    font-size: 14px;
}
