/* Styles for dialog window */
#small-dialog {
    background: white;
    padding: 20px 30px;
    text-align: left;
    max-width: 40%;
    margin: 40px auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    #small-dialog {
        max-width: 80%;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 375px) {
    #small-dialog {
        max-width: 90%;
        padding: 10px 15px;
    }
}

#small-dialog .contact-form {
    margin-top: 0;
    box-shadow: initial;
}


/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);

    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;

    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

footer .pbmit-contact-widget-email a,
footer .pbmit-contact-widget-phone a {
    color: var(--pbmit-global-color);
}

footer .pbmit-contact-widget-line a {
    color: var(--pbmit-link-color-hover);
}

.footer-mini-menu {
    display: flex;
}

.footer-mini-menu ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-mini-menu ul li+li {
    margin-left: 20px;
}

.footer-mini-menu a::before {
    position: absolute;
    content: '\e814';
    left: 0;
    font-size: 16px;
    top: 0px;
    color: inherit;
    font-family: 'pbminfotech-base-icons';
}

.footer-mini-menu a {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    font-weight: 400;
}

.top_header_btn {
    padding-top: 30px;
    text-align: left;
}

.contact-form-pages {
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .contact-form-pages {
        margin-top: 10px;
    }
}

.price_items_header {
    padding: 0 0 12px 0;
    border-bottom: 1px solid #dadada;
    margin: 0 0 12px 0;
    font-size: 24px;
    line-height: 38px;
    color: #373737;
}

.price_items_header_link {
    font-size: 24px;
    line-height: 38px;
}

.price_items {
    position: relative;
    padding: 0 40px 30px 40px;
}

@media screen and (max-width: 768px) {
    .price_items {
        position: relative;
        padding: 0 20px 30px 20px;
    }
}

@media screen and (max-width: 520px) {
    .price_items {
        position: relative;
        padding: 0 5px 30px 5px;
    }
}

.price_item {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dadada;
}

.price_items_kode {
    width: 20%;
}

.price_items_name {
    width: 65%;
}

.price_items_price {
    width: 10%;
    text-align: right;
}

@media screen and (max-width: 520px) {
    .price_item {
        flex-wrap: wrap;
    }

    .price_items_kode {
        width: 100%;
    }

    .price_items_price {
        width: 30%;
    }
}

.site-header-phone {
    margin-left: 22px;
    margin-right: 22px;
}

.site-header-phone .pbmit-ihbox-icon-wrapper {
    font-size: 40px;
    line-height: 60px;
    color: var(--pbmit-white-color);
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #04947d;
}

.site-header-phone .pbmit-ihbox-icon-wrapper a {
    color: var(--pbmit-white-color);
    display: block;
}

@media screen and (min-width: 1199px) {
    .site-header-phone {
        display: none;
    }
}

.block_people_photos_header {
    padding: 20px 30px;
}

.block_people_photos {
    position: relative;
    width: 100%;
    background-position: center center;
    background-attachment: scroll;
    background-image: url('../images/block_people_photos.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.block_people_photos_header {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.block_people_photos_header h3 {
    color: #ffffff;
    font-size: 40px;
    padding: 30px 0 30px;
}

.block_people_photos_inner {
    position: relative;
    padding: 0 0 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*display: grid;*/
    width: 100%;
}

.block_people_photos_item {
    /*width: 160px;
    height: 160px;*/
    width: 12%;
    /*height: auto;*/
    position: relative;
    padding-top: 12%;
}

@media screen and (max-width: 1009px) {
    .block_people_photos_item {
        width: 24%;
        padding-top: 24%;
    }
}

@media screen and (max-width: 509px) {
    .block_people_photos_item {
        width: 49%;
        padding-top: 49%;
    }
}

.block_people_photos_item img {
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
    /*height: 140px;
    width: 140px;*/
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 12px;
    transition:
        width 1s,
        height 1s,
        transform 0.5s;
}

.block_people_photos_item:hover img {
    /*width: 150px;
    height: 150px;*/
    /*top: 5px;
    left: 5px;*/
    transform: scale(1.2);
}

@media screen and (max-width: 709px) {
    .block_people_photos_inner {
        padding: 0 15px 20px 15px;
    }

    .block_people_photos_header {
        padding: 20px 15px;
    }
}

.people-history {
    background: white;
    padding: 15px 20px;
    text-align: left;
    width: 80%;
    max-width: 740px;
    margin: 40px auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    .people-history {
        max-width: 80%;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 375px) {
    .people-history {
        max-width: 90%;
        padding: 10px 15px;
    }
}

.people-history .contact-form {
    margin-top: 0;
    box-shadow: initial;
    padding: 0;
}

.people-history-form-name {
    font-size: 30px;
    font-weight: var(--pbmit-heading-font-variant);
    padding: 0 0 10px 0;
    font-family: var(--pbmit-heading-typography-font-family);
    color: #5e4339;
    line-height: 1;
}

.people-history-form-hd {
    color: #42341e;
    font-size: 18px;
    padding: 0 0 5px 0;
    font-weight: 700;
}

.people-history-form-work {
    padding: 0 0 10px 0;
}

.people-history-form-text {
    color: #42341e;
    font-size: 16px;
}

.people-history-form-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.people-history-form-text ol {
    list-style-type: number;
    margin-left: 20px;
}

.people-history-form-photos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: space-around;
}

.people-history-form-photos-column {
    width: 48%;
}

.people-history-form-photos-column1 {
    width: 52%;
}

.people-history-form-photos-column2 {
    width: 44%;
}

@media screen and (max-width: 505px) {
    .people-history-form-photos-column {
        width: 100%;
    }

    .people-history-form-photos-column1 {
        width: 100%;
    }

    .people-history-form-photos-column2 {
        width: 100%;
    }
}

.people-history-form-photos-column img+img {
    margin-top: 20px;
}

.people-history-form-photos-column2 img+img {
    margin-top: 10px;
}

.new_style_h1 {
    display: inline-block;
    background-color: #b9aa9b;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 12px;
}

.new_style_pod_h1 {
    display: inline-block;
    background-color: #918474;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 12px;
}

.new_style_pod_h1 a {
    color: #fff !important;
}

@media screen and (min-width: 670px) {
    .pbmit-title-bar-wrapper-fixed {
        background-attachment: fixed;
    }
}

.container_main_dop {
    padding: 20px 0;
    position: relative;
}

.container_main_slider {
    display: inline-block;
    background-color: #b9aa9b8a;
    padding: 15px 20px;
    border-radius: 12px;
    position: relative;
}

.new_swiper_arrow .swiper-button-next, .new_swiper_arrow .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.75);
    /*opacity: 0.25 !important;*/
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    transition: background-color 0.4s ease, opacity 0.4s ease;
    /*border:1px solid var(--pbmit-global-color);*/
}

.new_swiper_arrow .swiper-button-next {
    /*right: 20px;*/
    right: -20px;
}

.new_swiper_arrow .swiper-button-prev {
    /*left: 20px;*/
    left: -20px;
}

.new_swiper_arrow .swiper-button-prev:after {
    transform: rotate(180deg);
}

.new_swiper_arrow .swiper-button-prev svg, .new_swiper_arrow .swiper-button-next svg {
    transition: width 0.2s ease;
}

.new_swiper_arrow .swiper-button-next.swiper-button-disabled, .new_swiper_arrow .swiper-button-prev.swiper-button-disabled {
    display: none;
}

.bswiper {
    position: relative;
}

.new_swiper_arrow_big {
    position: absolute;
    top: 50%;
    width: 100%;
}

.new_swiper_arrow_big .swiper-button-next, .new_swiper_arrow_big .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.75);
    /*opacity: 0.25 !important;*/
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    transition: background-color 0.4s ease, opacity 0.4s ease;
    /*border:1px solid var(--pbmit-global-color);*/
}

.new_swiper_arrow_big .swiper-button-next {
    /*right: 20px;*/
    right: -60px;
}

.new_swiper_arrow_big .swiper-button-prev {
    /*left: 20px;*/
    left: -60px;
}

@media (max-width: 1260px) {
    .new_swiper_arrow_big .swiper-button-next {
        right: 0;
    }

    .new_swiper_arrow_big .swiper-button-prev {
        left: 0;
    }
}

.new_swiper_arrow_big .swiper-button-prev:after {
    transform: rotate(180deg);
}

.new_swiper_arrow_big .swiper-button-prev svg, .new_swiper_arrow_big .swiper-button-next svg {
    transition: width 0.2s ease;
}

.new_swiper_arrow_big .swiper-button-next.swiper-button-disabled, .new_swiper_arrow_big .swiper-button-prev.swiper-button-disabled {
    /*display: none;*/
}

@media (hover: hover) {
    .new_swiper_arrow_big .swiper-button-next:hover {
        /*color: #fff;*/
    }

    .new_swiper_arrow_big .swiper-button-next.swiper-button-disabled, .new_swiper_arrow_big .swiper-button-prev.swiper-button-disabled {
        pointer-events: auto;
    }

    .new_swiper_arrow_big .swiper-button-next:hover, .new_swiper_arrow_big .swiper-button-prev:hover {
        background-color: rgba(220, 220, 220, 1);
        opacity: 1 !important;
    }

    .new_swiper_arrow_big .swiper-button-prev:hover svg, .new_swiper_arrow_big .swiper-button-next:hover svg {
        width: 32px;
    }
}

.info-service-w td, .info-service-w th {
    border-color: gray;
    caption-side: bottom;
    border-collapse: collapse;
    border-width: 1px !important;
    padding: 4px !important;
}

.pbmit-footer-boxes-3 .footer_svg_icon {
    color: #fff;
    fill: #fff;
    max-width: 20px;
    max-height: 17px;
}

.pbmit-footer-boxes-3 a:hover .footer_svg_icon {
    color: var(--pbmit-global-color);
    fill: var(--pbmit-global-color);
}

.header-style-1 .pre-header .footer_svg_icon {
    color: #42341e;
    fill: #42341e;
    max-width: 16px;
    max-height: 16px;
}

.header-style-1 .pre-header a:hover .footer_svg_icon {
    color: var(--pbmit-global-color);
    fill: var(--pbmit-global-color);
}

.pbmit-social-links-new .footer_svg_icon {
    color: #42341e;
    fill: #42341e;
    max-width: 15px;
    max-height: 15px;
    margin-right: 4px;
}

.pbmit-social-links-new a:hover .footer_svg_icon {
    color: var(--pbmit-global-color);
    fill: var(--pbmit-global-color);
}

.pbmit-social-links-new-margin .footer_svg_icon {
    color: var(--pbmit-global-color);
    fill: var(--pbmit-global-color);
    max-width: 15px;
    max-height: 15px;
}

.pbmit-social-links-new-margin a:hover .footer_svg_icon {
    color: #fff;
    fill: #fff;
}

.pbmit-social-links-new-margin li {
    margin-right: 2px !important;
}

/*@media (min-width: 601px) {
    .header_img {
        max-height: 350px;
    }

    .pbmit-title-bar-content {
        padding-top: 20px;
        min-height: auto;
    }
}*/

@media (min-width: 1021px) {
    .pbmit-title-bar-content-inner {
        position: absolute;
        bottom: -180px;
    }

    .pbmit-title-bar-content-inner-btn {
        bottom: -240px;
    }

    .pbmit-title-bar-content-inner-long {
        position: absolute;
        bottom: -240px;
    }

    .pbmit-title-bar-content-inner-btn-long {
        bottom: -300px;
    }

    .pbmit-title-bar-wrapper {
        margin-bottom: 200px;
    }

    .pbmit-title-bar-wrapper-long {
        margin-bottom: 240px;
    }

    .pbmit-title-bar-content {
        min-height: 390px;
        position: relative;
    }
}

.header_img {
    display: none;
}

@media (max-width: 1021px) {
    .header_img {
        width: 100%;
        display: block;
    }

    .pbmit-title-bar-wrapper {
        background: transparent !important;
    }

    .pbmit-title-bar-content {
        padding: 14px 0;
        min-height: auto;
    }
}

.alt-hero-slide-main-img {
    display: none;
}

@media (max-width: 601px) {
    .alt-hero-slide-main-img {
        width: 100%;
        display: block;
    }

    .alt-hero-slide-bg {
        background: transparent !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
}
.icon_mn_nav {
    width: 24px;
    height: 24px;
    color: var(--pbmit-body-typography-color);
    display: inline-block;
}
.icon_mn_nav svg {
    width: 24px;
    height: 24px;
    color: var(--pbmit-body-typography-color) !important;
    fill: var(--pbmit-body-typography-color) !important;
}
.icon_mn_nav svg path {
    fill: var(--pbmit-body-typography-color) !important;
}
.a.active .icon_mn_nav svg {
    fill: var(--pbmit-global-color) !important;
}
a.active .icon_mn_nav svg path {
    fill: var(--pbmit-global-color) !important;
}
.main-text-rec-banner {
    color:#fff;
    font-size:16px;
}
.main-text-rec-banner ul {
    list-style: disc;
    margin: 0 0 20px 38px;
}
.main-text-rec-banner p {
    margin: 0 0 16px;
}
.rec_banner_custom_heading {
    color:#fff;
    font-size:32px;
    margin-bottom: 22px;
}
.block_new_price_icon{
    width: 96px;
    height: 96px;
    line-height: 96px;
    font-size: 40px;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    top: -40px;
    background: var(--pbmit-white-color);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}
.block_new_price_icon svg{
    width: 40px;
    height: 40px;
    fill: var(--pbmit-body-typography-color);
}
.block_new_price_icon svg path{
    fill: var(--pbmit-body-typography-color);
}

.pbmit-pricing-table-style-1 .vc_general.vc_btn3 {
    transition: all .25s ease-in-out;
    padding: 12px 20px;
}
.pbmit-pricing-table-style-1 .vc_general.vc_btn3:hover, .pbmit-pricing-table-style-1 .vc_general.vc_btn3:focus {
    color: #ffffff;
    background-color: #aec4c3;
    box-shadow: var(--box-shadow-blackish);
}
.pbmit-pricing-table-style-1 .pbmit-pricing-table-box {
    border-left:1px solid var(--pbmit-global-color);
    border-right:1px solid var(--pbmit-global-color);
    border-bottom:1px solid var(--pbmit-global-color);
}
.site-cookie-consent {
    background: #1c232b;
    border-radius: 6px;
    bottom: 16px;
    box-shadow: 0 8px 32px -8px #1c232b;
    left: 16px;
    padding: 16px;
    position: fixed;
    width: -webkit-calc(100% - 32px);
    width: calc(100% - 32px);
    z-index: 9999999;
    display: none;
}

.site-cookie-consent__content {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    margin: auto;
    max-width: 952px
}

.site-cookie-consent__text {
    color: #FFF;
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    padding-right: 27px
}

@media only screen and (max-width:601px) {
    .site-cookie-consent__content {
        flex-direction: column
    }

    .site-cookie-consent__text {
        padding-bottom: 20px
    }
}

.site-cookie-consent__text a {
    color: #FFF;
    text-decoration: underline
}

.site-cookie-consent__button {
    min-width: 185px
}

.site-cookie-consent__button>button {
    width: 100%;
    cursor: pointer;
    background: #00a1e7;
    border-color: #00a1e7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 17.52px;
    min-width: 68px;
    padding: 11px 16px;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid transparent;
    border-radius: 6px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    outline: none;
    position: relative;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap
}

.site-cookie-consent__button>button p {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0
}