.modal-header {
    padding: 2em 3em .75em 3em;
    animation: fadeInAnimation ease-in .8s
}

.modal-body {
    padding: 2em 6em;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    animation: fadeInAnimation ease-in 1.2s
}

.modal-dialog {
    overflow-y: initial !important
}

.modal-footer {
    height: 6em;
    max-width: 320px;
    margin: 0 auto;
}

.nda-button {
    display: flex;
    margin: auto;
    padding: 10px 22px;
    background-color: #4A5C76;
    color: white;
    border-radius: 30px;
    font-family: 'Untitled Sans';
    font-style: 300;
    font-weight: 500;
    font-size: 1.25em;
    line-height: 127%;
    letter-spacing: -0.005em;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.nda-button:hover, .nda-button:focus {
    transform: translateY(-2.5px);
    transition: .4s ease-in;
}

.nda-decline-button {
    background-color: white;
    color: #4A5C76;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media only screen and (max-width: 900px) {
    .modal-body {
        padding: 1em 2em;
    }
    .modal-header {
        padding: 1em 2em;
    }
}