html {
    height: 100%;
    width: 100%;
}
body {
    height: 100%;
    width: 100%;
    max-width: 1440px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 400;
    margin: 0px auto;
}

button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

a {
    text-decoration: unset !important;
}
a:hover {
    color: unset;
}

.bg-blue-1 {
    background-color: #2F80ED;
}
.bg-tomato-1 {
    background-color: #FF1654;
}
.bg-purple-1 {
    background-color: #9B51E0;
}

/* NAV */
#nav {
    height: 98px;
    width: 100%;
    display: flex;
    background-color: #EEFCFB;
    padding: 0px 90px;
}
#nav .nav-ba-logo {
    flex-basis: 15%;
    display: flex;
    align-items: center;
}
#nav .nav-ba-link {
    flex-basis: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#nav .nav-ba-link a {
    padding: 0px 15px;
    font-size: 15px;
    color: #25282B;
}
#nav .nav-ba-icon {
    flex-basis: 15%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#nav .nav-ba-icon a {
    padding: 0px 15px;
}
#nav .nav-ba-button {
    flex-basis: 50%;
    display: none;
    justify-content: flex-end;
    align-items: center;
}
/* RESPONSIVE NAV */
@media (max-width: 1100px) {
    #nav {
        padding: 0px 48px;
    }
    #nav .nav-ba-link a {
        padding: 0px 12.5px;
        font-size: 14px;
    }
    #nav .nav-ba-icon a {
        padding: 0px 12.5px;
    }
}
@media (max-width: 991px) {
    #nav {
        padding: 0px 24px;
    }
    #nav .nav-ba-link a {
        padding: 0px 8px;
        font-size: 12px;
    }
    #nav .nav-ba-icon a {
        padding: 0px 8px;
    }
}
@media (min-width: 768px) {
    #nav .nav-ba-link {
        display: flex !important;
    }
}
@media (max-width: 767px) {
    #nav {
        height: 88px;
        flex-wrap: wrap;
        position: fixed;
        width: 100%;
        padding: 0px 32px;
        z-index: 100;
    }
    #nav .nav-ba-link, #nav .nav-ba-icon {
        display: none;
    }
    #nav .nav-ba-link {
        background-color: #EEFCFB;
        max-height: 100vh;
        width: 100%;
        position: absolute;
        top: 88px;
        left: 0px;
        text-align: center;
        padding: 1rem 24px;
        overflow-y: auto;
    }
    #nav .nav-ba-link a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 18px;
    }
    #nav .nav-ba-link a.nav-ba-link-masuk {
        background-color: #3366FF;
        font-weight: 600;
        font-size: 22px;
        color: #fff;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    #nav .nav-ba-link a.nav-ba-link-buku {
        background-color: #fff;
        font-weight: 600;
        font-size: 22px;
        color: #222B45;
        margin-bottom: 1.5rem;
    } 
    #nav .nav-ba-logo {
        flex-basis: 50%;
        justify-content: flex-start;
    }
    #nav .nav-ba-button {
        display: flex;
    }
}

/* HEADER */
#header {
    height: 565px;
    width: 100%;
    background-color: #50E0D7;
}
#header #carouselHeader {
    height: 100%;
    background-image: url('../../assets/images/header-line.png');
    background-size: cover;
    background-position: center;
}
#header .carousel-inner {
    height: 100%;
}
#header .carousel-item {
    height: 100%;
}
#header .carousel-item.active,
#header .carousel-item-next,
#header .carousel-item-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .carousel-item img {
    height: 414px;
    width: 835px;
}
#header .carousel-control-prev, #header .carousel-control-next {
    opacity: 1;
}
#header .carousel-control-prev-icon, #header  .carousel-control-next-icon {
    background-image: unset;
}
#header .carousel-indicators li {
    opacity: 1;
}
#header .carousel-indicators .active {
    background-color: #52575C;
}
/* RESPONSIVE HEADER */
@media (max-width: 767px) {
    #header {
        padding-top: 98px;
        height: 357px;
        width: 100%;
        background-color: #50E0D7;
    }
    #header .carousel-item img {
        height: 177px;
        width: 85%;
    }
    #header .carousel-control-prev, #header .carousel-control-next {
        display: none;
    }
    #header .carousel-indicators {
        bottom: -15px;
    }
}


/* HERO */
#hero {
    padding: 72px 32px;
    background-color: #fff;
}
#hero > div {
    position: relative;
}
#hero .hero-cover {
    height: 100%;
    width: calc(100% - 30px);
    background: linear-gradient(181.49deg, rgba(51, 102, 255, 0.28) 4.09%, rgba(51, 102, 255, 0.58) 98.73%);
    position: absolute;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 10;
    border-radius: 5px;
}
#hero .hero-cover h3 a {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
#hero img {
    width: 100%;
    height: 360px;
    border-radius: 5px;
}
@media (max-width: 1000px) {
    #hero .hero-cover h3 a {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    #hero {
        padding: 48px 24px 0px;
    }
    #hero .col-lg-6 {
        margin-bottom: 32px;
    }
    #hero img {
        width: 100%;
        height: 169px;
    }
    #hero .hero-cover h3 a {
        font-size: 22px;
    }
}

/* PRODUCT CLASS BERULANG */
.product-cover {
    height: 100%;
    width: calc(100% - 30px);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    z-index: 10;
    border-radius: 5px;
}
.product-about {
    display: none;
}
.product-cover h3 {
    font-weight: 700;
    font-size: 32px;
    color: #fff;
}
.product-cover a {
    background-color: #3BCEAC;
    padding: 0.75rem 0.5rem;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
}
.product-card .product-card-ba-body {
    padding: 15px 0px;
}
.product-card .product-card-ba-body h2 a {
    font-size: 22px;
    font-weight: 600;
    color: #25282B;
}
.product-card .product-card-ba-body .writer {
    font-size: 14px;
    font-weight: 400;
    color: #52575C;
}

/* PRODUCT 1 */
#product-1 {
    padding: 72px 32px;
    background-color: #fff;
}
#product-1 img {
    height: 531px;
    width: 100%;
    border-radius: 5px;
}
#product-1 .product-card img {
    height: 343px;
    width: 100%;
    border-radius: 5px;
}

/* PRODUCT 2 */
#product-2 {
    padding: 72px 32px;
    background-color: #fff;
}
#product-2 img {
    height: 531px;
    width: 100%;
    border-radius: 5px;
}
#product-2 .product-card img {
    height: 343px;
    width: 100%;
    border-radius: 5px;
}

/* PRODUCT 3 */
#product-3 {
    padding: 72px 32px;
    background-color: #fff;
}
#product-3 img {
    height: 531px;
    width: 100%;
    border-radius: 5px;
}
#product-3 .product-card img {
    height: 343px;
    width: 100%;
    border-radius: 5px;
}

/* RESPONSIVE PRODUCT */
@media (max-width: 1100px) {
    #product-1, #product-2, #product-3 {
        padding: 32px 48px;
    }
}
@media (max-width: 991px) {
    #product-1 article:last-child, #product-2 article:last-child, #product-3 article:last-child {
        display: none;
    }
    .product-cover h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .product-cover a {
        font-size: 14px;
    }
    .product-card .product-card-ba-body {
        padding: 15px 0px;
    }
    .product-card .product-card-ba-body h2 a {
        font-size: 18px;
    }
    .product-card .product-card-ba-body .writer {
        font-size: 13px;
    }
}
@media(max-width: 767px) {
    #product-1, #product-2, #product-3 {
        padding: 32px 24px;
        background-color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    #product-1 {
        background-image: url('../../assets/images/bg-1.png');
        margin-top: 48px;
        margin-bottom: 56px;
    }
    #product-2 {
        background-image: url('../../assets/images/bg-2.png');
        margin-bottom: 56px;
    }
    #product-3 {
        background-image: url('../../assets/images/bg-3.png');
        margin-bottom: 24px;
    }
    .product-col-first .product-cover, .product-col-first img {
        display: none;
    }
    .product-about {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }
    .product-about h3 {
        font-weight: 700;
        font-size: 18px;
        color: #25282B;
    }
    .product-about a {
        font-weight: 600;
        font-size: 12px;
        color: #52575C;
    }
    #product-1 article:nth-child(1), #product-2 article:nth-child(1), #product-3 article:nth-child(1) {
        padding-right: 30px;
    }
    #product-1 article:nth-child(2), #product-2 article:nth-child(2), #product-3 article:nth-child(2) {
        padding-left: 30px;
    }
    #product-1 article:last-child, #product-2 article:last-child, #product-3 article:last-child {
        display: none;
    }
    #product-1 .product-card img, #product-2 .product-card img, #product-3 .product-card img {
        height: 142px;
    }
    .product-card .product-card-ba-body h2 {
        line-height: 16px;
    }
    .product-card .product-card-ba-body h2 a {
        font-size: 13px;
    }
    .product-card .product-card-ba-body .writer {
        margin-top: 15px;
        font-size: 12px;
    }
}

/* ARTICLE */
#article {
    padding: 72px 48px;
    background-color: #fff;
}
#article h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
}
#article .article-status {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15;
    color: #fff;
}
#article img {
    width: 100%;
    height: 378px;
    border-radius: 5px;
}
#article .article-card-ba-body {
    padding: 15px 0px;
}
#article .article-card-big h2 a {
    font-weight: 700;
    font-size: 30px;
    color: #25282B;
}
#article .article-card-big p {
    font-size: 15px;
    color: #52575C;
}
#article .article-card-big .date {
    font-weight: 600;
    font-size: 18px;
    color: #25282B;
}

#article .article-margin {
    margin-bottom: 30px;
}
#article .article-card-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#article .article-card-2 .article-card-ba-left {
    flex-basis: 45%;
}
#article .article-card-2 .article-card-ba-left .article-status {
    top: 7.5px;
    right: 7.5px;
}
#article .article-card-2 .article-card-ba-left img {
    height: 176px;
    width: 100%;
    border-radius: 5px;
}
#article .article-card-2 .article-card-ba-right {
    flex-basis: 52.5%;
}
#article .article-card-2 h4 a {
    font-weight: 700;
    font-size: 26px;
    color: #25282B;
}
#article .article-card-2 p {
    font-size: 15px;
    color: #52575C;
}
.see-more {
    background-color: rgba(143, 155, 179, 0.08);
    padding: 1rem 5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    color: #25282B;
}
/* RESPONSIVE ARTICLE */
@media (max-width: 1100px) {
    #article {
        padding: 72px 32px;
        background-color: #fff;
    }
}
@media(max-width: 767px) {
    #article {
        padding: 72px 24px 32px;
        background-color: #fff;
    }
    #article h3 {
        margin-bottom: 24px;
        font-size: 18px;
        color: #25282B;
    }
    #article img {
        height: 178px;
    }
    #article .article-card-big h2 {
        line-height: 20px;
    }
    #article .article-card-big h2 a {
        font-size: 18px;
    }
    #article .article-card-big p {
        margin-top: 18px;
        font-size: 13px;
    }
    #article .article-card-big .date {
        font-size: 12px;
    }
    #article .article-card-2 .article-card-ba-left {
        flex-basis: 40%;
    }
    #article .article-card-2 .article-card-ba-left img {
        height: 124px;
    }
    #article .article-card-2 .article-card-ba-right {
        flex-basis: 55%;
    }
    #article .article-card-2 h4 {
        line-height: 18px;
    }
    #article .article-card-2 h4 a {
        font-size: 15px;
    }
    #article .article-card-2 p {
        margin-top: 15px;
        font-size: 13px;
    }
    .see-more {
        display: none;
    }
}

/* SUBSCRIBE */
#subscribe {
    padding: 72px 72px;
    background-color: #fff;
}
#subscribe .container-subscribe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #44D5CA;
    padding: 30px 0px;
    border-radius: 10px;
}
#subscribe h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-align: center;
}
#subscribe form {
    width: 649px;
}
#subscribe .form-control {
    height: 80px;
    border-right: unset;
}
#subscribe .input-group-text {
    border-left: unset;
    background-color: #fff;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
#subscribe button span {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #3BCEAC;
    color: #fff;
    border-radius: 5px;
}
#subscribe ::placeholder {
    color: #CACCCF;
}
@media (max-width: 1100px) {
    #subscribe {
        padding: 72px 48px;
    }
    #subscribe h2 {
        font-size: 27px;
    }
}
@media (max-width: 991px) {
    #subscribe {
        padding: 72px 32px;
    }
    #subscribe h2 {
        font-size: 22px;
    }
}
/* RESPONSIVE SUBSCRIBE */
@media(max-width: 767px) {
    #subscribe {
        padding: 72px 24px;
        background-color: #43C2B9;
    }
    #subscribe .container-subscribe {
        background-color: transparent;
        padding: 30px 0px;
        border-radius: 0px;
    }
    #subscribe form {
        width: 100%;
    }
    #subscribe .form-control {
        height: 60px;
        border-right: unset;
    }
    #subscribe h2 {
        font-size: 15px;
    }
    #subscribe button span {
        width: 104px;
        white-space: pre-wrap;
        flex-wrap: wrap;
        font-size: 10px;
    }
    #subscribe ::placeholder {
        font-size: 12px;
        color: #CACCCF;
    }
}

/* FOOTER */
#footer {
    padding: 72px 64px;
    background-color: #fff;
}
#footer h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 27px;
    color: #25282B;
}
#footer p {
    font-size: 18px;
    color: #52575C;
}
#footer .nav-link {
    padding: 0px 0rem;
    font-size: 20px;
    color: #52575C;
}
#footer .footer-facebook, #footer .footer-twitter {
    height: 40px;
    width: 40px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
}
#footer .footer-facebook {
    background-color: #EEFCFB;
    box-shadow: 0px 4px 9px rgba(15, 139, 130, 0.25);
}
#footer .footer-twitter {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 9px #D6EBEA;
}
#footer .footer-facebook span, #footer .footer-twitter span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* DESIGN BY */
#design-by {
    background-color: #F8F8F8;
    padding: 30px 0px;
}
#design-by h6 {
    text-align: center;
    font-size: 15px;
    color: #25282B;
}

/* RESPONSIVE FOOTER & DESIGN BY */
@media (max-width: 991px) {
    #footer {
        padding: 72px 48px;
    }
    #footer h3 {
        font-size: 24px;
    }
    #footer p {
        font-size: 16px;
    }
    #footer .nav-link {
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    #footer {
        padding: 72px 32px;
    }
}
@media(max-width: 767px) {
    #footer {
        padding: 72px 32px;
    }
    #footer h3 {
        font-size: 18px;
    }
    #footer p {
        font-size: 15px;
    }
    #footer .nav-link {
        font-size: 15px;
    }
    #design-by h6 {
        font-size: 15px;
    }
}


/* PATH */
#path {
    padding: 48px 72px 0px;
    background-color: #fff;
}
#path h6 .first-path {
    font-size: 18px;
    color: #B5B5B5;
}
#path h6 .second-path {
    font-weight: 700;
    font-size: 18px;
    color: #25282B;
}
.breadcrumbs-katalog #path {
    padding: 0;
    margin-bottom: 42px;
}
@media (max-width: 1050px) {
    #path h6 .first-path {
        font-size: 16px;
    }
    #path h6 .second-path {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    #path {
        display: none;
    }
}

/* MAIN */
#main {
    padding: 64px 32px;
    background-color: #fff;
}
/* ASIDE */
#main aside h3 {
    font-weight: 700;
    font-size: 30px;
    color: #25282B;
}
#main aside h6 {
    font-weight: 700;
    font-size: 18px;
}
#main aside h6 span {
    cursor: pointer;
}
#main aside .nav-link {
    padding: 0.15rem 0rem;
    font-size: 18px;
    color: #52575C;
}
/* ASIDE LINE */
#main aside .line {
    height: 100%;
    width: 1px;
    position: absolute;
    right: 15px;
    background-color: #A0A4A8;
}
/* CUSTOM SELECT */
#main aside .row.mb-5 {
    display: none;
}
#main aside #container-custom-select-ba {
    max-width: 46%;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #E8E8E8;
    font-weight: 600;
    font-size: 13px;
    color: #25282B;
}
#main aside #container-custom-select-ba > .select-cover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
#main aside .select-cover svg {
    transform: rotate(180deg);
}
#main aside .custom-select-ba {
    display: none;
    background-color: #fff;
    position: absolute;
    width: 100%;
    z-index: 10;
    border: 1px solid #E4E9F2;
    border-radius: 4px;
}
#main aside .custom-select-ba .col-lg-12 {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #25282B;
}
#main aside .custom-select-ba .col-lg-12:hover {
    background-color: #3366FF;
    color: #fff;
}
/* ARTICLE */
#main section article {
    padding: 0px 30px;
}
#main section h6 {
    display: flex;
    align-items: center;
}
#main section h6 .first-path {
    font-size: 18px;
    color: #B5B5B5;
}
#main section h6 .second-path {
    font-weight: 700;
    font-size: 18px;
    color: #25282B;
}
#main .article-ba-header img {
    height: 345px;
    width: 100%;
}
#main .article-ba-body {
    padding: 15px 0px;
}
#main .article-ba-body h2 a {
    font-weight: 600;
    font-size: 22px;
    color: #000000;
}
#main .article-ba-body .writer {
    margin-top: 7.5px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
}
/* PAGINATION */
#main .page-link {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: #8F9BB3;
    font-weight: 700;
    font-size: 14px;
    color: #52575C;
}
#main a.active {
    background: rgba(143, 155, 179, 0.08);
}
/* RESPONSIVE HEADER */
@media (max-width: 1050px) {
    /* ASIDE */
    #main aside h3 {
        font-size: 26px;
    }
    #main aside h6 {
        font-size: 16px;
    }
    #main aside .nav-link {
        font-size: 16px;
    }
    #main .article-ba-body h2 a {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    #main {
        padding: 128px 24px;
    }
    #main aside .line {
        display: none;
    }
    #main aside .row.mb-5 {
        display: flex;
    }
    #main aside > .row.mb-3 {
        display: none;
    }
    #main section > .row.mb-5 {
        display: none;
    }
    #main section article:nth-child(odd) {
        padding: 0px 30px 0px 0px;
    }
    #main section article:nth-child(even) {
        padding: 0px 0px 0px 30px;
    }
    #main .article-ba-header img {
        height: 142px;
    }
    #main .article-ba-body h2 {
        line-height: 18px;
    }
    #main .article-ba-body h2 a {
        font-size: 13px;
        color: #25282B;
    }
    #main .article-ba-body .writer {
        margin-top: 15px;
        font-size: 12px;
        color: #52575C;
    }
}


/* MAIN PRODUCT */
#main-product {
    padding: 48px 72px 120px;
    background-color: #fff;
}
#main-product h6 .first-path {
    padding-left: 15px;
    font-size: 18px;
    color: #B5B5B5;
}
#main-product h6 .second-path {
    font-weight: 700;
    font-size: 18px;
    color: #25282B;
}
#main-product .img-container {
    padding: 0px 30px;
}
#main-product img {
    height: 563px;
    width: 100%;
}
#main-product h1 {
    font-weight: 700;
    font-size: 36px;
    color: #25282B;
}
#main-product .writer {
    font-size: 30px;
    color: #52575C;
}
#main-product .category {
    font-size: 22px;
    color: #25282B;
}
#main-product .button-container a {
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #3366FF;
    padding: 0rem 1.2rem;
    height: 72px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
#main-product .button-container button {
    height: 72px;
    width: 72px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(51, 102, 255, 0.1);
    border-radius: 5px;
    border: unset;
    outline: unset;
}
/* RESPONSIVE MAIN PRODUCT */
@media (max-width: 1050px) {
    #main-product h6 .first-path {
        font-size: 16px;
    }
    #main-product h6 .second-path {
        font-size: 16px;
    }
    #main-product .col-lg-6.img-container {
        margin-bottom: 32px;
    }
    #main-product h1 {
        font-size: 30px;
    }
    #main-product .writer {
        font-size: 24px;
        margin-bottom: 16px;
    }
    #main-product .category {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    #main-product {
        padding: 128px 24px 120px;
    }
    #main-product > .container-fluid .row.mb-5 {
        display: none;
    }
    #main-product .col-lg-6.img-container {
        padding: 0px 15px;
        margin-bottom: 32px;
    }
    #main-product img {
        height: 258px;
    }
    #main-product article > .col-lg-6 {
        text-align: center;
    }
    #main-product h1 {
        font-size: 18px;
    }
    #main-product .writer {
        font-size: 15px;
        margin-bottom: 8px;
    }
    #main-product .category {
        font-size: 15px;
    }
    #main-product .button-container {
        flex-direction: column;
    }
    #main-product .button-container a, #main-product .button-container button {
        width: 100%;
        display: flex !important;
        margin: 0px !important;
    }
    #main-product .button-container a {
        margin-bottom: 15px !important;
        font-size: 18px;
    }
    .button-container button span {
        display: flex !important;
        margin-left: 15px;
        font-weight: 600;
        font-size: 18px;
        color: #52575C;
    }
}

/* CAROUSEL PRODUCT */
#carousel-product {
    padding: 48px 24px 24px;
    width: 100%;
    background-color: #3BCEAC;
}
#carousel-product #carouselProduct {
    height: 100%;
}
#carousel-product .carousel-inner {
    height: 100%;
}
#carousel-product .carousel-item {
    height: 100%;
}
#carousel-product .carousel-item.active,
#carousel-product .carousel-item-next,
#carousel-product .carousel-item-prev {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#carousel-product .carousel-item h3 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
}
#carousel-product .carousel-item img {
    height: 746px;
    width: 992px;
    margin-bottom: 30px;
}
.carousel-indicators {
    bottom: -24px;
}
#carousel-product .carousel-control-prev {
    opacity: 1;
}
#carousel-product .carousel-control-prev-icon, #carousel-product  .carousel-control-next-icon {
    background-image: unset;
}
#carousel-product .carousel-indicators li {
    opacity: 1;
}
#carousel-product .carousel-indicators .active {
    background-color: #52575C;
}
/* RESPONSIVE CAROUSEL PRODUCT */
@media (max-width: 1050px) {
    #carousel-product .carousel-item h3 {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    #carousel-product .carousel-item h3 {
        font-size: 15px;
        text-align: center;
    }
    #carousel-product .carousel-item img {
        height: 263px;
        margin-bottom: 24px;
    }
    .carousel-indicators {
        bottom: -32px;
    }
}

/* DETAIL PRODUCT */
#detail-product {
    padding: 56px 72px;
    background-color: #fff;
}
#detail-product h2 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 32px;
    color: #25282B;
}
#detail-product p {
    font-size: 24px;
    color: #52575C
}
#detail-product .detail-product-list {
    display: flex;
    margin-bottom: 15px;
}
#detail-product .detail-product-list > div {
    font-size: 18px;
    color: #25282B;
}
#detail-product .detail-product-list .detail-product-title {
    width: 200px;
}
#detail-product .detail-product-list .detail-product-value {
    font-weight: 600;
}
/* RESPONSIVE DETAIL PRODUCT */
@media (max-width: 1050px) {
    #detail-product h2 {
        font-size: 24px;
    }
    #detail-product p {
        font-size: 18px;
    }
    #detail-product .detail-product-list > div {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    #detail-product {
        padding: 56px 24px;
    }
    #detail-product h2 {
        font-size: 18px;
        margin-bottom: 24px;
    }
    #detail-product p {
        font-size: 15px;
        color: #52575C;
    }
    #detail-product .detail-product-list .detail-product-title {
        width: 150px;
    }
    #detail-product .detail-product-list > div {
        font-size: 13px;
    }
}

#ulasan-product {
    padding: 56px 72px;
    background-color: #fff;
}
#ulasan-product h2 {
    font-weight: 600;
    font-size: 32px;
    color: #25282B;
}
#ulasan-product h2 ~ a {
    display: none;
    font-weight: 600;
    font-size: 12px;
    color: #52575C;
}
#ulasan-product .notCarouselUlasan {
    display: none;
}
#ulasan-product .carousel-item.active,
#ulasan-product .carousel-item-next,
#ulasan-product .carousel-item-prev {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ulasan-product .carousel-control-prev, #ulasan-product .carousel-control-next {
    width: 5%;
    opacity: 1;
}
#ulasan-product .carousel-control-prev-icon, #ulasan-product .carousel-control-next-icon {
    height: 50px;
    width: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: unset;
    background-color: #EFEFEF;
    border-radius: 13px;
}
#ulasan-product .carousel-control-prev-icon {
    left: -30px;
}
#ulasan-product .carousel-control-next-icon {
    right: -30px;
}
#ulasan-product .carousel-indicators li {
    opacity: 1;
}
#ulasan-product .ulasan-card {
    width: calc(50% - 15px);
    border: 0.5px solid #A0A4A8;
    border-radius: 8px;
}
#ulasan-product .ulasan-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}
#ulasan-product .ulasan-card-header > div {
    display: inline-flex;
    align-items: center;
}
#ulasan-product .ulasan-card-header img {
    height: 50px;
    width: 50px;
    margin-right: 7.5px;
}
#ulasan-product .ulasan-card-header .date {
    font-size: 18px;
    color: #A0A4A8;
}
#ulasan-product .ulasan-card-header div span {
    font-size: 18px;
    color: #25282B;
}
#ulasan-product .ulasan-card-body {
    padding: 15px 30px;
}
#ulasan-product .ulasan-card-body .stars {
    margin-bottom: 15px;
    color: #FFAD57;
}
#ulasan-product .ulasan-card-body .stars svg {
    margin-right: 12px;
}
#ulasan-product .ulasan-card-body .text {
    font-size: 18px;
    color: #25282B;
}
#ulasan-product .ulasan-card-footer {
    border-top: 1px solid #A0A4A8;
    text-align: right;
    padding: 15px 30px;
}
#ulasan-product .ulasan-card-footer span {
    margin-right: 7.5px;
    font-size: 22px;
    color: #52575C;
}
/* RESPONSIVE DETAIL PRODUCT */
@media (max-width: 1050px) {
    #ulasan-product h2 {
        font-size: 26px;
    }
    #ulasan-product .ulasan-card-header .date {
        font-size: 14px;
        white-space: nowrap;
    }
    #ulasan-product .ulasan-card-header div span {
        font-size: 14px;
        white-space: nowrap;
    }
    #ulasan-product .ulasan-card-body .text {
        font-size: 14px;
    }
    #ulasan-product .ulasan-card-footer span {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    #ulasan-product {
        padding: 56px 24px;
    }
    #ulasan-product h2 {
        font-size: 18px;
    }
    #ulasan-product h2 ~ a {
        display: inline;
    }
    #ulasan-product .notCarouselUlasan {
        display: flex;
    }
    #ulasan-product .notCarouselUlasan .ulasan-card {
        width: 100%;
    }
    #ulasan-product .ulasan-card-header {
        padding: 24px 30px 0px;
    }
    #ulasan-product .ulasan-card-header .date {
        display: none;
    }
    #ulasan-product .ulasan-card-body {
        padding: 24px 30px;
    }
    #ulasan-product .ulasan-card-body .stars {
        margin-bottom: 24px;
    }
    #ulasan-product .ulasan-card-body .text {
        font-size: 12px;
    }
    #ulasan-product .ulasan-card-footer {
        padding: 24px 30px;
    }
    #ulasan-product .ulasan-card-footer span {
        margin-right: 7.5px;
        font-size: 18px;
    }
    #ulasan-product #carouselUlasan {
        display: none;
    }
}


/* MAIN TESTIMONI */
#main-testimoni {
    padding: 24px 72px;
    background-color: #fff;
}
#main-testimoni h1 {
    font-weight: 700;
    font-size: 36px;
    color: #25282B;
}
#main-testimoni article {
    margin-bottom: 30px;
}
#main-testimoni .ulasan-card {
    width: 100%;
    border: 0.5px solid #A0A4A8;
    border-radius: 8px;
}
#main-testimoni .ulasan-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}
#main-testimoni .ulasan-card-header > div {
    display: inline-flex;
    align-items: center;
}
#main-testimoni .ulasan-card-header img {
    height: 50px;
    width: 50px;
    margin-right: 7.5px;
}
#main-testimoni .ulasan-card-header .date {
    font-size: 18px;
    color: #A0A4A8;
}
#main-testimoni .ulasan-card-header div span {
    font-size: 18px;
    color: #25282B;
}
#main-testimoni .ulasan-card-body {
    padding: 15px 30px;
}
#main-testimoni .ulasan-card-body .stars {
    margin-bottom: 15px;
    color: #FFAD57;
}
#main-testimoni .ulasan-card-body .stars svg {
    margin-right: 12px;
}
#main-testimoni .ulasan-card-body p {
    font-size: 18px;
    color: #25282B;
}
#main-testimoni .ulasan-card-footer {
    border-top: 1px solid #A0A4A8;
    text-align: right;
    padding: 15px 30px;
}
#main-testimoni .ulasan-card-footer span {
    margin-right: 7.5px;
    font-size: 22px;
    color: #52575C;
}
/* PAGINATION */
#main-testimoni .page-link {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: #8F9BB3;
    font-weight: 700;
    font-size: 14px;
    color: #52575C;
}
#main-testimoni a.active {
    background: rgba(143, 155, 179, 0.08);
}
/* RESPONSIVE MAIN */
@media (max-width: 1050px) {
    #main-testimoni h2 {
        font-size: 26px;
    }
    #main-testimoni .ulasan-card-header .date {
        font-size: 14px;
        white-space: nowrap;
    }
    #main-testimoni .ulasan-card-header div span {
        font-size: 14px;
        white-space: nowrap;
    }
    #main-testimoni .ulasan-card-body .text {
        font-size: 14px;
    }
    #main-testimoni .ulasan-card-footer span {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    #main-testimoni {
        padding: 128px 24px;
    }
    #main-testimoni h1 {
        font-size: 18px;
    }
    #main-testimoni .ulasan-card-header {
        padding: 24px 30px 0px;
    }
    #main-testimoni .ulasan-card-header .date {
        display: none;
    }
    #main-testimoni .ulasan-card-body {
        padding: 24px 30px;
    }
    #main-testimoni .ulasan-card-body .stars {
        margin-bottom: 24px;
    }
    #main-testimoni .ulasan-card-body .text {
        font-size: 12px;
    }
    #main-testimoni .ulasan-card-footer {
        padding: 24px 30px;
    }
    #main-testimoni .ulasan-card-footer span {
        margin-right: 7.5px;
        font-size: 18px;
    }
}

/* BERULANG KABAR 1 DAN KABAR 2 */
.article-status {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15;
    color: #fff;
}

/* MAIN KABAR 1 */
#main-kabar-1 {
    padding: 32px 48px;
    background-color: #fff;
}
#main-kabar-1 h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
}
#main-kabar-1 img {
    width: 100%;
    height: 378px;
    border-radius: 5px;
}
#main-kabar-1 .article-card-ba-body {
    padding: 15px 0px;
}
#main-kabar-1 .article-card-big h2 a {
    font-weight: 700;
    font-size: 30px;
    color: #25282B;
}
#main-kabar-1 .article-card-big p {
    font-size: 15px;
    color: #52575C;
}
#main-kabar-1 .article-card-big .date {
    font-weight: 600;
    font-size: 18px;
    color: #25282B;
}

#main-kabar-1 .article-margin {
    margin-bottom: 30px;
}
#main-kabar-1 .article-card-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#main-kabar-1 .article-card-2 .article-card-ba-left {
    flex-basis: 45%;
}
#main-kabar-1 .article-card-2 .article-card-ba-left .article-status {
    top: 7.5px;
    right: 7.5px;
}
#main-kabar-1 .article-card-2 .article-card-ba-left img {
    height: 176px;
    width: 100%;
    border-radius: 5px;
}
#main-kabar-1 .article-card-2 .article-card-ba-right {
    flex-basis: 52.5%;
}
#main-kabar-1 .article-card-2 h4 a {
    font-weight: 700;
    font-size: 26px;
    color: #25282B;
}
#main-kabar-1 .article-card-2 p {
    font-size: 15px;
    color: #52575C;
}
/* RESPONSIVE HEADER */
@media (max-width: 767px) {
    #main-kabar-1 {
        padding: 128px 24px 64px;
    }
    #main-kabar-1 h3 {
        font-size: 18px;
        color: #25282B;
    }
    #main-kabar-1 img {
        width: 100%;
        height: 178px;
    }
    #main-kabar-1 .article-card-big h2 {
        line-height: 18px;
    }
    #main-kabar-1 .article-card-big h2 a {
        font-size: 18px;
    }
    #main-kabar-1 .article-card-big p {
        font-size: 13px;
    }
    #main-kabar-1 .article-card-big .date {
        font-size: 12px;
    }
    #main-kabar-1 .article-card-2 .article-card-ba-left {
        flex-basis: 40%;
    }
    #main-kabar-1 .article-card-2 .article-card-ba-left img {
        height: 124px;
    }
    #main-kabar-1 .article-card-2 .article-card-ba-right {
        flex-basis: 55%;
    }
    #main-kabar-1 .article-card-2 h4 {
        line-height: 18px;
    }
    #main-kabar-1 .article-card-2 h4 a {
        font-size: 15px;
    }
    #main-kabar-1 .article-card-2 p {
        margin-top: 15px;
        font-size: 13px;
    }
}

/* MAIN KABAR 2 */
#main-kabar-2 {
    padding: 72px 48px;
    background-color: #fff;
}
#main-kabar-2 img {
    width: 100%;
    height: 271px;
    border-radius: 5px;
}
#main-kabar-2 .article-card-ba-body {
    padding: 15px 0px;
}
#main-kabar-2 .article-card-big h2 a {
    font-weight: 700;
    font-size: 30px;
    color: #25282B;
}
#main-kabar-2 .article-card-big p {
    font-size: 15px;
    color: #52575C;
}
#main-kabar-2 .article-card-big .date {
    font-weight: 600;
    font-size: 18px;
    color: #25282B;
}
#main-kabar-2 a.active {
    background: rgba(143, 155, 179, 0.08);
}
/* RESPONSIVE MAIN KABAR 2 */
@media(max-width: 767px) {
    #main-kabar-2 {
        display: none;
    }
}

/* PAGINATION */
#main-kabar-1 .page-link, #main-kabar-2 .page-link {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: #8F9BB3;
    font-weight: 700;
    font-size: 14px;
    color: #52575C;
}


/* DAFTAR AGEN */
#daftar-agen {
    padding: 32px 64px;
    background-color: #fff;
}
#daftar-agen h1 {
    font-weight: 700;
    font-size: 36px;
    color: #25282B;
}
#daftar-agen h1 ~ p {
    font-size: 22px;
    color: #52575C;
}
/* CUSTOM SELECT */
#daftar-agen #container-custom-select-ba {
    height: 52px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #E8E8E8;
    font-weight: 600;
    font-size: 15px;
    color: #25282B;
}
#daftar-agen .custom-select-ba {
    display: none;
    background-color: #fff;
    position: absolute;
    width: 100%;
    z-index: 10;
    border: 1px solid #E4E9F2;
    border-radius: 4px;
}
#daftar-agen .custom-select-ba .col-lg-12 {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #25282B;
}
#daftar-agen .custom-select-ba .col-lg-12:hover {
    background-color: #3366FF;
    color: #fff;
}
#daftar-agen select {
    height: calc(2em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-weight: 600;
    font-size: 15px;
    color: #25282B;
}
#daftar-agen .thead-ba {
    height: 56px;
    border: 1px solid #A0A4A8;
}
#daftar-agen .thead-ba > .col-lg-3 {
    background-color: #EEFCFB;
}
#daftar-agen .thead-ba h6 {
    margin: 0px;
    font-size: 18px;
    color: #25282B;
}
#daftar-agen .tbody-ba {
    display: flex;
}
#daftar-agen .tbody-ba .tbody-ba-left {
    display: flex;
    flex-basis: 21%;
    justify-content: center;
    align-items: center;
    border: 1px solid #25282B;
    border-top: 0.5px solid #25282B;
    border-right: 0px;
}
#daftar-agen .tbody-ba .tbody-ba-left h3 {
    font-weight: 700;
    font-size: 36px;
    color: #000;
}
#daftar-agen .tbody-ba .tbody-ba-right {
    flex-basis: 79%;
    border: 1px solid #25282B;
    border-top: 0.5px solid #25282B;
    border-left: 0px;
    border-bottom: 0px;
}
#daftar-agen .tbody-ba-right-container {
    display: flex;
    flex-basis: 100%;
}
#daftar-agen .tbody-ba .tbody-ba-right .tbody-ba-right-20 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0px;
    flex-basis: 20%;
    border: 0.5px solid #25282B;
    border-top: 0px;
    overflow: hidden;
}
#daftar-agen .tbody-ba .tbody-ba-right .tbody-ba-right-30 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0px;
    flex-basis: 30%;
    border: 0.5px solid #25282B;
    border-top: 0px;
    overflow: hidden;
}
#daftar-agen .tbody-ba .tbody-ba-right .alamat-agen, #daftar-agen .tbody-ba .tbody-ba-right .nama-agen, #daftar-agen .tbody-ba .tbody-ba-right .kontak-agen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7.5px 0px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}
#daftar-agen .tbody-ba .tbody-ba-right .kontak-agen span, #daftar-agen .tbody-ba .tbody-ba-right .social-media-agen span {
    margin-left: 15px;
}
#daftar-agen .tbody-ba .tbody-ba-right .social-media-agen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7.5px 0px;
    font-weight: 600;
    font-size: 15px;
    color: #000;
}
#daftar-agen .tbody-ba .tbody-ba-right .social-media-agen img {
    height: 28px;
    width: 28px;
}
/* RESPONSIVE DAFTAR AGEN */
@media (max-width: 1050px) {
    #daftar-agen h1 {
        font-size: 28px;
    }
    #daftar-agen h1 ~ p {
        font-size: 18px;
    }
    #daftar-agen .tbody-ba .tbody-ba-left h3 {
        font-size: 28px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .alamat-agen, #daftar-agen .tbody-ba .tbody-ba-right .nama-agen, #daftar-agen .tbody-ba .tbody-ba-right .kontak-agen {
        font-size: 15px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .social-media-agen {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    #daftar-agen {
        padding: 128px 0px;
    }
    #daftar-agen h1 {
        padding: 0px 9px;
        font-size: 16px;
    }
    #daftar-agen h1 ~ p {
        padding: 0px 9px;
        margin: 16px 0px;
        font-size: 15px;
    }
    #daftar-agen #container-custom-select-ba {
        width: calc(100% - 48px);
        margin: 0px auto;
    }
    #daftar-agen .thead-ba h6 {
        font-size: 13px;
    }
    #daftar-agen .tbody-ba .tbody-ba-left {
        display: none;
    }
    #daftar-agen .tbody-ba .tbody-ba-right {
        flex-basis: 100%;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .tbody-ba-right-20 {
        flex-basis: 30%;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .tbody-ba-right-30 {
        flex-basis: 35%;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .alamat-agen {
        font-size: 15px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .kontak-agen {
        font-weight: 400;
        font-size: 10px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .social-media-agen {
        font-size: 12px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .kontak-agen span, #daftar-agen .tbody-ba .tbody-ba-right .social-media-agen span {
        margin-left: 8px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right svg {
        height: 14.5px;
        width: 14.5px;
    }
    #daftar-agen .tbody-ba .tbody-ba-right .social-media-agen img {
        height: 20px;
        width: 20px;
    }
}

#main-form-agen {
    padding: 48px 72px;
    background-color: #fff;
}
#main-form-agen h1 {
    font-weight: 600;
    font-size: 36px;
    color: #25282B;
}
#main-form-agen h2 {
    font-weight: 700;
    font-size: 26px;
    color: #25282B;
}
#main-form-agen label {
    font-weight: 700;
    font-size: 12px;
    color: #25282B;
    text-transform: uppercase;
}
#main-form-agen label.custom-control-label {
    font-weight: 600;
    font-size: 15px;
    color: #25282B;
    text-transform: unset;
}
#main-form-agen .form-control {
    background-color: #F7F9FC;
    border-color: #F7F9FC;
    border-radius: 4px;
    resize: none;
}
#main-form-agen ::placeholder {
    font-size: 15px;
    line-height: 20px;
    color: #8F9BB3;
}
#main-form-agen button {
    background-color: #3366FF;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
#form-mobile {
    display: none;
}
@media (max-width: 1100px) {
    #main-form-agen h1 {
        font-size: 28px;
    }
    #main-form-agen h2 {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    #main-form-agen {
        padding: 128px 24px 64px;
    }
    #main-form-agen h1 {
        font-size: 18px;
    }
    #main-form-agen #form-desktop {
        display: none;
    }
    #form-mobile {
        display: flex;
    }
    #form-mobile h2 {
        font-size: 18px;
    }
    #form-mobile label {
        font-size: 12px;
    }
    #form-mobile button {
        width: 100%;
    }
    #step-form-ba {
        position: relative;
        display: flex;
        width: 100%;
        padding: 0px 24px;
    }
    #step-form-ba .bg-white {
        height: 45px;
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    #step-form-ba .line-1 {
        width: calc(100% - 104px);
        height: 1px;
        display: block;
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #A0A4A8;
    }
    #step-form-ba .line-2 {
        width: calc(33.33% - 72px);
        height: 1px;
        display: block;
        position: absolute;
        top: 25px;
        left: calc(50% + 102px);
        transform: translateX(-50%);
        background-color: #A0A4A8;
    }
    #step-form-ba > div {
        flex-basis: 33.33%;
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    #step-form-ba .step-1 {
        display: flex;
        justify-content: center;
    }
    #step-form-ba .step-2 {
        display: flex;
        justify-content: center;
    }
    #step-form-ba .step-3 {
        display: flex;
        justify-content: center;
    }
    #step-form-ba .step-circle-1, #step-form-ba .step-circle-2, #step-form-ba .step-circle-3 {
        height: 50px;
        display: flex;
        align-items: center;
    }
    #step-form-ba .step-circle-2 {
        justify-content: center;
    }
    #step-form-ba .step-circle-3 {
        justify-content: flex-end;
    }
    #step-form-ba .step-circle-1 .circle-ba, #step-form-ba .step-circle-2 .circle-ba, #step-form-ba .step-circle-3 .circle-ba {
        height: 32px;
        width: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid #8F9BB3;
        background-color: rgba(143, 155, 179, 0.08);
        font-weight: 700;
        font-size: 12px;
        color: #CACCCF;
    }
    #step-form-ba .step-circle-1 .circle-ba.active, #step-form-ba .step-circle-2 .circle-ba.active, #step-form-ba .step-circle-3 .circle-ba.active {
        border: 1px solid #3366FF;
        background-color: rgba(51, 102, 255, 0.08);
        color: #25282B;
    }
    #step-form-ba .step-text {
        height: 50px;
        padding: 0px 5px;
        font-size: 12px;
        font-weight: 600;
        color: #A0A4A8;
    }
    #step-form-ba .step-text.active {
        color: #25282B;
    }
    #form-mobile .form-step-1, #form-mobile .form-step-2, #form-mobile .form-step-3 {
        display: none;
    }
    #form-mobile .form-step-1.active, #form-mobile .form-step-2.active, #form-mobile .form-step-3.active {
        display: block !important;
    }
}


/* MAIN SINGLE PAGE */
#main-page {
    padding: 32px 72px;
    background-color: #fff;
}
#main-page .article-header {
    width: 100%;
    overflow-x: hidden;
}
#main-page .article-header img {
    width: 100%;
}
#main-page .article-header h1 {
    margin-top: 24px;
    font-weight: 700;
    font-size: 30px;
    color: #000;
}
#main-page .article-header .date {
    font-style: 18px;
    color: #52575C;
}
#main-page .article-body {
    width: 100%;
    padding: 24px 0px;
    font-style: 22px;
    color: #52575C;
    overflow-x: hidden;
}
#main-page .article-body h5 {
    font-weight: 700;
    font-size: 22px;
    color: #25282B;
}
/* SETTING TYPE LIST = TANPA ICON */
#main-page .article-body ul {
    padding: 0px;
    # list-style-type: none;
}
#main-page .article-body ul li {
    margin-bottom: 12px;
}
#main-page .article-body ol {
    padding: 0px;
    # list-style-type: none;
}
#main-page .article-body ol li {
    margin-bottom: 12px;
}
#main-page .article-body .daftar-jadi-agen {
    text-align: center;
    margin-top: 56px;
}
#main-page .article-body .daftar-jadi-agen a {
    background-color: #3366FF;
    padding: 0.75rem 1.1rem;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
}
/* RESPONSIVE MAIN SINGLE PAGE */
@media (max-width: 767px) {
    #main-page {
        padding: 100px 0px;
    }
    #main-page .col-lg-12 {
        padding: 0px;
    }
    #main-page .article-header h1 {
        padding: 0px 24px;
        font-size: 18px;
    }
    #main-page .article-header .date {
        padding: 0px 24px;
        font-style: 12px;
    }
    /* SEMUA TAG DI DALAM BODY PADDING 24PX, KECUALI IMAGE */
    #main-page .article-body > * {
        padding: 0px 24px;
    }
    #main-page .article-body ul {
        padding: 0px 24px;
    }
    #main-page .article-body ul li {
        margin-bottom: 8px;
    }
    #main-page .article-body ol {
        padding: 0px 24px;
    }
    #main-page .article-body ol li {
        margin-bottom: 8px;
    }
    #main-page .article-body > img {
        height: 184px;
        padding: 0px 0px;
    }
}


/* MAIN FORM */
#main-form {
    padding: 24px 72px;
    background-color: #fff;
}
#main-form h1 {
    font-size: 36px;
    font-weight: 600;
    color: #25282B;
    letter-spacing: 0.002em;
}
#main-form label {
    font-weight: 700;
    font-size: 12px;
    color: #25282B;
    text-transform: uppercase;
}
#main-form .form-control {
    background-color: #F7F9FC;
    border-color: #F7F9FC;
    border-radius: 4px;
    resize: none;
}
#main-form ::placeholder {
    font-size: 15px;
    line-height: 20px;
    color: #8F9BB3;
}
#main-form button {
    background-color: #3366FF;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
/* RESPONSIVE MAIN FORM */
@media (max-width: 1050px) {
    #main-form h1 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    #main-form {
        padding: 128px 24px 64px;
    }
    #main-form h1 {
        font-size: 18px;
    }
    #main-form button {
        width: 100%;
    }
}
