@import url(../../global.css);

/* Global all IPO pages main containers */

.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 {
        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 {
    margin-top: 24px;
    padding: 50px;
}

.document-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: auto;
}

.document {
    background-color: var(--accentcolor);
    border-radius: 24px;
    width: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1 1 25%;
    gap: 32px;
}

.icon-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

.icon-box>h1 {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.618rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

@media screen and (max-width: 930px) {
    .document-container {
        padding: 20px;
    }

    .document {
        background-color: var(--accentcolor);
        border-radius: 24px;
        width: auto;
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
}

/* CTA Section */

.footer-cta-section{
    display: flex;
    background-color: #212121;
}

.cta-section-left, .cta-section-right{
    width: 50%;
}

.cta-section-left {
    padding: 128px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
}

.cta-header{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-header > h4{
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #fff;
}

.cta-header > p{
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #fff;
}

.cta-section-right{
    padding: 50px;
    background-image: url('../../../assets/corporate-meeting.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
    .footer-cta-section{
        display: flex;
        flex-direction: column;
        background-color: #212121;
    }
    
    .cta-section-left, .cta-section-right{
        width: 100%;
    }
    
    .cta-section-left {
        padding: 64px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 64px;
    }
    
    .cta-header{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
           
    .cta-section-right{
        display: none;
    }
}

@media screen and (max-width:430px) {
    .cta-section-left {
        padding: 64px 40px;
        gap: 32px;
    }

    .cta-header{
        gap: 8px;
    }
    
    .cta-header > h4{
        font-family: Urbanist, sans-serif;
        font-size: 1.618rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
        color: #fff;
    }
    
    .cta-header > p{
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
        color: #fff;
    }
}