* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Cormorant', serif;
}
.rogue_font {
    font-family: 'Great Vibes', cursive;
}
.bg-watercolor {
    background: url('../img/bg-watercolor.jpg') no-repeat;
}
.bg-green {
    background: #465;
}
#section-1 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 5;
}
/* #section-1::before {
    content: '';
    width: 330px;
    height: 500px;
    background: url('../img/Floral_2-1.png');
    background-repeat: no-repeat;
    background-size: 340px 500px;
    position: absolute;
    top: -50px;
    right: 0;
    z-index: -1;
}
#section-1::after {
    content: '';
    width: 330px;
    height: 500px;
    background: url('../img/Floral_2-2.png');
    background-repeat: no-repeat;
    background-size: 340px 500px;
    position: absolute;
    bottom: -50px;
    left: 0px;
    z-index: -1;
} */
.pre-title {
    font-size: clamp(1em, 2vw, 1.3em);
    color: #595050;
}
.pra-title {
    font-size: clamp(1em, 3vw, 1.6em);
    color: #595050;
}
.month {
    width: fit-content;
    border-top: 2px solid #595050;
    border-bottom: 2px solid #595050;
}
.main-title {
    font-size: clamp(2.5em, 4vw, 4em);
    color: #b4845c;
}
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-down .fa {
    color:#6e6e6e7f;
}
.fa-mouse {
    animation: topdown 1000ms ease infinite;
}

@keyframes topdown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* SECTION 2 */
#section-2 {
    color: #7e9188;
}
#section-2 p {
    font-size: 20px;
    color: #fff;
}

/* SECTION 3 */
.subtitle {
    font-size: 2.2em;
    color: #b4845c;
}

.sub-subtitle {
    font-size: 1.1em;
}

#section-3 .avatar {
    width: 250px;
}

.bride .name {
    font-size: 2.2em;
    color: #465;
    font-weight: bold;
}

.bride .desc-parents {
    font-size: 1em;
}

#sub-section-2 {
    position: relative;
}

.arrow-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.prev-content-img {
    left: 0;
}

.next-content-img {
    right: 0;
}

.img-sub {
    cursor: pointer;
    height: 250px;
    transition: .5s all;
}

.bride .love {
    color: #465;
    animation: dancing 5000ms ease infinite;
}

@keyframes dancing {
    0% {
        transform: translateX(0) rotate(0);
    }
    25% {
        transform: translateX(-3px) rotate(-2deg);
    }
    75% {
        transform: translateX(3px) rotate(2deg);
    }
}

/* SECTION 4 */
#section-4 {
    font-size: .9em;
}

/* SECTION 5 */
#section-5 .desc {
    font-size: 1.3em;
    font-weight: 600;
}

.card {
	overflow: hidden;
    width: 300px;
    border: 3px solid #b4845c;
}

.title-card {
    font-size: 2em;
    font-weight: bold;
}

.card img {
	height: 40px;
}

.card-desc {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	visibility: visible;
	transition: all .35s;
}

.card .text-sm {
    margin-bottom: 0;
    font-size: .8em;
}

.tap {
	height: 25px !important;
}

.card-body{
	visibility: hidden;
	opacity: 0;
	transform: translateY(150px);
	z-index: 2;
	transition: all .25s;
}

.card:hover .card-desc {
	/*visibility: hidden;
	opacity: 0;*/
	top: 25%;
}

.card:hover .card-body {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.card span {
	position: absolute;
	height: 0;
	width: 0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.5s, height 0.5s;
	z-index: 1;
}

.card .span_1 {
	background-color: #246273;
}

.card .span_2 {
	background-color: #308670;
}

.card:hover span {
	height: 1000px;
	width: 1000px;
}

/* SECTION 7 */
#section-7{
    font-size: 1.5em;
    position: relative;
    z-index: 5;
}

#section-7 .background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/bg-watercolor.jpg') no-repeat;
    background-size: 100% auto;
    background-position: center;
    z-index: -1;
    filter: blur(3px);
}

#section-7 .background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #5950507F;
}

.save-the-date {
    font-size: clamp(1.5em, 4vw, 3em);
}

#section-7 > .container {
    height: 500px;
}

#section-7 .time{
    font-size: clamp(1.5em, 5vw , 2.5em);

}

#section-7 small, #section-7 .time {
    font-weight: bold;
}

/* SECTION-8 */
#section-8 {

}

.content-wishes {
    display: flex;
}

#section-8 .avatar > img {
    width: 60px;
    height: 60px;
}

.content .name {
    font-size: 1.2em;
}
.content .desc {
    font-size: 1.1em;
}

@media (max-width: 799px) {
    .scroll-down .fa {
        color:#414141;
    }

    #section-1::before {
        width: 250px;
        height: 420px;
        background-size: 250px 420px;
    }
    #section-1::after {
        width: 250px;
        height: 420px;
        background-size: 250px 420px;
    }

    #section-3 .avatar {
        width: 200px;
    }

    .main-title {
        display: flex;
        flex-direction: column;
    }

    .content-wishes {
        display: flex;
        flex-direction: column;
    }

    #section-7 > .container {
        height: 220px;
    }

    .img-sub {
        display: none;
    }

    .img-sub.active {
        display: block;
    }

    .arrow-content {
        display: block;
        cursor: pointer;
    }
}

.show-big {
    width: 100%;
}

.gender {
    width: 50px;
}

.open-invitation-title {
    font-size: 2em;
    color: #b4845c;
}

.music-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 30px;
    background: #246273;
    color: #FFF;
    border-radius: 3px;
    border: 0;
    z-index: 10000;
}

.music-button .fa{
    display: none;
}

.music-button .fa-music{
    display: block;
}

.music-button:hover .fa {
    display: none;
}

.music-button:hover .active {
    display: block;
}

footer span {
    font-size: .8em;
}