@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;600;700;800;900&display=swap');

/* Global */
:root {
    --background-color: #181818;
    --primary-color: rgba(16, 182, 235);
    --secondary-color: rgba(16, 182, 235, 0.08);
    --text-color: #EAEAEA;
}

* {
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

html, body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Desktop NavBar */
.section1 header {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: var(--background-color);
}

.section1 header .desktop-navbar ul{
    position: absolute;
    width: 51%;
    top: 10%;
    left: 45.7%;
    display: flex;
    justify-content: space-between;
}

.section1 header .desktop-navbar ul li > * {
    font-weight: bold;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.section1 header .desktop-navbar ul li > *:hover {
    color: var(--primary-color);
}

.section1 header .desktop-navbar ul li .here {
    color: var(--primary-color);
}

/* Mobile NavBar */
.section1 header .mobile-navbar {
    width: 80vw;
}

.section1 header .mobile-navbar .logo {
    position: relative;
}

.section1 header .mobile-navbar .menu {
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.section1 header .mobile-navbar ul {
    position: fixed;
    background-color: var(--text-color);
    height: 100vh;
    width: 40vw;
    margin: 0;
    top: 0%;
    right: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    animation: slide 0.5s ease;
}

@keyframes slide {
    0% {
        right: -60vw;
    }
    100% {
        right: 0%;
    }
}

.section1 header .mobile-navbar ul li {
    padding-top: 20px;
}

.section1 header .mobile-navbar ul li > * {
    font-weight: 700;
    color: var(--background-color);
    transition: all 0.3s ease;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.section1 header .mobile-navbar ul li > *:hover {
    color: var(--primary-color);
}

.section1 header .mobile-navbar ul li .here {
    color: var(--primary-color);
}

/* Hero Section */
.section1 .hero {
    max-width: 1239px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    margin-top: 120px;
}

.section1 .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.section1 .hero .dropdown {
    display: flex;
    align-self: center;
    flex-direction: column;
    width: 30%;
}

.section1 .hero .dropdown button {
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--background-color);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 60px;
}

.section1 .hero .dropdown button:hover {
    background-color: var(--text-color);

}

.dropdown-content {
    flex-direction: column;
    text-align: left;
    height: fit-content;
}

.section1 .hero .dropdown .dropdown-content a {
    height: 3vh;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 700;
    border-top: solid 1px;
    border-color: gray;
}

.section1 .hero .dropdown .dropdown-content a:hover {
    background-color: var(--primary-color);
}

/* .section1 .questions #q1 .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.section1 .questions #q2 .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
} */

.section1 .questions ul li {
    list-style: circle;
    margin-bottom: 10px;
}

/* .section1 .questions #q2 {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.section1 .questions #q3 {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.section1 .questions #q3 h1 {
    align-self: start;
}
.section1 .questions #q3 .content {
    align-self: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.section1 .questions #q3 .content p {
    margin-top: 20px;
    line-height: 30px;
} */

/* .section1 .questions #q7 .content {
    display: flex;
    flex-direction: column;
    height: fit-content;
} */

.section1 .questions .question .content img {
    width: 80%;
}


.section1 .questions .question {
    background-color: var(--secondary-color);
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 20px;
}


.section1 .questions .question .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* .section1 .questions .question h1:after {
    content:'hello';
} */

.section1 .questions #q1 img {
    max-width: 100%;
}

.section1 .questions .question h4 {
    text-align: right;
    /* underline */
    text-decoration: underline;
}

/* 
.section1 .questions #q1 {
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
} */

/* .section1 .questions #q7 .content .left {
    max-width: 50%;
} */

/* Media Queries */
/* Desktop */
@media screen and (min-width: 1240px) {
    .section1 .questions {
        width: 1239px;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: 200px;
        margin-top: 150px
    }
    
    .section1 .questions h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }
    
    .section1 .questions p {
        font-size: 1.2rem;
        font-weight: 500;
        margin: 0;
        padding: 0;
    }

    .section1 .questions .question {
        max-width: 1239px;
    }
    
    .section1 .questions .question h1 {
        margin-bottom: 40px;
    }
    .section1 .questions .question ul {
        font-size: 1.2rem;
        text-decoration: disc;
    }
    .section1 .questions #q1 .content {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        text-decoration: wavy;
    }

    .section1 .questions #q7 .content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 1240px) and (min-width: 800px) {
    .section1 .questions {
        max-width: 800px;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 150px;
        margin-top: 150px;
    }
    .section1 .questions .question {
        align-self: start;
        margin: 0px;
    }
    .section1 .hero .dropdown {
        width: 55%;
    }
    body h1 {
        font-size: 2.3rem;
        font-weight: 700;
        padding: 0;
    }

    .section1 .questions #q3 .content {
        width: 100%;
    }

    .section1 .questions #q7 .content .left {
        max-width: 100%;
    }

    /* .section1 .questions #q3 {
        width: 100%;
    } */
    .section1 .questions #q1 .content img {
        width: 100%;
    }
    body h1 {
        font-size: 2.3rem;
    }
}



/* Hero Section */
/* Tablet */
@media screen and (max-width: 1240px) and (min-width: 800px) {
    .section1 .hero .graph {
        max-width: 800px;
    }
    .section1 .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
}

/* Desktop Size */
@media screen and (min-width: 800px) {
    .section1 header .mobile-navbar {
        display: none;
    }
    .section1 .hero h1 {
        font-size: 2.3rem;
        margin-bottom: 70px;
    }

}


/* Tablet Size */
@media screen and (max-width: 1240px) {
    .section1 header .desktop-navbar ul li > * {
        font-size: 0.9rem;
    }

    .section1 header .desktop-navbar .logo {
        width: 800px;
    }

    .section1 header .desktop-navbar ul{
        top: 0;
        left: 44%;
    }

    .section1 header {
        max-width: 800px;
    }
}

/* Phone Size */
@media screen and (max-width: 800px) {
    .section1 header .desktop-navbar {
        display: none;
    }

    .section1 header .mobile-navbar {
        display: flex;
        padding-left: 10px;
    }

    .section1 header .mobile-navbar .menu {
        right: 2%;
        top: 28%;
    }

    .section1{
        width: 100%
    }
    .section1 .hero {
        max-width: 800px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section1 .hero h1 {
        font-size: 2rem;
        margin-bottom: 70px;
    }

    .section1 .hero .dropdown {
        width: 70%;
    }

    .section1 .questions {
        margin-top: 100px;
        margin-left: 20px;
        margin-right: 20px;
        display: flex;
        flex-direction: column;
        row-gap: 100px;
    }
    .section1 .questions #q1 .content img {
        width: 100%;
    }

    .section1 .questions #q7 .content img {
        width: 100%;
    }


    body h1 {
        font-size: 2rem;
        font-weight: 700;
        padding: 0;
    }

    .section1 .hero h1 {
        font-size: 2.4rem;
    }
}