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 {
    display: block;
    grid-template-rows: none;
}

main {
    background: linear-gradient(360deg, #ECF0F9 -1.62%, rgba(255, 255, 255, 0) 111.82%);
}

.whistleblower-form__container {
    display: flex;
    flex-direction: column;
    padding: 150px 0;

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

.whistleblower-form__container[data-scroll="in"] {
    opacity: 1;
    transform: translate(0);
}

form.whistleblower__form {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-columns: none;
    width: 1100px;
    max-width: 100%;
}

form.whistleblower__form .investors-page-title {
    text-align: center;
}

form.whistleblower__form .textarea__container {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
}

form.whistleblower__form label {
    font-size: 18px;
    font-weight: normal;
    color: var(--main-color);
    margin-bottom: 10px
}

form.whistleblower__form label:not(:first-of-type) {
    margin-top: 30px;
}

form.whistleblower__form textarea {
    height:70px;
    border-radius: 5px;
    border: 1px solid #DDDFE7;
    font-size: 16px;
    color: var(--main-color);
    padding: 1%;
}

form.whistleblower__form button {
    width:100%;
    height:90px;
    font-size:30px;
    font-weight:700;
    line-height:41px;
    border-radius:60px;
    cursor:pointer;

    margin-top: 40px;
}

footer {
    padding: 100px 0;
}

@media screen and (max-width: 1280px) {
    .whistleblower-form__container {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 820px) {
    .whistleblower-form__container {
        padding: 100px 0;
    }
}

@media screen and (max-width: 414px) {
    header .text-wrapper h1.investors-title {
        font-size: 40px;
        line-height: 60px;
    }
}

@media screen and (max-width: 375px) {
    header .text-wrapper h1.investors-title {
        font-size: 40px;
        line-height: 60px;
    }
}

