@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
html,
body {
    font-family: "Nunito Sans", sans-serif;
}

body {
    background-color: rgba(230, 225, 225, 0.8);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h2 {
    color: #071e22;
    font-size: 2rem;
}

img.photo-cover {
    border-radius: 70px;
    box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    position: relative;
    margin-top: -30px;
    z-index: -10;
}

.shadow {
    box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
}

.box {
    box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    border-radius: 10px;
}

.heading-photo-cover {
    padding: 15px;
    background: #fff;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 17px;
}

#story {
    background-color: #fff;
    padding: 30px 0px;
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-cyan);
    border-color: #0dcaf0;
}

p.parent {
    font-size: 0.8rem;
    font-family: "Nunito Sans", sans-serif;
}

.bg-warning,
.btn-warning {
    background-color: #808080 !important;
    border-color: #9b9b9b !important;
    color: #fff;
}

.bg-primary {
    background-color: #f7f7f7 !important;
    color: #000;
    font-weight: 400;
}

.form-group {
    margin-top: 15px;
}

.hero {
    min-height: 650px;
    height: 90%;
}

section.closed {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: block;
}

.hero .banner {
    height: 100%;
    min-height: 720px;
    background: url(../images/metonam.webp);
    background-size: cover;
    background-position: center;
    border-bottom-right-radius: 70px;
    border-bottom-left-radius: 70px;
    box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -webkit-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -moz-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
}

.hero .wave {
    overflow: hidden;
    position: relative;
    display: block;
    height: auto;
    bottom: 30px;
}

.hero .center {
    width: 90%;
    height: 400px;
    display: table;
    z-index: 10;
    margin: 12% auto;
}

.hero .ornament {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

.hero .center .text {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#closed {
    position: relative;
    overflow: hidden;
    height: 100vh;
    align-items: left;
    text-align: left;
    color: white;

}

#hero .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: opacity 2s;
    opacity: 0;
}

#hero .background.active {
    opacity: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}



#closed .background-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: opacity 2s;
    opacity: 0;
}

#closed .background-close.active {
    opacity: 1;
}

#closed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background-color: rgba(253, 227, 231, 0.6);
    /* Warna pink transparan */
    border-radius: 50%;
    animation: rise 20s infinite ease-in;
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* Variasi ukuran, posisi, dan kecepatan animasi gelembung */
.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.bubble:nth-child(5) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-duration: 30s;
    animation-delay: 6s;
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 40%;
    animation-duration: 28s;
    animation-delay: 8s;
}

.bubble:nth-child(7) {
    width: 70px;
    height: 70px;
    left: 50%;
    animation-duration: 32s;
    animation-delay: 10s;
}

.bubble:nth-child(8) {
    width: 30px;
    height: 30px;
    left: 60%;
    animation-duration: 24s;
    animation-delay: 12s;
}

.bubble:nth-child(9) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-duration: 26s;
    animation-delay: 14s;
}

.bubble:nth-child(10) {
    width: 60px;
    height: 60px;
    left: 80%;
    animation-duration: 27s;
    animation-delay: 16s;
}

.bubble:nth-child(11) {
    width: 90px;
    height: 90px;
    left: 90%;
    animation-duration: 35s;
    animation-delay: 18s;
}

.cover_couple {
    color: #696161 !important;
    font-family: "Nunito Sans", sans-serif;
    font-size: 4.5rem;
    margin: 0px 0px;
}


.stories {
    box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -webkit-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -moz-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    background-color: rgb(252, 238, 241);
    background: rgb(220 225 226);
}

.wedding p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    color: black;
    max-width: 100%;
}

.countdown-container>div,
.countdown-labels>div {
    width: 50px;
    margin: 0 10px;
    text-align: center;
}

.countdown {
    font-size: 2em;
}

.countdown-labels>div {
    font-size: 1em;
    margin-top: 10px;
}

.groom-image,
.bride-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.wedding h2 {
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    font-size: 55px;
    color: black;
    max-width: 90%;
}

@media (max-width: 767px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.bride {
    border-radius: 70px;
    box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -webkit-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -moz-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    background-color: rgb(252, 238, 241);
    padding-top: 100px;
    padding-bottom: 20px
}

.bride p {
    text-align: center;
    font-family: "Nunito Sans", sans-serif;
    color: black;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    line-height: 1.5;
    font-size: 20px;
    justify-content: center;
}

.bride.namecouple {
    font-size: 500px;
    justify-content: center;
    text-align: center;
}

.bride .parent {
    font-size: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.love-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.love-image img {
    width: 200px;
    height: auto;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -webkit-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -moz-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
}

.grid-momen {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-momen img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-bottom-right-radius: 70px;
    border-top-left-radius: 70px;
    box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -webkit-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -moz-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
}

.middle-text h3 {
    font-size: 30px;
    font-style: italic;
}

@media (min-width: 200px) and (max-width: 768px) {
    .cover_couple {
        font-size: 3.0rem;
        margin: 0px 0px;
    }

}

.circle-couple {
    width: 180px;
    height: 180px;
    display: table;
    z-index: 10;
    margin: 5px auto;
}

.circle-couple img {
    width: 130px;
}

img.gallery {
    width: 20%;
}

.owl-carousel .item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1100px;
}

@keyframes borderFadeIn {
    from {
        border-color: transparent;
    }

    to {
        border-color: #ff4500;
    }
}

@media (min-width: 200px) and (max-width: 768px) {
    .hero .center {
        width: 350px;
        height: 350px;
        margin: 60% auto;
    }

    img.gallery {
        width: 40%;
    }

    .openingquote {
        margin-top: 40px;
    }

    .couple-info {
        margin-top: 20px;
        padding-bottom: 20px;
    }
}



.text-container {
    margin-top: 150px;
}

canvas {
    position: absolute;
    top: 0;
    left: 0
}

.modal {
    transition: transform 3s ease-in-out, opacity 3s ease-in-out;
}

.modal-dialog {
    max-width: 100vw;
    margin: 0;
}

.envelope-p {

    font-size: 51px;
    font-weight: 600;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .envelope-p {
        font-size: 30px;
        letter-spacing: 1px;
    }
}

.btn-gold {
    color: #DADADA;
    font-size: 14px;
}

.modal-content {
    height: 100vh;
    width: 100vw;
    border: none;
    border-radius: 0;
    display: flex;
}

.slide-up {
    transform: translateY(-100%);
}


@keyframes slideUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

.fade-out {
    animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.black-modal .modal-content {
    background-color: black;
    color: white;
    font-size: 20px;
}

.typing-animation {
    border-right: .15em solid #ffffff;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 3s steps(30, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #ffffff;
    }
}

.fade-out {
    animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.top-corner {
    position: absolute;
    top: 0px;
    right: 0px;
}

.bottom-corner {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.btn-gold {
    background: #2D2D2D;
    border-color: #2D2D2D;
}

#map {
    height: 350px;
    width: 90%;
    margin: auto;
    display: block;
}

#control_audio {
    position: fixed;
    bottom: 100px;
    right: 10px;
}

.w30percent {
    width: 30%;
}

.table.no-padding td,
.tableno-padding th {
    padding: 15px;
    vertical-align: middle;
    font-weight: 400;
    font-size: 1.1rem;
    color: #0b0b0b;
}

.table td.day {
    font-size: 2.2rem;
    font-weight: 600;
    color: #011e23;
}

h2.couple {
    font-size: 1.25rem;
    color: #477487;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 85%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.table.no-padding td.countdown {
    color: #0b0b0b;
    font-weight: 800;
    font-size: 1.7rem;
}

.flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.flip-horizontal {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.btn-brown {
    background-color: #8B4513;
    color: white;
    border-color: #8B4513;
}

.btn-brown:hover {
    background-color: #A0522D;
    border-color: #A0522D;
}


img.leaves-delimiter {
    width: 200px;
}

.couple-data {
    display: flex;
}


.mySlides {
    flex: 1;
    max-width: 30%;
    margin: 0 5px;
    height: auto;
    border-radius: 8px;
    box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
}

.stories h3 {
    font-weight: 600;
    font-size: 17px;
    color: #F0F0F0;
    text-transform: uppercase;
}

.stories h2 {
    font-weight: bold;
    font-size: 55px;
    color: black;
}

.stories p {
    text-align: center;
    color: #F0F0F0;
    font-size: 60px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    line-height: 1.5;
}

.stories .detail {
    text-align: center;
    color: #F0F0F0;
    font-size: 15px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    line-height: 1.5;
}

.stories .row {
    text-align: center;
    margin-bottom: 3rem;
}

.stories .row span {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background-color: black;
}

.opening_quote {
    font-family: 'Aclonica', sans-serif;
    font-size: 20px;
}

@media (max-width: 768px) {
    .text-left {
        text-align: left !important;
    }
}

@media (min-width: 200px) and (max-width: 768px) {
    .stories h3 {
        font-weight: bold;
        font-size: 2rem;
        color: black;
    }

    .stories h2 {
        font-weight: bold;
        font-size: 1.6rem;
        color: black;

    }

    .stories p {
        text-align: center;
        color: black;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 15px;
        position: relative;
        line-height: 1.5;
    }

    .opening_quote {
        font-size: 12px;
    }

    .groom {
        text-align: left;
        font-weight: bold;
        font-size: 35px;
        color: black;
        max-width: 90%;
    }

    .bride p {
        text-align: center;
        color: black;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
        position: relative;
        line-height: 1.5;
        font-size: 14px;
        justify-content: center;
    }
}

.horizontal-line {
    border-top: 3px solid white;
    width: 200px;
    margin: 20px 0;
}

.horizontal-line-event {
    border-left: 2px solid #F0F0F0;
}

.backgroundcount {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -webkit-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
    -moz-box-shadow: 2px 7px 65px -13px rgba(36, 32, 32, 0.73);
}

.backgroundcount.active {
    opacity: 1;
    z-index: -1;
}

.closed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.bank-details-box {
    background: linear-gradient(90deg, rgb(10 177 161) 0%, rgba(66, 66, 180, 1) 39%, rgba(0, 212, 255, 1) 100%);
    position: relative;
    border-radius: 10px;
    padding: 30px;
    max-width: 350px;
    margin: 0 auto;
    color: #fff;
}

.bank-details p {
    text-align: center;
    margin-left: 50px;
}

.bank-name {
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px 16px;
    box-sizing: border-box;
}

.atm-chip {
    width: 70px;
    height: auto;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .bank-details-box {
        border-radius: 10px;
        padding: 20px;
        max-width: 300px;
        margin: 0 auto;
    }
}

.slider {
    height: 250px;
    margin: auto;
    position: relative;
    width: 90%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 10s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slide {
    height: 250px;
    width: 200px;
    display: flex;
    align-items: center;
    padding: 10px;
    perspective: 100px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 1s;
}

.slide img:hover {
    transform: translateZ(20px);
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) -100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 1;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.gallery-item img {
    width: 200px;
    height: 250px;
}

.gift-recommendation p {
    color: #fff !important;
}
.btn-gift{
    background-color: #0a53be !important;
    color: #ffffff !important;
}

.wishes-form {
    color: #0b0b0b;
}

#wishes {
    width: 100%;
    margin: auto;
    display: block;
}


.couple-groom h3 {
    font-weight: 600;
    font-size: 17px;
    color: #F0F0F0;
    text-transform: uppercase;
    text-align: left;
}

.couple-groom h2 {
    font-weight: bold;
    font-size: 55px;
    color: black;
    text-align: left;
}

.couple-groom p {
    text-align: center;
    color: #F0F0F0;
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.5;
    text-align: left;
}

.couple-groom .detail {
    text-align: center;
    color: #F0F0F0;
    font-size: 15px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    line-height: 1.5;
    text-align: left;
}

.ml-3 {
    margin-left: 25px;
}

section.couple-groom {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: block;
}

/* Desktop view */
.image-groom {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    display: block;
}

.image-groom img {
    width: 75vh;
    height: 73vh;
    object-fit: cover;
    object-position: center center;
}

.image-bride {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    display: block;
    object-fit: contain;
}

.image-bride img {
    width: 75vh;
    height: 73vh;
    object-fit: cover;
    object-position: center center;
    display: block;
}


.couple-bride h3 {
    font-weight: 600;
    font-size: 17px;
    color: #F0F0F0;
    text-transform: uppercase;
    text-align: left;
}

.couple-bride h2 {
    font-weight: bold;
    font-size: 55px;
    color: black;
    text-align: left;
}

.couple-bride p {
    text-align: center;
    color: #F0F0F0;
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.5;
    text-align: left;
}

.couple-bride .detail {
    text-align: center;
    color: #F0F0F0;
    font-size: 15px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    line-height: 1.5;
    text-align: left;
}

.ml-3 {
    margin-left: 25px;
}

section.couple-bride {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}


#weddingevent {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 20px;
}

.event {
    color: #E79F5C;
    text-align: left;
    padding: 20px;
    margin: 20px;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -3.7px;
}

.event-time {
    color: #f4f4f4;
}

.btn-secondary {
    color: #000;
    background-color: #F0F0F0;
    max-width: 50%;
    padding: 0.25rem 0.5rem;
    height: 30px;
}

#weddingevent h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
}

.event-date-container {
    text-align: center;
    margin-bottom: 20px;
}


@media (min-width: 200px) and (max-width: 768px) {
    .event {
        font-size: 2.5rem;
        margin-left: -10px;
    }

    .event-date {
        font-size: 22px;
        margin-right: 60px;
        letter-spacing: -1.2px;
    }



    .btn-secondary {
        font-size: 10px;
        max-width: 100%;
    }

    .btn-brown {
        font-size: 10px;
        max-width: 100%;
    }

}

.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes bubble {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.galleries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: left;
    position: relative;
}


.galery-text {
    color: #E9E9E9;
    font-family: "Poppins", Sans-serif;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2.5px;
    text-align: left;
}

.text-galery {
    color: #F0F0F0;
    text-align: left;
}

@media (min-width: 200px) and (max-width: 768px) {
    .galery-text {
        font-size: 34px;
        margin-left: 0;
    }

    .text-galery {
        font-size: 15px;
        margin-left: 0;
    }
}

.location {
    margin-bottom: 20px;
}

.location h2 {
    font-size: 30px;
    color: #F0F0F0;
}

.location p {
    font-size: 20px;
    color: #F0F0F0;
}

.btn-brown {
    color: #000;
    background-color: #F0F0F0;
    max-width: 50%;
    padding: 0.25rem 0.5rem;
    height: 30px;
}

.vertical-line {
    border-left: 2px solid #F0F0F0;
    width: 5px;
    height: 90px;
    margin: 0 auto;
}


#hero h2 {
    font-size: 2.5rem;
    color: #efc843;
    font-weight: 600;
    letter-spacing: -3.7px;
    line-height: 1;
}


.heading {
    color: #E9E9E9;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2.5px;
    text-align: left;
}

.grovee-wis {
    color: #E9E9E9;
    text-align: left;
}

.form-floating {
    color: #171615;
    border-color: #C9C5C0;
    background-color: rgba(255, 255, 255, 0.54);
    border-radius: 10px;
    padding: 10px;
}

.form-floating .form-control {
    color: #222222;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C9C5C0;
}

.form-floating .form-control:focus {
    border-color: #C9C5C0;
    box-shadow: none;
}

.btn-send {
    background-color: #333232;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #F0F0F0;
}

/* css to section closed */

.text-closing {
    margin-top: 70px;
    margin-left: 50px;
    color: #E9E9E9;
    font-size: 57px;
    font-weight: 600;
    line-height: 89px;
    letter-spacing: -2.5px;
    text-align: left;
}

@media (max-width: 768px) {
    .text-closing {
        margin-left: 0;
        text-align: center;
        font-size: 40px;
        line-height: 48px;
    }
}

.closing-text {
    margin-left: 50px;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0px;
    line-height: 1.4;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    max-width: 30%;
    text-align: left;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .closing-text {
        margin-left: 20px;
        font-size: 10px;
        padding: 15px;
        max-width: 50%;
        text-align: center;
    }
}

.text-section {
    position: relative;
    padding-bottom: 60px;
}

/* social icon */

.social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
    margin-left: 50px;
}

.social-icon {
    margin: 0 10px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.social-icon:hover {
    color: #ccc;
}

.social-icon:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #ccc;
}

.social-icon i {
    margin-right: 8px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        margin-left: 0;
        bottom: 120px;
    }

    .social-icon {
        font-size: 10px;
    }
}

.footer-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .footer-text {
        display: block;
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .swiper-pagination {
        padding-bottom: 200px;
    }
}

.container-gallery {
    z-index: 10;
    position: relative;
    padding: 20px;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    /* Adjust to fit the container */
    flex-shrink: 0;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background-color: white !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    font-size: 14px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: white;
}

.modal-pop {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-pop {
    margin: auto;
    display: block;
    width: 80%;
    height: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.open-quote {
    color: #F0F0F0;
    margin: 1rem 0;
    padding: 0 1rem;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .open-quote {
        font-size: 14px;
        padding: 0 0.5rem;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .open-quote {
        font-size: 13px;
        margin: 0.5rem 0;
        padding: 0 0.5rem;
        text-align: left !important;
    }
}

section.gift {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

