:root {
    --dark-color: #CEAB71;
    --light-color: #E7D1AD;
    --black-color: #211E1E;
    --white-color: #ffffff;
}

@import url('https://fonts.googleapis.com/css2?family=Taviraj:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');

/* @import url('./font/MyriadPro/style.css'); */
@font-face {
    font-family: 'Myriad Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Regular'), url('font/MyriadPro/MYRIADPRO-REGULAR.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Condensed';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Condensed'), url('font/MyriadPro/MYRIADPRO-COND.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Condensed Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Condensed Italic'), url('font/MyriadPro/MYRIADPRO-CONDIT.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Light';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Light'), url('font/MyriadPro/MyriadPro-Light.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Semibold';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Semibold'), url('font/MyriadPro/MYRIADPRO-SEMIBOLD.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Semibold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Semibold Italic'), url('font/MyriadPro/MYRIADPRO-SEMIBOLDIT.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Bold Condensed';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Bold Condensed'), url('font/MyriadPro/MYRIADPRO-BOLDCOND.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Bold'), url('font/MyriadPro/MYRIADPRO-BOLD.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Bold Italic'), url('font/MyriadPro/MYRIADPRO-BOLDIT.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Bold Condensed Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Bold Condensed Italic'), url('font/MyriadPro/MYRIADPRO-BOLDCONDIT.woff') format('woff');
}

body,
html {
    background-color: var(--black-color);
    background-image: url(img/uliran.png);
    background-size: 150px 150px;
    background-repeat: repeat;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; */
}

/* body::before,
html::before {
    background: var(--black-color);
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    bottom: 0;
} */
@font-face {
    font-family: caruban;
    src: url(./font/Caruban-EBK8.ttf);
}

@font-face {
    font-family: avenir;
    src: url(./font/AvenirNextLTPro-DemiCn.otf);
}

.preloader {
    width: 100%;
    height: 100%;
    background: var(--black-color);
    z-index: 99999;
    position: fixed;
}

.preloader div {
    /* background: red; */
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 320px;
    height: 100px;
}

.preloader .logo_surya {
    width: 100px;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.preloader .logo_fesma {
    width: 150px;
    margin-left: 30px;
    /* float: right; */
}

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

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

.preload {
    position: fixed;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
}

.frameDoor {
    position: fixed;
    background-color: transparent;
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0px;
}

.door {
    background-color: var(--black-color);
    display: block;
    width: 50%;
    height: 100%;
    padding: 0;
    margin: 0;
    /*Speed of the Door animation*/
    transition: all 20s ease-in-out;
}

.door1 {
    transform-style: preserve-3d;
    transition: transform .5s, box-shadow .5s;
    transform-origin: left center;
}

.door2 {
    transform-style: preserve-3d;
    transition: transform .5s, box-shadow .5s;
    transform-origin: right center;
}

.door img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doorOpen1 {
    transform: perspective(1200px) rotateY(-105deg);
}

.doorOpen2 {
    transform: perspective(1200px) rotateY(105deg);
}

@media (min-width: 1200px) {
    .container {
        max-width: 100% !important;
        padding-left: 100px;
        padding-right: 100px;
    }
}

.navbar {
    background: #785722;
    border-bottom-right-radius: 50px;
    padding: 15px 0;
}

.navbar ul li {
    padding: 10px 0 !important;
    padding-right: 8px !important;
}

.navbar ul li a {
    /* color: var(--white-color) !important; */
    font-family: "Myriad Pro Regular";
    font-size: 13px;
    font-weight: 300;
}

.nav-link {
    color: var(--white-color) !important;
}

.dropdown-item {
    color: #785722 !important;
}

.dropdown-item:focus {
    background-color: #fff !important;
}

section {
    padding-top: 100px;
}

.taviraj {
    font-family: 'Taviraj', serif !important;
}

.text-white {
    color: var(--white-color);
}

.font-27 {
    font-size: 20px;
}

.font-30 {
    font-size: 15px;
    font-family: "Myriad Pro Light" !important;
}

.light {
    font-weight: 300;
}

.no_pad {
    padding: 0 !important
}

.title {
    font-size: 24px;
    text-align: center;
    font-family: caruban;
    color: var(--dark-color);
}

.welcome {
    position: relative;
}

.welcome-wrapper {
    position: absolute;
    bottom: 0px;
}

.welcome section {
    padding-top: 180px;
}

.welcome p {
    font-family: "Myriad Pro Light";
}

.welcome_text {
    font-size: 75px;
    font-style: italic;
    color: var(--light-color);
    line-height: 100%;
}

.img_banner {
    width: 100%;
    height: auto;
    border-top-left-radius: 50px;
}

.about {
    /* width: 600px; */
    z-index: 999 !important;
}

.frame {
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    padding: 30px;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
}

.frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    border: 20px solid transparent;
    border-image: url(../assets/img/frame.png) 30 round;
    -webkit-border-image: url(../assets/img/frame.png) 30 round;
}

.title_sb {
    font-size: 50px;
    color: var(--light-color);
}

/* .box_frame {
    margin-bottom: 30px;
}
.box_frame:hover .frame img {
    filter: grayscale(0%);
    opacity: 1;
}
.box_frame:hover .frame {
    transform: rotate(8deg) scale(1.05);
}
.box_frame a {
    text-align: center;
    font-size: 27px;
    color: var(--white-color);
    font-family: taviraj;
    text-decoration: none;
} */
.video_about {
    width: 100%;
    height: 350px;
    /* margin-top: 35px; */
}

.capt {
    font-size: 40px;
    font-weight: 600;
    color: var(--light-color);
    line-height: 120%;
}

.capt:hover {
    text-decoration: none;
    color: var(--light-color);
}

.btn-white {
    color: var(--dark-color);
    background: var(--white-color);
}

.paper {
    background-image: url(../assets/img/paper.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    background-color: #785722;
    background-position: top right;
    color: #fff !important;
    height: auto;
    min-height: 400px;
    padding: 80px 80px 40px 80px;
    font-family: 'Taviraj', serif !important;
    font-weight: 300;
}

.paper table {
    margin-top: 30px;
    font-size: 13px;
    font-family: "Myriad Pro Regular";
}

.paper table tr td {
    padding-bottom: 30px;
    padding-right: 15px;
}

.agenda-tabs li {
    /* display: block !important; */
    /* width: 100% !important; */
    /* margin-bottom: 100px; */
    /* margin-right: 50px !important; */
    /* margin-left: 50px !important; */
    display: flex;
}

.agenda-tabs li a {
    color: #fff !important;
    font-size: 20px;
    line-height: 100%;
    padding: 15px;
}

.agenda-tabs li a.active {
    background-color: #CEAB71;
    border-radius: 40px;
    color: #785722 !important;
}

.agenda-tabs li a span {
    font-size: 20px;
}

.agenda_time {
    vertical-align: top;
    font-family: 'Myriad Pro Semibold';
    width: 20%;
}

.agenda_pisah {
    vertical-align: top;
}

.agenda {
    vertical-align: top;
}

.gapura {
    width: 100%;
    height: 507px;
}

.cont_live {
    padding-left: 0;
    margin-top: 150px
}

.bg-live {
    background: url(./img/bg_live.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

.live_stream {
    width: 100%;
    height: 507px;
    border: 20px solid transparent;
    border-image: url(../assets/img/frame.png) 30 round;
    -webkit-border-image: url(../assets/img/frame.png) 30 round;
}

.sub_title {
    font-size: 35px;
    color: var(--light-color);
    font-weight: 500;
}

/* .footer .sub_title {
    font-size: 20px;
}
.foot-hr {
    margin-top: 50px;
}
.table_footer {
    color: var(--white-color);
    font-size: 13px;
    font-family: taviraj;
}
.table_footer img {
    margin-top: 0px;
}
.table_footer tr td {
    padding: 15px 0
}
.table_footer .desc {
    padding-left: 15px;
} */
.footer {
    padding-top: 100px;
    font-family: "Myriad Pro Regular";
}

.footer-logos {
    background-color: #785722;
    border-radius: 20px;
    width: 80%;
    margin: auto;
    padding: 10px;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
}

.footer-logos img {
    height: 40px;
    margin: 10px 13px;
}

.footer-bottom {
    background-color: #211e1e;
    border-radius: 24px;
    padding: 40px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
    color: #fff;
    border-top: 3px solid #785722;
}

.footer-bottom h3 {
    font-size: 22px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-bottom p.copyright {
    font-size: 10px;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid var(--dark-color);
    margin: 1em 0;
    padding: 0;
}

.foot_bar {
    width: 100%;
}

.umkm-detail {
    /* padding-left: 120px;
    padding-right: 120px; */
    padding-top: 75px;
    padding-bottom: 0px;
}

#umkm_slider {
    padding-left: 100px;
}

.box_relate_swiper {
    padding-right: 0;
}

.back {
    font-size: 20px;
    color: #fff;
    text-decoration: underline;
}

.back img {
    margin-top: -5px;
    margin-right: 10px;
    margin-left: 10px;
}

.back:hover {
    color: #fff;
}

#sb-detail h1 {
    font-size: 36px;
    color: #fff;
}

.sb-title.sejarah-sb-title {
    margin-top: 80px;
}

.sb-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.btn.btn-live,
.btn.btn-live:active,
.btn.btn-live:hover,
.btn.btn-live:focus {
    background-color: #DAC094 !important;
    color: #785722 !important;
    border-radius: 25px;
}

#sb-detail .title {
    text-align: left;
}

#sb-detail .sb-text {
    margin-top: 32px;
    margin-bottom: 40px;
    font-size: 13px !important;
    padding-left: 50px;
    line-height: 30px;
    color: #fff;
    text-align: justify;
    font-family: "Myriad Pro Regular" !important;
}

#sb-detail .sb-text * {
    font-family: "Myriad Pro Regular" !important;
    font-size: 13px !important;
}

.thumbnail {
    color: #fff;
}

.thumbnail:hover a {
    color: var(--dark-color);
}

.sb-img-related,
.list-img {
    width: 100%;
    height: 324px;
    object-fit: contain;
    padding: 30px;
    background-color: #785722;
    border-bottom: 1px solid #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.thumbnail h3 {
    font-size: 27px !important;
}

.thumbnail p {
    font-size: 13px !important;
    /* width: 200px !important; */
    /*margin: auto !important;*/
}

.list {
    padding: 150px;
    padding-bottom: 0px;
}

.list p {
    width: 550px;
    margin: 25px auto;
    font-size: 20px;
    color: #fff;
}

/*ESA*/
.btn-category {
    border-color: #785722 !important;
    color: #785722 !important;
    font-size: 16px;
    /* text-decoration: underline; */
}

.btn-category:active,
.btn-category:focus,
.btn-category:hover,
.btn-category.active {
    /*ESA*/
    background-color: #785722 !important;
    color: #fff !important;
}

.btn-category a {
    text-decoration: none !important;
    padding: 25px;
}

.list-head {
    margin-bottom: 100px;
    margin-top: 50px;
}

.list .thumbnail {
    padding: 25px;
}

.list .list-img {
    margin-top: 0px !important;
}

.umkm-list .list-head {
    margin-bottom: 0px;
}

h3 a,
h3 a:hover {
    color: #fff;
    text-decoration: none;
}

.umkm-detail h1 {
    font-size: 80px;
    color: #fff;
    margin-bottom: 40px;
}

/* .umkm-detail .col-md-6 {
    margin-top: 85px;
} */
.umkm-title .title {
    text-align: left !important;
    margin-bottom: 35px;
}

.umkm-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 45px;
}

.umkm-detail .swiper-slide img {
    height: 665px;
    width: 100%;
    object-fit: cover;
}

.umkm-detail .mySwiper img {
    height: 155px;
}

.umkm-detail .mySwiper {
    margin-top: 40px;
}

.umkm-detail .mySwiper,
.umkm-detail .mySwiper2 {
    margin-right: 40px;
}

.store {
    margin-bottom: 35px;
}

.store p {
    font-size: 13px;
    color: #fff;
}

.store .title {
    text-align: left !important;
    font-size: 24px;
    margin-bottom: 30px;
}

.store img {
    width: 25px;
    margin-right: 20px;
    height: 25px;
}

.store .icon_sosmed {
    width: 30px;
    height: auto;
}

.title.price,
.store .title {
    /* font-family: 'taviraj' !important; */
    margin-top: 90px;
    display: inline;
}

.store .store_desc {
    font-size: 13px;
    font-weight: 300;
    font-family: "Myriad Pro Regular";
}

.info-pembelian p {
    color: #fff;
    margin-top: 30px;
    font-size: 25px;
}

.info-pembelian .btn,
.info-pembelian .btn:hover {
    color: #785721 !important;
    font-size: 20px;
}

.info-pembelian .col-4 p,
.info-pembelian .col-3 p {
    font-size: 22px;
    margin-top: 20px;
}

.info-pembelian .col-4 img,
.info-pembelian .col-3 img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-top: 45px;
    transition-duration: 0.5s;
}

.info-pembelian a:hover {
    text-decoration: none;
}

.info-pembelian .col-4:hover img {
    transform: scale(1.1) rotate(5deg);
}

.thumbnail p.thumb-price {
    font-family: 'Taviraj', serif !important;
    font-size: 25px !important;
}

.related {
    margin-top: 100px;
}

.related .title {
    text-align: left !important;
}

.tour {
    background-image: url(img/tour.png);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.tour:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.4);
}

.tour h1 {
    font-size: 80px;
    margin-top: 200px;
    color: #FAC678;
}

.tour h1 i {
    color: #fff;
}

.tour h2 {
    color: #fff;
    font-size: 40px;
}

.tour .btn-white {
    color: #785722;
    padding: 15px 75px;
    margin: 100px 32px;
}

.tour .login,
.tour .register {
    margin: auto;
    margin-top: 135px;
    border: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.card-header {
    padding: 0px !important;
    background-color: #fff !important;
    border-bottom: 3px solid #785722 !important;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#logintab li {
    font-size: 20px !important;
    margin: 0px !important;
    padding: 0px !important;
}

#logintab a {
    color: #785722 !important;
    padding-top: 20px;
    padding-bottom: 30px;
    transition-duration: 0.25s;
}

#logintab a.active {
    background-color: #785722;
    color: #fff !important;
    font-style: italic;
}

.tour .form-control {
    border: 1px solid #785722;
    border-radius: 5px;
    margin-top: 16px;
    font-size: 16px;
    padding: 10px;
}

.tour .form-control::placeholder {
    color: #C4C4C4;
}

.forgot {
    margin-top: 10px;
}

.card-body {
    font-family: 'avenir';
}

.card-body a,
.card-body a:hover {
    color: #785722;
    text-decoration: none;
    font-size: 13px;
}

.btn-login {
    background-color: #CEAB71;
    color: #fff;
    font-size: 20px;
    margin-top: 16px;
}

.login .text-center,
.register .text-center {
    padding-top: 30px;
    padding-bottom: 20px;
}

.supported h3 {
    color: #fff;
    margin-bottom: 25px;
    margin-top: 70px;
    font-size: 13px;
}

.supported img {
    margin-right: 25px;
    margin-bottom: 25px;
    height: 60px;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

.mySwiper3 img {
    height: 224px !important;
}

.mySwiper3 .swiper-slide {
    width: 27%;
    text-align: center !important;
}

.register .card-header {
    background-color: #785722 !important;
    padding: 20px !important;
    font-size: 20px !important;
    color: #fff !important;
}

.register {
    margin-bottom: 50px !important;
}

.register .agreement {
    margin-top: 30px;
}

.register label {
    cursor: pointer;
}

#glass {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    display: none;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, .6);
    z-index: 999;
}

/* .agenda-tabs {
    margin-bottom: 30px;
} */
.agenda-tabs a {
    font-family: 'Taviraj', serif !important;
    padding: 0px;
    color: #000 !important;
    font-size: 20px;
}

.agenda-tabs a.active {
    background-color: transparent;
    font-weight: bold !important;
}

.coming {
    background-image: url(img/coming.png);
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.card_down {
    margin-bottom: 50px;
}

.card_down .card_img img {
    height: auto;
    object-fit: cover;
    border: 20px solid transparent;
    border-image: url(../assets/img/frame.png) 30 round;
    -webkit-border-image: url(../assets/img/frame.png) 30 round;
}

.card_down .card_img iframe {
    border: 20px solid transparent;
    border-image: url(../assets/img/frame.png) 30 round;
    -webkit-border-image: url(../assets/img/frame.png) 30 round;
}

.card_down .title {
    margin-top: 30px;
}

.card_desc {
    line-height: 25px;
    /* margin-top: 20px; */
}

.card_down .card_desc .card_title {
    font-size: 13px;
    /* font-weight: bolder; */
    font-family: "Myriad Pro Bold";
}

.tari-desc * {
    font-family: "Myriad Pro Light" !important;
    font-size: 13px !important;
}

.card_down .card_desc .desc {
    font-size: 13px;
    font-weight: 300;
    font-family: "Myriad Pro Regular";
}

.budaya .list-img {
    height: 324px;
    width: 100%;
    object-fit: cover;
    margin-top: 0;
}

.budaya_title {
    line-height: 25px;
    margin-bottom: 15px;
}

.budaya_title a {
    font-size: 20px;
    color: #CEAB71 !important;
    line-height: 20px;
    font-family: 'caruban' !important;
}

.budaya_desc * {
    font-size: 13px !important;
    color: white !important;
    font-family: "Myriad Pro Regular" !important;
}

.list_budaya {
    /*ESA*/
    background-color: #785722;
    margin-top: 15px;
    margin-bottom: 45px;
    border-radius: 10px;
    /* box-shadow: 2px 2px 4px rgba(255, 255, 255, 200); */
}

.list_budaya a {
    /*color: #fff !important;*/
}

/* .list_budaya span {
    color: #000;
    font-size: 13px;
} */
.list_budaya img {
    height: 325px;
}

.img_suryamajapahit {
    height: auto;
    width: 70%;
}

.budaya-head {
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding-top: 125px;
    padding-bottom: 25px;
    position: relative;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.budaya-head:before {
    content: "";
    position: absolute;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #211E1Eaa;
}

.batik-head {
    background-image: url(../assets/img/banner/batik.png);
}

.pusaka-head {
    background-image: url(../assets/img/banner/pusaka.png);
}

.wayang-head {
    background-image: url(../assets/img/banner/wayang.png);
}

.tari-head {
    background-image: url(../assets/img/banner/tari.png);
}

.terakota-head {
    background-image: url(../assets/img/banner/terakota.png);
}

.tari_img,
.heritage_img {
    width: 95% !important;
    margin: auto !important;
}

.tari-text {
    background-color: #785722;
    padding-top: 100px;
    padding-bottom: 20px;
    margin-top: -100px;
    border-radius: 24px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 700px;
}

.heritage-text {
    background-color: #785722;
    padding-top: 100px;
    padding-bottom: 20px;
    margin-top: -100px;
    border-radius: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

.heritage-text .title a {
    color: var(--dark-color);
}

.col-ngarang {
    max-width: 3% !important;
}

.link_more {
    margin-top: 30px;
    font-family: 'Taviraj', serif !important;
    font-size: 20px;
}

.product_title {
    font-size: 24px;
    font-family: caruban;
    color: var(--dark-color);
}

.product_price {
    font-size: 24px;
    color: var(--dark-color);
}

.sub_title_product {
    font-size: 13px;
    font-family: "Myriad Pro Bold";
    color: #211E1E;
    /* font-weight: 600; */
}

.product_desc {
    font-size: 13px;
    font-weight: 300;
    font-family: "Myriad Pro Regular";
    /* color: var(--white-color); */
}

.card_product {
    background-color: white;
    /* padding: 0px 20px; */
    border-radius: 0 0 50px 0;
    overflow: hidden;
}

.card_product .card_body {
    padding: 0px 15px;
}

/* .card_product p {
    color: #000 !important;
} */
.card_product .col-md-4 {
    padding: 15px 15px 0px 15px;
    background: #785722;
    box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.25);
}

.card_product .product_img {
    height: 350px;
    object-fit: cover;
    cursor: pointer;
    border: 10px solid transparent;
    border-image: url(../assets/img/frame.png) 30 round;
    -webkit-border-image: url(../assets/img/frame.png) 30 round;
}

.card_product .col-md-8 {
    background-image: url(../assets/img/product_bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% 80px;
    padding: 20px 20px 0 20px;
}

.card_product tr td {
    padding-bottom: 30px;
    vertical-align: top;
}

.table_mp {
    margin-top: 30px;
    width: 212px;
    float: right;
}

.product_head {
    margin-bottom: 30px;
}

.mp p {
    margin-top: 15px;
}

.text_mp {
    font-size: 9px;
    color: var(--black-color);
    margin-top: 15px;
    font-family: "Myriad Pro Regular";
}

.icon_mp {
    width: 30px;
}

.related_title {
    font-family: caruban;
    font-size: 27px;
    color: var(--dark-color) !important;
}

.section-title-img {
    width: 40px;
}

.det-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    /*padding: 20px;*/
}

.sbhome img {
    height: 300px;
}

.sbhome_desc {
    font-family: 'Myriad Pro Regular';
    font-size: 13px;
}

.umkm-frame {
    border: 20px solid transparent;
    border-image: url(../assets/img/frame.png) 30 round;
    -webkit-border-image: url(../assets/img/frame.png) 30 round;
    margin-bottom: 20px;
    height: 352px;
}

.umkm-frame img {
    height: 100%;
    object-fit: contain;
}

.sejarah-img {
    height: 420px;
    object-fit: cover;
}

.infopembelian img {
    width: 50px;
    height: 50px;
}

.link_katalog {
    font-size: 18px;
    font-family: "Myriad Pro Light";
}

.link_katalog img {
    height: 20px;
}

.karakter img {
    margin-top: 0px;
}

.karakter_desc {
    padding: 10px 40px;
    font-size: 18px;
}

.batik_title {
    color: var(--dark-color) !important;
}

.capt-30 {
    font-size: 30px !important;
}

.budaya_title.heritage_title {
    text-align: center;
}

.budaya_title.heritage_title:hover a {
    color: var(--dark-color) !important;
}

.umkm .list-img,
.umkm-related-img {
    object-fit: contain !important;
    /*background-color: #785722;*/
    height: 225px;
}

.umkm .budaya_title {
    line-height: 30px;
}

.heritage-list-img {
    height: 400px !important;
    object-fit: cover;
}

.logo1 {
    height: 50px;
    width: auto;
}

.logo2 {
    height: 25px;
    width: auto;
}

.logo3,
.logo4 {
    height: 30px;
    width: auto;
}

.logo5 {
    height: 25px;
}

.media-container {
    padding: 0px;
    margin-right: -200px;
    margin-top: 40px;
}

#media {
    margin-top: 60px;
    background-color: #785722;
    border-bottom-left-radius: 40px;
    padding: 20px 20px 20px 30px !important;
}

/* #media .col-md-4 {
    padding-left: 90px;
} */
#media h3 {
    font-size: 13px;
    margin: 0px;
    line-height: 20px;
    width: 70%;
    color: #fff;
}

#media img {
    width: 50px;
    margin-right: 16px;
    height: auto;
}

#media img,
#media h3 {
    display: inline-block;
    vertical-align: middle;
}

.about {
    position: absolute;
    bottom: 0;
}

.about .capt {
    font-size: 25px;
    line-height: 35px;
    margin-top: 0px;
    /* position: absolute; */
    bottom: 0px;
}

.about p {
    font-size: 13px;
}

.about_desc {
    font-family: "Myriad Pro Light";
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.5px;
}

.sejarahbudaya-container {
    /* background-color: #785722; */
    padding: 32px 0;
    position: relative;
}

.sejarahbudaya-container:before {
    content: "";
    position: absolute;
    left: 100px;
    right: 100px;
    bottom: 0px;
    top: 60%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #785722;
}

.sejarahbudaya-container a p {
    color: #fff !important;
}

.sejarahbudaya-container a p:hover {
    text-decoration: none;
}

.sejarahbudaya-container .sbhome {
    width: 80%;
    margin: auto;
}

.sejarahbudaya-container .col-md-5 {
    padding: 10px 100px;
}

.box_img_umkm {
    position: relative;
    z-index: 99;
}

.box_img_umkm .desc {
    position: absolute;
    top: 40%;
    left: 40px;
    right: 40px;
    margin: auto;
    z-index: 100;
}

.box_img_umkm .desc a,
.box_img_umkm .desc p {
    text-shadow: 1px 1px #000;
}

.detail-frame {
    margin-bottom: 0px;
    padding: 0px 30px;
}

.capt_guest {
    font-size: 25px;
    font-weight: 600;
    color: var(--light-color);
}

#swiper_guest,
#swiper_guest_hadir {
    padding-left: 100px;
}

#swiper_guest .swiper-slide,
#swiper_guest_hadir .swiper-slide {
    padding-top: 75px;
    padding-bottom: 30px;
    width: 500px;
}

.swiper-next {
    font-size: 10px;
    margin-right: 40px;
}

.pandangan .guest_item {
    min-height: 550px;
}

.guest_item {
    color: var(--white-color);
    background: #785722;
    padding: 30px;
    border-radius: 10px;
    transition-timing-function: ease-in-out;
    transition-duration: 0.25s;
}

.guest_item:hover {
    transform: scale(1.05);
}

.guest_item:hover .guest_image img {
    filter: grayscale(0%);
}

.guest_image {
    height: 100px;
    width: 100px;
    object-fit: cover;
    padding: 15px;
    margin-top: -80px;
    /* border-radius: ; */
    background: url(img/bg_guest.png);
    background-size: 100% 100%;
}

.guest_image img {
    height: 100%;
    width: 100%;
    /* position: absolute; */
    border-radius: 100%;
    object-fit: cover;
    /* background: url(img/bg_guest.png);
    background-size: 100% 100%; */
    filter: grayscale(100%);
}

.guest_name {
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    margin-top: -15px;
    font-family: 'Taviraj', serif !important;
}

.guest_as {
    margin-top: 5px;
    font-size: 15px;
    line-height: 100%;
    font-weight: 300;
    font-family: 'Taviraj', serif !important;
}

.guest_link {
    margin-top: 30px;
}

.guest_link a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.guest_desc {
    font-size: 13px !important;
    margin-top: 30px !important;
    font-family: 'Myriad Pro Light' !important;
    text-align: justify !important;
    line-height: 17px !important;
}

.guest_desc * {
    font-size: 13px !important;
    margin-top: 30px !important;
    font-family: 'Myriad Pro Light' !important;
    text-align: justify !important;
    line-height: 17px !important;
}

.box_umkm {
    color: var(--white-color);
    text-align: center;
    background: #785722;
    border-radius: 10px 10px 0 0;
    padding: 35px;
    padding-top: 0;
    min-height: 300px;
}

.box_umkm img {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 100%;
    margin-top: -90px;
    background: var(--white-color);
}

.box_umkm .umkm_title {
    font-size: 20px;
    font-family: 'Taviraj', serif !important;
    font-weight: 600;
    margin-top: 30px;
}

.box_umkm .umkm_title a {
    color: white;
}

.box_umkm .umkm_desc {
    font-family: 'Myriad Pro Light';
    font-size: 13px;
}

.box_umkm .umkm_image {
    height: 210px;
    width: 210px;
    padding: 25px;
    /* margin-top: -80px; */
    background: url(img/bg_umkm.png);
    background-size: 100% 100%;
}

.box_umkm .umkm_image img {
    height: 100%;
    width: 100%;
    /* position: absolute; */
    margin-top: unset;
    border-radius: 100%;
    object-fit: contain;
}

.swiper-slide .umkm_image img {
    height: 100% !important;
}

.swiper-slide .umkm_image {
    margin: auto;
}

.swiper-slide .box_umkm {
    min-height: 250px;
}

#galeri_umkm .box_umkm {
    background-image: url(../assets/img/bg_box_umkm.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 60%;
}

#galeri_umkm .umkm div:last-child .box_umkm {
    margin-bottom: 0px;
}

a:not([href]) {
    cursor: pointer;
}

.bread-crumb {
    background-color: transparent !important;
    font-family: 'Myriad Pro Regular';
    font-size: 14px;
    color: #fff;
    margin: 20px;
}

.bread-crumb a {
    color: #CEAB71;
}

.bread-crumb span {
    margin: 0 10px;
}

.history-detail {
    font-family: "Myriad Pro Light" !important;
}

.mgw-container {
    position: relative;
}

.mgw-logo {
    position: absolute;
    right: 50px;
    bottom: 0px;
    width: 80px;
}

.blog-writer-img {
    border-radius: 100px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.blog-writer-name {
    padding-top: 10px;
}

.blog-writer-name {
    color: #fff !important;
    font-family: 'Myriad Pro Light' !important;
}

.blog-text * {
    color: #fff !important;
    font-family: 'Myriad Pro Light' !important;
    text-align: left !important;
}

.blog-img {
    height: 350px;
    object-fit: cover;
}

.blog-title {
    font-family: 'Myriad Pro Bold' !important;
}

.literasi {
    position: fixed;
    right: 0;
    bottom: 0;
    background: url(/assets/img/bg_literatur.png);
    background-size: cover;
    color: var(--white-color);
    font-size: 13px;
    font-family: "Myriad Pro Light";
    z-index: 99;
    padding: 15px;
    border-radius: 20px 0 0 20px;
    text-align: center;
    width: 275px;
    transform: translateX(215px);
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
}

.literasi:hover {
    transform: translateX(0px);
}

.literasi tr td {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
}

.literasi tr td a {
    color: white;
}

.liter .btn-mgw {
    background: #785722;
    color: white;
    font-size: 13px;
}

.btn-mgw:hover {
    color: white;
}

.btn-mgw img {
    height: 15px;
    margin-top: -5px;
}

#sound {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    cursor: pointer;
    transition-duration: 0.5s;
    z-index: 999;
}

#sound:hover {
    transform: scale(1.1);
}
