/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

.anchor-color{
    color: #23527c !important;
}

.text-center {
    text-align: center;
}

.error-h3{
    font-family: 'Adelle W02 Regular', Georgia, Serif;
    letter-spacing: .02em;
    color: #c3142d;
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    .top-buffer { margin-top:50px; }
    .content-div{
        border: 2px solid #c3142d;
        padding:  25px 25px 25px 25px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .top-buffer { margin-top:50px; }
    .content-div{
        border: 2px solid #c3142d;
        padding:  25px 25px 25px 25px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .content-min-height{min-height: 275px;}
    .top-buffer { margin-top:100px; }
    .content-div{
        border: 2px solid #c3142d;
        padding:  25px 25px 25px 25px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .content-min-height{min-height: 275px;}
    .top-buffer { margin-top:100px; }
    .content-div{
        border: 2px solid #c3142d;
        padding:  25px 25px 25px 25px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .content-min-height{min-height: 275px;}
    .top-buffer { margin-top:100px; }
    .content-div{
        border: 2px solid #c3142d;
        padding:  25px 25px 25px 25px;
    }
}



/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}

