#photo-frame {
    background: #222;
}

#photo-banner {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 1360px;
    height: calc(100vw * (600/1360));
    min-height: 80px;
    max-height: 100%;
    padding-top: 80px;
}

#photo-text-box {
    display: none;
    float: left;
    margin-top: -10px;
    margin-left: 398px;
    color: white;
    font-size: 2em;
}

#photo-p2 {
    margin-top: -10px;
    font-size: .7em;
}

#white-bar {
    height: 35px;
    background-color: #eee;
}

#text-banner {
    background-color: #cccac6;
    text-align: center;
    font-size: 1.2em;
    padding: 20px;
    border-top: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
}

#thumbs-container {
    text-align: center;
    padding: 30px 0px 50px 0px;
    background-color: #eee;
}

#thumbs-container .thumb {
    display: inline-block;
    padding: 60px;
}

.square {
    width: 260px;
    height: 260px;
    display: block;
}

.square-title {
    font-size: 1.5em;
    text-decoration: none;
    line-height: 40px;
}


/* Mobile header media queries */

@media screen
and (max-width: 779px) {
    #photo-banner {
        padding-top: 0px;
    }
}

/* Circle photo media queries */

@media screen
and (min-width: 780px) {
    #photo-frame {
        padding: 0px 20px;
    }
    
    #outer-banner-box {
        display: block;
        margin: auto;
        width: 100%;
        max-width: 820px;
        height: 600px;
    }
    
    #inner-banner-box {
        width: 254px;
        height: 262px;
        overflow: hidden;
        border-radius: 50%;
        transform: translateY(210px);
    }

    #photo-banner {
        width: initial;
        height: 100%;
        padding-top: initial;
        margin-left: -236px;
    }
    
    #photo-text-box {
        display: block;
    }
    
    #text-p1 {
        display: none;
    }
}

