/*
=============== 
Fonts
===============
*/
@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*
=============== 
Variables
===============
*/
:root {
  --clr-primary: #6e8ca4;
  --clr-primary-light: #52abeb;
  /* --clr-secondary: #f5c79b; */
  --clr-secondary: #ceada4;
  /* --clr-secondary-light: #f5d4b5; */
  --clr-secondary-light: #e6d3cf;
  --clr-third: #747474;
  --clr-third-light: #f4f4f4;
  --ff-family-primary: "Montserrat", sans-serif;
  --ff-family-secondary: "Great Vibes", cursive;
  --transition: all 0.25s ease-in-out;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/*
=============== 
Global Styles
===============
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ff-family-primary);
  position: relative;
}

h1,
h2,
h3,
h4 {
  margin: 1rem;
}

h1 {
    font-size: 5rem;
    padding: 2rem;
    /* margin-bottom: 3rem; */
    font-family: var(--ff-family-secondary);
    text-align: center;
}

h2 {
    font-size: 3rem;
    font-family: var(--ff-family-secondary);
}

h3 {
    font-size: 2rem;
    font-family: var(--ff-family-secondary);
}

p {
    font-size: 1.5rem;
}

section {
    overflow: hidden;
}

.icon img{
    width: 50px;
}

.offcanvas-overlay {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100%;
    z-index: 400;
}

.offcanvas-alerts {
    position: absolute;
    display: none;
    min-width: 300px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 500;
}

.offcanvas-alerts .btn-close {
    margin: auto;
    margin-top: 1rem;
}

.show-block {
    display: block;
}

.img-thumbnail{
    width: 1000px;
    padding: 0;
    border: 3px solid var(--clr-secondary);
}

.img-fluid {
    padding: 0;
}

.btn-primary {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn-primary:hover {
    background: var(--clr-primary-light);
    border-color: var(--clr-primary-light);
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 3rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1.3rem;
    }
}

/*
============================== 
HEADER AND NAVIGATION
============================== 
*/

header {
    display: flex;
    position: fixed;
    /* background-color: rgba(0, 0, 0, 0.729); */
    background-color: none;
    height: 100px;
    width: 100%;
    z-index: 500;
  }
  
nav {
    display: flex;
    align-items: center;
    font-size: 2rem;
    height: 100%;
    width: 100%;
}
  
header a {
    display: flex;
    text-align: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: black;
    height: 100%;
    padding: 0 2rem;
}
  
header a:hover {
    background: var(--clr-primary);
    color: black;
}
  
.burger-container {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    right: 1px;
    top: 1px;
}

.burger-icon {
    display: inline-block;
  
    cursor: pointer;
    padding: 2rem;
    z-index: 600;
}
  
.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background: rgb(59, 59, 59);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}
  
.change .bar2 {
    opacity: 0;
}
  
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

nav {
    display: none;
    position: absolute;
    padding-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.729); */
    background: none;
    height: 100vh;
    overflow: hidden;
    z-index: 500;
    background: rgba(255, 255, 255, 0.959);
}

nav a {
    padding-left: 1rem;
    padding-right: 0;
    width: 100%;
    text-align: center;
}

header {
    display: block;
    position: fixed;
}

.show-menu {
    display: flex;
}

.back-arrow-header a:hover {
    background: none;
    color: var(--clr-primary);
}

.back-arrow-header .gg-arrow-left {
    /* This value will multiple the actual size  */
    --ggs: 2;
    top: 20px;
    left: 50px;
}

@media screen and (max-width: 500px) {
    header a {
        font-size: 1rem;
        padding: 0 1rem;
        height: 50px;
    }
   
}


/*
=============== 
HERO SECTION
===============
*/

.hero{
    height: 100vh;
    /* background: var(--clr-primary); */
    color: white;
    /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("standing-near.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    position: relative;
}

.hero .display-1, .hero h2{
    font-family: var(--ff-family-secondary);
}

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

.hero h3 {
    font-family: var(--ff-family-primary);
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero .content-wrapper {
    position: relative;
    background: #6e8ca47c;
    padding: 2rem;
    /* border: 3px solid var(--clr-secondary); */
    border-radius: 10px;
}

.flower {
    width: 900px;
    position: absolute;
}

.flower-tendril {
    position: absolute;
    width: 80px;
}

.tendril-left {
    left: -2%;
}

.tendril-right {
    right: -2%;
    transform: rotate(180deg);
}

.tendril-bottom {
    position: absolute;
    bottom: -15%;
    transform: rotate(-90deg);
}

.tendril-top {
    top: -15%;
    transform: rotate(90deg);
}

.hero .content-wrapper .flower1 {
    bottom: -10%;
    right: -10%;
}

.hero .content-wrapper .flower2 {
    top: -10%;
    left: -10%;
}

@media screen and (max-width: 1000px) {
    .hero {
        overflow: hidden;
    }
    .hero h2 {
        font-size: 1rem;
    }
    .hero .content-wrapper .flower {
      width: 120px;
    }
    .hero .content-wrapper{
        overflow: hidden;
    }
    .flower {
        width: 500px;
    }
    .flower-tendril {
        width: 60px;
    }
    .tendril-right {
        right: -5%;
    }
    .tendril-left {
        left: -5%;
    }
    .hero h3 {
        font-size: 1rem;
    }
  }

/*
=============== 
HIGHLIGHTS SECTION
===============
*/

.highlights {
    background: var(--clr-secondary);
}

.highlights .carousel{
    max-height: 100vh;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px) {
    .highlights .carousel{
        max-width: 100vw;
    }
}


/*
=============== 
INVITATION SECTION
===============
*/

.invitation {
    color: white;
    /* background-image: linear-gradient(#4592c9e7, #4592c9e7), url("erlöserkirche.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
}

/* .invitation h1 {
    font-family: var(--ff-family-secondary);
    font-size: 7rem;
    padding-top: 2rem;
} */

.invitation .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    /* min-height: 100vh; */
}

.invitation-img {
    position: relative;
}

/* .invitation-img .img-thumbnail{
    width: 1000px;
    border: 3px solid var(--clr-secondary);
} */

.invitation-img .flower3 {
    width: 200px;
    top: -10%;
    right: -10%;
}

@media screen and (max-width: 1000px) {
    .invitation .image-container {
        margin-bottom: 2rem;
    }
    .invitation-img .flower3 {
      width: 150px;
    }
    .invitation .container{
        overflow: hidden;
    }
    
    
  }

.invi-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/*
=============== 
ANSWER SECTION
===============
*/

.answer {
    background: linear-gradient(rgba(255, 255, 255, 0.623), rgba(255, 255, 255, 0.623)), url("standing-far.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;;
    background: var(--clr-third-light);
}

.answer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    overflow: hidden;
    padding: 2rem;
}

.answer .content-wrapper {
    font-size: 1.2rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 2rem 0;
    color: black;
    background: white;
}

@media screen and (max-width: 1000px) {
    .answer .content-wrapper {
      font-size: 1rem;
    }
}

.answer .info-icon {
    padding: 1rem;
    padding-bottom: 4rem;
}

.answer .info-icon i{
    margin: auto;
    color: var(--clr-third);

}

.gg-info {
    /* This value will multiple the actual size  */
    --ggs: 3;
}

.answer .response-text {
    padding: 2rem;
}


.contact-data {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    text-align: left;
    padding-bottom: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.contact-data .col {
    text-align: left;
    padding: 0;
    margin: 0;
}

.answer .button {
    padding-left: 10%;
    padding-right: 10%;
}

.answer .btn {
    background: var(--clr-secondary-light);
    border: #fd891c;
    color: black;
    margin-top: 1rem;
}

.answer .btn:hover {
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.gg-mail {
    /* This value will multiple the actual size  */
    --ggs: 1;
}

.gg-phone {
    /* This value will multiple the actual size  */
    --ggs: 1;
}

@media screen and (max-width: 500px) {
    .answer .row {
        padding: 0;
    }
    .answer p{
        padding: 1rem;
    }
    .contact-data {
        padding: 1rem;
    }
}


/*
=============== 
DAILY-ROUTINE SECTION
===============
*/

.daily-routine h1 {
    padding: 2rem;
    margin-bottom: 5rem;
    font-family: var(--ff-family-secondary);
    text-align: center;
}

.daily-routine {
    background: white;
    min-height: 100vh;
}

.daily-routine li {
    list-style-type: none;
}

.icon-wrapper img {
    width: 100%;
}

.daily-routine .icon-wrapper {
    border: 2px solid black;
    width: 50px;
    border-radius: 50px;
    padding: 0.7rem;
    margin-left: auto;
    margin-right: auto;
}


.daily-routine .day-point {
    position: relative;
}

.day-point-box {
    position: absolute;
    top: 20%;
    background: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 250px;
    border-radius: 5px;
    overflow: visible;
    margin-left: 3rem;
    margin-right: 3rem;
    transition: all 0.4s ease-in-out allow-discrete
}

.box-right {
    left: 50%;
    transform: translate(500%, 0);
}

.box-left {
    right: 50%;
    transform: translate(-500%, 0);
}

/* .show {
    transform: translate(0, 0);
} */


.day-point-box .box-header {
    background: var(--clr-secondary);
    padding: 1rem;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.day-point-box .box-text {
    padding: 1rem;
    color: var(--clr-third)
}

.arrow-left {
  position: absolute;
  top: 10%;
  left: -4%;
  width: 0; 
  height: 0; 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; 
  
  border-right:10px solid var(--clr-secondary); 
}

.arrow-right {
    position: absolute;
    top: 10%;
    right: -4%;
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  
    border-left: 10px solid var(--clr-secondary);  
  }

.daily-routine .vertical-line {
    width: 10px;
    height: 50px;
    background: var(--clr-primary);
    margin-left: auto;
    margin-right: auto;
}

.daily-routine ul {
    margin-bottom: 10rem;
}

@media screen and (max-width: 1000px) {
    .daily-routine .icon-wrapper{
        margin-left: 0;
        margin-right: 0;
    }

    .daily-routine .vertical-line {
        margin-left: 1.25rem;
        margin-right: 0;
    }
    .arrow-right {
        top: 10%;
        left: -4%;
        width: 0; 
        height: 0; 
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent; 
        
        border-right:10px solid var(--clr-secondary);
        border-left: 0;
    }

    .box-left {
        right: 50%;
        transform: translate(500%, 0);
    }

    .day-point-box {
        margin-left: 1rem;
        margin-right: 3rem;
        left: 20%;
        padding: 0;
        max-width: 200px;
    }

    .day-point-box .box-header {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .day-point-box .box-text {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    /* .daily-routine .icon-wrapper {
        border: 2px solid black;
        width: 50px;
        border-radius: 50px;
        padding: 0.7rem;
        margin-left: auto;
        margin-right: auto;
    } */
}

.show {
    transform: translate(0, 0);
}


/*
=============== 
LOCATIONS SECTION
===============
*/

.locations {
    min-height: 100vh;
    background: var(--clr-primary);
    color: white;
}

.locations .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.locations .card-text{
    margin: 0;
}

.locations .card img {
    width: 100%;
}

.locations .container {
    padding-bottom: 5rem;
}

@media screen and (max-width: 500px) {
    .locations h2 {
        font-size: 2rem;
    }

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

/*
=============== 
WITNESSES SECTION
===============
*/

.witnesses {
    min-height: 100vh;
}

.witness {
    /* border: solid black 1px; */
    border-radius: 10px;
    margin: 0 2rem;
    background: var(--clr-secondary);
    color: white;
    padding: 0 2rem;
}

.witness .picture-area {
    display: block;
    background: var(--clr-secondary-light);
    border-radius: 10px;
}

.witnesses .witness .image-wrapper {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.witnesses .witness img {
    width: 100%; 
    border-radius: 300px;
    padding: 1rem;
    /* margin: 1rem; */
    /* border: 3px solid var(--clr-primary-light); */
}

.witnesses .picture-area {
    display: block;
    margin: 1rem;
}

.we-witnesses {
    border-radius: 10px;
    /* border: 3px solid var(--clr-secondary); */
    margin: 2rem;
}

.we-witnesses img{
    border-radius: 10px;
    /* border: 3px solid white; */
    border: 3px solid var(--clr-secondary);
}

@media screen and (max-width: 1000px) {
    .witness {
        margin: 0;
        margin-bottom: 2rem;
        border-radius: 0;
        /* margin-left: auto;
        margin-right: auto; */
    }

    .witness .picture-area {
        border-radius: 0;
    }

    .we-witnesses {
        margin: 0;
        padding: 0;
        margin-bottom: 2rem;
        border-radius: 0;
    }

    .we-witnesses-area .col {
        padding: 0;
    }

    .we-witnesses .image-wrapper {
        margin: 0;
        padding: 0;
    }

    .we-witnesses .image-wrapper img {
        border-radius: 0;
    }
}

@media screen and (max-width: 400px) {
    .witnesses .witness .image-wrapper{
        width: 250px;
    }
}


/*
=============== 
COUNTDOWN SECTION
===============
*/

.countdown {
    /* background: var(--clr-primary); */
    /* background: var(--clr-third-light); */
    color: black;
}

.countdown .column {
    margin: 0;
    padding: 1rem;
}

.countdown .column p {
    padding: 0;
    margin: 0;
}

.countdown .second-col {
    background: rgba(230, 211, 207, 0.2);
}

.countdown .minute-col {
    background: rgba(230, 211, 207, 0.4);
}

.countdown .hour-col {
    background: rgba(230, 211, 207, 0.6);
}

.countdown .day-col {
    background: rgba(230, 211, 207, 0.8);
}

.count {
    margin: 0;
    margin-bottom: 4rem;
}

.count p {
    /* font-family: var(--ff-family-secondary); */
    font-size: 3rem;
}

.count .unit {
    font-family: var(--ff-family-secondary);
    font-size: 1.8rem;
}

@media screen and (max-width: 500px) {
    .count p {
        /* font-family: var(--ff-family-secondary); */
        font-size: 2rem;
    }
}

/*
=============== 
PRESENTS SECTION
===============
*/

.presents {
    background: var(--clr-secondary);
    color: white;
}

.presents .container {
    padding: 1rem;
    padding-bottom: 2rem;
}

.presents .container .row{
    text-align: center;
}

.presents .col {
    text-align: left;
}

.presents .container .row img {
    margin-left: auto;
    margin-right: auto;
}

.presents .img-thumbnail{
    width: 500px;
    border: 3px solid white;
}

.presents .presents-text {
    /* max-width: 500px; */
}

.presents .image-container {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-bottom: 2rem;
}

@media screen and (max-width: 500px) {
    .presents p {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 780px) {
    .presents .container .row{
        text-align: left;
    }

    .presents .presents-text {
        padding-top: 2rem;
    }
}

/*
=============== 
FAQ SECTION
===============
*/
.faq {
    background: var(--clr-third-light);
    font-size: 1.3rem;
}

.faq button {
    font-size: 1.3rem;
}

.faq .container {
    padding: 2rem;
}

.faq .accordion-header {
    font-family: var(--ff-family-primary);
    margin: 0;
}

/* .faq .accordion-button:hover {
    background: var(--clr-primary);
} */

.faq .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.faq {
    border-radius: 0;
}

.faq .accordion {
    background: var(--clr-third-light);
    max-width: 700px;
    margin: auto;
}

.faq .accordion-item {
    background: var(--clr-third-light);
    border-radius: 0 !important;
}

.faq .accordion-header {
    padding-bottom: 1rem;
    border-radius: none;
}

.faq .accordion-button {
    background: white;
    border-radius: 0 !important;
}

.faq .accordion-header button:hover {
    color: var(--clr-primary);
    background: white;
}

.faq .collapsed {
    background: var(--clr-third-light);
}

.faq .accordion-body {
    background: var(--clr-third-light);
    padding: 2rem;
}

.faq .accordion-item {
    border: none;
}

@media screen and (max-width: 780px) {
    .faq .accordion {
        margin: 0;
    }

    .faq .container {
        padding-left: 0;
        padding-right: 0;
    }

    .faq .accordion-body {
        padding: 1.5rem;
        padding-bottom: 2rem;
    }
}


/*
=============== 
ARRIVAL SECTION
===============
*/

.arrival {
    background: var(--clr-primary);
    color: white;
}

.arrival .container {
    margin-bottom: 2rem;
}

.arrival .card{
    padding: 0;
    margin: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.arrival .card .btn {
    margin: 1rem;
}

.arrival .card-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrival .card-body p{
    margin: 0;
}

.arrival .card .img-fluid {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

@media screen and (max-width: 1200px) {
    .arrival .card{
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 760px) {
    .arrival .card .img-fluid {
        border-top-right-radius: 5px;
    }
}

@media screen and (max-width: 560px) {
    .arrival .card{
        border-radius: 0;
    }

    .arrival .card .img-fluid {
        border-radius: 0;
    }

    .arrival .card .col {
        border-radius: 0;
    }

    .arrival .rounded-start {
        border-radius: 0;
    }

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

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


/*
=============== 
PICTURE SECTION
===============
*/

.pictures {
    background: var(--clr-secondary);
    color: white;
}

.pictures .icon-wrapper {
    width: 120px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.pictures .icon-wrapper {
    padding: 1rem;
    padding-bottom: 4rem;
}

.pictures .gg-image{
    margin: auto;
    color: white;
    /* transform: translate(-20%, 0); */
    margin-top: 7rem;
}

.pictures .gg-image {
    /* This value will multiple the actual size  */
    --ggs: 8;
}

.pictures-text {
    padding-left: 2rem;
}

.pictures .button-area {
    display: flex;
    justify-content: left;
    padding-top: 1rem;
    padding-left: 2rem;
}


.pictures .button-area a{
    margin-right: 1rem;
}

.pictures {
    padding-bottom: 1rem;
}

.pictures-image .img-thumbnail{
    /* width: 500px; */
    border: 3px solid white;
    margin: 2rem;
}

.pictures-image {
    padding: 2rem;
}


.pictures .image-container {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-bottom: 2rem;
}

@media screen and (max-width: 500px) {
    .pictures .pictures-text {
        padding: 0;
    }

    .pictures .button-area {
        padding: 0;
        padding-top: 1rem;
    }
}

/*
=============== 
LOGO SECTION
===============
*/

.logo  {
    background: var(--clr-third-light);
}

.logo .logo-container {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.logo .logo-container img {
    width: 100%;
}




/*
========================================================================================== 
INVITATION SITE
========================================================================================== 
*/

.persons {
    /* background: var(--clr-primary); */
    min-height: 100vh;
    color: white;
}

.persons .row {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    
}

.person {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: black;
}

.person label {
    margin: 0;
}

.persons .checkboxes {
    margin-bottom: 1rem;
}

.persons .button-wrapper {
    margin: 1rem 0;
    text-align: center;
}

.persons button {
    margin-top: 1rem;
}

/*
========================================================================================== 
LOGIN SITE
========================================================================================== 
*/

.login {
    min-height: 100vh;
}

.login h1 {
    margin: 0;
}

.flex-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

main {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

main form {
    margin: 1rem;
}


.login .form-control {
    border-radius: 0;
}

.login .form-text {
    padding-bottom: 1rem;
}

.login h2 {
    font-size: 2rem;
    margin-left: 0;
}

.login .form-signin {
  max-width: 330px;
  padding: 1rem;
}

.login .form-signin .form-floating:focus-within {
  z-index: 2;
}

.login .form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.login .form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*
========================================================================================== 
UPLOAD SITE
========================================================================================== 
*/

.upload {
    min-height: 100vh;
}

.upload .btn {
    /* margin-bottom: 1rem; */
    /* width: 100%; */
    font-size: 2rem;
    padding: 5rem;
    margin: 1rem;
}

.upload .guests {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 760px) {
    .upload .btn {
        font-size: 1rem;
        max-height: 1%;
        margin-bottom: 0;
        width: 100%;
    }
}

/*
========================================================================================== 
BINGO SITE
========================================================================================== 
*/

.bingo .bingo-row .btn-primary {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 1px white solid;
    margin: 0;
}

.bingo .btn-primary .cross-container {
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    z-index: 0;
}

.bingo .info .btn-secondary {
    margin: 1rem;
}

.task-overlays .form-check {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.8rem;
}


.bingo .bingo-row {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.task-overlays,
.bingo-overlay {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    background: white;
    height: 100vh;
    width: 100vw;
}

.show-overlay {
    display: block;
}

.task {
    display: none;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.show-task {
    display: block
}

.task-overlays .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

.cross-container {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    right: 10px;
    top: 1px;
}

.cross {
    display: inline-block;
  
    cursor: pointer;
    padding: 2rem;
    z-index: 600;
}

.task-overlays h1 {
    color: var(--clr-primary);
    margin: 0;
    padding-bottom: 0;
}
  
.task-overlays .bar1,
.task-overlays .bar2,
.task-overlays .bar3
{
    width: 35px;
    height: 5px;
    background: rgb(59, 59, 59);
    margin: 6px 0;
    transition: 0.4s;
}

.overlay-cross .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.overlay-cross  .bar2 {
    opacity: 0;
}
  
.overlay-cross .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.task-overlays .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.task-overlays  .bar2 {
    opacity: 0;
}
  
.task-overlays .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

/*
========================================================================================== 
GALLERY SITE
========================================================================================== 
*/

.gallery {
    min-height: 100vh;
}

.gallery .container {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding-top: 4rem;
}

.gallery .img-item img{
    width: 100%;
    border-radius: 5px;
}

.gallery .img-item {
    max-width: 250px;
    max-height: 150px;
    cursor: pointer;
    border-radius: 5px;
    padding: 1rem;
    flex-grow: 4;
    align-self: stretch;
}

.gallery .img-item:hover {
    transform: scale(1.1);
    transition: all 200ms ease-in-out;
}

.gallery-overlay {
    position: absolute;
    display: none;
    top: 500px;
    left: 0;
    background: rgba(255, 255, 255, 0.733);
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1000;
}

.gallery-overlay .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.gallery-overlay  .bar2 {
    opacity: 0;
}
  
.gallery-overlay .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.show-gallery-overlay {
    display: block;
    display: flex;
}

.gallery-overlay .img-item img {
    width: 100%;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.gallery-buttons {
    position: absolute;
    bottom: 1rem;
    width: 100vw;
}

.gallery-buttons .gallery-col{
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-buttons .btn {
    margin-right: 1rem;
}

.gallery-buttons .pages {
    padding-top: 1rem;
    margin-right: 1rem;
}

.gallery-buttons .sites {
    margin-right: 1rem;
}

@media screen and (max-width: 760px) {
    .gallery .img-item {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        min-height: 250px;
        padding: 0;
        margin-bottom: 1.5rem;
        border-radius: 0;
    }

    .gallery .container {
        padding: 0;
        padding-top: 4rem;
    }

    .gallery {
        padding-bottom: 10rem;
    }

    /* .gallery-buttons .btn {
        margin-right: 0.5rem;
    }
    
    .gallery-buttons .sites {
        margin-right: 0.5rem;
    } */
}