body {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Catamaran", sans-serif;
}

/* -------------------------------------------------------------
back to top 
--------------------------------------------------------------*/

.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: 50px;
    background: #fff;
    color: #660404;
    border: 2px solid #660404;
    transition: all 0.4s;
    ;
}

.back-to-top i:hover {
    text-decoration: none;
    background: #660404;
    color: #fff;

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.08);
    z-index: 997;
    padding: 15px 0;
    transition: all 0.7s;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
  # 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: 10px 0 10px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Catamaran", sans-serif;
    font-weight: 600;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    visibility: visible;
    width: 25px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #f7f7f7;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 5px;
}

.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: #292929;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #660404;
}

.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: 17px;
    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: #fff;
}

.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: #222222;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #660404;
    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(9, 9, 9, 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;
}

/*--------------------------------------------------------------
  # Header Search
  --------------------------------------------------------------*/
.header-search {
    padding-left: 20px;
    position: relative;
    right: 20px;
}

.header-search a {
    font-family: "Catamaran", sans-serif;
    color: #fff;
    padding: 15px 20px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
    font-size: 18px;
    border-radius: 10px;
    font-weight: bold;
}

.header-search a:hover {
    color: #660404;
    background-color: #fff;
}

@media (max-width: 992px) {
    .header-search {
        padding: 0 20px 0px 0;
        bottom: 10px;
    }
}

/* -----------------
HERO 
-------------------*/

#particles-js {
    height: 100vh;
}

#hero .caption {
    position: absolute;
    top: calc(50% - 130px);
    left: calc(50% - 413px/2);
}

#hero .caption h1 {
    font-size: 96pt;
    font-weight: bold;
    color: #fff;
}

#hero .caption h1 span {
    position: absolute;
    font-size: 120pt;
    filter: blur(3px);
    top: -50px;
    left: calc(50% - 517px/2);
    color: rgba(255, 255, 255, 0.15);
}

#hero .caption h3 {
    margin-left: 10px;
    color: #fff;
    text-align: center;
    font-weight: 300;
}

#hero .btn {
    margin-top: 50px;
    background-color: #fff;
    border-radius: 50px;
    padding: 4px 20px;
    font-family: "Catamaran", sans-serif;
    font-weight: bold;
}

#hero .btn:first-child {
    background-color: rgba(0, 0, 0, 0.0);
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn:first-child:hover {
    background-color: #fff;
    border: 2px solid #fff;
    color: #660404;
}

#hero .btn:last-child {
    background-color: #fff;
}


.mouse-wrapper {
    position: absolute;
    bottom: -20px;
    left: calc(50% - 35px);
}

.mouse {
    height: 50px;
    width: 35px;
    border-radius: 14px;
    border: 2.5px solid #fff;
    position: relative;
}

.mouse:after {
    content: "";
    display: block;
    height: 8px;
    width: 2px;
    margin: 10px auto;
    background: #fff;
    position: relative;
    -webkit-animation: a 1.2s ease infinite;
    animation: a 1.2s ease infinite;
}

.arrow-scroll {
    width: 35px;
    margin-top: 10px;
}

.arrow-scroll>span {
    font-family: Arial, sans-serif;
    display: block;
    width: 9px;
    height: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin: 5px auto 3px;
    -webkit-animation: b 1s infinite;
    animation: b 1s infinite;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.arrow-scroll>span:first-child {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.arrow-scroll>span:last-child {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

@-webkit-keyframes a {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes a {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@-webkit-keyframes b {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

@keyframes b {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

/*-------------------
Mobile Hero
-------------------- */
@media (max-width: 992px) {
    #hero .caption {
        left: calc(50% - 268px/2);
    }

    #hero .caption h1 {
        font-size: 60pt;
        left: calc(50% - 360px/2);
        text-align: center;
    }

    #hero .caption h1 span {
        font-size: 75pt;
        left: calc(50% - 323px/2);
    }

    #hero .caption h3 {
        font-size: 14pt;
    }
}


/*--------------------------------
 About Us
 ---------------------------------*/

#about {
    width: 100%;
    position: relative;
    background-image: url('../images/indonesia.svg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 70%;
    padding-top: 50px;
    padding-bottom: 50px;
}

#about h3 {
    font-weight: 800;
}

#about h3 span {
    position: absolute;
    font-size: 2rem;
    filter: blur(1px);
    top: 35px;
    left: calc(50% - 135px/2);
    color: rgba(0, 0, 0, 0.3);
}


#about .caption {
    width: 80%;
}

#about .caption p {
    font-family: 'Lato', sans-serif;
    line-height: 35pt;
    font-size: 14pt;
    text-align: justify;
}

#about .caption .btn {
    border: 2px solid #660404;
    color: #660404;
    font-family: "Catamaran", sans-serif;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 30px;
    transition: all 0.5s;
}

#about .caption .btn:hover {
    background-color: #660404;
    color: #fff;
}

/* about us mobile */
@media (max-width: 992px) {
    #about {
        background-size: 90%;
    }


    #about .caption {
        width: 90%;

    }

    #about .caption p {
        text-indent: 0;
        font-size: 11pt;
        line-height: 24pt;
        margin-bottom: 40px;
    }

    #about .container .row {
        margin-top: 20px !important;
    }


}


/*--------------------------------
 Latest Update
 ---------------------------------*/

#update {
    /* height: 768px; */
    width: 100%;
    position: relative;
    background-color: #660404;
    padding-top: 50px;
    padding-bottom: 100px;
}

#update h3 {
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}

#update h3 span {
    position: absolute;
    font-size: 2rem;
    filter: blur(1px);
    top: 35px;
    left: calc(50% - 205px/2);
    color: rgba(255, 255, 255, 0.3);
}

#update .owl-item {
    padding: 20px 20px;
}


#update .img-wrapper {
    min-height: 200px;
    border-radius: 5px;
    padding-top: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all ease-in-out .2s;
}

#update .img-wrapper:hover {
    transform: scale(1.02);

}

#update .content-wrapper {
    transition: all ease-in-out .2s;
    text-decoration: none;
}

#update .content-wrapper:hover .img-wrapper {
    transform: scale(1.02);
}

#update .text h5 {
    font-family: "Catamaran", sans-serif;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1rem;
}

#update .text .line {
    content: "";
    height: 5px;
    width: 70%;
    background-color: #DC3545;
    border-radius: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
}


#update .text p {
    color: #fff;
    font-family: 'Lato', sans-serif;
    line-height: 15pt;
    margin-bottom: 20px;
}

#update .card-footer {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: #fff;
}

#update .card-footer .view {
    display: inline-block;
    bottom: 5px;
    font-size: 12px;
    position: relative;
}

#update .card-footer .right-side {
    display: inline;
    position: relative;
    left: 80px
}

#update .card-footer .author-date {
    display: inline-block;
}

#update .card-footer .author {
    line-height: 10px;
    bottom: 5px;
    position: relative;
    transform: translateY(0.7rem);
    -webkit-transform: translateY(0.7rem);
    -moz-transform: translateY(0.7rem);
    -o-transform: translateY(0.7rem);
    -ms-transform: translateY(0.7rem);
    transition: all ease-in-out .4s;
}

#update .card-footer .date {
    opacity: 0;
    transition: all ease-in-out .4s;
    transform: translateY(-0.7rem);
    -webkit-transform: translateY(-0.7rem);
    -moz-transform: translateY(-0.7rem);
    -o-transform: translateY(-0.7rem);
    -ms-transform: translateY(-0.7rem);
    color: #777;
    font-style: italic;
}

#update .content-wrapper:hover .article_author .author {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
}

#update .content-wrapper:hover .article_author .date {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
}

#update .card-footer .portrait {
    display: inline;
    width: 40px;
    position: relative;
    bottom: 5px;
}




.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}

#update .owl-dots {
    margin-left: 50%;
}

#update .owl-dot {
    height: 10px;
    width: 10px;
    margin-right: 10px;
    border-radius: 100%;
    background-color: #D6D6D6;
}

#update .owl-dot.active {
    background-color: #869791;
}

#update .card-footer {
    padding: 0;
}

/* latest update mobile */
@media (max-width: 992px) {
    #update h3 {
        margin-bottom: 20px;
    }

    #update .card-footer .right-side {
        left: 180px
    }
}



/* ---------------------
Presidium Nasional
-------------------------*/
#presidium {
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

#presidium .container {
    padding-top: 50px;
}

#presidium h3 {
    font-weight: 800;
}

#presidium h3 span {
    position: absolute;
    font-size: 2rem;
    filter: blur(1px);
    top: 35px;
    left: calc(50% - 278px/2);
    color: rgba(0, 0, 0, 0.3);
}

#presidium .member-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

#presidium .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#presidium .member .member-img {
    position: relative;
    overflow: hidden;
}

#presidium .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
}

#presidium .member .social a {
    transition: color 0.3s;
    color: #493c3e;
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
}

#presidium .member .social a:hover {
    color: #e43c5c;
}

#presidium .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

#presidium .member .member-info {
    padding: 25px 15px;
}

#presidium .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #493c3e;
}

#presidium .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

#presidium .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

#presidium .member:hover .social {
    opacity: 1;
}

/* presidium nasional mobile */
@media (max-width: 992px) {
    #presidium h3 {
        margin-bottom: 20px;
    }

    #presidium .container {
        padding: 20px;
    }

    #presidium .member[data-aos-duration='1000'] [data-aos],
    [data-aos][data-aos][data-aos-offsett='100'] {
        transition-duration: 4000ms;
    }
}


/* ----------------------------------------------------
Contact Us
----------------------------------------------------*/

#contact {
    /* height: 768px; */
    width: 100%;
    position: relative;
    background-color: #660404;
    padding-top: 50px;
    padding-bottom: 100px;
}

#contact h3 {
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}

#contact h3 span {
    position: absolute;
    font-size: 2rem;
    filter: blur(1px);
    top: 35px;
    left: calc(50% - 158px/2);
    color: rgba(255, 255, 255, 0.3);
}

#contact .right-side {
    padding-top: 50px;
}

#contact .right-side img {
    width: 60%;
}

#contact .right-side img:first-child {
    animation: floating 5s ease-in-out infinite
}

#contact form {
    font-family: "Catamaran", sans-serif;
    color: #fff;
}

#contact input {
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 2px solid #fff;
    color: #fff;
}

#contact form label {

    font-weight: bold;
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/* Contact us mobile */
@media (max-width: 992px) {
    #contact h3 {
        margin-bottom: 0px;
    }

    #contact .right-side {
        padding: 0;
    }

    #contact .right-side img {
        position: relative;
        left: calc(50% - 246px/2);
    }
}


/* -------------------------------------------------------
Footer
-------------------------------------------------------*/

footer {
    padding: 50px 50px;
    background-color: #450000;
}

footer h4 {
    color: #fff;
    margin-top: 20px
}

footer h5 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
}

footer h5>a {
    font-style: italic;
    color: #fff;
    font-weight: bold;
    transition: all 0.5s;
}

footer h5>a:hover {
    text-decoration: none;
    color: #d4d4d4;
}

footer .social-media {
    margin-top: 20px;
}

footer .social-media a {
    font-family: "Catamaran", sans-serif;
    color: #fff;
    font-size: 1.2rem;
}

footer .social-media a:hover {
    text-decoration: none;
    color: #d4d4d4;

}

/* Footer  mobile */
@media (max-width: 992px) {
    footer {
        padding: 50px 10px;

    }

    footer .logo {
        width: 26vw;
        margin-right: 20px !important;
    }

    footer .caption {
        display: inline;
    }

    footer h4 {
        margin-top: 10px;
        font-size: 5vw;
    }

    footer .social-media {
        float: none !important;
        text-align: center;
    }

    footer .social-media p {
        margin-bottom: 5px;
    }

    footer .social-media p a {
        font-size: 4vw;
    }

}

.owl-nav {
    display: none;
}