body {
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.wrapper {
    padding: 64px;
    max-width: 1440px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

header {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 400px;
    background: white;
    padding: 64px;
}

header .wrapper {
    justify-content: space-between;
    flex-direction: row;
}

header > div .logo > img {
    max-height: 400px;
}

section#investment, section#about, section#offer, section#projects, section#contact, footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.section_heading {
    text-wrap: nowrap;
    width: 100%;
    display: flex;
    gap: 32px;
    align-items: center;
    padding-bottom: 32px;
}

.section_heading h3 {
    text-wrap: nowrap;
}

.section_heading hr {
    border: none;
    padding: 0;
    height: 4px;
    background: var(--color2);
    width: 100%;
    box-sizing: border-box;
}

.content_text {
    display: flex;
    justify-content: center;
}