/* reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

a {
    text-decoration: none;
    cursor: pointer;
}

/* customize button */
.btn {
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}
.btn:active {
    background-image: none;
    outline: 1;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.btn-primary {
    background-color: #fff;
    border-color: #ccc;
}
.btn.btn-primary:hover {
    background-color: #e6e6e6;
}

/* header */
.header {
    background: #eee;
    padding-top: 50px;
    padding-bottom: 20px;
    text-align: center;
}
.header p {
    margin: 12px 0;
}
.header .btn-group {
    margin: 8px 0;
}

/* style for waterfall grid */
.wf-container {
    margin: 10px  auto 50px auto;
}
.wf-container:before,.wf-container:after {
    content: '';
    display: table;
}
.wf-container:after {
    clear: both;
}
.wf-box {
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
    margin: 20px 12px;
}

.wf-box img { 

    display: block;
    width: 100%;
}


.wf-box .content {
    border: 1px solid #e5e5e5;
    border-top-width: 0;
    padding: 5px 8px;
}
.wf-column {
    float: left;
}

/* --------------------- add --------------------- */

.content h3{
    color: #a30000;
    }2e3030

    .content p{
        color: #2e3030;
    }

    .content .btn_general{
        margin: 15px 0 10px 0;
    }


/* ==================== RWD ==================== */
@media screen and (min-width: 768px) {
     /* .wf-container { width: 750px; } */
 }
 @media screen  and (min-width: 992px) {
     /* .wf-container { width: 970px; } */
 }
 @media screen and (min-width: 1200px) {
     /* .wf-container { width: 1170px; } */
 }