h3 {
    font-style: italic !important;
}

#slideshow-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);;
}

#active-slide-show-image {
    grid-column: 1 / span 2;
    grid-row: 1 / span 4;
}

#slideshow-caption {
    font-size: calc(var(--text-font-size) * 3);
    font-family: var(--title-font-family), system-ui, Segoe UI, Roboto, Arial,
    sans-serif;
    font-style: var(--text-font-style);
    font-weight: calc(var(--text-font-weight) * 7);
    grid-column: 1 / span 2;
    grid-row: 3 / span 1;
    margin-top: 1.5em;
}

.text-messages {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#text-messages-horizontal {
    display: none;
}

#communication-verbiage {
    background: var(--pattensBlue);
}

#reviews {
    background-color: var(--chambray);
    color: white;
}

.review-full-width-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-flex-container {
    display: flex;
    flex-flow: column;
}

.review-divider {
    border: .1em solid var(--waikawaGrey);
    margin: auto;
    width: 90%;
}

.review-vertical-padding {
    padding-top: 1em;
}

.reviewer {
    font-weight: calc(var(--text-font-weight) * 7);
}

.review-emoji {
    display: inline-block !important;
    height: 1.2em;
}

#two-sides {
    background-color: var(--silkBlue);
    color: var(--white);
    display: block;
    grid-column: 1 / span 2;
}

#other-side-of-the-story-verbiage {
    background-color: var(--gullGrey);
    color: var(--white);
}

#learn-from-my-experience {
    color: var(--black);
    background-color: var(--pattensBlue);
}

/* Small Mobile Devices */
@media only screen and (max-width: 411px) {

    h1 {
        margin-left: .5em;
        margin-right: .5em;
        padding: 0;
    }
}

@media only screen
and (min-width: 487px)
and (max-width: 500px) {

    #learn-from-my-experience-title {
        margin-left: .5em;
        margin-right: .5em;
    }
}

@media only screen
and (min-width: 518px)
and (max-width: 570px) {

    h1 {
        margin-left: .5em;
        margin-right: .5em;
        padding: 0;
    }
}

@media only screen
and (min-width: 400px) {

    #text-messages-horizontal {
        display: block;
    }

    #text-messages-vertical {
        display: none;
    }
}

@media only screen
and (min-width: 667px) {

    h1 {
        margin-left: .5em;
        margin-right: .5em;
        padding: 0;
    }
}

@media only screen
and (min-width: 740px) {
    #slideshow-caption {
        font-size: calc(var(--text-font-size) * 4);
        font-weight: calc(var(--text-font-weight) * 5.5);
    }
}

@media only screen
and (min-width: 853px)
and (max-width: 932px) {

    h1 {
        margin-left: .5em;
        margin-right: .5em;
        padding: 0;
    }
}

@media only screen
and (min-width: 1024px) {

    #slideshow-caption {
        font-size: calc(var(--text-font-size) * 6) !important;
        font-weight: calc(var(--text-font-weight) * 7) !important;
    }

    #slideshow-container {
        height: 100%;
    }

    #communication-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    #communication-picture {
        align-items: center;
        background-color: var(--white);
        display: flex;
        grid-column: 1 / span 1;
        justify-content: center;
    }

    #communication-verbiage {
        grid-column: 2 / span 2;
        padding: 24px 48px !important;
    }

    #text-messages-horizontal {
        display: none;
    }

    #text-messages-vertical {
        display: block;
        height: 80%;
    }

    #reviews {
        padding-left: 16.7%;
    }

    #review-verbiage {
        width: 66.6% !important;
        margin-left: auto;
        margin-right: auto;
    }

    #two-sides-verbiage {
        margin-left: 19.0721649485%;
        text-align: center;
        width: 61.8556701031%;
    }

    #other-side-of-the-story-verbiage {
        padding: 24px 48px !important;
    }
}

@media only screen
and (min-width: 1024px)
and (max-width: 1200px)
and (orientation: portrait) {

    #slideshow-container {
        height: 100%;
    }

}

@media only screen
and (min-width: 1280px) {

    #slideshow-caption {
        font-size: calc(var(--text-font-size) * 8) !important;
        font-weight: calc(var(--text-font-weight) * 7) !important;
    }

    #communication-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    #communication-picture {
        background-color: var(--white);
        display: flex;
        grid-column: 1 / span 1;
        justify-content: center;
        align-items: center;
    }

    #communication-verbiage {
        grid-column: 2 / span 2;
    }

    #text-messages-horizontal {
        display: none;
    }

    #text-messages-vertical {
        display: block;
        height: 98%;
    }

    #other-side-of-the-story {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #other-side-of-the-story-image {
        grid-column: 1 / span 1;
    }
}

@media only screen
and (min-width: 1440px) {

    #slideshow-caption {
        font-size: calc(var(--text-font-size) * 5.2) !important;
        font-weight: calc(var(--text-font-weight) * 7) !important;
    }

    #communication-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #communication-picture {
        background-color: var(--white);
        grid-column: 1 / span 1;
    }

    #communication-verbiage {
        grid-column: 2 / span 1;
    }
}