
.content {
    width: var(--small-size-width);
}

.sub-content_header {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
}

.margin-top {
    margin-top: 2em;
}

.twocoltext-container {
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
}

.twocoltext-container > div {
    width: 100%;
}

.twocoltext-container p {
    padding-bottom: 1em;
    max-width: 100%;
}

.twocoltext-container a {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    vertical-align: bottom;
}

.twocoltext-container a:not(.button--primary):not(.button--secondary) {
    color: var(--button-and-footer-color);
}

.twocoltext-container a:not(.button--primary):not(.button--secondary):visited {
    color: #025b9a;
}

.twocoltext-container a:not(.button--primary):not(.button--secondary):hover {
    color: #00a0d6;
}

.twocoltext-container ul {
    list-style: revert;
    margin: revert;
    padding: revert;
}

.content h1, h2, h3, h4 {
    margin-top: 0;
}

.reviews-quote {
    width: 100%;
    padding-bottom: 1em;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.reviews-quote-sign img {
    padding-top: 3em;
    width: 100px;
    display: none;
}

.reviews-container-subpage {
    background-color: #FCF7F5;
    width: 100%;
    padding-top: 1em;
}

.reviews-content {
    margin: auto;
}

.videocontainer {
    width: 80%;
    aspect-ratio: 16 / 9;
    margin-top: 0.4em;
}

p.videotext {
    padding-top: 0;
    padding-bottom: 1em;
}

blockquote {
    text-align: center;
    font-size: 80%;
    margin-top: 1em;
    display: inline-block;
}

blockquote h2 {
    margin-bottom: 1.5em;
}

blockquote p {
    margin-bottom: 1em;
}

div#meetingDiv {
    display: inline-block;
}

.reviews-content h2 {
    margin-bottom: 0.6em;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.book-a-meeting-btn {
    padding: 4px 26px 5px; /* Why is this two pixels larger than a styled a-element */
}

.about-quotes section:nth-child(even) div {
    background-color: white;
}

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

    blockquote {
        text-align: center;
        margin-top: 1em;
        display: inline-block;
        width: 55%;
    }
    
    .twocoltext-container {
        gap: 40px;
    }
    
    .twocoltext-container > div {
        width: calc(50% - 20px);
    }
    
    .reviews-quote-sign img {
        display: block;
    }
}

@media only screen and (min-width: 1200px) {
    .content {
        width: var(--medium-size-width);
    }

    .sub-content_header h2 {
        max-width: calc(50% - 40px);
    }
    
    /*
    .hero-section {
        height: 450px;
    }
    
    .hero-container {
        margin-right: -100px;
    }
    
    .hero-content-shape {
        height: 450px;
    }*/
}

@media only screen and (min-width: 1700px) {
    .content {
        width: var(--standard-size-width);
    }
}

@media only screen and (min-width: 1950px) {
    .content {
        width: var(--ultra-size-width);
    }
}

/* News blog page list */

.blog-row {
    width: var(--small-size-width);
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0 30px 0;
    display: flex;
    flex-direction: column;
}

.news-btn {
    align-self: flex-start;
}

.blog-section div:nth-child(even) {
    background-color: #f9f9f9;
}

.blog-section_text {
    margin-bottom: 1rem;
    font-size: 1em;
    overflow: hidden;
}

.blog-section_text p {
    padding-bottom: 1em;
    display: block;
}

@media only screen and (min-width: 640px) {
    .blog-section_text {
        font-size: .7em;
        max-height: initial;
    }
}

@media only screen and (min-width: 1200px) {
    .news-row {
        width: var(--medium-size-width);
    }
    
    .blog-row {
        width: var(--medium-size-width);
    }
}

@media only screen and (min-width: 1700px) {
    .news-row {
        width: var(--standard-size-width);
    }
    
    .blog-row {
        width: var(--standard-size-width);
    }
}

@media only screen and (min-width: 1950px) {
    .news-row {
        width: var(--ultra-size-width);
    }
    
    .blog-row {
        width: var(--ultra-size-width);
    }
}

/* specific blog post page */

.post-content {
    width: var(--small-size-width);
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) {
    .post-content {
        width: var(--medium-size-width);
    }
    
}

@media only screen and (min-width: 1700px) {
    .post-content {
        width: var(--standard-size-width);
    }
    
}

@media only screen and (min-width: 1950px) {
    .post-content {
        width: var(--ultra-size-width);
    }
    
}