body {
    background-color: var(--colorWhite);
    color: var(--colorOffBlack);
}
body.black-body {
    background-color: var(--colorOffBlack);
    color: var(--colorWhite);
}

.leftRight.col2
{
    grid-template-areas: "textColumn imageColumn";
}
.textColumn {
    grid-area: textColumn;
}
.imageColumn {
    grid-area: imageColumn;
}

.rightLeft.col2{
    grid-template-areas: "imageColumn textColumn ";
}

.hero{
    color:#fff;
}
/* Single*/
.post-date{
margin-bottom:26px;
font-size: 1.2rem;
font-weight: 600;
line-height: 2;
color: #666;
}
h1.post-title{
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    color: #000;
    margin-bottom: 50px;
}

.single .header,
.blog .header, .archive .header
{
    position: relative;
}
.post-featured-image{
    margin: 32px 0;
}
.post-summary,
.post-content{
    font-size: 1.8rem;
}

.post-content
{
    margin-bottom: 82px;
}

.archiveThumb a
{
    text-decoration: none;
}

.archiveThumb .post-title{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    color: #000;
    margin-bottom: 12px;
}
.archiveThumb .post-summary
{
    font-size: 1.4rem;
    line-height: 1.43;
    color: #000;
}

.archiveThumb .post-featured-image {
    margin: 0 0 13px 0;
}
.archiveThumb .post-date{
    margin-bottom: 8px;
}
#blogContainer
{
    margin-bottom: 120px;
}
.latestPosts{
    margin-top: 50px;
}
#blogContainer img {
    border-radius: 20px;
    border: solid 1px rgba(186, 186, 185, 0.4);
}
.featured-post{
    position: relative;
}
.featured-post .featured-postContent{
    position: absolute;
    bottom: 50%;
    top: 50%;
    left: 50px;
    color:#000;
}

.nf-field-description {
    order: 10;
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: left;
}
.nf-field-container  .nf-field-label {
    display: none;
}
.ninja-forms-field[type="email"]{
    padding: 15px 20px;
    border-radius: 100px;
    border: none;
    font-size: 1.4rem;
}

.ninja-forms-field[type="submit"]{
    color: var(--colorWhite);
    background-color: var(--colorOffBlack);
    display: inline-block;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
    border: 1px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color .25s;
    min-width: 200px;
}

.headerGrid ul.headerOptions li:first-child{
    margin-right: 40px;
}

#checklistForm #checklist-form-container
{
    max-width: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px auto 30px;
    gap: 18px;
}
#checklistForm .nf-field-element{
    text-align: center;
}

/* Hero gradient bar */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.7)
    );
    padding: 10px 0;
}
.gradientWrapper {
    position: relative;
}
.hero-bottom-inner,
.hero-bottom-inner a{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.67;
    text-align: center;
    color: #fff;
}
