.navigation-bar {
    display: none;
}

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

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.top-level-overlap {
    z-index: 9999;
}

/* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: black;
    color: #fff;
    width: 100%;
}

.navbar-item {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.nav-links a {
    color: #fff;
}

/* LOGO */
.logo {
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#civil-discourse-project-logo{
    width: 234px;
    height: 40px;
}

/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li:hover {
    background-color: #000000;
    border-radius: 5px;
    transition: 0.3s ease;
}

.menu li {
    padding: 5px 14px;
}


/*RESPONSIVE NAVBAR MENU STARTS*/

/* CHECKBOX HACK */

input[type=checkbox]{
    display: none;
}

/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (width < 979px) {
    .menu {
        display: none;
        position: absolute;
        background-color:rgb(0, 0, 0);
        right: 0;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }

    .menu li:hover {
        display: inline-block;
        background-color:#000000;
        transition: 0.3s ease;
    }

    .menu li + li {
        margin-top: 12px;
    }

    input[type=checkbox]:checked ~ .menu{
        display: block;
    }

    .hamburger {
        display: block;
    }
}

/* Footer */
.footer {
    align-items: center;
    justify-content: space-between;
    background-color: white;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 36px 40px 36px 40px;
}

.footer-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section:nth-child(1) div {
    justify-content: flex-start;
}

.footer-section:nth-child(2) div {
    justify-content: center;
}

.footer-section:nth-child(3) div {
    justify-content: flex-end;
}

.footer-subsection {
    display: flex;
}

.footer-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color:rgb(0, 0, 0);
}

.footer-logo-box {
    gap: 15px;
}

.footer-logo-box div {
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.groupme-logo {
    background-image: url("../images/groupme-logo.png");
}

.instagram-logo {
    background-image: url("../images/instagram-logo.png");
}

.discord-logo {
    background-image: url("../images/discord-logo.png");
}

/* APPLYING MEDIA QUERIES */
@media (width < 600px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 10px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section:nth-child(1) div {
        justify-content: center;
    }
    .footer-section:nth-child(2) div {
        justify-content: center;
    }
    .footer-section:nth-child(3) div {
        justify-content: center;
    }
}

/* ben franklin quote */
.ben-franklin-quote {
    width: 100%;
    background-image: url("../images/greatest_generation.jpg");
    background-size: cover;
    background-position: center center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ben-franklin-quote p {
    font-family: 'Poppins';
    font-style: normal;
    color: white;
}

.quote-text {
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
}

.author-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.quote-location {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: calc(100vw - (100vw - 100%));
}

.main-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
}

.main-body-header-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-body-header-box h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #204A60;
}

.motivational-line {
    padding: 8px 16px;
    background: #EBF8FF;
    border: 1px dashed #204A60;
    border-radius: 8px;
}

.motivational-line h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #204A60;
}

.tweet-and-form-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.tweet-and-form-box > div {
    width: calc(50% - 10px)
}

@media (width < 800px) {
    .tweet-and-form-box > div {
        width: 100%;
    }
}

.tweet-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tweet-embed {
    width: 100%;
}

button {
    padding: 8px 24px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    background-color: white;
    color: #204A60;
    border-color: transparent;
}

button:hover {
    background-color: #204A60;
    color: white;
}

.dark-button {
    background-color: #204A60;
    color: white;
}

.dark-button:hover {
    background-color: #fff;
    color: #204A60;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.evaluation-form {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.none-number-one-question-boxes {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    display: none;
}

.question-box {
    width: 100%;
    display: flex;
    gap: 16px;
}

.stage-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.stage-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #204A60;
    color: white;
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-connector {
    background-color: #EEEEEE;
    width: 2px;
    height: calc(100% - 52px);
}

.question-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.question-section-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.stage-question {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #204A60;
}

.question-box:not(.light-coloring) .question-section:not(.clicked) .stage-question:hover {
    cursor: pointer;
}

.light-coloring .stage-question {
    color: #888888;
}

.light-coloring .stage-number {
    background-color: #888888;
}

.question-options-box {
    display: flex;
    gap: 8px;
}

.choice-display {
    display: flex;
    gap: 20px;
    align-items: center;
}

.choice-introduction {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.actual-choice {
    padding: 4px 12px;
    border: 1px solid #204A60;
    border-radius: 8px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #204A60;
    display: flex;
    align-items: center;
}

.change-button {
    display: flex;
    flex-wrap: nowrap;
}

.comments-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.textbox-label {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.textbox-field {
    width: 100%;
    height: 100px;
    border: 1px solid #204A60;
    border-radius: 4px;
    background-color: transparent;
}

.categories-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.category-box {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid #EBEAEB;
    border-radius: 8px;
    gap: 8px;
}

.category-box .textbox-field {
    color: #fff;
}

.category-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.category-title:hover {
    cursor: pointer;
}

.category-description {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #000000;
}

.comments-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #000000;
    display: none;
}

.category-box .textbox-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}

.category-box .change-button {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding: 0;
    color: black;
    display: none;
}

.category-box .change-button .material-icons {
    font-size: 16px;
}

.category-box.clicked {
    background-color: #204A60;
}

.category-box.clicked p {
    color: white;
}

.category-box.clicked .textbox-field {
    border: 1px solid white;
}

.category-box.clicked .change-button {
    background-color: transparent;
    color: white;
}

.category-box.clicked .change-button:hover {
    background-color: white;
    color: #000000;
}

.category-box .comments-wrapper {
    display: none;
}

.category-box.clicked .comments-wrapper {
    display: flex;
}

.question-section-details {
    display: none;
}

.question-section.clicked > .question-section-details {
    display: flex;
}

#is-it-divisive-section > .question-section-details > *:not(#divisive-choice-question-options-box) {
    display: none;
}

.hide {
    display: none;
}