/**
 * Nikahku.id
 * Undangan Digital Kekininan Premium
 * https://nikahku.id
 *
 *
 * Released on: July 10, 2021
 */


@font-face {
    font-family: Gabriola;
    src: url('../font/Gabriola.woff');
}

@font-face {
    font-family: GreatVibes;
    src: url('../font/GreatVibes.otf');
}

@font-face {
    font-family: Parisienne;
    src: url('../font/Parisienne.ttf');
}

@font-face {
    font-family: GlossAndBloom;
    src: url('../font/GlossAndBloom.ttf');
}

.font-gabriola{
    font-family: Gabriola;
}

.font-greatvibes{
    font-family: GreatVibes;
}

.font-parisienne{
    font-family: Parisienne;
}

.font-glossandbloom{
    font-family: GlossAndBloom;
}




html,
body {
    /*position: relative;*/
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #f9f9f9;
}


@media (max-width: 576px) {
    .body-wrapper {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .body-wrapper {
        width: 50%;
        height: 100%;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .body-wrapper {
        width: 40%;
        height: 100%;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .body-wrapper {
        width: 30%;
        height: 100%;
        margin: 0 auto;
    }
}



/* HERO IMAGE */
.hero-image {
    background-image: url("../image/cover/openingv2.png");
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../image/cover/opening.png");*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*position: relative;*/
    height:100%;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 8px;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    text-transform: uppercase;
}


.swipeup {
    position: absolute;
    width: 100%;
    animation: animate_swipe_up 1s infinite;
    z-index: 1000;
}
@keyframes animate_swipe_up {
    0%,
    100% {
        bottom: 20px;
    }

    50% {
        bottom: 30px;
    }
}





.page-holder .topleft {
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
}

.page-holder .topright {
    z-index: -1;
    position: absolute;
    top: 0px;
    right: 0px;
}

.page-holder .bottomleft {
    z-index: -1;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.page-holder .bottomright {
    z-index: -1;
    position: absolute;
    bottom: 0px;
    right: 0px;
}




/* BUTTON */

.btn-custom {
    color: #fff;
    background-color: #e4b440;
    border-color: #e4b440
}

.btn-custom:hover {
    color: #fff;
    background-color: #e4b440;
    border-color: #e4b440
}

.btn-custom:focus, .btn-custom.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 90, 90, 0.5)
}

.btn-custom.disabled, .btn-custom:disabled {
    color: #fff;
    background-color: #e4b440;
    border-color: #e4b440
}

.btn-custom:not(:disabled):not(.disabled):active, .btn-custom:not(:disabled):not(.disabled).active, .show > .btn-custom.dropdown-toggle {
    color: #fff;
    background-color: #e4b440;
    border-color: #e4b440
}

.btn-custom:not(:disabled):not(.disabled):active:focus, .btn-custom:not(:disabled):not(.disabled).active:focus, .show > .btn-custom.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 90, 90, 0.5)
}



.btn-outline-custom {
    color: #e4b440;
    background-color: transparent;
    background-image: none;
    border-color: #e4b440
}

.btn-outline-custom:hover {
    color: #222;
    background-color: #e4b440;
    border-color: #e4b440
}

.btn-outline-custom:focus, .btn-outline-custom.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 128, 128, 0.5)
}

.btn-outline-custom.disabled, .btn-outline-custom:disabled {
    color: #e4b440;
    background-color: transparent
}

.btn-outline-custom:not(:disabled):not(.disabled):active, .btn-outline-custom:not(:disabled):not(.disabled).active, .show > .btn-outline-custom.dropdown-toggle {
    color: #fff;
    background-color: #e4b440;
    border-color: #e4b440
}

.btn-outline-custom:not(:disabled):not(.disabled):active:focus, .btn-outline-custom:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-custom.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 128, 128, 0.5)
}






.bg-theme{
    background-color: #fff;

    z-index: 99;
    transition: all 1s linear;
    /*display: block;*/
    background-image: url('../image/cover/theme-bg.png');
    /*height: 100%;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.bg-theme-flat{
    background-color: #fff6f6;
    z-index: 99;
}



.bg-custom{
    background-color: #e4b440 !important;
}

.border-color-custom{
    border-color: #e4b440 !important;
}


.color-custom{
    color: #e4b440;
}



.box-rounded {
    border: 1px solid #e4b440;
    border-radius: 15px 15px;
}






/* SWIPER GALLERY */



.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}



/*.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;

    !* Center slide text vertically *!
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;


    background-size: cover;
    background-position: center;
}



.swiper-container {
    width: 100% !important;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.mySwiper2 {
    height: 80%;
    width: 100% !important;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.mySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    !*height: 100%;
    object-fit: cover;*!
}*/





/* TESTIMONIAL */

.testimonial-quote {
    font-size: 11px;
}

.testimonial-quote blockquote {
    /* Negate theme styles */
    border: 0;
    margin: 0;
    padding: 0;

    background: none;
    color: gray;
    font-family: Georgia, serif;
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.4 !important;
    margin: 0;
    position: relative;
    text-shadow: 0 1px white;
    /*z-index: 600;*/
}

.testimonial-quote blockquote * {
    /*box-sizing: border-box;*/
}

.testimonial-quote blockquote p {
    color: #75808a;
    line-height: 1.4 !important;
}

.testimonial-quote blockquote p:first-child:before {
    content: '\201C';
    color: rgba(255, 146, 142, 0.38);
    font-size: 7.5em;
    font-weight: 700;
    opacity: .75;
    position: absolute;
    top: -.4em;
    left: -.2em;
    text-shadow: none;
    z-index: -300;
}

.testimonial-quote cite {
    color: gray;
    /*display: block;*/
    font-size: .8em;
}

.testimonial-quote cite span {
    color: #5e5e5e;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px white;
}

.testimonial-quote {
    /*position: relative;*/
}

.testimonial-quote .quote-container {
    padding-left: 160px;
}

.testimonial-quote.right .quote-container {
    padding-left: 0;
    padding-right: 160px;
}

.testimonial-quote.right img {
    left: auto;
    right: 0;
}

.testimonial-quote.right cite {
    text-align: right;
}



/* TIMELINE */

ul.timeline {
    list-style-type: none;
    position: relative;
    z-index: -1;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}

ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #e4b440;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}




/* MUSIC BOX */
.music-box {
    position: fixed;
    width: 300px;
    height: 160px;
    z-index: 120;
    bottom: 30px;
    right: 30px;
}

@media (max-width: 991px) {
    .music-box {
        width: 50px;
        height: 150px;
        right: auto;
        right:10px;
        top:10px;
    }
}

.music-box .music-holder {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: -30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.music-box .music-holder iframe {
    width: 100%;
    height: 100%;
}

.music-box button {
    background: rgba(248, 246, 246, 0.85);
    width: 50px;
    line-height: 37px;
    font-size: 18px;
    font-size: 1rem;
    color: #68192b;
    border: 0px solid #e6e6e6;
    outline: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.music-box button i{
    font-size: 20px;
}

@media (max-width: 991px) {
    .music-box button {
        right: 0;
        left: auto;
    }
}

.music-box .toggle-music-box {
    top: -50px;
    visibility: visible;
    opacity: 1;

}


.music {
    padding: 0;
    background: none !important;
    border: none !important;
    position: relative;
    top: 100px;
    left: 180px;
}

.music:focus {
    outline: none;
}



/* POPUP */
.modal.show .modal-dialog {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
}

@media (prefers-color-scheme: dark){}