body {
    font-family: 'Montserrat', sans-serif;
    /* font-family: "Open Sans", sans-serif; */
    color: #444444;
    /* background: url(../img/bg1.png); */
    width: 100%;
}

a {
    color: #4154f1;
}

a:hover {
    color: #4154f1;
    text-decoration: none;
}

p {
    font-family: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: "Raleway", sans-serif; */
}

.table th, .table td {
    font-weight: 500;
}

.container {
    width: 100%;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #F8A50B;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #F8A50B;
    color: #fff;
}




/* Get Startet Button */
.get-started-btn {
    margin-left: 25px;
    background: #F8A50B;
    color: #fff;
    border-radius: 4px;
    padding: 8px 30px 9px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.get-started-btn:hover {
    background: #F8A50B;
    color: #fff;
}

@media (max-width: 991px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #556270;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #556270;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #F8A50B;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(63, 73, 83, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}



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

.section-bg,
.services .icon-box {
    background-color: #f8f9fa;
}

.section-title {
    padding-bottom: 40px;
}

.section-titlebiru h2 {
    /* font-size: 14px;
  font-weight: 500; */
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 30px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    text-align: center;
}

.section-titlebiru h2::after {
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #e6636a;
    margin: 4px 10px;
}

.section-title h2 {
    /* font-size: 14px;
  font-weight: 500; */
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #063A69;
    text-align: center;
}

.section-title h2::after {
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #e6636a;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    text-transform: uppercase;
    /* font-family: "Poppins", sans-serif; */
    color: #556270;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding-top: 2%;
    padding-bottom: 1%;
    background: #f8f9fa;
    min-height: 40px;
    margin-top: 86px;
}

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

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

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

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

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

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

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
    }

    .breadcrumbs ol {
        display: block;
    }

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

/* blue */
#blue {
    background: #063A69;
}

#blue .section-title p {
    color: #fff;
}

/* blue akhir */
/*--------------------------------------------------------------


# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #4154f1;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(85, 98, 112, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(85, 98, 112, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: white;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

#contact .info {}

.contact .info i {
    font-size: 20px;
    color: #556270;
    float: left;
    width: 44px;
    height: 44px;
    background: #edeff1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;

}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #556270;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #556270;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: #F8A50B;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #F8A50B;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #F8A50B;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #F8A50B;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #F8A50B;
}

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #F8A50B !important;
}

.portfolio-details .portfolio-info {
    padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-info p {
    font-size: 15px;
    padding: 15px 0 0 0;
}

@media (max-width: 992px) {
    .portfolio-details .portfolio-info {
        padding-top: 20px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #4a5562;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

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

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

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

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

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

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

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

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

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: white;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

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

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

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

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    font-weight: 600;
}

#footer .credits a:hover {
    color: white;
}

/* Agenda */
/* .agenda .entry:hover {
    box-shadow: 10px 10px rgba(0, 0, 0, .25);
    border-radius: 25px;
} */

.agenda {
    padding: 40px 0 40px 0;
    margin-top: 30px;
}

.entry-img img {
    float: left;
    width: 100%;
    height: 150px;
    padding-bottom: 10px;
    position: relative;
}

.entry-single img {
    float: left;
    width: 100%;
    height: 400px;
    padding-bottom: 10px;
    position: relative;
}

.agenda .entry {
    transition: all .4s ease;
    background: #fff;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.agenda .entry .entry-img {
    max-height: 400px;
    margin: -20px -20px 20px -20px;
    overflow: hidden;
}

.agenda .entry .entry-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.agenda .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.agenda .entry .entry-title a:hover {
    color: rgb(70, 104, 253);
}

.agenda .entry .entry-meta {
    margin-bottom: 15px;
    color: #c1c8d0;
}

.agenda .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.agenda .entry .entry-meta i {
    font-size: 14px;
    padding-right: 4px;
}

.agenda .entry .entry-meta a {
    color: #a4afba;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.agenda .entry .entry-content p {
    line-height: 24px;
    font-size: 15px;
}

.agenda .entry-content p {

    text-align: left;
    /* margin: 10px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.agenda .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.agenda .entry .entry-content .read-more a {
    display: inline-block;
    background: #4154f1;
    color: #fff;
    padding: 6px 20px 7px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.agenda .entry .entry-content .read-more a:hover {
    background: #5d6dff;
}

.agenda .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.agenda .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.agenda .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.agenda .entry .entry-content blockquote .quote-left {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.agenda .entry .entry-content blockquote .quote-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.agenda .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.agenda .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.agenda .entry .entry-footer i {
    color: #8795a4;
    display: inline;
}

.agenda .entry .entry-footer a {
    color: #a4afba;
    transition: 0.3s;
}

.agenda .entry .entry-footer a:hover {
    color: #4154f1;
}

.agenda .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.agenda .entry .entry-footer .cats li {
    display: inline-block;
}

.agenda .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.agenda .entry .entry-footer .tags li {
    display: inline-block;
}

.agenda .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.agenda .entry .entry-footer .share {
    font-size: 16px;
}

.agenda .entry .entry-footer .share i {
    padding-left: 5px;
}

.agenda .entry-single {
    margin-bottom: 30px;
}

.agenda .entry-single .entry-title {
    font-size: 32px;
    line-height: 38px;
}

.agenda .agenda-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.agenda .agenda-author img {
    width: 120px;
}

.agenda .agenda-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
}

.agenda .agenda-author .social-links {
    margin: 0 0 5px 140px;
}

.agenda .agenda-author .social-links a {
    color: #c1c8d0;
}

.agenda .agenda-author p {
    margin-left: 140px;
    font-style: italic;
    color: #b7b7b7;
}

.agenda .agenda-comments {
    margin-bottom: 30px;
}

.agenda .agenda-comments .comments-count {
    font-weight: bold;
}

.agenda .agenda-comments .comment {
    margin-top: 30px;
    position: relative;
}

.agenda .agenda-comments .comment .comment-img {
    width: 50px;
}

.agenda .agenda-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
}

.agenda .agenda-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.agenda .agenda-comments .comment h5 a:hover {
    color: #F8A50B;
}

.agenda .agenda-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.agenda .agenda-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #c1c8d0;
    margin-bottom: 5px;
}

.agenda .agenda-comments .comment p {
    margin-left: 65px;
}

.agenda .agenda-comments .comment.comment-reply {
    padding-left: 40px;
}

.agenda .agenda-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.agenda .agenda-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.agenda .agenda-comments .reply-form p {
    font-size: 14px;
}

.agenda .agenda-comments .reply-form input {
    border-radius: 0;
    padding: 20px 10px;
    font-size: 14px;
}

.agenda .agenda-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.agenda .agenda-comments .reply-form textarea {
    border-radius: 0;
    padding: 10px 10px;
    font-size: 14px;
}

.agenda .agenda-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.agenda .agenda-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.agenda .agenda-comments .reply-form .btn-primary {
    border-radius: 4;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.agenda .agenda-comments .reply-form .btn-primary:hover {
    background-color: #F8A50B;
}

.agenda .agenda-pagination {
    color: #8795a4;
}

.agenda .agenda-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.agenda .agenda-pagination li {
    border: 1px solid #edeff1;
    margin: 0 5px;
    transition: 0.3s;
}

.agenda .agenda-pagination li.active {
    background: white;
}

.agenda .agenda-pagination li a {
    color: #aaaaaa;
    padding: 7px 16px;
    display: inline-block;
}

.agenda .agenda-pagination li.active,
.agenda .agenda-pagination li:hover {
    background: #F8A50B;
    border: 1px solid #F8A50B;
}

.agenda .agenda-pagination li.active a,
.agenda .agenda-pagination li:hover a {
    color: #fff;
}

.agenda .agenda-pagination li.disabled {
    background: #fff;
    border: 1px solid white;
}

.agenda .agenda-pagination li.disabled i {
    color: #f1f1f1;
    padding: 10px 16px;
    display: inline-block;
}

.agenda .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.agenda .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.agenda .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.agenda .sidebar .search-form form {
    background: #fff;
    border: 1px solid #556270;
    padding: 3px 10px;
    position: relative;
    border-radius: 4px;
}

.agenda .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 40px);
}

.agenda .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #556270;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.agenda .sidebar .search-form form button:hover {
    background: #6b7b8d;
}

.agenda .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.agenda .sidebar .categories ul li+li {
    padding-top: 10px;
}

.agenda .sidebar .categories ul a {
    color: #6b7b8d;
}

.agenda .sidebar .categories ul a:hover {
    color: #F8A50B;
}

.agenda .sidebar .categories ul a span {
    padding-left: 5px;
    color: #c1c8d0;
    font-size: 14px;
}

.agenda .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.agenda .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.agenda .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.agenda-single .sidebar .recent-posts h4 {
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.agenda .sidebar .recent-posts h4 a {
    color: #292f36;
    transition: 0.3s;
}

.agenda .sidebar .recent-posts h4 a:hover {
    color: #F8A50B;
}

.agenda .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #c1c8d0;
}

.agenda .sidebar .tags {
    margin-bottom: -10px;
}

.agenda .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.agenda .sidebar .tags ul li {
    display: inline-block;
}

.agenda .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #dee2e6;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}

.agenda .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #F8A50B;
    background: #F8A50B;
}

.agenda .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}

/* agenda index */
.agenda-index h4 {
    font-size: 14px;
    color: #111;
    font-weight: bold;
}

.agenda-detail {
    background-color: white;
}

.agenda-detail {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.agenda-detail .agenda-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #012970;
    position: relative;
}

.agenda-detail .agenda-item {
    margin-bottom: 30px;
}

.agenda-detail .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.agenda-detail .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.agenda-detail .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #4154f1;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}


.agenda-detail .recent-posts img {
    width: 80px;
    float: left;
}

.agenda-detail .recent-posts h4 {
    font-size: 15px;
    /* margin-left: 95px; */
    font-weight: bold;
}

.agenda-detail .recent-posts h4 a {
    color: #012970;
    transition: 0.3s;
}

.agenda-detail .recent-posts h4 a:hover {
    color: #4154f1;
}

.agenda-detail .recent-posts time {
    display: block;
    /* margin-left: 95px; */
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}


/* logo detail */
.logodetail img {
    width: 20%;
    margin-left: 40%;
    padding: 30px;
}

/* class center */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}





















/* bolmongkab */
/* .pelayanan {
  margin-left: 5%;
  margin-right: 5%;
} */

.pelayanan .content {
    position: relative;
    cursor: pointer;
    margin: 10px;
    width: 100%;

}

.pelayanan .card {
    position: relative;
    cursor: pointer;
    margin: 10px;
    width: 95%;

}

.pelayanan .card .face {
    width: 100%;
    height: 200px;
    transition: 0.5s;
    text-align: center;
}

.pelayanan .card .face.face1 {
    position: relative;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.pelayanan .card:hover .face.face1 {
    background: #063A69;
    transform: translateY(0);
}

.pelayanan .card .face.face1 .content {
    opacity: 0.2;
    transition: 0.5s;
}

.pelayanan .card:hover .face.face1 .content {
    opacity: 1;
}

.pelayanan .card .face.face1 .content img {
    max-width: 100px;
}

.pelayanan .card .face.face1 .content h3 {
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

.pelayanan .card .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
}

.pelayanan .card:hover .face.face2 {
    transform: translateY(0);
}

.pelayanan .card .face.face2 .content p {
    margin: 0;
    padding: 0;
}

.pelayanan .card .face.face2 .content a {
    margin: 15px 0 0;
    display: inline-block;
    text-decoration: none;
    font-weight: 900;
    color: #333;
    padding: 5px;
    border: 1px solid #333;
}

.pelayanan .card .face.face2 .content a:hover {
    background: #333;
    color: #fff;
}




/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #ffffff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

.navbar {
    margin-left: 5%;
    margin-right: 5%;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

#header.header-inner-pages {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 10px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#header .logo a {
    color: #111;
}

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

#header img {
    max-height: 30px;
    padding-right: 5px;
}

@media (max-width: 992px) {
    #header {
        padding: 12px 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 12px 0 12px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #1f1f1f;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
    /* font-family: "Poppins", sans-serif; */
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #4154f1;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #556270;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #4154f1;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #556270;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #556270;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #d9232d;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(63, 73, 83, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*#hero {*/
/*    margin-top: 91px;*/
/*    width: 100%;*/
/*    height: 70vh;*/
    /*background-color: rgba(63, 73, 83, 0.8);*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*}*/

/*#hero .carousel,*/
/*#hero .carousel-inner,*/
/*#hero .carousel-item,*/
/*#hero .carousel-item::before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*}*/

/*#hero .carousel-item {*/
/*    background-size: cover;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/

/*#hero .carousel-item::before {*/
/*    content: '';*/
    /*CC
/*}*/

/*@media (max-width: 768px) {*/
/*    #hero .carousel-item {*/
/*        height: 250px;*/
/*    }*/
/*    #hero .carousel-item h2 {*/
/*        margin-top: 30px;*/
/*        margin-bottom: 5px;*/
/*        font-size: 15px;*/
/*    }*/
/*    #hero .carousel-item p {*/
/*        font-size: 10px;*/
/*    }*/
/*    #hero {*/
/*        height: 250px;*/
/*    }*/
/*}*/

/*@media (max-width: 414px) {*/
/*    #hero .carousel-item {*/
/*        height: 140px;*/
/*    }*/
/*    #hero .carousel-item h2 {*/
/*        margin-top: 30px;*/
/*        margin-bottom: 5px;*/
/*        font-size: 15px;*/
/*    }*/
/*    #hero .carousel-item p {*/
/*        font-size: 10px;*/
/*    }*/
/*    #hero {*/
/*        height: 140px;*/
/*    }*/
/*}*/


/*@media (max-width: 360px) {*/
/*    #hero .carousel-item {*/
/*        height: 120px;*/
/*    }*/
/*    #hero .carousel-item h2 {*/
/*        margin-top: 30px;*/
/*        margin-bottom: 5px;*/
/*        font-size: 15px;*/
/*    }*/
/*    #hero .carousel-item p {*/
/*        font-size: 10px;*/
/*    }*/
/*    #hero {*/
/*        height: 120px;*/
/*    }*/
/*}*/

/*#hero .carousel-container {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    top: 70px;*/
/*    left: 50px;*/
/*    right: 50px;*/
/*}*/

/*#hero .container {*/
/*    text-align: center;*/
/*}*/

/*#hero h2 {*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*}*/

/*#hero p {*/
/*    -webkit-animation-delay: 0.4s;*/
/*    animation-delay: 0.4s;*/
/*    margin: 0 auto 30px auto;*/
/*    color: #fff;*/
/*}*/

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

/*#hero .carousel-inner .carousel-item,*/
/*#hero .carousel-inner .active.carousel-item-left,*/
/*#hero .carousel-inner .active.carousel-item-right {*/
/*    opacity: 0;*/
/*}*/

/*#hero .carousel-inner .active,*/
/*#hero .carousel-inner .carousel-item-next.carousel-item-left,*/
/*#hero .carousel-inner .carousel-item-prev.carousel-item-right {*/
/*    opacity: 1;*/
/*    transition: 0.5s;*/
/*}*/

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

/*#hero .carousel-control-prev,*/
/*#hero .carousel-control-next {*/
/*    width: 10%;*/
/*    top: 112px;*/
/*}*/

/*@media (max-width: 992px) {*/

/*    #hero .carousel-control-prev,*/
/*    #hero .carousel-control-next {*/
/*        top: 66px;*/
/*    }*/
/*}*/

/*#hero .carousel-control-next-icon,*/
/*#hero .carousel-control-prev-icon {*/
/*    background: none;*/
/*    font-size: 36px;*/
/*    line-height: 1;*/
/*    width: auto;*/
/*    height: auto;*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    border-radius: 50px;*/
/*    padding: 10px;*/
/*    transition: 0.3s;*/
/*    color: rgba(255, 255, 255, 0.5);*/
/*}*/

/*#hero .carousel-control-next-icon:hover,*/
/*#hero .carousel-control-prev-icon:hover {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*}*/

/*#hero .carousel-indicators li {*/
/*    cursor: pointer;*/
/*    background: #fff;*/
/*    overflow: hidden;*/
/*    border: 0;*/
/*    width: 12px;*/
/*    height: 12px;*/
/*    border-radius: 50px;*/
/*    opacity: .6;*/
/*    transition: 0.3s;*/
/*}*/

/*#hero .carousel-indicators li.active {*/
/*    opacity: 1;*/
/*    background: #4154f1;*/
/*}*/

/*#hero .btn-get-started {*/
    /* font-family: "Raleway", sans-serif; */
/*    font-weight: 500;*/
/*    font-size: 14px;*/
/*    letter-spacing: 1px;*/
/*    display: inline-block;*/
/*    padding: 14px 32px;*/
/*    border-radius: 4px;*/
/*    transition: 0.5s;*/
/*    line-height: 1;*/
/*    color: #fff;*/
/*    -webkit-animation-delay: 0.8s;*/
/*    animation-delay: 0.8s;*/
/*    background: #4154f1;*/
/*}*/

/*#hero .btn-get-started:hover {*/
/*    background: #5d6dff;*/
/*}*/

/*@media (max-width: 992px) {*/
    /* #hero {
        height: 100vh;
    } */

/*    #hero .carousel-container {*/
/*        top: 8px;*/
/*    }*/
/*}*/

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

/*@media (min-width: 1024px) {*/

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

/*@media (max-height: 500px) {*/
/*    #hero {*/
/*        height: 120vh;*/
/*    }*/
/*}*/

/*--------------------------------------------------------------
# sekilas
--------------------------------------------------------------*/
.sekilas {
    margin-left: 5%;
    margin-right: 5%;
}

.sekilas h3 {
    text-align: center;
}

.sekilas p {
    text-align: justify;
}

.sekilas .read-more a {
    display: inline-block;
    background: #4154f1;
    color: #fff;
    padding: 6px 20px 7px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.sekilas .read-more a:hover {
    background: #5d6dff;
}

#sekilas .section-image img {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
# pimpinan
--------------------------------------------------------------*/
.pimpinan {
    padding: 60px 0;
}

.pimpinan .member {
    overflow: hidden;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    width: 70%;
    height: 80%;
    margin: auto;
}

.pimpinan .member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pimpinan .member .member-img {
    position: relative;
    overflow: hidden;
    border-radius: 100%;
    height: 50%;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.pimpinan .member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../img/pimpinan-shape.svg) no-repeat center bottom;
    background-size: contain;
    z-index: 1;
}

.pimpinan .member .social {
    position: absolute;
    /* right: -100%; BIKIN NAVBAR MOBILE TIDAK RESPONSIF */
    right: 0%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.pimpinan .member .social a {
    transition: color 0.3s;
    color: rgba(1, 41, 112, 0.5);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}

.pimpinan .member .social a:hover {
    color: rgba(1, 41, 112, 0.8);
}

.pimpinan .member .social i {
    font-size: 18px;
}

.pimpinan .member .member-info {
    padding: 10px 15px 20px 15px;
}

.pimpinan .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #012970;
}

.pimpinan .member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #aaaaaa;
}

.pimpinan .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: #5e5e5e;
}


.pimpinan .member:hover .social {
    right: 8px;
    opacity: 1;
}

/*--------------------------------------------------------------
# pelayanan
--------------------------------------------------------------*/
.pelayanan {
    background: #063A69;
}

.pelayanan .layanan-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    border-radius: 5%;
    align-items: center;
    height: 150px;
}

.pelayanan .layanan-item:hover {
    transform: scale(1.1);
    border-radius: 5%;
}

/* .pelayanan .layanan-item img:hover {

  border-radius: 5%;
  box-shadow: #111;
  width: 100px;
} */
.pelayanan .layanan-item img {

    border-radius: 5%;
    box-shadow: #111;
    width: 90px;
    transition: all .3s ease;
}

.pelayanan .layanan-item .layanan-img {
    width: 90px;
    /* border-radius: 50%; */
    border: 4px solid #fff;
    margin: 0 auto;
}

.pelayanan .layanan-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.pelayanan .layanan-item h3:hover {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #063A69;
}

.pelayanan .layanan-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.pelayanan .layanan-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

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

.pelayanan .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
}

.pelayanan .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
}

/* .pelayanan .swiper-slide {
  opacity: .3;
} */

@media (max-width: 1199px) {
    .pelayanan .swiper-slide-active {
        opacity: 1;
    }

    .pelayanan .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .pelayanan .swiper-slide-next {
        opacity: 1;
        /* transform: scale(1.12); */
    }
}



/* sosial media bagian tengah landing page */
.social-media {
    text-align: center;
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 0;
    border-right-width: 0;
    border-style: solid;
    border-color: #063A69;
}

.social-media i {
    font-size: 30px;
    color: #063A69;
    margin: 15px;
    transition: all .3s ease;
}

.social-media i:hover {
    font-size: 40px;
    color: #8b2623;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 15px;
    margin-right: 15px;
}

/*--------------------------------------------------------------
# recent pengumuman
--------------------------------------------------------------*/

/* .pengumuman .entry:hover {
    box-shadow: 10px 10px rgba(0, 0, 0, .25);
    border-radius: 25px;
} */

.pengumuman {
    padding: 40px 0 40px 0;
    margin-top: 30px;
}

.entry-img img {
    float: left;
    width: 100%;
    height: 150px;
    padding-bottom: 10px;
    position: relative;
}

.entry-single img {
    float: left;
    width: 100%;
    height: 400px;
    padding-bottom: 10px;
    position: relative;
}

.pengumuman .entry {
    transition: all .4s ease;
    background: #fff;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.pengumuman .entry .entry-img {
    max-height: 400px;
    margin: -20px -20px 20px -20px;
    overflow: hidden;
}

.pengumuman .entry .entry-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding: 0;
    margin: 1px;
}

.pengumuman .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pengumuman .entry .entry-title a:hover {
    color: rgb(70, 104, 253);
}

.pengumuman .entry .entry-meta {
    margin-top : 5px;
    color: #c1c8d0;
}

.pengumuman .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pengumuman .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.pengumuman .entry .entry-meta i {
    font-size: 14px;
    padding-right: 4px;
}

.pengumuman .entry .entry-meta a {
    color: #a4afba;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    font-family: 'Lato', sans-serif;
}

.pengumuman .entry .entry-content p {
    line-height: 24px;
    font-size: 15px;
}

.pengumuman .entry-content p {

    text-align: left;
    /* margin: 10px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: black;
}

.pengumuman .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.pengumuman .entry .entry-content .read-more a {
    display: inline-block;
    background: #4154f1;
    color: #fff;
    padding: 6px 20px 7px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.pengumuman .entry .entry-content .read-more a:hover {
    background: #5d6dff;
}

.pengumuman .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.pengumuman .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.pengumuman .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.pengumuman .entry .entry-content blockquote .quote-left {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.pengumuman .entry .entry-content blockquote .quote-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.pengumuman .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pengumuman .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.pengumuman .entry .entry-footer i {
    color: #8795a4;
    display: inline;
}

.pengumuman .entry .entry-footer a {
    color: #a4afba;
    transition: 0.3s;
}

.pengumuman .entry .entry-footer a:hover {
    color: #4154f1;
}

.pengumuman .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.pengumuman .entry .entry-footer .cats li {
    display: inline-block;
}

.pengumuman .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.pengumuman .entry .entry-footer .tags li {
    display: inline-block;
}

.pengumuman .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.pengumuman .entry .entry-footer .share {
    font-size: 16px;
}

.pengumuman .entry .entry-footer .share i {
    padding-left: 5px;
}

.pengumuman .entry-single {
    margin-bottom: 30px;
}

.pengumuman .entry-single .entry-title {
    font-size: 32px;
    line-height: 38px;
}

.pengumuman .pengumuman-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pengumuman .pengumuman-author img {
    width: 120px;
}

.pengumuman .pengumuman-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
}

.pengumuman .pengumuman-author .social-links {
    margin: 0 0 5px 140px;
}

.pengumuman .pengumuman-author .social-links a {
    color: #c1c8d0;
}

.pengumuman .pengumuman-author p {
    margin-left: 140px;
    font-style: italic;
    color: #b7b7b7;
}

.pengumuman .pengumuman-comments {
    margin-bottom: 30px;
}

.pengumuman .pengumuman-comments .comments-count {
    font-weight: bold;
}

.pengumuman .pengumuman-comments .comment {
    margin-top: 30px;
    position: relative;
}

.pengumuman .pengumuman-comments .comment .comment-img {
    width: 50px;
}

.pengumuman .pengumuman-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
}

.pengumuman .pengumuman-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.pengumuman .pengumuman-comments .comment h5 a:hover {
    color: #F8A50B;
}

.pengumuman .pengumuman-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.pengumuman .pengumuman-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #c1c8d0;
    margin-bottom: 5px;
}

.pengumuman .pengumuman-comments .comment p {
    margin-left: 65px;
}

.pengumuman .pengumuman-comments .comment.comment-reply {
    padding-left: 40px;
}

.pengumuman .pengumuman-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pengumuman .pengumuman-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.pengumuman .pengumuman-comments .reply-form p {
    font-size: 14px;
}

.pengumuman .pengumuman-comments .reply-form input {
    border-radius: 0;
    padding: 20px 10px;
    font-size: 14px;
}

.pengumuman .pengumuman-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.pengumuman .pengumuman-comments .reply-form textarea {
    border-radius: 0;
    padding: 10px 10px;
    font-size: 14px;
}

.pengumuman .pengumuman-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.pengumuman .pengumuman-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.pengumuman .pengumuman-comments .reply-form .btn-primary {
    border-radius: 4;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.pengumuman .pengumuman-comments .reply-form .btn-primary:hover {
    background-color: #F8A50B;
}

.pengumuman .pengumuman-pagination {
    color: #8795a4;
}

.pengumuman .pengumuman-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.pengumuman .pengumuman-pagination li {
    border: 1px solid #edeff1;
    margin: 0 5px;
    transition: 0.3s;
}

.pengumuman .pengumuman-pagination li.active {
    background: white;
}

.pengumuman .pengumuman-pagination li a {
    color: #aaaaaa;
    padding: 7px 16px;
    display: inline-block;
}

.pengumuman .pengumuman-pagination li.active,
.pengumuman .pengumuman-pagination li:hover {
    background: #F8A50B;
    border: 1px solid #F8A50B;
}

.pengumuman .pengumuman-pagination li.active a,
.pengumuman .pengumuman-pagination li:hover a {
    color: #fff;
}

.pengumuman .pengumuman-pagination li.disabled {
    background: #fff;
    border: 1px solid white;
}

.pengumuman .pengumuman-pagination li.disabled i {
    color: #f1f1f1;
    padding: 10px 16px;
    display: inline-block;
}

.pengumuman .sidebar {
    background-color: #fff;
    padding: 30px;
    margin: 0 0 60px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pengumuman .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.pengumuman .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.pengumuman .sidebar .search-form form {
    background: #fff;
    border: 1px solid #556270;
    padding: 3px 10px;
    position: relative;
    border-radius: 4px;
}

.pengumuman .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 40px);
}

.pengumuman .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #556270;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.pengumuman .sidebar .search-form form button:hover {
    background: #6b7b8d;
}

.pengumuman .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.pengumuman .sidebar .categories ul li+li {
    padding-top: 10px;
}

.pengumuman .sidebar .categories ul a {
    color: #6b7b8d;
}

.pengumuman .sidebar .categories ul a:hover {
    color: #007bff;
}

.pengumuman .sidebar .categories ul a span {
    padding-left: 5px;
    color: #c1c8d0;
    font-size: 14px;
}

.pengumuman .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.pengumuman .sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
}

.pengumuman-single .sidebar .recent-posts h4 {
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.pengumuman .sidebar .recent-posts h4 a {
    color: #292f36;
    transition: 0.3s;
}

.pengumuman .sidebar .recent-posts h4 a:hover {
    color: #007bff;
}

.pengumuman .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #c1c8d0;
}

.pengumuman .sidebar .tags {
    margin-bottom: -10px;
}

.pengumuman .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.pengumuman .sidebar .tags ul li {
    display: inline-block;
}

.pengumuman .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #dee2e6;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}

.pengumuman .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #007bff;
    background: #007bff;
}

.pengumuman .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}


/* SPONSOR */
.banner img {
    width: 100%;
    height: 100%;
}

.banner {
    margin-left: 5%;
    margin-right: 5%;
}

.ekliping img {
    width: 20%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ekliping {
    margin: auto;
    width: 100%;
    padding-bottom: 2%;
}


/* BUPATI */
.ruangdata {
    width: 100%;
    height: 250px;
    box-shadow: #111;
}

.bupati {
    width: 100%;
    height: 400px;
    box-shadow: #111;
}


/* DETAIL GENERAL */

.judul h2 {
    font-weight: bold;
    color: #063A69;
}

.judul hr {
    border: none;
    height: 2px;
    color: #063A69;
    /* old IE */
    background-color: #063A69;
    /* Modern Browsers */
}

.judul img {
    width: 10%;
    height: 10%;
    display: block;
    margin: auto;
    padding-bottom: 20px;

}


.judul2 h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.judul2 hr {
    border: none;
    height: 2px;
    color: #bbbbbb;
    /* old IE */
    background-color: #bbbbbb;
    /* Modern Browsers */
}

.judul2 img {
    width: 100%;
}






/* sejarah */
#sejarah {
    margin-left: 5%;
    margin-right: 5%;
}

#sejarah .card {
    background-color: #ffffff;
    margin-bottom: 0px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
}

#sejarah .card-header {
    padding: 5px;
}

.btn-link {
    font-weight: bold;
    color: #063A69;
}

.sejarah img {
    width: 100%;
    height: 400px;
    padding-bottom: 20px;
    margin: auto;
}

.sejarah h3 {
    color: #063A69;

}

.sejarah p {
    text-align: justify;

}




/* SIDEBAR */
.sidebar {
    background-color: #063A69;
}

.nav-link {
    border-bottom: #bbbbbb;
    border-bottom-style: solid;
}

.nav a {
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.nav {
    background-color: #063A69;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #396894;
}

/* PENGUMUMAN DETAIL */

.pengumumandetail .entry:hover {
    box-shadow: 10px 10px rgba(0, 0, 0, .25);
    border-radius: 25px;
}

.pengumumandetail {
    padding: 40px 0 40px 0;
    margin-top: 30px;
}

.pengumumandetail .sidebar {
    background: #fff;
}

.pengumumandetail .entry {
    transition: all .4s ease;
    background: #fff;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.pengumumandetail .entry .entry-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.pengumumandetail .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pengumumandetail .entry .entry-title a:hover {
    color: rgb(70, 104, 253);
}

.pengumumandetail .entry .entry-meta {
    color: #c1c8d0;
    margin-top : 5px;
    
}

.pengumumandetail .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pengumumandetail .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.pengumumandetail .entry .entry-meta i {
    font-size: 14px;
    padding-right: 4px;
}

.pengumumandetail .entry .entry-meta a {
    color: #a4afba;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.pengumumandetail .entry .entry-meta p {
    color: #a4afba;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    font-style: italic;
    font-family: 'Lato', sans-serif;
}

.pengumumandetail .entry .entry-content p {
    line-height: 24px;
    font-size: 15px;
}

.pengumumandetail .entry-content p {

    text-align: left;
    /* margin: 10px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.pengumumandetail .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.pengumumandetail .entry .entry-content .read-more a {
    display: inline-block;
    background: #4154f1;
    color: #fff;
    padding: 6px 20px 7px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.pengumumandetail .entry .entry-content .read-more a:hover {
    background: #5d6dff;
}

.pengumumandetail .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.pengumumandetail .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.pengumumandetail .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.pengumumandetail .entry .entry-content blockquote .quote-left {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.pengumumandetail .entry .entry-content blockquote .quote-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.pengumumandetail .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pengumumandetail .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.pengumumandetail .entry .entry-footer i {
    color: #8795a4;
    display: inline;
}

.pengumumandetail .entry .entry-footer a {
    color: #a4afba;
    transition: 0.3s;
}

.pengumumandetail .entry .entry-footer a:hover {
    color: #4154f1;
}

.pengumumandetail .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.pengumumandetail .entry .entry-footer .cats li {
    display: inline-block;
}

.pengumumandetail .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.pengumumandetail .entry .entry-footer .tags li {
    display: inline-block;
}

.pengumumandetail .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.pengumumandetail .entry .entry-footer .share {
    font-size: 16px;
}

.pengumumandetail .entry .entry-footer .share i {
    padding-left: 5px;
}

.pengumumandetail .entry-single {
    margin-bottom: 30px;
}

.pengumumandetail .entry-single .entry-title {
    font-size: 32px;
    line-height: 38px;
}

.pengumumandetail .pengumumandetail-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pengumumandetail .pengumumandetail-author img {
    width: 120px;
}

.pengumumandetail .pengumumandetail-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
}

.pengumumandetail .pengumumandetail-author .social-links {
    margin: 0 0 5px 140px;
}

.pengumumandetail .pengumumandetail-author .social-links a {
    color: #c1c8d0;
}

.pengumumandetail .pengumumandetail-author p {
    margin-left: 140px;
    font-style: italic;
    color: #b7b7b7;
}

.pengumumandetail .pengumumandetail-comments {
    margin-bottom: 30px;
}

.pengumumandetail .pengumumandetail-comments .comments-count {
    font-weight: bold;
}

.pengumumandetail .pengumumandetail-comments .comment {
    margin-top: 30px;
    position: relative;
}

.pengumumandetail .pengumumandetail-comments .comment .comment-img {
    width: 50px;
}

.pengumumandetail .pengumumandetail-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
}

.pengumumandetail .pengumumandetail-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.pengumumandetail .pengumumandetail-comments .comment h5 a:hover {
    color: #F8A50B;
}

.pengumumandetail .pengumumandetail-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.pengumumandetail .pengumumandetail-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #c1c8d0;
    margin-bottom: 5px;
}

.pengumumandetail .pengumumandetail-comments .comment p {
    margin-left: 65px;
}

.pengumumandetail .pengumumandetail-comments .comment.comment-reply {
    padding-left: 40px;
}

.pengumumandetail .pengumumandetail-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pengumumandetail .pengumumandetail-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.pengumumandetail .pengumumandetail-comments .reply-form p {
    font-size: 14px;
}

.pengumumandetail .pengumumandetail-comments .reply-form input {
    border-radius: 0;
    padding: 20px 10px;
    font-size: 14px;
}

.pengumumandetail .pengumumandetail-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.pengumumandetail .pengumumandetail-comments .reply-form textarea {
    border-radius: 0;
    padding: 10px 10px;
    font-size: 14px;
}

.pengumumandetail .pengumumandetail-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.pengumumandetail .pengumumandetail-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.pengumumandetail .pengumumandetail-comments .reply-form .btn-primary {
    border-radius: 4;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.pengumumandetail .pengumumandetail-comments .reply-form .btn-primary:hover {
    background-color: #F8A50B;
}

.pengumumandetail .pengumumandetail-pagination {
    color: #8795a4;
}

.pengumumandetail .pengumumandetail-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.pengumumandetail .pengumumandetail-pagination li {
    border: 1px solid #edeff1;
    margin: 0 5px;
    transition: 0.3s;
}

.pengumumandetail .pengumumandetail-pagination li.active {
    background: white;
}

.pengumumandetail .pengumumandetail-pagination li a {
    color: #aaaaaa;
    padding: 7px 16px;
    display: inline-block;
}

.pengumumandetail .pengumumandetail-pagination li.active,
.pengumumandetail .pengumumandetail-pagination li:hover {
    background: #F8A50B;
    border: 1px solid #F8A50B;
}

.pengumumandetail .pengumumandetail-pagination li.active a,
.pengumumandetail .pengumumandetail-pagination li:hover a {
    color: #fff;
}

.pengumumandetail .pengumumandetail-pagination li.disabled {
    background: #fff;
    border: 1px solid white;
}

.pengumumandetail .pengumumandetail-pagination li.disabled i {
    color: #f1f1f1;
    padding: 10px 16px;
    display: inline-block;
}

.pengumumandetail .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pengumumandetail .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.pengumumandetail .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.pengumumandetail .sidebar .search-form form {
    background: #fff;
    border: 1px solid #556270;
    padding: 3px 10px;
    position: relative;
    border-radius: 4px;
}

.pengumumandetail .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 40px);
}

.pengumumandetail .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #556270;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.pengumumandetail .sidebar .search-form form button:hover {
    background: #6b7b8d;
}

.pengumumandetail .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.pengumumandetail .sidebar .categories ul li+li {
    padding-top: 10px;
}

.pengumumandetail .sidebar .categories ul a {
    color: #6b7b8d;
}

.pengumumandetail .sidebar .categories ul a:hover {
    color: #007bff;
}

.pengumumandetail .sidebar .categories ul a span {
    padding-left: 5px;
    color: #c1c8d0;
    font-size: 14px;
}

.pengumumandetail .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.pengumumandetail .sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
}

.pengumumandetail-single .sidebar .recent-posts h4 {
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.pengumumandetail .sidebar .recent-posts h4 a {
    color: #292f36;
    transition: 0.3s;
}

.pengumumandetail .sidebar .recent-posts h4 a:hover {
    color: #007bff;
}

.pengumumandetail .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #c1c8d0;
}

.pengumumandetail .sidebar .tags {
    margin-bottom: -10px;
}

.pengumumandetail .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.pengumumandetail .sidebar .tags ul li {
    display: inline-block;
}

.pengumumandetail .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #dee2e6;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}

.pengumumandetail .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #007bff;
    background: #007bff;
}

.pengumumandetail .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

#features {
    background: #063A69;
    padding-left: 5%;
    padding-right: 5%;
}

.features .feature-box {
    padding: 24px 20px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
  }
  
  .features .feature-box h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
  }
  
  .features .feature-box i {
    line-height: 0;
    background: #ecf3ff;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .features .feature-box:hover i {
    background: #4154f1;
    color: #fff;
  }
  
  .features .feture-tabs {
    margin-top: 120px;
  }
  
  .features .feture-tabs h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .features .feture-tabs h3 {
      font-size: 28px;
    }
  }
  
  .features .feture-tabs .nav-pills {
    border-bottom: 1px solid #eee;
  }
  
  .features .feture-tabs .nav-link {
    background: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #012970;
    padding: 12px 0;
    margin-right: 25px;
    margin-bottom: -2px;
    border-radius: 0;
  }
  
  .features .feture-tabs .nav-link.active {
    color: #4154f1;
    border-bottom: 3px solid #4154f1;
  }
  
  .features .feture-tabs .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #ffffff;
  }
  
  .features .feture-tabs .tab-content i {
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    color: #4154f1;
  }
  
  /* .features .feature-icons {
    margin-top: 120px;
  }
   */
  .features .feature-icons h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .features .feature-icons h3 {
      font-size: 28px;
    }
  }
  
  .features .feature-icons .content .icon-box {
    display: flex;
  }

  .features .feature-icons .content .icon-box a {
    color: #fff;
  }

  .features .feature-icons .content .icon-box a:hover {
    color: #4154f1;
  }
  
  .features .feature-icons .content .icon-box h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 30px 0 10px 0;
    color: #ffffff;
  }
  
  .features .feature-icons .content .icon-box i {
    font-size: 44px;
    line-height: 44px;
    margin-right: 15px;
  }
  
  .features .feature-icons .content .icon-box p {
    font-size: 15px;
    color: #dedede;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .features .feature-icons .content .icon-box img {
    width:75px; 
    height: 75px; 
    /* margin: auto;  */
    padding: 10px; 
    background-color: white;
    box-shadow: 7px 7px;
    margin-right: 15px;
    border-radius: 5px;
    margin-top: 32px;
  }
  

  /* wisata */
  .wisata {
    padding: 40px 0 40px 0;
    margin-top: 30px;
}

.wisata .entry-img img {
    float: left;
    width: 100%;
    height: 200px;
    padding: 10px;
    position: relative;
}

.wisata .entry-single img {
    float: left;
    width: 100%;
    height: 400px;
    padding-bottom: 10px;
    position: relative;
}

.wisata .entry {
    transition: all .4s ease;
    background: #fff;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.wisata .entry .entry-img {
    max-height: 400px;
    overflow: hidden;
}

.wisata .entry .entry-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding: 0;
    margin: 1px;
}

.wisata .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wisata .entry .entry-title a:hover {
    color: rgb(70, 104, 253);
}

.wisata .entry .entry-meta {
    margin-top : 5px;
    color: #c1c8d0;
}

.wisata .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wisata .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.wisata .entry .entry-meta i {
    font-size: 14px;
    padding-right: 4px;
}

.wisata .entry .entry-meta a {
    color: #a4afba;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    font-family: 'Lato', sans-serif;
}

.wisata .entry .entry-content p {
    line-height: 24px;
    font-size: 15px;
}

.wisata .entry-content p {

    text-align: center;
    /* margin: 10px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: black;
}

.wisata .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.wisata .entry .entry-content .read-more a {
    display: inline-block;
    background: #4154f1;
    color: #fff;
    padding: 6px 20px 7px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.wisata .entry .entry-content .read-more a:hover {
    background: #5d6dff;
}

.wisata .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.wisata .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.wisata .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.wisata .entry .entry-content blockquote .quote-left {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.wisata .entry .entry-content blockquote .quote-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.wisata .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.wisata .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.wisata .entry .entry-footer i {
    color: #8795a4;
    display: inline;
}

.wisata .entry .entry-footer a {
    color: #a4afba;
    transition: 0.3s;
}

.wisata .entry .entry-footer a:hover {
    color: #4154f1;
}

.wisata .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.wisata .entry .entry-footer .cats li {
    display: inline-block;
}

.wisata .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.wisata .entry .entry-footer .tags li {
    display: inline-block;
}

.wisata .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.wisata .entry .entry-footer .share {
    font-size: 16px;
}

.wisata .entry .entry-footer .share i {
    padding-left: 5px;
}

.wisata .entry-single {
    margin-bottom: 30px;
}

.wisata .entry-single .entry-title {
    font-size: 32px;
    line-height: 38px;
}

.wisata .wisata-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wisata .wisata-author img {
    width: 120px;
}

.wisata .wisata-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
}

.wisata .wisata-author .social-links {
    margin: 0 0 5px 140px;
}

.wisata .wisata-author .social-links a {
    color: #c1c8d0;
}

.wisata .wisata-author p {
    margin-left: 140px;
    font-style: italic;
    color: #b7b7b7;
}

.wisata .wisata-comments {
    margin-bottom: 30px;
}

.wisata .wisata-comments .comments-count {
    font-weight: bold;
}

.wisata .wisata-comments .comment {
    margin-top: 30px;
    position: relative;
}

.wisata .wisata-comments .comment .comment-img {
    width: 50px;
}

.wisata .wisata-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
}

.wisata .wisata-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.wisata .wisata-comments .comment h5 a:hover {
    color: #F8A50B;
}

.wisata .wisata-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.wisata .wisata-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #c1c8d0;
    margin-bottom: 5px;
}

.wisata .wisata-comments .comment p {
    margin-left: 65px;
}

.wisata .wisata-comments .comment.comment-reply {
    padding-left: 40px;
}

.wisata .wisata-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wisata .wisata-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.wisata .wisata-comments .reply-form p {
    font-size: 14px;
}

.wisata .wisata-comments .reply-form input {
    border-radius: 0;
    padding: 20px 10px;
    font-size: 14px;
}

.wisata .wisata-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.wisata .wisata-comments .reply-form textarea {
    border-radius: 0;
    padding: 10px 10px;
    font-size: 14px;
}

.wisata .wisata-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.wisata .wisata-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.wisata .wisata-comments .reply-form .btn-primary {
    border-radius: 4;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.wisata .wisata-comments .reply-form .btn-primary:hover {
    background-color: #F8A50B;
}

.wisata .wisata-pagination {
    color: #8795a4;
}

.wisata .wisata-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.wisata .wisata-pagination li {
    border: 1px solid #edeff1;
    margin: 0 5px;
    transition: 0.3s;
}

.wisata .wisata-pagination li.active {
    background: white;
}

.wisata .wisata-pagination li a {
    color: #aaaaaa;
    padding: 7px 16px;
    display: inline-block;
}

.wisata .wisata-pagination li.active,
.wisata .wisata-pagination li:hover {
    background: #F8A50B;
    border: 1px solid #F8A50B;
}

.wisata .wisata-pagination li.active a,
.wisata .wisata-pagination li:hover a {
    color: #fff;
}

.wisata .wisata-pagination li.disabled {
    background: #fff;
    border: 1px solid white;
}

.wisata .wisata-pagination li.disabled i {
    color: #f1f1f1;
    padding: 10px 16px;
    display: inline-block;
}

.wisata .sidebar {
    background-color: #fff;
    padding: 30px;
    margin: 0 0 60px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wisata .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.wisata .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.wisata .sidebar .search-form form {
    background: #fff;
    border: 1px solid #556270;
    padding: 3px 10px;
    position: relative;
    border-radius: 4px;
}

.wisata .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 40px);
}

.wisata .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #556270;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.wisata .sidebar .search-form form button:hover {
    background: #6b7b8d;
}

.wisata .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.wisata .sidebar .categories ul li+li {
    padding-top: 10px;
}

.wisata .sidebar .categories ul a {
    color: #6b7b8d;
}

.wisata .sidebar .categories ul a:hover {
    color: #007bff;
}

.wisata .sidebar .categories ul a span {
    padding-left: 5px;
    color: #c1c8d0;
    font-size: 14px;
}

.wisata .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.wisata .sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
}

.wisata-single .sidebar .recent-posts h4 {
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.wisata .sidebar .recent-posts h4 a {
    color: #292f36;
    transition: 0.3s;
}

.wisata .sidebar .recent-posts h4 a:hover {
    color: #007bff;
}

.wisata .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #c1c8d0;
}

.wisata .sidebar .tags {
    margin-bottom: -10px;
}

.wisata .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.wisata .sidebar .tags ul li {
    display: inline-block;
}

.wisata .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #dee2e6;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}

.wisata .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #007bff;
    background: #007bff;
}

.wisata .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}


.detail p {
    text-align: justify;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/bolmong.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 300px;
  border-radius: 5%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/* IKPD */
/* #ikpd @import url(https://fonts.googleapis.com/css?family=Gabriela);
#ikpd @import url(https://fonts.googleapis.com/css?family=Open+Sans); */

#ikpd html, body, div, h1, h2, h3, p, pre {
	margin: 0;
	padding: 0;
	/* color: #333; */
}
#ikpd html, body {
	/* background: #bdcbe5; */
	/* font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.55; */
}
#ikpd h1 {
	padding: 40px 0 20px;
	font: 40px/60px Gabriela, Georgia, serif;
	text-align: center;
	text-shadow: 3px 3px rgba(0,0,0,0.1);
	color: #fff;	
}
#ikpd p {
	margin-bottom: 40px;
	text-align: center;
}
#ikpd a {
	text-decoration: underline;
	color: #1889e6;
}
#ikpd a:hover {
	text-decoration: none;
}
#ikpd .bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#ikpd .page {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px 40px;
}

/**/
/* main styles */
/**/
#ikpd .pcss3t {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 0;
	text-align: left;
}
#ikpd .pcss3t > input {
	position: absolute;
	left: -9999px;
}
#ikpd .pcss3t > label {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	transition: all 0.1s;
	-o-transition: all 0.1s;	
	-ms-transition: all 0.1s;	
	-moz-transition: all 0.1s;	
	-webkit-transition: all 0.1s;
}
#ikpd .pcss3t > label i {
	display: block;
	float: left;
	margin: 16px 8px 0 -2px;
	padding: 0;
	border: 0;
	outline: none;
	font-family: FontAwesome;
	font-style: normal;
	font-size: 17px;
}
#ikpd .pcss3t > input:checked + label {
	cursor: default;
}
#ikpd .pcss3t > ul {
	list-style: none;
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 13px;
}
#ikpd .pcss3t > ul > li {
	position: absolute;
	width: 100%;
	overflow: auto;
	padding: 30px 40px 40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s;
	-o-transition: all 0.5s;	
	-ms-transition: all 0.5s;	
	-moz-transition: all 0.5s;	
	-webkit-transition: all 0.5s;
}
#ikpd .pcss3t > .tab-content-first:checked ~ ul .tab-content-first,
#ikpd .pcss3t > .tab-content-2:checked ~ ul .tab-content-2,
#ikpd .pcss3t > .tab-content-3:checked ~ ul .tab-content-3,
#ikpd .pcss3t > .tab-content-4:checked ~ ul .tab-content-4,
#ikpd .pcss3t > .tab-content-5:checked ~ ul .tab-content-5,
#ikpd .pcss3t > .tab-content-6:checked ~ ul .tab-content-6,
#ikpd .pcss3t > .tab-content-7:checked ~ ul .tab-content-7,
#ikpd .pcss3t > .tab-content-8:checked ~ ul .tab-content-8,
#ikpd .pcss3t > .tab-content-9:checked ~ ul .tab-content-9,
#ikpd .pcss3t > .tab-content-last:checked ~ ul .tab-content-last {
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transform: scale(1,1);
	-webkit-transform: rotate(0deg);
}


/*----------------------------------------------------------------------------*/
/*                                 EXTENSIONS                                 */
/*----------------------------------------------------------------------------*/

/**/
/* auto height */
/**/
#ikpd .pcss3t-height-auto > ul {
	height: auto !important;
}
#ikpd .pcss3t-height-auto > ul > li {
	position: static;
	display: none;
	height: auto !important;
}
#ikpd .pcss3t-height-auto > .tab-content-first:checked ~ ul .tab-content-first,
#ikpd .pcss3t-height-auto > .tab-content-2:checked ~ ul .tab-content-2,
#ikpd .pcss3t-height-auto > .tab-content-3:checked ~ ul .tab-content-3,
#ikpd .pcss3t-height-auto > .tab-content-4:checked ~ ul .tab-content-4,
#ikpd .pcss3t-height-auto > .tab-content-5:checked ~ ul .tab-content-5,
#ikpd .pcss3t-height-auto > .tab-content-last:checked ~ ul .tab-content-last {
	display: block;
}


/**/
/* grid */
/**/
#ikpd .pcss3t .grid-row {
	margin-top: 20px;
}
#ikpd .pcss3t .grid-row:after {
	content: '';
	display: table;
	clear: both;
}
#ikpd .pcss3t .grid-row:first-child {
	margin-top: 0;
}
#ikpd .pcss3t .grid-col {
	display: block;
	float: left;
	margin-left: 2%;
}
#ikpd .pcss3t .grid-col:first-child {
	margin-left: 0;
}
#ikpd .pcss3t .grid-col .inner {
	padding: 10px 0;
	border-radius: 5px;
	background: #f2f2f2;
	text-align: center;
}
#ikpd .pcss3t .grid-col-1 {
	width: 15%;
}
#ikpd .pcss3t .grid-col-2 {
	width: 32%;
}
#ikpd .pcss3t .grid-col-3 {
	width: 49%;
}
#ikpd .pcss3t .grid-col-4 {
	width: 66%;
}
#ikpd .pcss3t .grid-col-5 {
	width: 83%;
}
#ikpd .pcss3t .grid-col-offset-1 {
	margin-left: 19%;
}
#ikpd .pcss3t .grid-col-offset-1:first-child  {
	margin-left: 17%;
}
#ikpd .pcss3t .grid-col-offset-2 {
	margin-left: 36%;	
}
#ikpd .pcss3t .grid-col-offset-2:first-child {
	margin-left: 34%;
}
#ikpd .pcss3t .grid-col-offset-3 {
	margin-left: 53%;
}
#ikpd .pcss3t .grid-col-offset-3:first-child {
	margin-left: 51%;
}
#ikpd .pcss3t .grid-col-offset-4 {
	margin-left: 70%;
}
#ikpd .pcss3t .grid-col-offset-4:first-child {
	margin-left: 68%;
}
#ikpd .pcss3t .grid-col-offset-5:first-child {
	margin-left: 85%;
}


/**/
/* typography */
/**/
#ikpd .pcss3t .typography {
	color: #666;
}
#ikpd .pcss3t .typography h1,
#ikpd .pcss3t .typography h2,
#ikpd .pcss3t .typography h3,
#ikpd .pcss3t .typography h4,
#ikpd .pcss3t .typography h5,
#ikpd .pcss3t .typography h6 {
	margin: 40px 0 0 0;
	padding: 0;
	font-family: Gabriela, Georgia, serif;
	text-align: left;
	color: #333;
}
#ikpd .pcss3t .typography h1 {
	font-size: 25px;
	line-height: 60px;
	text-shadow: 3px 3px rgba(0,0,0,0.1);
}
#ikpd .pcss3t .typography h2 {
	font-size: 32px;
	line-height: 48px;
	text-shadow: 2px 2px rgba(0,0,0,0.1);
}
#ikpd .pcss3t .typography h3 {
	font-size: 26px;
	line-height: 38px;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
}
#ikpd .pcss3t .typography h4 {
	font-size: 20px;
	line-height: 30px;
}
#ikpd .pcss3t .typography h5 {
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}
#ikpd .pcss3t .typography h6 {
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
#ikpd .pcss3t .typography p {
	margin: 20px 0 0 0;
	padding: 0;
	line-height: 20px;
	text-align: left;
}
#ikpd .pcss3t .typography ul,
#ikpd .pcss3t .typography ol {
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0;
}
#ikpd .pcss3t .typography li {
	position: relative;
	margin-top: 5px;
	padding-left: 20px;
}
#ikpd .pcss3t .typography li ul,
#ikpd .pcss3t .typography li ol {
	margin-top: 5px;
}
#ikpd .pcss3t .typography ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 4px;
	background: #404040;
}
#ikpd .pcss3t .typography ol {
	counter-reset: list1;
}
#ikpd .pcss3t .typography ol > li:before {
	counter-increment:list1;
	content: counter(list1)'.';
	position: absolute;
	top: 0;
	left: 0;
}
#ikpd .pcss3t .typography a {
	text-decoration: underline;
	color: #ffffff;
}
#ikpd .pcss3t .typography a:hover {
	text-decoration: none;
}
#ikpd .pcss3t .typography .pic {
	padding: 4px;
	border: 1px dotted #ccc;
}
#ikpd .pcss3t .typography .pic img {
	display: block;
}
#ikpd .pcss3t .typography .pic-right {
	float: right;
	margin: 0 0 10px 20px;
}
#ikpd .pcss3t .typography .link {
	text-decoration: underline;
	color: #1889e6;
	cursor: pointer;
}
#ikpd .pcss3t .typography .link:hover {
	text-decoration: none;
}
#ikpd .pcss3t .typography h1:first-child,
#ikpd .pcss3t .typography h2:first-child,
#ikpd .pcss3t .typography h3:first-child,
#ikpd .pcss3t .typography h4:first-child,
#ikpd .pcss3t .typography h5:first-child,
#ikpd .pcss3t .typography h6:first-child,
#ikpd .pcss3t .typography p:first-child {
	margin-top: 0;
}
#ikpd .pcss3t .typography .text-center {
	text-align: center;
}
#ikpd .pcss3t .typography .text-right {
	text-align: right;
}


/**/
/* steps */
/**/
#ikpd .pcss3t-steps > label {
	cursor: default;
}


/**/
/* animation effects */
/**/
#ikpd .pcss3t-effect-scale > ul > li {
	-webkit-transform: scale(0.1,0.1);
}
#ikpd .pcss3t-effect-rotate  > ul > li {
	-webkit-transform: rotate(180deg);
}
#ikpd .pcss3t-effect-slide-top > ul > li {
	top: -40px;
}
#ikpd .pcss3t-effect-slide-right > ul > li {
	left: 80px;
}
#ikpd .pcss3t-effect-slide-bottom > ul > li {
	top: 40px;
}
#ikpd .pcss3t-effect-slide-left > ul > li {
	left: -80px;
}



/*----------------------------------------------------------------------------*/
/*                                   LAYOUTS                                  */
/*----------------------------------------------------------------------------*/

/**/
/* top right */
/**/
#ikpd .pcss3t-layout-top-right {
	text-align: right;
}


/**/
/* top center */
/**/
#ikpd .pcss3t-layout-top-center {
	text-align: center;
}


/**/
/* top combi */
/**/
#ikpd .pcss3t > .right {
	float: right;
}



/*----------------------------------------------------------------------------*/
/*                                    ICONS                                   */
/*----------------------------------------------------------------------------*/

/**/
/* icons positions */
/**/
#ikpd .pcss3t-icons-top > label {
	text-align: center;
}
#ikpd .pcss3t-icons-top > label i {
	float: none;
	margin: 0 auto -10px;
	padding-top: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
#ikpd .pcss3t-icons-right > label i {
	float: right;
	margin: 0 -2px 0 8px;
}
#ikpd .pcss3t-icons-bottom > label {
	text-align: center;
}
#ikpd .pcss3t-icons-bottom > label i {
	float: none;
	margin: -10px auto 0;
	padding-bottom: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
#ikpd .pcss3t-icons-only > label i {
	float: none;
	margin: 0 auto;
	font-size: 23px;
}


/**/
/* font awesome */
/**/
@font-face
{
	font-family: 'FontAwesome';
	src: url('../fonts/fontawesome-webfont.eot?v=3.0.1');
	src: url('../fonts/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
	url('../fonts/fontawesome-webfont.woff?v=3.0.1') format('woff'),
	url('../fonts/fontawesome-webfont.ttf?v=3.0.1') format('truetype');
	font-weight: normal;
	font-style: normal;
}
#ikpd .icon-glass:before {content: '\f000';}
#ikpd .icon-music:before {content: '\f001';}
#ikpd .icon-search:before {content: '\f002';}
#ikpd .icon-envelope:before {content: '\f003';}
#ikpd .icon-heart:before {content: '\f004';}
#ikpd .icon-star:before {content: '\f005';}
#ikpd .icon-star-empty:before {content: '\f006';}
#ikpd .icon-user:before {content: '\f007';}
#ikpd .icon-film:before {content: '\f008';}
#ikpd .icon-th-large:before {content: '\f009';}
#ikpd .icon-th:before {content: '\f00a';}
#ikpd .icon-th-list:before {content: '\f00b';}
#ikpd .icon-ok:before {content: '\f00c';}
#ikpd .icon-remove:before {content: '\f00d';}
#ikpd .icon-zoom-in:before {content: '\f00e';}
#ikpd .icon-zoom-out:before {content: '\f010';}
#ikpd .icon-off:before {content: '\f011';}
#ikpd .icon-signal:before {content: '\f012';}
#ikpd .icon-cog:before {content: '\f013';}
#ikpd .icon-trash:before {content: '\f014';}
#ikpd .icon-home:before {content: '\f015';}
#ikpd .icon-file:before {content: '\f016';}
#ikpd .icon-time:before {content: '\f017';}
#ikpd .icon-road:before {content: '\f018';}
#ikpd .icon-download-alt:before {content: '\f019';}
#ikpd .icon-download:before {content: '\f01a';}
#ikpd .icon-upload:before {content: '\f01b';}
#ikpd .icon-inbox:before {content: '\f01c';}
#ikpd .icon-play-circle:before {content: '\f01d';}
#ikpd .icon-repeat:before {content: '\f01e';}
#ikpd .icon-refresh:before {content: '\f021';}
#ikpd .icon-list-alt:before {content: '\f022';}
#ikpd .icon-lock:before {content: '\f023';}
#ikpd .icon-flag:before {content: '\f024';}
#ikpd .icon-headphones:before {content: '\f025';}
#ikpd .icon-volume-off:before {content: '\f026';}
#ikpd .icon-volume-down:before {content: '\f027';}
#ikpd .icon-volume-up:before {content: '\f028';}
#ikpd .icon-qrcode:before {content: '\f029';}
#ikpd .icon-barcode:before {content: '\f02a';}
#ikpd .icon-tag:before {content: '\f02b';}
#ikpd .icon-tags:before {content: '\f02c';}
#ikpd .icon-book:before {content: '\f02d';}
#ikpd .icon-bookmark:before {content: '\f02e';}
#ikpd .icon-print:before {content: '\f02f';}
#ikpd .icon-camera:before {content: '\f030';}
#ikpd .icon-font:before {content: '\f031';}
#ikpd .icon-bold:before {content: '\f032';}
#ikpd .icon-italic:before {content: '\f033';}
#ikpd .icon-text-height:before {content: '\f034';}
#ikpd .icon-text-width:before {content: '\f035';}
#ikpd .icon-align-left:before {content: '\f036';}
#ikpd .icon-align-center:before {content: '\f037';}
#ikpd .icon-align-right:before {content: '\f038';}
#ikpd .icon-align-justify:before {content: '\f039';}
#ikpd .icon-list:before {content: '\f03a';}
#ikpd .icon-indent-left:before {content: '\f03b';}
#ikpd .icon-indent-right:before {content: '\f03c';}
#ikpd .icon-facetime-video:before  {content: '\f03d';}
#ikpd .icon-picture:before {content: '\f03e';}
#ikpd .icon-pencil:before {content: '\f040';}
#ikpd .icon-map-marker:before {content: '\f041';}
#ikpd .icon-adjust:before {content: '\f042';}
#ikpd .icon-tint:before {content: '\f043';}
#ikpd .icon-edit:before {content: '\f044';}
#ikpd .icon-share:before {content: '\f045';}
#ikpd .icon-check:before {content: '\f046';}
#ikpd .icon-move:before {content: '\f047';}
#ikpd .icon-step-backward:before {content: '\f048';}
#ikpd .icon-fast-backward:before {content: '\f049';}
#ikpd .icon-backward:before {content: '\f04a'; position: relative;	left: -2px;}
#ikpd .icon-play:before {content: '\f04b'; position: relative; left: 1px;}
#ikpd .icon-pause:before {content: '\f04c';}
#ikpd .icon-stop:before {content: '\f04d';}
#ikpd .icon-forward:before {content: '\f04e'; position: relative;	left: 2px;}
#ikpd .icon-fast-forward:before {content: '\f050';}
#ikpd .icon-step-forward:before {content: '\f051';}
#ikpd .icon-eject:before {content: '\f052';}
#ikpd .icon-chevron-left:before {content: '\f053';}
#ikpd .icon-chevron-right:before {content: '\f054';}
#ikpd .icon-plus-sign:before {content: '\f055';}
#ikpd .icon-minus-sign:before {content: '\f056';}
#ikpd .icon-remove-sign:before {content: '\f057';}
#ikpd .icon-ok-sign:before {content: '\f058';}
#ikpd .icon-question-sign:before {content: '\f059';}
#ikpd .icon-info-sign:before {content: '\f05a';}
#ikpd .icon-screenshot:before {content: '\f05b';}
#ikpd .icon-remove-circle:before {content: '\f05c';}
#ikpd .icon-ok-circle:before {content: '\f05d';}
#ikpd .icon-ban-circle:before {content: '\f05e';}
#ikpd .icon-arrow-left:before {content: '\f060';}
#ikpd .icon-arrow-right:before {content: '\f061';}
#ikpd .icon-arrow-up:before {content: '\f062';}
#ikpd .icon-arrow-down:before {content: '\f063';}
#ikpd .icon-share-alt:before {content: '\f064';}
#ikpd .icon-resize-full:before {content: '\f065';}
#ikpd .icon-resize-small:before {content: '\f066';}
#ikpd .icon-plus:before {content: '\f067';}
#ikpd .icon-minus:before {content: '\f068';}
#ikpd .icon-asterisk:before {content: '\f069';}
#ikpd .icon-exclamation-sign:before {content: '\f06a';}
#ikpd .icon-gift:before {content: '\f06b';}
#ikpd .icon-leaf:before {content: '\f06c';}
#ikpd .icon-fire:before {content: '\f06d';}
#ikpd .icon-eye-open:before {content: '\f06e';}
#ikpd .icon-eye-close:before {content: '\f070';}
#ikpd .icon-warning-sign:before {content: '\f071';}
#ikpd .icon-plane:before {content: '\f072';}
#ikpd .icon-calendar:before {content: '\f073';}
#ikpd .icon-random:before {content: '\f074';}
#ikpd .icon-comment:before {content: '\f075';}
#ikpd .icon-magnet:before {content: '\f076';}
#ikpd .icon-chevron-up:before {content: '\f077';}
#ikpd .icon-chevron-down:before {content: '\f078';}
#ikpd .icon-retweet:before {content: '\f079';}
#ikpd .icon-shopping-cart:before {content: '\f07a';}
#ikpd .icon-folder-close:before {content: '\f07b';}
#ikpd .icon-folder-open:before {content: '\f07c';}
#ikpd .icon-resize-vertical:before {content: '\f07d';}
#ikpd .icon-resize-horizontal:before {content: '\f07e';}
#ikpd .icon-bar-chart:before {content: '\f080';}
#ikpd .icon-twitter-sign:before {content: '\f081';}
#ikpd .icon-facebook-sign:before {content: '\f082';}
#ikpd .icon-camera-retro:before {content: '\f083';}
#ikpd .icon-key:before {content: '\f084';}
#ikpd .icon-cogs:before {content: '\f085';}
#ikpd .icon-comments:before {content: '\f086';}
#ikpd .icon-thumbs-up:before {content: '\f087';}
#ikpd .icon-thumbs-down:before {content: '\f088';}
#ikpd .icon-star-half:before {content: '\f089';}
#ikpd .icon-heart-empty:before {content: '\f08a';}
#ikpd .icon-signout:before {content: '\f08b';}
#ikpd .icon-linkedin-sign:before {content: '\f08c';}
#ikpd .icon-pushpin:before {content: '\f08d';}
#ikpd .icon-external-link:before {content: '\f08e';}
#ikpd .icon-signin:before {content: '\f090';}
#ikpd .icon-trophy:before {content: '\f091';}
#ikpd .icon-github-sign:before {content: '\f092';}
#ikpd .icon-upload-alt:before {content: '\f093';}
#ikpd .icon-lemon:before {content: '\f094';}
#ikpd .icon-phone:before {content: '\f095';}
#ikpd .icon-check-empty:before {content: '\f096';}
#ikpd .icon-bookmark-empty:before {content: '\f097';}
#ikpd .icon-phone-sign:before {content: '\f098';}
#ikpd .icon-twitter:before {content: '\f099';}
.icon-facebook:before {content: '\f09a';}
.icon-github:before {content: '\f09b';}
.icon-unlock:before {content: '\f09c';}
.icon-credit-card:before {content: '\f09d';}
.icon-rss:before {content: '\f09e';}
.icon-hdd:before {content: '\f0a0';}
.icon-bullhorn:before {content: '\f0a1';}
.icon-bell:before {content: '\f0a2';}
.icon-certificate:before {content: '\f0a3';}
.icon-hand-right:before {content: '\f0a4';}
.icon-hand-left:before {content: '\f0a5';}
.icon-hand-up:before {content: '\f0a6';}
.icon-hand-down:before {content: '\f0a7';}
.icon-circle-arrow-left:before {content: '\f0a8';}
.icon-circle-arrow-right:before {content: '\f0a9';}
.icon-circle-arrow-up:before {content: '\f0aa';}
.icon-circle-arrow-down:before {content: '\f0ab';}
.icon-globe:before {content: '\f0ac';}
.icon-wrench:before {content: '\f0ad';}
.icon-tasks:before {content: '\f0ae';}
.icon-filter:before {content: '\f0b0';}
.icon-briefcase:before {content: '\f0b1';}
.icon-fullscreen:before {content: '\f0b2';}
.icon-group:before {content: '\f0c0';}
.icon-link:before {content: '\f0c1';}
.icon-cloud:before {content: '\f0c2';}
.icon-beaker:before {content: '\f0c3';}
.icon-cut:before {content: '\f0c4';}
.icon-copy:before {content: '\f0c5';}
.icon-paper-clip:before {content: '\f0c6';}
.icon-save:before {content: '\f0c7';}
.icon-sign-blank:before {content: '\f0c8';}
.icon-reorder:before {content: '\f0c9';}
.icon-list-ul:before {content: '\f0ca';}
.icon-list-ol:before {content: '\f0cb';}
.icon-strikethrough:before {content: '\f0cc';}
.icon-underline:before {content: '\f0cd';}
.icon-table:before {content: '\f0ce';}
.icon-magic:before {content: '\f0d0';}
.icon-truck:before {content: '\f0d1';}
.icon-pinterest:before {content: '\f0d2';}
.icon-pinterest-sign:before {content: '\f0d3';}
.icon-google-plus-sign:before {content: '\f0d4';}
.icon-google-plus:before {content: '\f0d5';}
.icon-money:before {content: '\f0d6';}
.icon-caret-down:before {content: '\f0d7';}
.icon-caret-up:before {content: '\f0d8';}
.icon-caret-left:before {content: '\f0d9';}
.icon-caret-right:before {content: '\f0da';}
.icon-columns:before {content: '\f0db';}
.icon-sort:before {content: '\f0dc';}
.icon-sort-down:before {content: '\f0dd';}
.icon-sort-up:before {content: '\f0de';}
.icon-envelope-alt:before {content: '\f0e0';}
.icon-linkedin:before {content: '\f0e1';}
.icon-undo:before {content: '\f0e2';}
.icon-legal:before {content: '\f0e3';}
.icon-dashboard:before {content: '\f0e4';}
.icon-comment-alt:before {content: '\f0e5';}
.icon-comments-alt:before {content: '\f0e6';}
.icon-bolt:before {content: '\f0e7';}
.icon-sitemap:before {content: '\f0e8';}
.icon-umbrella:before {content: '\f0e9';}
.icon-paste:before {content: '\f0ea';}
.icon-lightbulb:before {content: '\f0eb';}
.icon-exchange:before {content: '\f0ec';}
.icon-cloud-download:before {content: '\f0ed';}
.icon-cloud-upload:before {content: '\f0ee';}
.icon-user-md:before {content: '\f0f0';}
.icon-stethoscope:before {content: '\f0f1';}
.icon-suitcase:before {content: '\f0f2';}
.icon-bell-alt:before {content: '\f0f3';}
.icon-coffee:before {content: '\f0f4';}
.icon-food:before {content: '\f0f5';}
.icon-file-alt:before {content: '\f0f6';}
.icon-building:before {content: '\f0f7';}
.icon-hospital:before {content: '\f0f8';}
.icon-ambulance:before {content: '\f0f9';}
.icon-medkit:before {content: '\f0fa';}
.icon-fighter-jet:before {content: '\f0fb';}
.icon-beer:before {content: '\f0fc';}
.icon-h-sign:before {content: '\f0fd';}
.icon-plus-sign-alt:before {content: '\f0fe';}
.icon-double-angle-left:before {content: '\f100';}
.icon-double-angle-right:before {content: '\f101';}
.icon-double-angle-up:before {content: '\f102';}
.icon-double-angle-down:before {content: '\f103';}
.icon-angle-left:before {content: '\f104';}
.icon-angle-right:before {content: '\f105';}
.icon-angle-up:before {content: '\f106';}
.icon-angle-down:before {content: '\f107';}
.icon-desktop:before {content: '\f108';}
.icon-laptop:before {content: '\f109';}
.icon-tablet:before {content: '\f10a';}
.icon-mobile-phone:before {content: '\f10b';}
.icon-circle-blank:before {content: '\f10c';}
.icon-quote-left:before {content: '\f10d';}
.icon-quote-right:before {content: '\f10e';}
.icon-spinner:before {content: '\f110';}
.icon-circle:before {content: '\f111';}
.icon-reply:before {content: '\f112';}
.icon-github-alt:before {content: '\f113';}
.icon-folder-close-alt:before {content: '\f114';}
.icon-folder-open-alt:before {content: '\f115';}



/*----------------------------------------------------------------------------*/
/*                               RESPONSIVENESS                               */
/*----------------------------------------------------------------------------*/

/**/
/* pad */
/**/
@media screen and (max-width: 980px) {
	
}


/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
	#ikpd .pcss3t > label {
		display: block;
	}
	#ikpd .pcss3t > .right {
		float: none;
	}
}



/*----------------------------------------------------------------------------*/
/*                                   THEMES                                   */
/*----------------------------------------------------------------------------*/

/**/
/* default */
/**/
#ikpd .pcss3t > label {	
	padding: 0 20px;
	background: #e5e5e5;
	font-size: 13px;
	line-height: 49px;
}
#ikpd .pcss3t > label:hover {
	background: #f2f2f2;
}
#ikpd .pcss3t > input:checked + label {
	background: #fff;
}
#ikpd .pcss3t > ul {
	background: #fff;
	text-align: left;
}
#ikpd .pcss3t-steps > label:hover {
	background: #e5e5e5;	
}


/**/
/* theme 1 */
/**/
#ikpd .pcss3t-theme-1 > label {
	margin: 0 5px 5px 0;
	border-radius: 5px;
	background: #063A69;
	box-shadow: 0 2px rgba(0,0,0,0.2);
	color: #ffffff;
	opacity: 0.8;
}
#ikpd .pcss3t-theme-1 > label:hover {
	background: #fff;
	opacity: 1;
}
#ikpd .pcss3t-theme-1 > input:checked + label {
	margin-bottom: 0;
	padding-bottom: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #2b82d9;
	opacity: 1;
}
#ikpd .pcss3t-theme-1 > ul {
	border-radius: 5px;
	box-shadow: 0 3px rgba(0,0,0,0.2);
}
#ikpd .pcss3t-theme-1 > .tab-content-first:checked ~ ul {
	border-top-left-radius: 0;
}
@media screen and (max-width: 767px) {
	#ikpd .pcss3t-theme-1 > label {
		margin-right: 0;
	}
	#ikpd .pcss3t-theme-1 > input:checked + label {
		margin-bottom: 5px;
		padding-bottom: 0;
		border-radius: 5px;
	}
	#ikpd .pcss3t-theme-1 > .tab-content-first:checked ~ ul {
		border-top-left-radius: 5px;
	}
}


/**/
/* theme 2 */
/**/
#ikpd .pcss3t-theme-2 {
	padding: 5px;
	background: rgba(0,0,0,0.2);
}
#ikpd .pcss3t-theme-2 > label {
	margin-right: 0;
	margin-bottom: 0;
	background: none;
	border-radius: 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	color: #fff;
	opacity: 1;
}
#ikpd .pcss3t-theme-2 > label:hover {
	background: rgba(255,255,255,0.2);
}
#ikpd .pcss3t-theme-2 > input:checked + label {
	padding-bottom: 0;
	background: #fff;
	background: linear-gradient(to bottom, #e5e5e5 0%, #ffffff 100%);
	background: -o-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -ms-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -moz-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5', endColorstr='#ffffff', GradientType=0);
	text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
	color: #822bd9;
}
#ikpd .pcss3t-theme-2 > ul {
	margin: 0 -5px -5px;
	border-radius: 0;
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	#ikpd .pcss3t-theme-2 > ul {
		margin-top: 5px;
	}
}


/**/
/* theme 3 */
/**/
#ikpd .pcss3t-theme-3 {
	background: rgba(0,0,0,0.8);	
}
#ikpd .pcss3t-theme-3 > label {
	background: none;
	border-right: 1px dotted rgba(255,255,255,0.5);
	text-align: center;
	color: #fff;
	opacity: 0.6;
}
#ikpd .pcss3t-theme-3 > label:hover {
	background: none;
	color: #d9d92b;
	opacity: 0.8;
}
#ikpd .pcss3t-theme-3 > input:checked + label {
	background: #d9d92b;
	color: #000;
	opacity: 1;
}
#ikpd .pcss3t-theme-3 > ul {
	border-top: 4px solid #d9d92b;
	border-bottom: 4px solid #d9d92b;
	border-radius: 0;
	box-shadow: none;
}


/**/
/* theme 4 */
/**/
#ikpd .pcss3t-theme-4 > label {
	margin: 0 10px 10px 0;
	border-radius: 5px;
	background: #78c5fd;
	background: linear-gradient(to bottom, #78c5fd 0%, #2c8fdd 100%);
	background: -o-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -ms-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -moz-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -webkit-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#78c5fd', endColorstr='#2c8fdd', GradientType=0);
	box-shadow: inset 0 1px rgba(255,255,255,0.5), 0 1px rgba(0,0,0,0.5);
	line-height: 39px;
	text-shadow: 0 1px rgba(0,0,0,0.5);
	color: #fff;
}
#ikpd .pcss3t-theme-4 > label:hover {
	background: #90cffc;
	background: linear-gradient(to bottom, #90cffc 0%, #439bde 100%);
	background: -o-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -ms-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -moz-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -webkit-linear-gradient(top, #90cffc 0%, #439bde 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#90cffc', endColorstr='#439bde', GradientType=0);
}
#ikpd .pcss3t-theme-4 > input:checked + label {
	top: 1px;
	background: #5f9dc9;
	background: linear-gradient(to bottom, #5f9dc9 0%, #2270ab 100%);
	background: -o-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -ms-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -moz-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -webkit-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f9dc9', endColorstr='#2270ab', GradientType=0);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), 0 1px rgba(255,255,255,0.5);
	text-shadow: none;
}
#ikpd .pcss3t-theme-4 > ul {
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}
@media screen and (max-width: 767px) {
	#ikpd .pcss3t-theme-4 > label {
		margin-right: 0;
	}
}


/**/
/* theme 5 */
/**/
#ikpd .pcss3t-theme-5 {
	padding: 15px;
	border-radius: 5px;
	background: #ad6395;
	background: linear-gradient(to right, #ad6395 0%, #a163ad 100%);
	background: -o-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -ms-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -moz-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -webkit-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f9dc9', endColorstr='#a163ad', GradientType=1);
}
#ikpd .pcss3t-theme-5 > label {
	margin-right: 10px;
	margin-bottom: 15px;
	background: none;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	opacity: 1;
}
#ikpd .pcss3t-theme-5 > label:hover {
	background: rgba(255,255,255,0.15);
}
#ikpd .pcss3t-theme-5 > input:checked + label {
	background: rgba(255,255,255,0.3);
	color: #000;
}
#ikpd .pcss3t-theme-5 > input:checked + label:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 10px;
	margin-left: -6px;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
}
#ikpd .pcss3t-theme-5 > ul {
	margin: 0 -15px -15px;
	border-radius: 0 0 5px 5px;
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	#ikpd .pcss3t-theme-5 > input:checked + label:after {
		display: none;
	}
}


/*----------------------------------------------------------------------------*/
/*                               CUSTOMIZATION                                */
/*----------------------------------------------------------------------------*/

/**/
/* height */
/**/
#ikpd .pcss3t > ul,
#ikpd .pcss3t > ul > li {
	height: 650px;
}
