/*
Theme Name: myNEURELIS
Description: A subtheme based on Bootstrap 3 for myNEURELIS website
Author: Steph Warsh
Client: Neurelis
*/


.benefits-page-content,
.enroll-page-content {
    padding: 0 25px;
}

/**************************** SOMETHING ****************************/
.benefits-page-content h2 {
    font-size: 26px;
    line-height: 36px;
    color: #001e61;
    font-weight: bold;
    margin-bottom: 25px;
}

.benefits-page-content p {
    margin-bottom: 20px;
}

p.bigger-para {
    font-size: 18px;
}

.main-text {
    margin-bottom: 20px;
}

.gray-boxes-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.gray-box-container {
    width: 100%;
    margin-bottom: 25px;
}

.gray-box {
    /* this flex doesn't work on IE 11 and it is not currently needed bc the download button is not in the copay card box */
    /* display: flex; */
    background-color: #f5f6f7;
    padding: 25px;
    border-radius: 41px;
}

.gray-box-content {
    /* this flex doesn't work on IE 11 and it is not currently needed bc the download button is not in the copay card box */
    /* display: flex; */
    flex-direction: column;
    align-items: flex-start;
}

.gray-box-content img {
    margin-bottom: 30px;
}

/* to prevent mobile browser default changing the styles of the telephone link */
.gray-box-content a[href^="tel"] {
    color: #333;
}

/* targets "See If You Are Eligible" button */
.gray-box-content .orange-button {
    padding: 15px;
}

.callout {
    text-align: center;
    margin-bottom: 120px;
}


/**************************** 404 PAGE NOT FOUND ****************************/
.not-found-content {
    height: 50px;
}




/* Media queries run small to large. */
@media only screen and (min-width: 375px) {
    /* targets "See If You Are Eligible" button */
    .gray-box-content .orange-button {
        padding: 15px 30px;
    }
}


@media only screen and (min-width: 576px) {

}

/* The smallest tablet width that QA tests at is 728px and the largest is 1024px (in portrait mode). */
/********** TABLET **********/
@media only screen and (min-width: 768px) {

}

/********** DESKTOP **********/
@media only screen and (min-width: 992px) {
    .benefits-page-content,
    .enroll-page-content {
        width: 80%;
        margin: 0 auto;
        max-width: 1000px;
        padding-left: 0;
        padding-right: 0;
    }

    .main-text h2 {
        margin-bottom: 35px;
    }

    .main-text p {
        margin-bottom: 25px;
    }

    .gray-box-container {
        width: 50%;
        margin-bottom: 0;
    }

    .gray-boxes-container {
        margin-bottom: 40px;
    }

    .gray-box {
        height: 100%;
        padding: 35px;
    }

    .gray-box-container:nth-of-type(odd) {
        padding-right: 10px;
    }

    .gray-box-container:nth-of-type(even) {
        padding-left: 10px;
    }

    .gray-row-1,
    .gray-row-2 {
        display: flex;

        /* to match the height of the first row, which is taller */
        /* will have to be adjusted if content or spacing changes at all */
        min-height: 550px;
    }

    .gray-row-1 {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 1050px) {
    /* to match the height of the first row, which is taller */
    /* will have to be adjusted if content or spacing changes at all */
    .gray-row-1,
    .gray-row-2 {
        min-height: 510px;
    }
}

@media only screen and (min-width: 1100px) {
    /* to match the height of the first row, which is taller */
    /* will have to be adjusted if content or spacing changes at all */
    .gray-row-1,
    .gray-row-2 {
        min-height: 480px;
    }
}

@media only screen and (min-width: 1150px) {
    /* to match the height of the first row, which is taller */
    /* will have to be adjusted if content or spacing changes at all */
    /* commented out because it doesn't change from the 1100px query */
    /* .gray-row-1,
    .gray-row-2 {
        min-height: 480px;
    } */
}

@media only screen and (min-width: 1200px) {
    /* to match the height of the first row, which is taller */
    /* will have to be adjusted if content or spacing changes at all */
    /* commented out because it doesn't change from the 1100px and 1150px queries */
    /* .gray-row-1,
    .gray-row-2 {
        min-height: 480px;
    } */
}

/* this is the width at which the content reaches 1000px and stays there */
@media only screen and (min-width: 1250px) {
    /* to match the height of the first row, which is taller */
    /* will have to be adjusted if content or spacing changes at all */
    .gray-row-1,
    .gray-row-2 {
        min-height: 450px;
    }
}