@import url(../global.css);

.main-hero {
    height: 100vh;
    padding: 128px 50px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/Legal-banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.hero-header>h1 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.hero-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/Legal-banner.png");
        background-position: center right;
        padding: 128px 40px;
    }

    .hero-header>h1 {
        width: 100%;
        font-family: Urbanist;
        font-size: 4.235rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .hero-header>p {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 20px;
        align-items: center;
    }

    .hero-header>h1 {
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .hero-header>p {
        font-size: 1rem;
        width: 100%;
    }
}

.official-channels {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.official-channels-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.official-channels-header>h2 {
    width: 70%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #000000;
}

.official-channels-header>p {
    width: 70%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: #000000;
}

/* Base Styles */
.accordion {
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.accordion-tabs-wrapper {
    position: relative;
    /* So arrows can be absolutely positioned relative to tab row */
}

.accordion-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* padding: 0 40px; */
    /* space for arrows */
}

.accordion-arrow {
    display: none;
    /* hidden on desktop */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(20, 30, 71, 0.8);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.accordion-arrow.left {
    left: 0;
    /* position at start of tab row */
}

.accordion-arrow.right {
    right: 0;
    /* position at end of tab row */
}

.accordion-tab {
    flex: 0 0 auto;
    /* prevent shrinking */
    white-space: nowrap;
    /* prevent text wrap */
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    color: #000;
    padding: 16px 32px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.accordion-tab.active {
    background-color: #141E47;
    color: #fff;
}

.accordion-content-container {
    display: block;
}

.accordion-content {
    display: none;
    padding: 32px 0;
    border-top: 1px solid #ccc;
}


@media screen and (max-width:1024px) {

    .official-channels-header>h2,
    .official-channels-header>p {
        width: 100%;
    }

    .accordion-arrow {
        display: flex;
    }

    .accordion-arrow.left {
        left: 5px;
    }

    .accordion-arrow.right {
        right: 5px;
    }

    .accordion-arrow svg {
        width: 24px;
        height: 24px;
        pointer-events: none;
    }

    .accordion-tabs::-webkit-scrollbar {
        display: none;
    }

    .accordion-tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 0;
    }
}

@media screen and (max-width:430px) {
    .official-channels-header>p {
        font-size: 1rem;
    }
}

.accordion-content-email>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 32px;
}

.accordion-content-email>ul {
    padding-left: 20px;
}

.accordion-content-email>ul>li {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 16px;
}


.accordion-content-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-content-channels>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 32px;
}

.accordion-content-channels-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.channel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.channel>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.channel>a {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.accordion-tokens>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 32px;
}

.accordion-tokens>p {
    width: 50%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 16px;
}

.tactics-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.tactics-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #000000;
}

.tactic-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.tactic-item>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.tactic-item>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}


@media screen and (max-width:768px) {
    .tactic-item>p {
        width: 100%;
    }
}











.red-flags-identify-container-main {
    padding: 96px 50px;
    background: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.red-flags-identify-container,
.red-flags-identify-container-footer {
    max-width: 1440px;
    margin: 0 auto;
}


.red-flags-identify-container-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.red-flags-identify-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #ffffff;
}

.red-flags-identify-container-header>p {
    width: 50%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: #ffffff;
    margin-bottom: 32px;
}

.red-flags-identify-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.red-flag-item {
    width: 30%;
    display: flex;
    flex-direction: column;
    flex: 1 1 30%;
    border-left: 1px solid #f0f2f4;
    padding: 16px 32px;
}

.red-flag-item>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
    margin-bottom: 16px;
}

.red-flag-item>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.red-flags-identify-container-footer {
    padding: 96px 50px 0 96px;
}

.red-flags-identify-container-footer>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .red-flags-identify-container-header>p {
        width: 100%;
    }

    .red-flag-item {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .red-flags-identify-container-main {
        padding: 64px 20px;
    }

    .red-flags-identify-container-footer {
        padding: 40px 0;
    }

    .red-flags-identify-container-footer>h2 {
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.618;
        text-align: left;
    }
}

.dos-donts-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dos-donts-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #000000;
}

.dos-donts-container-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: #000000;
    margin-bottom: 32px;
}

.dos-donts-container-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dos-container>h2,
.donts-container>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 16px;
}

.dos-container>ul,
.donts-container>ul {
    padding-left: 20px;
}

.dos-container>ul>li,
.donts-container>ul>li {
    width: 70%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 16px;
}

@media screen and (max-width:768px) {
    .dos-donts-container-header>p {
        width: 100%;
    }

    .dos-container>ul>li,
    .donts-container>ul>li {
        width: 100%;
    }
}