/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elsie&display=swap');

:root {
    --primary: #FFE6CE;
	--secondary: #543700;
    --light: #FFFFFF;
    --dark: #6B6B6B;
    --black: #000000;
	--bg-color: #EFEFEF;
	--f-dm-serif-display : 'DM Serif Display', serif;
	--f-montserrat: 'Montserrat', sans-serif;
	--f-croissant-one: 'Croissant One', serif;
	--f-outfit: 'Outfit', sans-serif;
	--f-elsie: 'Elsie', serif;
}

body {
	line-height: 1.3;
    font-size: 1rem;
    color: var(--black);
	background: var(--primary);
	font-family: var(--f-dm-serif-display);
}

/*** Heading ***/
h1,
h2
 {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

p {
    margin-bottom: 0;
}

a:hover {
    color: var(--light);
}

.fw-bold {
    font-weight: 700 !important;
}


/* Font */


/*** Gradient Text & BG ***/
.txt-first {
    color: var(--primary) !important;
}


.txt-second {
	color: var(--secondary) !important;
}
.bg-second {
	background: var(--secondary);
	color: var(--light);
}

.bg-first {
    background-color: var(--primary);
    color: var(--light);
}


.bg-linier {
	background: linear-gradient(180deg, rgba(255, 242, 229, 0) 0%, #daa371 32%, rgba(221, 170, 122, 0.92) 65.5%, rgba(255, 242, 229, 0) 100%
	  );
}


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

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.w-fit {
	width: fit-content;
}

.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.z-3 {
    z-index: 3;
}


/*** Button ***/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

/*** Custom ***/



/* POPUP Undangan */

.popup-undangan .card-image-slider {
	background-image: url(../../../../assets_website/adat/tema1/images/full-image.png);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	opacity: .3;
}

.popup-undangan .card-content-wedding.core-00 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    height: 100vh;
    font-weight: 900;
    position: relative;
	overflow: hidden;
   
}

.popup-undangan .card-content-wedding .container-500-responsive .img-popup-top-full-1 {
	animation: img-popup-top-full-1 5s ease infinite;
	position: absolute;
	top: -5.2rem;
	left: 30%;
	transform: rotate(-15deg);
	max-height: 8rem;
}
.popup-undangan .card-content-wedding .container-500-responsive .img-popup-top-full-2 {
	animation: img-popup-top-full-2 5s ease infinite;
	position: absolute;
	top: -6.5rem;
	left: 44%;
	transform: rotate(0deg);
	max-height: 4rem;
}
.popup-undangan .card-content-wedding .container-500-responsive .img-popup-top-full-3 {
	animation: img-popup-top-full-3 5s ease infinite;
	position: absolute;
	top: -5.2rem;
	right: 33%;
	transform: rotate(15deg);
	max-height: 8rem;
}

@keyframes img-popup-top-full-1 {
    0% {
      transform: rotate(-15deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-15deg);
    }
}
@keyframes img-popup-top-full-2 {
    0% {
		top: -5.8rem;
    }
    50% {
		top: -8rem;
    }
    100% {
		top: -5.8rem;
    }
}
@keyframes img-popup-top-full-3 {
    0% {
      transform: rotate(15deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(15deg);
    }
}



.popup-undangan .card-content-wedding .img-popup-bottom-full-1 {
	animation: img-popup-bottom-full-1 5s ease infinite;
	position: absolute;
	bottom: -3rem;
	left: -2rem;
  	transform: rotate(20deg);
	max-height: 16rem;
}
@keyframes img-popup-bottom-full-1 {
    0% {
      transform: rotate(20deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(20deg);
    }
}

.popup-undangan .card-content-wedding .img-popup-bottom-full-2 {
	animation: img-popup-bottom-full-2 5s ease infinite;
	position: absolute;
	bottom: -5rem;
	left: 3rem;
	transform: rotate(15deg);
	max-height: 14rem;
}
@keyframes img-popup-bottom-full-2 {
    0% {
      transform: rotate(15deg);
    }
    50% {
      transform: rotate(30deg);
    }
    100% {
      transform: rotate(15deg);
    }
}

.popup-undangan .card-content-wedding .img-popup-bottom-full-3 {
	animation: img-popup-bottom-full-3 5s ease infinite;
	position: absolute;
	bottom: -3rem;
	right: -2rem;
  	transform: rotate(-20deg);
	max-height: 16rem;
}
@keyframes img-popup-bottom-full-3 {
    0% {
      transform: rotate(-20deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-20deg);
    }
}
.popup-undangan .card-content-wedding .img-popup-bottom-full-4 {
	animation: img-popup-bottom-full-4 5s ease infinite;
	position: absolute;
	bottom: -5rem;
	right: 3rem;
	transform: rotate(-15deg);
	max-height: 14rem;
}
@keyframes img-popup-bottom-full-4 {
    0% {
      transform: rotate(-15deg);
    }
    50% {
      transform: rotate(-30deg);
    }
    100% {
      transform: rotate(-15deg);
    }
}

.popup-undangan .card-content-wedding .card-name {
	color: var(--secondary);
}

.popup-undangan .card-content-wedding .card-name.men {
	padding-bottom: 1rem;
}


.popup-undangan .card-content-wedding .and {
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 9rem;
	z-index: -1;
	color: var(--secondary);
	opacity: .1;
}

.popup-undangan .card-content-wedding .card-name h1 {
    font-size: 1.8rem;
}




.popup-undangan .card-content-wedding .open-content a {
    color: var(--light);
    background: var(--secondary);
    padding: .3rem 3rem;
    font-weight: 400;
    border: none;
    display: flex;
    align-items: center;
	position: relative;
	z-index: 10;
	font-style: italic;
}

.popup-undangan .card-content-wedding .open-content img {
	filter: brightness(0) invert(1);
}


.popup-undangan .card-content-wedding .open-content .fa-angle-double-down {
    animation: animate 2s infinite;
    color: var(--secondary);
    transition: .4s;
    font-size: 2rem;
}

.popup-undangan .card-content-wedding .open-content .fa-angle-double-down:hover {
    color: var(--light);
}

.popup-undangan .card-content-wedding .open-content .fa-angle-double-down:nth-child(2) {
    animation-delay: -0.2s;
}

.popup-undangan .card-content-wedding .open-content .fa-angle-double-down:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(0) translate(0, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(0) translate(0, 10px);
    }
}


/*** Navbar ***/
.navbar {
    transition: transform 2s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
	opacity: 0;
}

.navbar.show {
    transform: translateY(0%);
	opacity: 1;
}

.navbar-light {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transform: translateY(0);
}

.navbar-light .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    width: 100%;
    justify-content:  center;
}

.navbar-light .navbar-nav {
    padding: .5rem;
	background: var(--secondary);
	border-radius: 70px;
    padding: .5rem;

}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 0 .3rem;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    text-align: center;
}





.navbar-light .navbar-nav .nav-link .img {
    /* max-width: 45px; */
    overflow: hidden;
    width: 35px;
	height: 35px;
    background: var(--primary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .5s ease-in-out;
}

.navbar-light .navbar-nav .nav-link.active .img {
	background: #7d6e4c;
}

.navbar-light .navbar-nav .nav-link .img img {
    max-width: 20px;
	filter: invert(15%) sepia(77%) saturate(2270%) hue-rotate(37deg) brightness(98%) contrast(99%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	transition: all .5s ease-in-out;
}

.navbar-light .navbar-nav .nav-link.active .img img {
	filter: brightness(0) invert(1);
}

.navbar-light .navbar-nav .nav-link p {
    font-size: .7rem;
	color: var(--primary);
}

/* .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
} */

/* .navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
} */

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
  
    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    
 

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.limiter {
	width: 100%;
	height: 100vh;
    position: relative;
}

.limiter.full-bg::before {
	content: "";
	background: var(--primary);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
}

.container-wedding {
	width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: stretch;
    justify-content: center;
}

.card-image-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
}

.card-content-image-slider {
	width: calc(100% - 500px);
	position: fixed;
    top: 0;
    left: 0;
	z-index: 1;
    height: 100vh;
    display: none;
	position: relative;
	padding-right: 7rem;
}

.card-content-image-slider::before {
	content: "";
	background-image: url(../images/image-wayang-sampul-6cb273a035ce9572b7b0dcce5b8ff120.svg);
	background-position: bottom;
	width: 100%;
	height: 3.6rem;
	position: absolute;
	top: 0;
	left: 0;
}
.card-content-image-slider::after {
	content: "";
	background-image: url(../images/image-wayang-sampul-6cb273a035ce9572b7b0dcce5b8ff120.svg);
	background-position: bottom;
	width: 100%;
	height: 3.6rem;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: rotate(180deg);
}






.card-content-wedding {
	width: 100%;
	border-radius: 2px;
	position: relative;
	/* padding: 0 20px 0 20px; */
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card-content-wedding .card-content-data {
    width: 100%;
    height: 100%;
}

.card-content-wedding .card-content-data .container-500-responsive {
    width: 500px;
	position: relative;
	z-index: 9;
}


.card-btn a {
	background: linear-gradient(90deg, #543700 0.05%, #543700 28.59%, #543700 52.01%, #543700 77.76%, #543700 99.97%);
	color: var(--light);
	display: flex;
	align-items: center;
	width: fit-content;
	padding: .5rem 2rem;
}


@keyframes img-left {
    0% {
      transform: rotate(15deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(15deg);
    }
}

@keyframes img-right {
    0% {
      transform: rotate(-15deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-15deg);
    }
}


.core-0 {
	height: 100vh;
	padding-top: 4rem;
	padding-bottom: 0;
	display: flex;
  	justify-content: center;
}

.core-0 .img-right {
	animation: img-right 5s ease infinite;
	position: absolute;
	bottom: -6rem;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}


.core-0 .card-image {
	position: relative;
	height: 0;
	padding-bottom: 60%;
}

.core-0 .card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.core-0 .countdown {
	padding-bottom: 3rem;
	color: var(--secondary);
	margin-top: -2rem;
	position: relative;
}


.core-0 .countdown .clock {
	padding-left: .5rem;
	line-height: 0.8;
}
.core-0 .countdown .clock span {
	font-size: 3.3rem;
	color: var(--light);
	text-shadow: -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px -1px 0 var(--secondary);
}

.core-0 .countdown .clock p {
	text-align: right;
	font-size: .8rem;
	color: var(--secondary);
}

.core-0 .card-heading {
	width: 95%;
	font-family: var(--f-montserrat);
}




.core-1 {
	padding-bottom: 6rem;
	display: flex;
  	justify-content: center;
}

.core-1 .img-left-1 {
	animation: img-left 5s ease infinite;
	position: absolute;
	top: -11rem;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}
.core-1 .img-right-2 {
	animation: img-right 5s ease infinite;
	position: absolute;
	top: 27%;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}

.core-1 .img-left-3 {
	animation: img-left 5s ease infinite;
	position: absolute;
	top: 45%;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}

.core-1 .img-right-4 {
	animation: img-right 5s ease infinite;
	position: absolute;
	bottom: 0;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}

.core-1 .card-heading {
	width: 95%;
	font-family: var(--f-montserrat);
}

.core-1 .widget .card-title {
	font-size: calc(2.2rem + 1vw);
	position: relative;
	border-bottom: 3px dashed var(--black);
  	padding-bottom: 1rem;
	color: #fff;
	text-shadow: -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px -1px 0 var(--secondary);
}

.core-1 .widget .card-title .card-text {
	font-size: .8rem;
}

.core-1 .widget .card-sosmed .btn-sosmed {
	width: 25px;
	height: 25px;
	background: var(--secondary);
	color: var(--light);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.core-1 .widget .card-sosmed .btn-sosmed + .btn-sosmed {
	margin-left: 1rem;
}


.core-1 .widget .card-image {
	width: 230px;
	height: 230px;
	background: var(--bg-color);
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	transition: all .5s ease;
}

.core-1 .widget .card-image.card-men {
	margin-top: 2rem;
	margin-left: -6rem;
}
.core-1 .widget .card-image.card-woman {
	margin-top: 0rem;
  	margin-right: 0;
}

.core-1 .widget .card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.core-2 {
	display: flex;
  	justify-content: center;
	position: relative;
}

.core-2 .img-left {
	animation: img-left 5s ease infinite;
	position: absolute;
	top: 0;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}
.core-2 .img-right {
	animation: img-right 5s ease infinite;
	position: absolute;
	bottom: -13rem;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}

.core-2 .card-heading {
	text-align: center;
	padding: 5rem 0;
	color: var(--secondary);
	font-weight: 600;
}

.core-2 .card-heading .save {
	font-size: 3rem;
}

.core-2 .card-heading .date {
	position: relative;
	font-size: 3.5rem;
}


.core-2 .card-heading .date::before {
	content: "";
	border-top: 2px dashed var(--primary);
	width: 90%;
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.core-2 .card-akad::before {
	content: "";
	background: var(--secondary);
	width: 1.5rem;
	height: 13rem;
	position: absolute;
	top: 1rem;
	right: 0;
	z-index: -1;
	transition: all .3s ease-in;
}

.core-2 .card-akad .card-heading-text {
	position: absolute;
	top: 50%;
	right: -1.5rem;
	transform: rotate(90deg) translateY(-50%);
	font-size: 2rem;
	color: var(--black);
}

.core-2 .card-akad .card-day {
	font-size: 4rem;
	font-weight: 900;
	position: relative;
	font-family: var(--f-montserrat);
	color: #fff;
	text-shadow: -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px -1px 0 var(--secondary);
}



.core-2 .card-akad .card-date {
	font-size: 1.5rem;
	font-weight: 600;
	font-family: var(--f-montserrat);
}

.core-2 .card-akad .card-hour {
	font-size: .9rem;
	font-style: italic;
	font-weight: 500;
	font-family: var(--f-montserrat);
}


.core-2 .card-resepsi::before {
	content: "";
	background: var(--secondary);
	width: 1.5rem;
	height: 13rem;
	position: absolute;
	top: 1rem;
	left: 0;
	z-index: -1;
	transition: all .3s ease-in;
}

.core-2 .card-resepsi .card-heading-text {
	position: absolute;
	top: 50%;
	left: -2.5rem;
	transform: rotate(90deg) translateY(-50%) scale(-1);
	font-size: 2rem;
	color: var(--black);
}



.core-2 .card-resepsi .card-day {
	font-size: 4rem;
	font-weight: 900;
	position: relative;
	font-family: var(--f-montserrat);
	color: #fff;
	text-shadow: -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px -1px 0 var(--secondary);
}



.core-2 .card-resepsi .card-date {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: end;
	font-family: var(--f-montserrat);
}

.core-2 .card-resepsi .card-hour {
	font-size: .9rem;
	font-style: italic;
	font-weight: 500;
	text-align: end;
	font-family: var(--f-montserrat);
}



.core-3 {
	padding: 4rem 0;
	display: flex;
  	justify-content: center;
}

.core-3 .img-left-1 {
	animation: img-left 5s ease infinite;
	position: absolute;
	top: 3rem;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}
.core-3 .img-right-2 {
	animation: img-right 5s ease infinite;
	position: absolute;
	top: 45%;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}

.core-3 .img-left-3 {
	animation: img-left 5s ease infinite;
	position: absolute;
	bottom: 0;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}

.core-3 .img-right-4 {
	animation: img-right 5s ease infinite;
	position: absolute;
	bottom: -15rem;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}

.core-3 video {
	width: 100%;
	height: 200px;
	transition: .3s ease;
}

.core-3 iframe {
	width: 100%;
	height: 200px;
	transition: .3s ease;
}

.core-3 .card-box .card-image {
    height: 11rem;
    max-height: 11rem;
}

.core-3 .card-box .card-small-image {
    height: 9rem;
    max-height: 9rem;
}
.core-3 .card-box .card-big-image {
    height: 17rem;
    max-height: 17rem;
}
.core-3 .card-box .card-large-image {
    height: 9rem;
    max-height: 9rem;
}

.core-3 .card-box .card-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


.core-3 .masonry {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(14, 1fr);
    row-gap: 1rem;
    column-gap: 1rem;
}

.core-3 .masonry .masonry-item {
    background: #a4a4a43b;
}

.core-3 .masonry .masonry-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    pointer-events: none;
}

.core-3 .masonry .masonry-item.cell-1 {
    grid-column: 1 / 8;
    grid-row: 1 / 6;
}


.core-3 .masonry .masonry-item.cell-2 {
    grid-column: 8 / 17;
    grid-row: 1 / 6;
}

.core-3 .masonry .masonry-item.cell-3 {
    grid-column: 1 / 10;
    grid-row: 6 / -4;
}

.core-3 .masonry .masonry-item.cell-4 {
    grid-column: 10 / 17;
    grid-row: 6 / -4;
}

.core-3 .masonry .masonry-item.cell-5 {
    grid-column: 1 / 7;
  grid-row: 12 / 16;
}

.core-3 .masonry .masonry-item.cell-6 {
    grid-column: 1 / 7;
  grid-row: 16 / 27;
}

.core-3 .masonry .masonry-item.cell-7 {
    grid-column: 17 / 7;
  grid-row: 12 / 25;
}

.core-3 .masonry .masonry-item.cell-8 {
    grid-column: 17 / 7;
  grid-row: 33 / 25;
}

.core-3 .masonry .masonry-item.cell-9 {
    grid-column: 1 / 7;
    grid-row: 27 / 33;
}

.core-3 .masonry .masonry-item.cell-10 {
    grid-column: 1 / 9;
    grid-row: 48 / 33;
}

.core-3 .masonry .masonry-item.cell-11 {
    grid-column: 9 / 17;
    grid-row: 48 / 33;
}

.core-3 .masonry .masonry-item.cell-12 {
    grid-column: 1 / 8;
    grid-row: 48 / 48;
}

.core-3 .masonry .masonry-item.cell-13 {
    grid-column: 8 / 17;
    grid-row: 49 / 48;
}

.core-3 .masonry .masonry-item.cell-14 {
    grid-column: 1 / 7;
    grid-row: 49 / 49;
}

.core-3 .masonry .masonry-item.cell-15 {
    grid-column: 1 / 7;
    grid-row: 55 / 50;
}

.core-3 .masonry .masonry-item.cell-16 {
    grid-column: 17 / 7;
    grid-row: 51 / 49;
}

.core-3 .masonry .masonry-item.cell-17 {
    grid-column: 1 / 7;
    grid-row: 55 / 55;
}

.core-3 .masonry .masonry-item.cell-18 {
    grid-column: 17 / 7;
    grid-row: 56 / 51;
}

.core-3 .masonry .masonry-item.cell-19 {
    grid-column: 1 / 7;
    grid-row: 56 / 56;
}

.core-3 .masonry .masonry-item.cell-20 {
    grid-column: 17 / 7;
    grid-row: 56 / 56;
}




.core-4 {
	padding: 5rem 0;
	display: flex;
  	justify-content: center;
	position: relative;
}


.core-4 .heading h1 {
	width: fit-content;
	padding: 0 1.5rem;
  	line-height: 1;
}


.core-4 .love-story .card-box .card-line {
	padding-bottom: 6rem;
	position: relative;
}

.core-4 .love-story .card-box .card-line::before {
	content: "";
	background: #2F195F;
	width: 3px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}




.core-4 .love-story .card-box .card-line .card-icon {
	background: var(--light);
	border: 2px solid #2F195F;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}



.core-4 .love-story .card-box .card-line .card-icon::after {
	content: "";
	background-image: url(../../../images/image_tema/love-story-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
  	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}


.core-4 .love-story .card-box .card-image {
	position: relative;
	width: 93px;
	height: 93px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--black);
	margin-top: -2px;
}

.core-4 .love-story .card-box .card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.core-4 .love-story .card-box .card-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--secondary);
	font-family: var(--f-outfit);
}

.core-4 .love-story .card-box .card-text {
	font-size: 1rem;
	font-weight: 500;
	padding-bottom: 1rem;
	font-family: var(--f-outfit);
}




.core-5 {
	padding-bottom: 5rem;
	display: flex;
  	justify-content: center;
	position: relative;
}


.core-5 .img-left {
	animation: img-left 5s ease infinite;
	position: absolute;
	bottom: -7rem;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}



.core-5 .live .heading::before {
	content: "";
	border-top: 2px dashed var(--light);
	width: 23%;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
}
.core-5 .live .heading::after {
	content: "";
	border-top: 2px dashed var(--light);
	width: 23%;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
}

.core-5 .live .heading h1 {
	width: fit-content;
	padding: 0 1.5rem;
  	line-height: 1;
	color: var(--secondary);
	text-align: center;
}

.core-5 .live .box-row {
	background: var(--secondary);
	padding: 2rem 0;
}

.core-5 .live .box-row +  .box-row {
	margin-top: 2rem;
}

.core-5 .live .box-row .card-image {
	width: 50px;
	height: 50px;
	position: relative;
}

.core-5 .live .box-row .card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.core-5 .live .box-row .col-6 {
	color: var(--light);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	padding: 0;
}

.core-5 .live .box-row a {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--light);
}

.core-5 .live .box-row a img {
    width: 45px;
    filter: invert(58%) sepia(92%) saturate(1804%) hue-rotate(311deg) brightness(90%) contrast(118%);
}

.zoom-in-out-box {
    animation: zoom-in-zoom-out 5s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(.8);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(.8);
    }
}



.core-6 {
	position: relative;
	display: flex;
  	justify-content: center;
}

.core-6 .img-right-1 {
	animation: img-right 5s ease infinite;
	position: absolute;
	top: -12rem;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}
.core-6 .img-right-2 {
	animation: img-right 5s ease infinite;
	position: absolute;
	bottom: 23%;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}
.core-6 .img-left-3 {
	animation: img-left 5s ease infinite;
	position: absolute;
	bottom: -12rem;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}


.core-6 .gift .heading h1 {
	position: relative;
	width: fit-content;
	padding-bottom: .5rem;
	color: #fff;
	text-shadow: -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px -1px 0 var(--secondary);
	
}

.core-6 .gift .heading h1::before {
	content: "";
	background: var(--black);
	width: 80%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.core-6 .gift .content .card-content {
	padding: 2rem 0;
	background: #FFE6CE;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.core-6 .gift .content .card-content + .card-content::before {
	content: "";
	background: var(--secondary);
	width: 90%;
	height: 2px;
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
}


.core-6 .gift .content .card-content::after {
	content: "";
	background-image: url(../images/image-full-wayang-6cb273a035ce9572b7b0dcce5b8ff120.svg);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -2rem;
	right: -1rem;
	opacity: .1;
}

.core-6 .gift .content .card-content + .card-content {
	margin-top: 2rem;
}

.core-6 .gift .content .card-content .card-icon {
	width: 165px;
	max-height: 70px;
	overflow: hidden;
	height: 70px;
	margin-left: 2rem;
	position: relative;
}

.core-6 .gift .content .card-content .card-icon img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.core-6 .gift .content .card-content .copy-text {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;	
}

.core-6 .gift .content .card-content .copy-text button {
	width: 30%;
	flex: 0 0 auto;
	background: transparent;
	border: none;
	font-size: 2.5rem;
	color: var(--secondary);
}

.core-6 .gift .content .card-content .copy-text .rekening {
	width: 70%;
	flex: 0 0 auto;
	font-family: var(--f-montserrat);
}

.core-6 .gift .content .card-content .copy-text .rekening .no-rek {
	font-weight: bold;
	font-size: 1.1rem;
}

.core-6 .gift .content .card-content .copy-text .rekening input {
	background: transparent;
	border: none;
	font-size: 1.7rem;
	/* font-size: 2rem; */
	font-weight: 600;
	width: 100%;
}

.core-6 .gift .content .card-content .copy-text .rekening input:focus {
	outline: none;
}

.core-6 .gift .content .card-content .copy-text .rekening .nama {
	font-weight: bold;
	font-size: .8rem;
}


.copy-text input.text {
	font-weight: 800;
    border: none;
    outline: none;
    font-size: 20px;
	background-color: transparent;
}


.copy-text button {
    position: relative;
    color: var(--light);
    font-size: 16px;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

.copy-text  button:active {
    background-color: var(--primary);
}

.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -28px;
    right: 35px;
    background-color: var(--secondary);
    padding: 10px;
    border-radius: 20px;
    font-size: 10px;
    display: none;
	color: var(--light);
	width: 50px;
	height: 20px;
	z-index: 1;
}

.copy-text button:after {
    content: "";
    position: absolute;
    top: -12px;
    right: 55px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    transform: rotate(45deg);
    display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
    display: flex;
	justify-content: center;
  	align-items: center;
}


.core-6 .gift .salin-alamat {
	background: var(--secondary);
	color: var(--light);
	display: flex;
	align-items: center;
	width: fit-content;
	padding: .5rem 2rem;
	border: none;
}








.core-7 {
	position: relative;
	padding-bottom: 9rem;
	display: flex;
  	justify-content: center;
	overflow: hidden;
}

.core-7 .img-right {
	animation: img-right 5s ease infinite;
	position: absolute;
	top: 0;
	right: -7rem;
	transform: rotate(-15deg);
	opacity: .2;
}
.core-7 .img-left {
	animation: img-left 5s ease infinite;
	position: absolute;
	top: 27%;
	left: -7rem;
	transform: rotate(15deg);
	opacity: .2;
}



.core-7 .img-bottom-full-1 {
	animation: img-bottom-full-1 8s ease infinite;
	position: absolute;
	bottom: 6rem;
	left: -4rem;
	transform: rotate(15deg);
	opacity: .2;
	max-height: 13rem;
}
@keyframes img-bottom-full-1 {
    0% {
		bottom: 6rem;
    }
    50% {
		bottom: 3rem;
    }
    100% {
		bottom: 6rem;
    }
}


.core-7 .img-bottom-full-2 {
	animation: img-bottom-full-2 5s ease infinite;
	position: absolute;
	bottom: -4rem;
	left: 0rem;
	transform: rotate(11deg);
	opacity: .2;
	max-height: 16rem;
}
@keyframes img-bottom-full-2 {
    0% {
		bottom: -4rem;
    }
    50% {
		bottom: -7rem;
    }
    100% {
		bottom: -4rem;
    }
}
/* .core-7 .img-bottom-full-3 {
	animation: img-bottom-full-3 5s ease infinite;
	position: absolute;
	bottom: -4rem;
	left: 50%;
	opacity: .2;
	max-height: 12rem;
	transform: translateX(-50%) rotate(0);
}
@keyframes img-bottom-full-3 {
	0% {
		transform: translateX(-50%) rotate(15deg);
	}
	50% {
		transform: translateX(-50%) rotate(-15deg);
	}
	100% {
		transform: translateX(-50%) rotate(15deg);
	}
} */
.core-7 .img-bottom-full-4 {
	animation: img-bottom-full-4 8s ease infinite;
	position: absolute;
	bottom: 6rem;
	right: -4rem;
	transform: rotate(-15deg);
	opacity: .2;
	max-height: 13rem;
}
@keyframes img-bottom-full-4 {
    0% {
		bottom: 6rem;
    }
    50% {
		bottom: 3rem;
    }
    100% {
		bottom: 6rem;
    }
}

.core-7 .img-bottom-full-5 {
	animation: img-bottom-full-5 5s ease infinite;
	position: absolute;
	bottom: -4rem;
	right: 0rem;
	transform: rotate(-11deg);
	opacity: .2;
	max-height: 16rem;
}
@keyframes img-bottom-full-5 {
    0% {
		bottom: -4rem;
    }
    50% {
		bottom: -7rem;
    }
    100% {
		bottom: -4rem;
    }
}


.core-7 .heading h1 {
	font-size: 3rem;
	color: var(--secondary);
}

.core-7 .card-form {
	padding: 1rem;
	background: var(--light);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.core-7 .card-form::before {
	content: "";
	background: linear-gradient(180deg,rgba(0, 0, 0, 0.1) 0%,rgba(0, 0, 0, 0.16) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.core-7 .list-comments .card-box {
	position: relative;
	background: var(--light);
	border-radius: 10px;
	padding: 1.5rem 1rem;
}

.core-7 .list-comments .card-box .card-name {
	font-size: 15px;
	font-weight: 600;
}

.core-7 .list-comments .card-box .card-present {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	right: -10px;
}

.core-7 .list-comments .card-box .card-text {
	height: 3rem;
	overflow-y: auto;
	scrollbar-width: thin;
	font-size: .8rem;
	margin-bottom: 1rem;
	color: #6B6B6B;
}


.core-7 .list-comments .card-box .card-date {
	font-size: .7rem;
	color: #6B6B6B;
}

.core-7 .doa {
	width: 85%;
	font-size: 1.3rem;
	font-weight: 600;
	transition: .3s ease-out;
}

.core-7 .card-title {
	margin-top: 4rem;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	width: 100%;
}


/*** Footer ***/
footer .copyright p {
	font-size: 1.2rem;
	color: var(--light);
}

/* font */
.f-montserrat{
	font-family: var(--f-montserrat);
	}
	
.f-croissant-one{
		font-family: var(--f-croissant-one);
	}
	
.f-elsie{
		font-family: var(--f-elsie);
	}
	

/*** Music ***/
.player {
	position: fixed;
	bottom: 85px;
  	right: 10px;
	z-index: 999;
	transition: all .35s linear;
}

#playbtn {
	font-size: 24px;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #FF009B;
	cursor: pointer;
	transition: all .35s linear;
}

#playbtn:hover {
	-webkit-text-fill-color: #FF009B;
}
