html,
body {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

body {
    margin: 0;
    box-sizing: border-box;
}

.banner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    background-color: #0a2540;
    color: white;
    font-size: x-large;
    font-weight: bold;
    font-family: 'Anek Telugu', sans-serif;
    padding: 4rem;
}

.banner h1,
h2 {
    margin: 1rem;
    text-align: center;
}

.banner h3 {
    text-align: justify;
}

main {
    width: 100%;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 3rem;
}

h2 {
    font-size: 3rem;
}

.section-container {
    width: 80%;
}

.two-column {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.col-left {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem;
    justify-content: center;
    align-items: start;
}

.col-right {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem;
    justify-content: center;
    align-items: start;
}

.col-left p {
    margin: 0;
    padding-bottom: 1rem;
    font-family: 'Anek Telugu';
    text-align: justify;
    font-size: 1.25rem;
}

.col-right p {
    margin: 0;
    padding-bottom: 1rem;
    font-family: 'Anek Telugu';
    text-align: justify;
    font-size: 1.25rem;
}

.profile {
    height: 150px;
    width: 150px;
    border: 0.1rem solid black;
    border-radius: 50%;
}

.bold {
    font-weight: bold;
}

.report_benefits p {
    padding: 0;
    font-weight: bold;
}

/* OPT-IN STYLES */
.optin {
    display: grid;
    width: 100%;
    background-color: #0a2540;
    color: white;
    padding: 4rem;
    text-align: center;
    font-size: 1.25rem;
}

.optin span {
    text-decoration: underline;
}

.optin img {
    margin: auto;
    display: inline-block;
}

.report_title {
    margin-bottom: 3rem;
}

.id_for_report {
    margin-bottom: 3rem;
}

.submit_form {
    height: 50px;
    width: 600px;
    color: black;
    background-color: white;
    border-radius: 15px;
    font-size: large;
}

.submit_form:hover {
    color: white;
    background-color: #228B22;
    cursor: pointer;
}

.banner_thanks {
    background-color: #0a2540;
    font-family: 'Anek Telugu', sans-serif;
    font-size: 3rem;
    color: white;
    text-align: center;
    padding: 3rem 0;
    box-sizing: border-box;
}

.thanks {
    padding: 3rem 2rem;
    text-align: justify;
    font-size: 1.5rem;
    box-sizing: border-box;
    font-family: 'Anek Telugu', sans-serif;
}

.thanks img {
    border: 2px solid black;
}

.thanks p {
    line-height: 2rem;
}

#thanks_bottom {
    height: 19rem;
}

.wrap {
    overflow-y: hidden;
}

/* RESPONSIVE DESIGN */
@media only screen and (max-width: 1144px) {

    .banner h1,
    h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .profile {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .col-left {
        width: 100%;
        padding-bottom: 2rem;
    }

    .col-right {
        width: 100%;
        padding-top: 0;
    }

    .two-column p {
        font-size: 1.5rem;
        margin-left: 10rem;
        margin-right: 10rem;
        margin-bottom: 1rem;
        padding-bottom: 0;
    }

    .optin {
        padding-bottom: 12rem;
    }

    .optin h2 {
        font-size: 3rem;
    }

    .submit_form {
        width: 20rem;
    }

    .optin img {
        width: 600px;
        height: 60px;
    }
}

/* TABLET SIZE */
@media only screen and (max-width: 768px) {

    .banner h1,
    h2 {
        display: flex;
        margin: 0 auto;
        font-size: 1.5rem;
        padding-bottom: 3rem;
    }

    .profile {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .col-left {
        width: 100%;
        padding-bottom: 2rem;
    }

    .col-right {
        width: 100%;
        padding-top: 0;
    }

    .two-column p {
        font-size: 1.5rem;
        margin-left: 2rem;
        margin-right: 2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 0;
    }

    .optin {
        padding-bottom: 12rem;
    }

    .optin h2 {
        font-size: 1.5rem;
        display: flex;
        margin: 0 auto;
        padding-bottom: 3rem;
    }

    .id_for_report {
        display: flex;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .submit_form {
        width: 20rem;
        margin-top: 3rem;
    }

    .optin img {
        width: 375px;
        height: 50px;
    }
}

/* MOBILE SIZE */
@media only screen and (max-width: 550px) {
    .banner {
        padding: 0;
    }

    .banner h1,
    h2 {
        display: flex;
        font-size: 2rem;
        padding: 2rem 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .col-left {
        width: 100%;
        padding-bottom: 2rem;
    }

    .col-right {
        width: 100%;
        padding-top: 0;
    }

    .two-column p {
        font-size: 1.2rem;
        margin-left: 2rem;
        margin-right: 2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 0;
    }

    .optin {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        padding: 0;
    }

    .optin h2 {
        font-size: 1.25rem;
        display: flex;
        margin: 0 auto;
        padding-bottom: 3rem;
    }

    .id_for_report {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
    }

    .id_for_report input {
        width: 20rem;
        height: 1rem;
        margin: 1rem 0;
    }

    .submit_form {
        width: 20rem;
        margin: 10rem 0;
    }

    .optin img {
        width: 250px;
        height: 30px;
    }
}