/*PHOTOS ON BOXES*/

/* X-Small//////////////////////////////////////////////////////////*/
@media (max-width: 576px) {
.relative-box {
    /*width: 100%;*/
    float: left;
}
    .blue-box { /*Blue Type Box//////////////////*/
/*      width: 100%;
        height: 15em;*/
        background:#3b5d91;
/*  top: 0;
    left: 15%;
/*  z-index: 10;
    display: block;*/
    padding: 10px 20px 10px 20px;
    }
    .blue-box h2{
        font-size: 2rem;
        color: #ffffff;
    }
    .margin-bottom {
        margin-bottom: 10px;
    }
}

/* Small////////////////////////////////////*/
@media (min-width: 576px) {
    .relative-box {
        margin-bottom: 10px;
    }
    .blue-box { /*Blue Type Box//////////////////*/
/*      width: 100%;
        height: 15em;*/
        background:#3b5d91;
 /*     top: 0;
        left: 15%;
/*      z-index: 10;
        display: block;*/
        padding: 10px 20px 10px 20px;
    }
    .blue-box h2 {
        font-size: 2rem;
        color: #ffffff;
    }
    .margin-bottom {
        margin-bottom: 50px;
    }
}            

/* Medium////////////////////////////////////*/
@media (min-width: 768px) {
    .relative-box {
        margin-bottom: 10px;
    }
    .blue-box { /*Blue Type Box//////////////////*/
        /*position: absolute;
        width: 40%;
        height: 29rem;*/
        background:#3b5d91;
      /*  top: 5rem;
        left: 60%;
        z-index: 10;*/
        display: block;
        padding: 10px 20px 20px 20px;
    }
    .blue-box h2{
        font-size: 2rem;
        color: #ffffff;
    }
} 

/*Large////////////////////////////////////*/
@media (min-width: 992px) {
/*    .parent {
    }*/
    .relative-box {
        position: relative;
        z-index: 2;
        /*max-width: 65%;*/
        float: left;
    }
    .blue-box { /*Blue Type Box//////////////////*/
        position: absolute;
/*        width: 28rem;
        height: 21rem;*/
        background:#3b5d91;
        top: 20px;
        left: -10%;
        z-index: 10;
        display: block;
        padding: 10px 20px 25px 20px;
        float: left;
    }
    .blue-box h2{
        font-size: 1.5rem;
        color: #ffffff;
    }
    .blue-box h3{
        font-size: 1.3rem;
        color: #ffffff;
    }
    .blue-box p{
        font-size: 1rem;
        color: #ffffff;
    }
}
/*X-Large////////////////////////////////////*/
@media (min-width: 1200px) {
/*    .parent {
    }*/
    .relative-box { /*photo*/
        position: relative;
        z-index: 2;
        /*max-width: 65%;*/
        float: left;
    }
    .blue-box { /*Blue Type Box//////////////////*/
        position: absolute;
/*        width: 40rem;
        height: 25rem;*/
        background:#3b5d91;
        top: 30px;
        left: -15%;
        z-index: 10;
        display: block;
        padding: 10px 20px 10px 20px;
        float: left;
    }
}  
/*XX-Large////////////////////////////////////*/
@media (min-width: 1400px) {
/*    .parent {
    }*/
    .relative-box { /*photo*/
        position: relative;
        z-index: 2;
/*        max-width: 65%;*/
        float: left;
    }
    .blue-box { /*Blue Type Box//////////////////*/
        position: absolute;
/*        width: 45rem;
        height: 21rem;*/
        background:#3b5d91;
        top: 86px;
        left: -15%;
        z-index: 10;
        display: block;
        padding: 10px 20px 25px 20px;
    }
    .blue-box h2{
        font-size: 2rem;
        color: #ffffff;
    }
}  

/* Quote after photos on boxes ///////////////////////////////////////////////*/
        .quote {
            color: #404e83;
            font-weight: bold;
        }
        blockquote {
            font-family: Georgia, serif;
            font-size: 26px;
            font-style: italic;
            margin: 0.25em 0;
            padding: 0.35em 40px;
            line-height: 1.45;
            position: relative;
            color: #3b5d91;
        }
        
        blockquote::before {
            display: block;
            padding-left: 10px;
            content: "\201C";
            font-size: 6em;
            position: absolute;
            left: -55px;
            top: -65px;
            color: #3b5d91;
            content: "\201C";
        }
        
        blockquote::after {
            font-family: Georgia, serif;
            position: absolute;
           /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
            float:right;
            font-size:6em;
            line-height: 1;
            right: 0;
            bottom:-0.5em;
            color: #3b5d91;
            content: "\201D";
        }
        blockquote cite {
            font-family: 'Montserrat', 'sans-serif';
            color: #3b5d91;
            font-size: 14px;
            display: block;
            margin-top: 5px;
           left: 30px;
        }
        
        blockquote cite:before {
            content: "\2014 \2009";
        }
        .shadow {
            box-shadow: 0 .5rem .5rem rgb(0 0 0 / 20%) !important;
        }