.pt-with-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title-img img {
    width: 70%;
    margin-top: -100px;
}

.page-title-text {
    width: 80vw;
}

.double-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.double-sec h3 {
    font-size: 30px;
    margin-top: 60px;
    color: var(--blue);
}

.flex-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    flex-direction: column;
}

.col-sec {
    color: black;
    text-align: center;
}

blockquote p:first-child {
    font-style: italic;
}

.col-sec p:last-child {
    margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
    .flex-sec {
        flex-direction: row;
        width: 80%;
    }

    .col-sec {
        margin-left: 20px;
        margin-right: 20px;
    }

    .pt-with-img {
        flex-direction: row;
    }

    .page-title-img img {
        width: 40%;
    }

    .page-title-text {
        width: 80vw;
        margin-left: -100px;
    }
}