body {}

/*---CardView---*/

.card {
    margin: auto;
    width: 65%;
    border: 3px solid #cdcdcd;
    padding: 10px;
}

.card-content {
    background: #ffffff;
    border: 4px;
    margin: 1px 20px;
    height: 380px;
    width: 260px;
    overflow: hidden;
    float: left;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.card-img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    z-index: 1;
}

.card-img img {
    width: 250px;
    height: 210px;
    overflow: hidden;
    display: block;
}

.card-img span {
    position: absolute;
    top: 15%;
    left: 12%;
    background: #1ABC9C;
    padding: 6px;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transform: translate(-50%, -50%);
}

.card-img span h4 {
    font-size: 12px;
    margin: 0;
    padding: 10px 5px;
    line-height: 0;
}

.card-desc {
    padding: 1.25rem;
}

.card-desc h3 {
    color: #000000;
    font-weight: 600;
    font-size: 1.00em;
    line-height: 1.3em;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
}

.card-desc p {
    color: #747373;
    font-size: 14px;
    font-weight: 400;
    font-size: 1em;
    text-overflow: ellipsis;
    height: 42px;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.5;
    margin: 0px;
    margin-bottom: 20px;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

.btn-card {
    background-color: #1ABC9C;
    color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    padding: .80rem 2.10rem;
    font-size: .81rem;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    margin: 0;
    border: 0;
    -webkit-border-radius: .125rem;
    border-radius: .125rem;
    cursor: pointer;
    text-transform: uppercase;
    white-space: normal;
    word-wrap: break-word;
    color: #fff;
}

.btn-card:hover {
    background: orange;
}

a.btn-card {
    text-decoration: none;
    color: #fff;
}

/*Rotator*/

.rotatorStyle {
    margin: 0 25px;
    background: black;
}

/*Card Block*/

.cardBlock {
    display: block;
    height: auto;
    width: 600px;
    margin: 5px 0 15px 0;
    transition: opacity 300ms ease;
}

@media only screen and (max-width: 600px) {
    .card {
        width: 100%;
        padding: 2px;
    }
    .card-content {
        margin-left: 1px;
    }
    .rotatorStyle {
        width: 100%;
        margin-left: 1px;
    }
}

/* Large desktop */

@media (min-width: 1200px) {}

/* Portrait tablet to landscape and desktop */

@media (min-width: 768px) and (max-width: 979px) {}

/* Landscape phone to portrait tablet */

@media (max-width: 767px) {
    .card {
        width: 100%;
        padding: 3px;
    }
    .card-content {
        margin-left: 1px;
    }
    .rotatorStyle {
        width: 100%;
        margin-left: 1px;
    }
}

/* Landscape phones and down */

@media (max-width: 480px) {}