    *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #006B73 !important;
    position: relative;
    min-height: 100vh;
}

header{
    height: 35vh;
}


section{
    background-color: #B2CBC9;
}

footer{
    height: 30vh
}

.card-tray{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1rem;
}

.card{
    border-radius: 10px;
    padding: 1rem;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 4rem;
    height: 40vh;
    isolation: isolate;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* box-shadow: 0px 0px 10px  grey; */
}

.card:last-of-type{
    margin-bottom: 0;
}

.card a{
    color: #25BDB3;
    text-decoration: none;
}

.card a:visited{
    color: #25BDB3;
}

.card p:last-of-type{
    font-size: 0.7rem;
}

.card i{
    font-size: 2rem;
}

.rsvp{
    background-image: url("./images/celebrate-small.jpg");
    color: white;
    text-shadow: 0px 0px 2px black;
}

.rsvp::before{
    content:'';
    position: absolute;    
    inset: 0;
    z-index: -3;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}



.social{
    background-image: url("./images/streaming-small.jpg");
    color: white;
    text-shadow: 0px 0px 2px black;
}

.social h2{
    display: flex;
    justify-content: center;
}

.social::before{
    content:'';
    position: absolute;    
    inset: 0;
    z-index: -3;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.fa-youtube{
    color: #FF0000;
}

.fa-facebook{
    color: #4267B2;
}


.social-youtube{
    margin-right: 0.5rem;
    
}


.social-youtube *{
    display: block;
}


.social-facebook *{
    display: block;
}



.pearl{
    background-image: url('./images/pearls-white-small.jpg');
}


.pearl a{
    color: #006B73;
    text-decoration: none;
}

.pearl a:visited{
    color: #006B73;
}


.title-block{
    padding: 10vh 5vw 0 5vw;
}

.title-block h2{
    color: white;
}

.title-block p{
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #25BDB3;
}

.title-block p > img{
    max-width: 0.75rem;

}

.title-block h2{
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.h-line{
    width: 45vw;
    border: 2px solid #25BDB3;
}

body::before{
    background-color: white;
    width: 8vw;
    height: 100vh;
    content: '';
    position: fixed;
    right: 27vw;
    top: 0;
    z-index: -1;
}

body:after{
    background-color: white;
    width: 15vw;
    height: 100vh;
    content: '';
    position: fixed;
    right: 10vw;
    top: 0;
    z-index: -1;
}

footer{
    height: 25vh;
    display: flex;
    align-items:flex-start;
    padding: 0 5vw;
    padding-top: 1rem;
}

.img-holder{
    width: 25vw;
}

.img-holder img{
    max-width: 100%;
}

/* ticker */

.ticker-prompt{
    background-color: #25BDB3;
    height: 25px;
    width: 100%;
    position: fixed;
    bottom: 50px;
    left: 0;
	font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


#tickerInner{
	display: flex;
	overflow-x: visible;
    align-items: center;
	position: fixed;
	left: 0;
	bottom: 0;
    height: 50px;
    z-index: 2;
    animation: slide 50s linear infinite;
}

.ticker-bg{
	position: fixed;
	left: 0;
	bottom: 0;
    background-color: white;
    color: white;
    height: 50px;
    width: 100%;
    background-image: url('./images/pearls-bg-small.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.animateSmooth{
	transition: transform 1s linear;
}

@keyframes slide{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

.pearl-container{
	font-size: 0.6rem;
    width: 250px;
    margin-right: 1rem;
    text-align: center;
}

.blank{
	display: none;
}


.fine-print{
    font-size: 0.7rem;
    margin: 0 auto;
    text-align: center;
    width: 60%;
    color: #006B73;
}


.photo{
    width: 30vw;
    height: 30vw;
    /* backdrop-filter: blur(10px); */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10vh auto;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.4);
}

.photo img{
    max-width: 100%;
    max-height: 100%;
}

.page-nav-container{
    width: 40vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn{
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    margin-bottom: 1rem;
    cursor: pointer;
}

.previous{
    background-color: white;
    color: #006A72;
}

.next{
    background-color: #006A72;
    color: white;
}

.modalOn{
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    position: fixed;
    height: 100vh;
    width: 100vw;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modalOff{
    display: none;
}

.modal-img-container{
    width: 90vw;
    height: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}

.modal-img-container img{
    max-width: 100%;
    max-height: 100%;
}

#modalCloseButton{
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: #006B73;
}

.list-container{
    width: initial;
    display: grid;
    grid-template-columns: auto auto;
    padding: 1rem;
}
.carousel-inner{
    background-color: black;
}

.carousel-item{
    height: 225px;
}

.carousel-img{
    max-width: 100%;
    max-height: 100%;
}

.vertical-container{
    width: 100%;
    display: flex !important;
    justify-content: center;
}

.vertical{
    max-width: 50%;
}

section{
    padding-top: 1.5rem;
}

@media screen and (min-width: 390px) {
    .carousel-item{
        height: 250px;
    }
}


@media screen and (min-width: 540px){
    .card{
        width: 45%;
    }

    .fine-print{
        width: 45%;
    }
    footer{
        padding-top: 0;
    }

    #tickerInner{
        height: 60px;
    }
    
    .ticker-bg{
        height: 60px;
    }

    .ticker-prompt{
        font-size: 0.85rem;
        height: 30px;
        bottom: 60px;
    }

    .carousel-item{
        height: 300px;
    }

}


@media screen and (min-width: 700px){

    .fine-print{
        font-size: 1rem;
    }

    .card-tray{
        margin-bottom: 2rem;
    }

    .card p:last-of-type{
        font-size: 1rem;
    }

    .card h2{
        font-size: 2rem;
    }

    .card h3{
        font-size: 1.75rem;
    }
    
    .card i{
        font-size: 2.5rem;
    }
        
    .title-block p{
        font-size: 1.5rem;
    }

    .title-block p > img{
        max-width: 1.1rem;
    }

    .title-block h2{
        font-size: 2.25rem;
    }

    .h-line{
        width: 40vw;
        border: 2px solid #25BDB3;
    }

    .img-holder{
        width: 20vw;
    }

    #tickerInner{
        height: 80px;
        animation: slide 60s linear infinite;

    }
    
    .ticker-bg{
        height: 80px;
    }

    .ticker-prompt{
        font-size: 1.1rem;
        height: 50px;
        bottom: 80px;
    }

    .pearl-container{
        font-size: 0.9rem;
        width: 350px;
    }
    
    .photo{
        width:  25vw;
        height: 25vw;
    }
    
    .list-container{
        width: initial;
        display: grid;
        grid-template-columns: auto auto auto;
        padding: 1rem;
    }

    .carousel-item{
        height: 400px;
    }

}


@media screen and (min-width: 820px){
    .carousel-item{
        height: 500px;
    }
}


@media screen and (min-width: 1000px){

    header{
        height: 25vh;
    }


    .card p:last-of-type{
        font-size: 0.8rem;
    }

    .card h2{
        font-size: 1.25rem;
    }

    .card h3{
        font-size: 1rem;
    }
    
    .card i{
        font-size: 1.5rem;
    }

    .card{
        width: 20%;
        margin:0; 
        margin-right: 3rem;
    }

    .card-tray{
        flex-direction: row;
        justify-content: center;
    }

    body::before{
        width: 8vw;
        height: 100vh;
        content: '';
        position: fixed;
        right: 29vw;
        top: 0;
        z-index: -1;
    }
    
    body:after{
        width: 15vw;
        height: 100vh;
        content: '';
        position: fixed;
        right: 12vw;
        top: 0;
        z-index: -1;
    }
    .img-holder{
        width: 10vw;
    }

    .h-line{
        width: 20vw;
    }


    .title-block p{
        font-size: 1rem;
    }

    .title-block p > img{
        max-width: 0.75rem;
    }
    
    .title-block h2{
        font-size: 1.75rem;
    }


    footer{
        padding: 0 12vw;
    }

    #tickerInner{
        height: 70px;
    }
    
    .ticker-bg{
        height: 70px;
    }

    .ticker-prompt{
        font-size: 1.1rem;
        height: 40px;
        bottom: 70px;
    }


    .photo{
        width:  20vw;
        height: 20vw;
    }

    .title-block{
        padding: 1vh 12vw 0 12vw !important;
    }

    .carousel{
        width: 65vw;
        margin: 0 auto;
    }

    .carousel-item{
        height: 400px;
    }

    section{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .vertical{
        max-width: 45%;
    }
}

@media screen and (min-width: 1200px){
    
    .card p:last-of-type{
        font-size: 0.9rem;
    }

    .card h2{
        font-size: 1.5rem;
    }

    .card h3{
        font-size: 1.25rem;
    }
    
    .card i{
        font-size: 1.75rem;
    }

    .card{
        width: 20%;
        height: 35vh;
    }

    .card-tray{
        flex-direction: row;
        justify-content: center;
    }

    .ticker-bg{
        background-image: url('./images/pearls-bg-large.jpg');
    }

    .list-container{
        width: 85vw;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel{
        width: 55vw;
    }

    .carousel-item{
        height: 425px;
    }

}



@media screen and (min-width: 1600px){

    .animateSmooth{
        transition: transform 1.5s linear;
    }
    
    .card p:last-of-type{
        font-size: 0.9rem;
    }

    .card h2{
        font-size: 1.5rem;
    }

    .card h3{
        font-size: 1.25rem;
    }
    
    .card i{
        font-size: 1.75rem;
    }

    .card{
        width: 18%;
        margin:0;
        margin-right: 3rem;
        height: 30vh;
    }

    .card-tray{
        flex-direction: row;
        justify-content: center;
    }

    body::before{
        width: 8vw;
        height: 100vh;
        content: '';
        position: fixed;
        right: 34vw;
        top: 0;
        z-index: -1;
    }
    
    body:after{
        width: 15vw;
        height: 100vh;
        content: '';
        position: fixed;
        right: 15vw;
        top: 0;
        z-index: -1;
    }
    .img-holder{
        width: 10vw;
    }

    .h-line{
        width: 20vw;
    }


    footer{
        padding: 0 15vw;
    }

    .title-block p{
        font-size: 1.5rem;
    }

    .title-block p > img{
        max-width: 1.1rem;
    }
    
    .title-block h2{
        font-size: 2.25rem;
    }

    #tickerInner{
        animation: slide 50s linear infinite;
    }

    .photo{
        width: 15vw;
        height: 15vw;
    }

    .list-container{
        grid-template-columns: auto auto auto auto;
        width: 75vw;
    }

    .carousel{
        width: 45vw;
    }

    .carousel-item{
        height: 450px;
    }

    .vertical{
        max-width: 45%;
    }
}


@media screen and (min-width: 1900px){

    .card p:last-of-type{
        font-size: 0.9rem;
    }

    .card h2{
        font-size: 1.5rem;
    }

    .card h3{
        font-size: 1.25rem;
    }
    
    .card i{
        font-size: 1.75rem;
    }

    .card{
        width: 12%;
        margin:0;
        margin-right: 3rem;
        height: 30vh;
    }

    body::before{
        width: 8vw;
        height: 100vh;
        content: '';
        position: fixed;
        right: 35vw;
        top: 0;
        z-index: -1;
    }
    
    body:after{
        width: 15vw;
        height: 100vh;
        content: '';
        position: fixed;
        right: 18vw;
        top: 0;
        z-index: -1;
    }
    .img-holder{
        width: 8vw;
    }


    .h-line{
        width: 20vw;
    }
/* 
    .title-block{
        padding: 5vh 18vw 0 18vw !important;
    } */

    .invite-block{
        padding: 0 18vw;
    }

    footer{
        padding: 0 18vw;
    }

    .title-block p{
        font-size: 1.5rem;
    }
    
    .title-block h2{
        font-size: 2.5rem;
    }

    #tickerInner{
        animation: slide 40s linear infinite;
    }

    .photo{
        width: 10vw;
        height: 10vw;
    }

    .list-container{
        width: 65vw;
    }
    
    .carousel{
        width: 40vw;
    }

    
    /* .carousel-item{
        height: 600px;
    } */
 
}

@media screen and (min-width: 2800px) {
    
        
    .carousel{
        width: 35vw;
    }

    .carousel-item{
        height: 590px;
    }
}