/* Global all IPO pages main containers */

.hero-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 80%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    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 {
        align-items: center;
        padding: 64px 40px;
    }

    .hero-header>h1 {
        width: 100%;
        font-size: 2.617rem;
    }

    .hero-header>p {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 20px;
        height: 100vh;
    }

    .hero-header>h1 {
        font-size: 2.617rem;
    }

    .hero-header>p {
        font-size: 1rem;
    }
}

.document-container-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0   0 64px 0;
}

.document-container-main-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.document-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: stretch;
    width: auto;
}

.document-col {
    background: #f0f2f4;
    padding: 64px 32px;
    display: flex;
    flex: 1 1 30%;
    flex-direction: column;
    gap: 64px;
    border-radius: 16px;
}

.document-icon-row {
    margin-bottom: 24px;
}

.document-title-row>h2>a {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-decoration: none;
}

.document-title-row>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: #666;
    margin-bottom: 8px;
}


@media screen and (max-width: 768px) {

    .document-row {
        flex-direction: column;
        gap: 48px;
    }

    .document-col {
        padding: 48px 24px;
        gap: 48px;
    }
}

@media screen and (max-width: 430px) {

    .document-container-main-header>h2 {
        margin-bottom: 32px;
    }
}
