/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caramel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ephesis&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Meow+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');


:root {
    --primary: #FF8845;
    --secondary: #F95D72;
    --light: #FFFFFF;
    --dark: #6B6B6B;
    --black: #000000;
	--bg-color: #EFEFEF;
	--f-open-sans: 'Open Sans', sans-serif;
	--f-caramel: 'Caramel', cursive;
	--f-ephesis: 'Ephesis', cursive;
	--f-meow-script : 'Meow Script', cursive;
	--f-merienda-one : 'Merienda One';
	--f-merienda: "Merienda";
	--f-salsa : 'Salsa', cursive;
}

body {
    font-size: 1.4rem;
    color: var(--dark);
	background: #FFF4EE;
	font-family: var(--f-open-sans);
	
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    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;
}


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

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

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

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

.f-merienda {
	font-family: var(--f-merienda) !important;
}


.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));
}

.card-btn {
	display: flex;
	justify-content: center;
}

.card-btn a, .card-btn button {
	border: none;
    background: var(--secondary);
    color: var(--light);
    padding: .5rem 1.5rem;
    border-radius: 20px;
	font-size: 1rem;
	font-weight: 500;
	position: relative;
	transition: 0.3s; 
	overflow: clip;
	z-index: 2;
	display: flex;
	align-items: center;
  	width: fit-content;
}

.card-btn a i, .card-btn button i {
	font-size: 1.3rem;
}

.card-btn a::before, .card-btn button::before {
	content: "";
	background: linear-gradient(180deg, var(--primary) -31.01%, var(--secondary) 130.82%);
	width: 100%;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: -1;
}

.card-btn a:hover::before, .card-btn button:hover::before {
	height: 100%;
}


/*** Custom ***/
.container-1000 {
    width: 100%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;

	background: url(../images/e8ae034676f0a281414ac4171b184e02.webp);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}


.container-1000.full-bg::before {
    content: "";
    background: #FFF4EE;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}


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

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

.fade-left-fade-right {
    animation: fade-left-fade-right 10s ease infinite;
}

@keyframes fade-left-fade-right {
    0% {
      margin-left: -20px;
    }
    50% {
      margin-left: 20px;
    }
    100% {
      margin-left: -20px;
    }
  }


/* POPUP Undangan */


.popup-undangan {
	position: relative;
	background: url(../images/popup-bg-e8ae034676f0a281414ac4171b184e02.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--quaternary);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.popup-undangan .mdl-content {
	width: 100%;
}

.popup-undangan .mdl-content .card-name {
	width: 100%;

}

.popup-undangan .mdl-content h1 {
    font-family: var(--f-caramel);
	font-size: calc(3rem + 3vw);
  	line-height: calc(2.3rem + 3vw);
    color: var(--primary);
	margin-bottom: 0;
	text-transform: capitalize;
}

.popup-undangan .mdl-content .end {
	width: 100%;
}




.popup-undangan .mdl-content button {
    border: none;
    background-color: #EE8694;
    color: var(--light);
    padding: .3rem 1.5rem .3rem 3rem;
    border-radius: 10px;
	position: relative;

}


.popup-undangan .mdl-content button::before {
	content: "";
	background: linear-gradient(180deg, var(--primary) -31.01%, var(--secondary) 130.82%);
	width: 100%;
	height: 0;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: 0;
}

.popup-undangan .mdl-content button:hover::before {
	height: 100%;
}

.popup-undangan .mdl-content button .box-icon {
	position: absolute;
	left: -10px;
	top: -3px;
	width: 50px;
	height: 50px;
	background: var(--secondary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup-undangan .mdl-content .open-content {
	padding-top: 4rem;
}


.popup-undangan .mdl-content .open-content .close-undangan p {
    color: var(--light);
	text-transform: capitalize;
	position: relative;
	z-index: 3;
}

.popup-undangan .mdl-content .fa-angle-double-down {
    /* display: block;
    width: 3.5vw;
    height: 3.5vw;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(-45deg);
    margin: -53px; */
    animation: animate 2s infinite;
    color: var(--primary);
    transition: .4s;
}

.popup-undangan .mdl-content .fa-angle-double-down:hover {
    color: var(--primary);
}

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

.popup-undangan .mdl-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: all 3s ease;
	opacity: 0;
	display: none;
}

.navbar.show {
	opacity: 1;
}

.navbar-light {
    position: fixed;
    width: 100%;
    top: auto;
    bottom: 15px;
    left: 0;
    z-index: 999;
    background-color: transparent;
}

.navbar-light .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-light .navbar-nav {
    border-radius: 20px;
    padding: 0.6rem 1rem;
	background-color: var(--secondary);

}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 0 .3rem;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark) !important;
    outline: none;
    transition: .5s;
    text-align: center;
}

.navbar-light .navbar-nav .nav-link .img {
    max-width: 35px;
	overflow: hidden;
	/* background-color: #E75858; */
	padding: 0.3rem;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s ease;
}

.navbar-light .navbar-nav .nav-link.active .img {
	background-color: var(--primary);
}

.navbar-light .navbar-nav .nav-link .img img {
	filter: brightness(0) invert(1);
	transition: all ease-in-out .3s;
}

.navbar-light .navbar-nav .nav-link.active .img img {
	transform: scale(1.1);
	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;
    }
}



.header-title h1 {
    font-family: var(--f-meow-script);
    color: var(--primary);
	font-size: 3rem;
}


/*** Countdown ***/
.countdown span {
    font-size: 1.5rem;
}

.countdown p {
    font-size: 1rem;
}

/*** Sampul core-0-1 ***/
.core-0-1 {
	background-image: url(../images/core-0-1-bg-e8ae034676f0a281414ac4171b184e02.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	padding-bottom: 10rem;
}

/*** Sampul core-0 ***/
.core-0 {
	padding-bottom: 8rem;
}
.core-0 .card-image {
	position: relative;
	border-radius: 0 0 25px 25px ;
	width: 100%;
	height: 230px;
	overflow: hidden;
	transition: .3s;
}

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

.core-side-img {
	max-width: 26rem;
}


.core-0 .img-core-left {
	position: absolute;
	bottom: -50%;
	left: 0;
	z-index: 0;
	transform: translateY(5%);
	opacity: .7;
}

.core-0 .img-core-right {
	position: absolute;
	bottom: -50%;
	right: 0;
	z-index: 0;
	transform: translateY(5%);
	opacity: .7;
}


.core-0 .card-text {
	color: var(--primary);
	font-style: italic;
	text-align: center;
	font-weight: 600;
	font-size: calc(0.8rem + 0.5vw);
}

.core-0 .countdown .col-box {
	width: auto;
	flex: 0 0 auto;
	position: relative;
}

.core-0 .countdown .col-box::before {
	content: "";
	background: #FF5C00;
	width: 57px;
  	height: 57px;
	border-radius: 50%;
	position: absolute;
	left: 3px;
  	top: 2px;
	z-index: 0;
}

.core-0 .countdown .colon {
	width: 7%;
	flex: 0 0 auto;
	text-align: center;
	color: var(--primary);
}

.core-0 .countdown .box {
    background-color: var(--primary);
	color: var(--light);
	font-weight: 700;
	font-style: italic;
	width: 57px;
	height: 57px;
    border-radius: 50%;
	padding: .7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.1;
	position: relative;
	z-index: 1;
}



.core-0 .countdown .box span {
    font-size: 1.2rem;
}

.core-0 .countdown .box p {
    font-size: .7rem;
}

.core-0 .location a {
    background-color: var(--primary);
    border-radius: 10px;
    padding: .3rem 1.5rem .3rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
	position: relative;
}

.core-0 .location a::before {
	content: "";
	background: linear-gradient(180deg, var(--primary) -31.01%, var(--secondary) 130.82%);
	width: 100%;
	height: 0;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: 0;
}

.core-0 .location a:hover::before {
	height: 100%;
}


.core-0 .location a .box-icon {
	background: #FF5C00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	left: -5px;
	top: -2px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.core-0 .location a i {
    font-size: 1.5rem;
    color: var(--light);
}

.core-0 .location a p {
    color: var(--light);
    font-size: 1rem;
	font-style: italic;
	font-weight: 700;
	position: relative;
	z-index: 2;
}

/*** Mempelai Core-1 ***/
.core-1 .img-core-left {
	position: absolute;
	bottom: -42%;
	left: 0;
	z-index: 0;
	transform: translateY(-12%);
	opacity: .3;
}

.core-1 .img-core-right {
	position: absolute;
	bottom: -42%;
	right: 0;
	z-index: 0;
	transform: translateY(-12%);
	opacity: .3;
}

.core-1 .content .heading .picture img {
    max-width: 250px;
	filter: invert(71%) sepia(23%) saturate(5263%) hue-rotate(329deg) brightness(102%) contrast(101%);
}

.core-1 .content .heading .card-text {
    font-style: italic;
	font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
	color: var(--primary);
}

/* .core-1 .content .widget .core-1-mempelai {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(0);
	bottom: 0;
	z-index: 0;
} */

.core-1 .content .widget .card-image {
	width: 290px;
  	height: 340px;
    /* overflow: hidden; */
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	right: 50%;
	/* border: 4px solid var(--secondary); */
	padding-top: 1rem;
	padding-left: 1rem;

}

.core-1 .content .widget .card-image::after {
	content: "";
	border-radius: 70px;
	border: 2px solid var(--primary);
	position: absolute;
	top: 0;
	left: 15px;
	width: 250px;
	height: 94%;
}

.core-1 .content .widget .card-image img.mempelai {
	width: 250px;
	height: 315px;
	border-radius: 70px;
	/* box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.25); */
}

.core-1 .content .widget .card-image .daun-mempelai {
	position: absolute;
	bottom: -50px;
	right: -70px;
	z-index: 2;
}

.core-1 .content .widget .card-body {
	padding-top: 2rem;
	padding-bottom: 0;
}

.core-1 .content .widget .card-title {
    font-family: var(--f-caramel);
    font-size: calc(2.5rem + 2vw);
    line-height: 1.2;
	color: var(--primary);
}

.core-1 .content .widget .card-text {
    font-family: 'Inria Serif';
    font-size: .9rem;
    line-height: 1.2;
	color: var(--primary);
}


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

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

.core-1 .and {
	font-family: var(--f-ephesis);
	color: var(--primary);
	font-size: 9rem;
	line-height: .6;
}


/*** Akad ***/
.core-2 {
	margin-top: -80px;
	padding-top: 5rem;
	padding-bottom: 3rem;
	
}

.core-2 .core-2-bg {
	position: absolute;
	top: 0;
	left: 0;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	z-index: 2;
}

.core-2 .core-side.core-2-img-1 {
	bottom: -15%;
	right: 0;
	z-index: 2;
	transform: scaleX(-1);
}



.core-2 .content .card {
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background-color: var(--secondary);
    border: 0;
	position: relative;
	overflow: hidden;
}

.core-2 .content .card-title {
	position: relative;
	background: transparent;
	z-index: 0;
	color:white;
	font-size: 1.5rem;
	font-family: var(--f-merienda-one);
	width: fit-content;
	margin-bottom: -5px;
  	z-index: 2;
	
  }
  /* add a single stroke */
  .core-2 .content .card-title:before {
	content: attr(title);
	position: absolute;	
	-webkit-text-stroke: 0.4rem var(--secondary); 
	left: 0;
	z-index: -1;
  }
  /* add a double stroke */
  .core-2 .content .card-title:after {
	content: attr(title);
	position: absolute;
	-webkit-text-stroke: 0.4rem var(--secondary);
	left: 0;
	z-index: -2;
  }

.core-2 .content .card .box-day {
	height: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;

}

.core-2 .content .card .card-day {
    font-size: 1.4rem;
    color: var(--light);
    font-weight: 400;
    font-family: var(--f-merienda);
}

.core-2 .content .card .card-date {
    font-size: 1rem;
    color: var(--light);
	font-family: var(--f-merienda);
}

.core-2 .content .card .card-hour {
    font-size: .7rem;
    color: var(--light);
	font-family: var(--f-merienda);
}

.core-2 .content .card .card-address {
    font-size: .8rem;
    color: var(--light);
    line-height: 1.1;
	padding: 1.4rem 1rem 1rem;
	position: relative;
	height: 5rem;
}

.core-2 .content .card .card-address::after {
	content: "";
	background: #EE8694;
	border-radius: 100% 100% 0 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
	filter: drop-shadow(0px -4px 10px rgba(0, 0, 0, 0.25));
}



.core-2 .location a {
    background-color: var(--primary);
    border-radius: 10px;
    padding: .3rem 1.5rem .3rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
	position: relative;
}

.core-2 .location a::before {
	content: "";
	background: linear-gradient(180deg, var(--primary) -31.01%, var(--secondary) 130.82%);
	width: 100%;
	height: 0;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: 0;
}

.core-2 .location a:hover::before {
	height: 100%;
}


.core-2 .location a .box-icon {
	background: #FF5C00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	left: -5px;
	top: -2px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.core-2 .location a i {
    font-size: 1.5rem;
    color: var(--light);
}

.core-2 .location a p {
    color: var(--light);
    font-size: 1rem;
	font-style: italic;
	font-weight: 700;
	position: relative;
	z-index: 2;
}


.core-2 .card-notif {
	display: flex;
	justify-content: center;
}


.core-2 .card-notif button {
    background-color: var(--primary);
    border-radius: 10px;
    padding: .3rem 1.5rem .3rem 2.5rem;
	border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
	position: relative;
}

.core-2 .card-notif button::before {
	content: "";
	background: linear-gradient(180deg, var(--primary) -31.01%, var(--secondary) 130.82%);
	width: 100%;
	height: 0;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: 0;
}

.core-2 .card-notif button:hover::before {
	height: 100%;
}


.core-2 .card-notif button .box-icon {
	background: #FF5C00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	left: -5px;
	top: -2px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.core-2 .card-notif button i {
    font-size: 1.5rem;
    color: var(--light);
}

.core-2 .card-notif button p {
    color: var(--light);
    font-size: 1rem;
	font-style: italic;
	font-weight: 700;
	position: relative;
	z-index: 2;
}




/*** Gallery Core-3***/
.core-3 {
	padding-top: 3rem;
	padding-bottom: 8rem;
}

.core-3 .img-core-left {
	position: absolute;
	bottom: -40%;
	left: 0;
	z-index: 0;
	transform: translateY(0%);
}

.core-3 .img-core-right {
	position: absolute;
	bottom: -40%;
	right: 0;
	z-index: 0;
	transform: translateY(0%);
}

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

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

/* .core-3 .core-side.core-3-img-1 {
	top: 50%;
	left: 0;
	z-index: 0;
	transform: translateY(-50%);
} */

.core-3 .img {
	overflow: hidden;
	border-radius: 10px;
	height: 0;
	padding-bottom: 75%; /* Set a percentage value based on your desired aspect ratio */
	position: relative;
}

.core-3 .img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--bg-color);
	transition: all ease-in-out .3s;
}

.core-3 .img:hover img {
	transform: scale(1.1);
}



/*** Cerita  Core-4***/
.core-4 {
	padding: 5rem 0rem 6rem;
}

.core-4 .img-core-left {
	position: absolute;
	bottom: -30%;
	left: 0;
	z-index: 0;
	transform: translateY(0%);
}

.core-4 .img-core-right {
	position: absolute;
	bottom: -30%;
	right: 0;
	z-index: 0;
	transform: translateY(0%);
}

.core-4::before {
	content: "";
	background: #FF8845;
	opacity: 0.3;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 499.5px;

}


.core-4 .love-side-story {
    width: 100%;
}

/* .core-4 .core-side.core-4-img-1 {
	top: -50%;
	right: 0;
	z-index: 0;
	transform: scaleX(-1);
} */

.core-4 .love-story {
	padding-bottom: 5rem;
}

.core-4 .love-story .love-side-story::before {
	content: "";
	background: var(--secondary);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	top: 100%;
	left: 50%;
	transition: .3s;
	transform: translate(-50%, -50%);
	z-index: 1;

}

.core-4 .love-story.left .love-side-story::after {
	content: "";
	background: url(../images/story-arrow-e8ae034676f0a281414ac4171b184e02.svg);
	background-position-y: 85%;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -4.5rem;
  	left: 1rem;
	width: 100%;
	height: 4rem;
	z-index: 0;
}

.core-4 .love-story.right .love-side-story::after {
	content: "";
	background: url(../images/story-arrow-e8ae034676f0a281414ac4171b184e02.svg);
	background-position-y: 85%;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -4.5rem;
  	right: 3rem;
	width: 100%;
	height: 4rem;
	z-index: 0;
	transform: scaleX(-1);

}


.core-4 .love-story:last-child .love-side-story::after {
	content: "";
	border-right: 1px dashed var(--secondary);
	position: absolute;
	top: 0;
	left: -30px;
	width: 1px;
	height: 50%;
}




.core-4 .love-story .content::after {
	font-family: 'icomoon';
	content: "\f004";
	color: var(--light);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: 100%;
	left: 50%;
	font-size: 15px;
	transition: .3s;
	transform: translate(-75%, -100%);
	z-index: 3;
}





.core-4 .content {
    border-radius: 10px;
    padding: 1rem;
    font-family: "Comic Neue", Sans-serif;
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--light);
}

.core-4 .left .content {
	border-radius: 9px 17px 48px 9px;
}

.core-4 .love-story .meet-time {
	position: relative;
	background: transparent;
	z-index: 0;
	color:white;
	font-size: 1.1rem;
	font-family: var(--f-salsa);
	width: fit-content;
	margin-bottom: -5px;
	margin-left: 1rem;
  	z-index: 2;
	
  }
  /* add a single stroke */
  .core-4 .love-story .meet-time:before {
	content: attr(title);
	position: absolute;	
	-webkit-text-stroke: .5rem var(--primary); 
	left: 0;
	z-index: -1;
  }


.core-4 .content .story {
	font-size: .8rem;
  	line-height: 1.2;
}


.core-4 .core-4-1-img {
    position: absolute;
    bottom: -50px;
    left: 0;
    max-height: 245px;
	z-index: 1;
	opacity: .2;
}

.core-4 .core-4-2-img {
    position: absolute;
    bottom: -50px;
    right: 0;
    max-height: 245px;
	transform: scaleX(-1);
	z-index: 1;
	opacity: .2;
}

/*** Live Core-5***/

.core-5 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

/* .core-5 .core-side.core-5-img-1 {
	top: 0;
	left: 0;
	z-index: 0;
	transform:  translateY(-70%);
}
.core-5 .core-side.core-5-img-2 {
	top: 85%;
	right: 0;
	z-index: 0;
	max-height: 20rem;
	transform: scaleX(-1) translateY(-50%);
} */

.core-5 .content .card-text {
    color: var(--dark);
    font-size: 1rem;
}

.core-5 .content .img {
	width: 70px;
	height: 70px;
	max-width: 70px;
	max-height: 70px;
	display: flex;
	align-items: center;
}

.core-5 .content .mt-4 span {
	display: none;
}

.core-5 .content .join-live {
    background-color: #EBA22E;
    padding: .5rem 1rem;
    border-radius: 10px;
    color: var(--light);
	font-size: 1rem;
}

.core-5 .content span {
	font-size: .9rem;
	color: var(--dark);
}




/*** Amplop / Core 6 ***/
.core-6 {
    padding-bottom: 5rem;
}

.core-6 .img-core-left {
	position: absolute;
	bottom: -100%;
	left: 0;
	z-index: 0;
	transform: translateY(0%);
}

.core-6 .img-core-right {
	position: absolute;
	bottom: -100%;
	right: 0;
	z-index: 0;
	transform: translateY(0%);
}

.core-6.show-gifts .img-core-left {
	transform: translateY(-20%);
}

.core-6.show-gifts .img-core-right {
	transform: translateY(-20%);
}

.core-6 .core-6-img-leaf {
	filter: invert(44%) sepia(66%) saturate(1554%) hue-rotate(320deg) brightness(106%) contrast(95%);
}

.core-6 .card-text {
    color: var(--dark);
    font-size: .9rem;
}

.core-6 .send-gifts .box-icon {
	position: absolute;
	left: -20px;
	top: -1px;
	width: 43px;
	height: 43px;
	background: #FF5C00;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.core-6 .send-gifts .copy-text .box-icon {
	background: var(--secondary);
}

.core-6 .card-bank {
	background: var(--light);
	box-shadow: 0px 10px 27px 0px rgba(0, 0, 0, 0.31);
	border-radius: 20px;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	background-image: url(../images/bg-e8ae034676f0a281414ac4171b184e02.webp);
	background-position: initial;
	background-repeat: no-repeat;
	background-size: cover;
}

.core-6 .card-bank::after {
	content: "";
	background-image: url(../images/core_6_img_e8ae034676f0a281414ac4171b184e02.png);
	position: absolute;
	top: 4rem;
	left: 0;
	right: 0;
	width: 100%;
	height: 5rem;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
}



.core-6 .card-logo {
	height: 5rem;
	padding-bottom: .5rem;
	position: relative;
	z-index: 2;
}

.core-6 .card-logo img {
	max-height: 4rem;
}

.send-gifts .core-6-img-leaf {
	filter: invert(44%) sepia(66%) saturate(1554%) hue-rotate(320deg) brightness(106%) contrast(95%);
}

.send-gifts .copy-text {
    line-height: 0;
	width: 40rem;
}

.copy-text input.text {
    color: var(--dark);
	font-weight: 800;
    border: none;
    outline: none;
    width: 122px;
    font-size: 20px;
	background-color: transparent;
	text-align: center;
}

.copy-text button {
    position: relative;
    padding: 19px 20px 19px 25px;
    background-color: #EE8694;
    color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 10px;
    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(--primary);
    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;
}

.copy-text p {
    font-size: .8rem;
    color: var(--dark);
}

.core-6 .send-gifts .card-title {
	color: var(--dark);
}

.core-6 .send-gifts .card-address {
	color: var(--dark);
}


/*** Ucapan / Core 7 ***/



.core-7 {
	position: relative;
	overflow: hidden;
	border-radius: 55px;
	background: var(--primary);
	z-index: 1;
}

.core-7 .header-title h1 {
	font-size: 1.8rem;
  }

.core-7 .card {
	background-image: url(../images/bg-e8ae034676f0a281414ac4171b184e02.webp);
    background-size: cover;
	background-position: inherit;
	background-repeat: no-repeat;
	overflow: hidden;
} 

.core-7 #saveUserForm .form-control {
	box-shadow: 0 0.15rem 0.3rem rgba(0,0,0,0.15);
}


.core-7 #saveUserForm .submit {
	background: var(--primary);
	color: var(--light);
	border: 0;
	border-radius: 5px;
	padding: .3rem .8rem;
}



.core-7 .list-comments {
    padding-left: 1rem;
	padding-right: 1rem;
    overflow-y: scroll;
    max-height: 66vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
	margin-top: 1rem;
}

.core-7 .list-comments .box-comment {
	background-image: url(../images/bg-e8ae034676f0a281414ac4171b184e02.webp);
    background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	overflow: hidden;
    color: var(--black);
    font-size: 1rem;
    padding: 1rem;
	background-color: var(--light);
	border-radius: 10px;
	margin-top: 1rem;

}

.core-7 .list-comments .box-comment .card-name {
	color: var(--dark);
}

.core-7 .list-comments .box-comment .card-name span {
	font-size: 0.65rem;
	padding: 0.2rem 0.5rem;
	border-radius: 5px;
}


.core-7 .list-comments .box-comment .card-comment {
    line-height: 1.1rem;
    padding-bottom: .2rem;
	font-size: .9rem;
}

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





/*** Protokol ***/
.core-8 {
	text-align: center;
	padding: 5rem 0 8rem;
}

.core-8 .core-8-img-leaf {
	filter: invert(44%) sepia(66%) saturate(1554%) hue-rotate(320deg) brightness(106%) contrast(95%);
}

.core-8 .box {
	max-width: 30rem;
	margin: auto;
}

.core-8 .doa {
	position: relative;
	/* padding: 2.5rem; */
	font-size: calc(1rem + 1vw);
	color: var(--dark);
	font-style: italic;
	line-height: 1.5;
}


.core-8 .card-day {
	color: var(--secondary);
	font-size: calc(0.8rem + 0.5vw);
	font-family: var(--fonts-merienda);
}

.core-8 .card-title {
	color: var(--secondary);
	font-family: 'Euphoria Script';
	font-size: calc(1.5rem + 1.5vw);
}


/*** Footer ***/
footer {
    position: relative;
	padding: 2rem 2rem 8rem;
	margin-top: -100px;
	background-color: var(--primary);
	border-radius: 70px 70px 0 0;
	width: 100%;
	height: 100%;
	z-index: 99;
}


footer .copyright p {
	font-size: 1.2rem;
	color: var(--light);
	font-family: var(--fonts-merienda);
}


/*** Music ***/
.player {
	position: fixed;
	bottom: 90px;
	right: 15px;
	z-index: 999;
}

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

#playbtn:hover {
	-webkit-text-fill-color: var(--primary);
}
