header {
    background-image: url("../img/investors-hero.png");
    background-color: var(--main-color);
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60%;
}

header .text-wrapper {
    margin-top: 40px;
    gap: 35px;
}

.investors-page-container section {
    border-bottom: 2px solid #ECF0F9;
}

section.investors-section2 .board-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 0;
    border-bottom: 0;
}

section.investors-section2 .board-section .board-section-card {
    border: 1px solid #F5F5F5;
    box-shadow: 0 20px 50px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px 50px;

    opacity: 0;
    transform: translateY(-10%);
    transition: all .8s;
}

section.investors-section2 .board-section .board-section-card .investors-small-text{
    opacity: 1;
    transform: translateY(0);
}

section.investors-section2 .board-section .board-section-card[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

.investors-page-container section.investors-section2,
.investors-page-container section.investors-section3,
.investors-page-container section.investors-section4,
.investors-page-container section.investors-section5,
.investors-page-container section.investors-section6{
    padding: 80px 0;
}

.investors-page-container section.investors-section3,
.investors-page-container section.investors-section4,
.investors-page-container section.investors-section5,
.investors-page-container section.investors-section6 {
    opacity: 0;
    transform: translateY(-10%);
    transition: all .8s;
}

.investors-page-container section.investors-section3[data-scroll="in"],
.investors-page-container section.investors-section4[data-scroll="in"],
.investors-page-container section.investors-section5[data-scroll="in"],
.investors-page-container section.investors-section6[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

.investors-page-container section.investors-section6 {
    border-bottom: none;
}

section .audit-committee-card .position.news-title {
    font-weight: normal;
    padding: 0;
}

section .audit-committee-card .name.news-title {
    padding: 0;
}

section.investors-section6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

section.investors-section6 .investors-button {
    border: 1px solid #F5F5F5;
    box-shadow: 0px 50px 70px -30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 0;
    background-color: white;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: background-color .5s;
}

section.investors-section6 .investors-button:hover {
    background-color: #F5F5F5;
}

section.contact-us-form-section {
    background: linear-gradient(360deg, #ECF0F9 -1.62%, rgba(255, 255, 255, 0) 111.82%);
    padding: 100px 0 150px 0;
}

section.sign-up.orange {
    margin-top: 0;
}

footer {
    padding-top: 150px;
}

@media screen and (max-height: 900px) {
    header {
        height: 80%;
    }
}

@media screen and (max-width: 1024px) {
    .company-overview-container div {
        margin-top: 10px;
    }
}

@media screen and (max-width: 820px) {
    .company-overview-imgs img {
        width: 450px;
    }

    section.investors-section6 {
        grid-template-columns: 1fr;
        width: 70%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 414px) {
    section.investors-section2 .board-section .board-section-card {
        padding: 30px 40px;
    }
}