@import url("https://fonts.googleapis.com/css2?family=Inika:wght@700&family=Inria+Sans:wght@400;700&display=swap");

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.2) 9.38%,
            rgba(10, 5, 240, 0.2) 81.77%
        ),
        #141313;
}

/*---header---*/
ul.navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 82px;
}

ul.navigation li {
    color: white;
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;

    cursor: pointer;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 32px 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;

    transition: 0.3s;
    z-index: 10;
}

.sticky {
    background-color: #100f11;
    padding: 16px 0px;
}

.header-logo {
    width: 140px;
    margin-left: 80px;
}

a {
    text-decoration: none;
}

.header-icons {
    display: flex;
    gap: 40px;
    margin-right: 80px;
}

/*---header-mobile---*/

.toggle-button {
    position: absolute;
    top: 2.25rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media screen and (max-width: 850px) {
    header {
        padding: 16px 0px;
        flex-direction: column;
        align-items: flex-start;
        background-color: #100f11;
    }

    .header-logo {
        margin-left: 24px;
    }

    .header-icons {
        margin-right: 24px;
        margin-left: 24px;
        display: none;
    }

    .sticky {
        padding: 16px 0;
    }

    .toggle-button {
        display: flex;
    }

    .header-nav {
        display: none;
        margin: 24px 0px;
    }

    .active {
        display: flex;
    }

    ul.navigation {
        flex-direction: column;
        gap: 24px;
        padding-left: 24px;
    }
}

/*---join-hero---*/
.join-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-image: url(./assets/join-hero.png);
    background-size: cover;
}

.join-hero h1 {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    color: white;
}

@media screen and (max-width: 500px) {
    .join-hero {
        background-position: center;
    }
}

/*---YouTube---*/
.youtube-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;

    align-items: center;
}

.mobile-video {
    display: none;
}

.desktop-video {
    display: block;
}

@media screen and (max-width: 500px) {
    .mobile-video {
        display: block;
    }

    .desktop-video {
        display: none;
    }

    .youtube-section {
        padding: 50px 0px;
    }
}

/*---how-to-join-section*/

.how-to-join {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.how-to-join h2 {
    font-family: "Inria Sans", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    color: white;
}

.step {
    background: #3e91cd;
    border-radius: 25px;
    padding: 16px 260px;
}

.step h3 {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;

    color: #000000;

    margin: 0px;
}

@media screen and (max-width: 500px) {
    .how-to-join {
        padding: 24px;
    }

    .step {
        padding: 24px;
    }

    .step h3 {
        text-align: center;
    }
}

/*---faq-section---*/

.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section h2 {
    font-family: "Inria Sans", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    color: white;
    text-align: center;
}

.faq-inner {
    display: flex;
    gap: 48px;
}

.faq-inner img {
    height: 100%;
}

.faq-q {
    background: #3e91cd;
    border-radius: 50px;
    padding: 24px;
    width: 750px;
}

.question-h {
    display: flex;
    justify-content: space-between;
}

.question-h h4 {
    font-family: "Inria Sans", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;

    margin: 0;
}

.toggle-content {
    display: none;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 100px 0px;
}

.toggle-content p {
    font-family: "Inria Sans", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
}

.toggle-btn {
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    .faq-section {
        padding: 24px;
    }

    .faq-inner {
        flex-direction: column-reverse;
    }

    .faq-q {
        width: 100%;
        padding: 20px 0px;
    }

    .question-h {
        justify-content: space-between;
    }

    .faq-left {
        margin: 0;
        padding: 0;
    }

    .faq-inner img {
        width: 100%;
    }

    .question-h img {
        width: 32px;
        margin-right: 16px;
    }

    .question-h h4 {
        margin-left: 24px;
    }

    .toggle-content p {
        padding: 16px;
        margin: 0;
    }
}
/* footer */
.footer__main {
    margin: 70px auto 0 auto;
}

.footerContainer__footer {
    background: linear-gradient(#00023ec7, #00007a61),
        url(../users/gallary/assets/images/footerbg.png);
    height: 400px;
    width: 100%;
    display: flex;
    background-repeat: no-repeat;
    justify-content: space-around;
    align-items: center;
    background-size: cover;
}

.footer_col {
    flex: 1;
}

.container__footer_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    width: fit-content;
    margin: auto;
}

.contacts__fCol {
    display: flex;
    flex-direction: column;
    color: white;
}

.contacts__fCol > p .contacts__fCol > span {
    margin: 5px auto;
    padding: 0;
}

.footer_text_header {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

.footer_text_body {
    display: flex;
    color: #fff;
    justify-content: flex-start;
    align-items: center;
    text-indent: 25px;
    margin-left: 30px;
}

.footer_text_body p img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.socials__fCol {
    color: white;
    font-size: 25px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.socials__fCol .link_social a img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}

.qLinks_fCol {
    width: fit-content;
    margin: auto;
}

.footerLinkContainer {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    row-gap: 1rem;
    display: flex;
    flex-direction: column;
}

.footerLink {
    text-decoration: none;
    color: white;
}

.footerLinkContainer li {
    margin-left: 30px;
    text-decoration: none;
    color: white;
}

.footerLink {
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 400;
}

.footerLink img {
    width: 22px;
    height: 22px;
    filter: invert(1);
    margin-right: 10px;
}

.nameContainer__fCol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.nameContainer__fCol p {
    padding: 0;
    margin: 0;
    color: #fff;
}

.name_nameContainer {
    font-size: 35px;
    font-weight: 700;
}

.title_nameContainer {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}
.copyRightSection {
    margin: auto;
    width: 100%;
    color: #fff;
    padding: 20px 0;
}
.copyRightSection p {
    margin: 0;
    text-align: center;
    font-size: 17px;
}
.credits__CRS {
    margin-top: 5px;
    color: #b9b9b9;
    font-size: 15px;
}
/* responsive */
@media screen and (max-width: 500px) {
    .bannerImage__banner {
        height: 40vh;
    }

    /** content - grid **/
    .content__main {
        width: 90%;
    }

    .gallery_gridContent {
        margin-top: 50px;
    }
    .grid__content {
        display: grid;
    }
    .grid__content:last-child {
        display: none;
    }

    .button_container_more {
        margin: 40px auto;
    }

    /* footer */
    .footer__main {
        margin: 40px auto 0 auto;
    }

    .footerContainer__footer {
        background-position: top;
        background-size: cover;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nameContainer__fCol {
        align-items: center;
    }

    .name_nameContainer {
        font-size: 28px;
    }

    .title_nameContainer {
        font-size: 18px;
        letter-spacing: 3px;
    }
}

@media screen and (min-width: 501px) and (max-width: 768px) {
    /* footer */
    .footerContainer__footer {
        background-position: top;
        background-size: cover;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nameContainer__fCol {
        align-items: center;
    }
    .name_nameContainer {
        font-size: 30px;
    }

    .title_nameContainer {
        font-size: 20px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
    /* footer */
    .footerContainer__footer {
        background-position: center;
        background-size: cover;
        height: auto;
        justify-content: space-around;
        align-items: center;
    }

    .name_nameContainer {
        font-size: 28px;
    }

    .title_nameContainer {
        font-size: 18px;
    }
}
