
/*
    Start
 */

body {
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: whitesmoke;
    color: black;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: center;
}



img {
    display: inline-block;
    width: 100%;
    height: auto;
}
h1, h2, h3 {
    margin: 0;
    padding: 1em 0;
    text-align: center;
}

h2 {
    font-weight: bold;
}

p {
    margin: .5em;
    font-size: 1.2em;
    padding: 1em 0;
}

.btn {
    background-color: #2690d4; /* Blue */
    border: none;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: .2rem .4rem;
    cursor: pointer;
    border-radius: 5%;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.btn:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

/*  Join NOWU Section */

#join-nowu-section {
    padding-top: 6em;
    background: white;
    color: #333;
    padding-bottom: 2em;
}
#join-nowu-section p {
    font-size: 1.2em;
}

/* Differences Section */
#differences-section {
    padding: 2em 1em 1em;
}
#differences-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#differences-section li {
    margin-bottom: 1em;
    background: #fff;
    color: black;
}
#differences-section img {
    border-radius: 5%;
    border: 10px solid lightgray;
}
/* Voting Process Section */

#voting-process-section {
    background-color: whitesmoke;
}

#voting-process-section .card {
   background-color: white;
    color: black;
    border-radius: 5%;
    border: 3px solid lightgray;

}


#voting-process-section div em {
    font-size: 1.5em;
    display: block;
    color: #2690d4;
}
#voting-process-section div strong {
    display: block;
    font-size: 1.5em;
    font-weight: bold;

}
/* Discounts Section */
/* Style the buttons that are used to open and close the accordion panel */

#discounts-section{
    padding-bottom: 2em;
    background-color: white;
}

.thumb {
    width: 100px;
    height: 100px;
    display: inline-block;
}

.menu_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.accordion {
    background-color: whitesmoke;
    color: black;
    cursor: pointer;
    padding: 1.1rem;
    width: 100%;
    font-size: 1em;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
}

.accordion:after {
    content: '\002B';
    color: #2690d4;
    font-weight: bold;
    float: right;
    margin-left: 1em;
    font-size: 2em;
}

.active:after {
    content: "\2212";
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 1.1em;
    background-color: whitesmoke;
    color: black;
    display: none;
    overflow: hidden;
}



/* Contact Section  */

#contact-section {
    color: black;
    background-color: whitesmoke;


}
.box{
    background-color: white;
}

.contact, .organizer {
    padding: 1em;
}
.contact-icon img {
    margin: 1em;
    width: 2em;
    height: 2em;

}

.organizer-photo img {
    height: auto;
    width: 12.5em;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 35em)) 1fr;
    grid-auto-rows: minmax(min-content, max-content);
}

/* Map Section */
#map {
    height: 30em;
    grid-column: 2/4;

}


/* Testimonials Section */
/* Style the profiles with a rounded border, grey background and some padding and margin */

#testimonials-section {
    background-image: url("/img/testimonial_bg3.jpg");
    background-size: cover;
}

.profile {
    color: black;
    border: 5px solid #ccc;
    background-color: #eee;
    border-radius: 5px;
    padding: 1em;
    margin: 1em 0;
}

/* Clear floats after profiles */
.profile::after {
    content: "";
    clear: both;
    display: table;
}

/* Float images inside the profile to the left. Add a right margin, and style the image as a circle */
.profile img {
    border-radius: 50%;
}



/* Slideshow container */
.slideshow-container {
    position: relative;
    background: white;
}

/* Slides */
.profile {
    display: none;
    padding: 5em;
    text-align: center;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -1.9em;
    padding: 1em;
    color: #888;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */
.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.prev {
    position: absolute;
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: #2690d4;
    opacity: 70%;
    color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 1.2em;
    background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 1em;
    width: 1em;
    margin: 0 .2em;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


/* Add a background color to the active dot/circle */
.active, .dot:hover {
    background-color: #2690d4;
}

/* Add an italic font style to all quotes */
.quote {font-style: italic;}

/* Add a blue color to the author */
.author {
    color: cornflowerblue;

}


.card {
    padding: 1.5em;
}

.content-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

#section-h p {
text-align: center;
}


/* Footer */
#main-footer {
    padding: 0;
    background: #2690d4;
    color: black;
    text-align: center;
}

#main-footer a {
    text-decoration: underline;
    color: white;
}

.covid-notice {
    font-size: 1em;
    color: black;
    font-weight: bold;
}

/* Add media queries for responsiveness.  */

@media all and (max-width: 600px) {
    /*center both the text and the image inside the container */
    .profile {
        text-align: center;
    }

    .profile img {
        margin: auto;
        float: none;
        display: block;
        width: 5.5rem;
    }
}

@media all and (min-width: 600px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr repeat(2, minmax(auto, 35em)) 1fr;
        grid-auto-rows: minmax(min-content, max-content);
    }

    .content-wrap {
        grid-column: 2/4;
    }


    #join-nowu-section .content-text {
        columns: 3;
        column-gap: 2em;
    }



    #join-nowu-section .content-text p {
        padding-top: 0;
    }


    .differences-grid {
        padding: 2em 0 2em 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }


    #voting-process-section .content-title {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 2em;
        column-gap: 2em;
        row-gap: 2em;
    }


    .slideshow-container, .dot-container {
        grid-column: span 4;

    }


    .profile img {
        width: 8em;
        display: inline-block;
        grid-column-start: 2;
        grid-column-end: 3;
    }


    #discounts-section .content-text {
        font-size: 1.2em;
    }



    #question-answer-section {
        background-color: white;
    }

    .faq-grid {
        padding: 2em 0 2em 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section D */
    .discounts-list-grid {
        padding: 2em 0 2em 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .questions {
        padding: 2em;
    }

    .glossary {
        padding: 2em;
    }

    .contact-icon {
        grid-column: span 1;
    }
    .contact{
        text-align: center;
    }

    .contact-add {
        grid-column: span 1;

    }

    .organizer-photo img {
        width: 25em;
        height: auto;
    }

    .box{
        grid-column: span 2;
    }

    #main-footer div {
        grid-column: span 4;
    }

}


