* {
    box-sizing: border-box;
}
/*html, body {
    width: 100%;
    height: 100%;
}
body {
    padding: 1rem 0;
    background: #f9f9fb;
}*/
.row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

.card {
    width: 29.5%;
    display: inline-block;
    margin: 1rem;
    border-radius: 4px;
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, .05), 0 1px 2px 0 rgba(0, 0, 0, .2);
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.card:hover, .card.hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .3), 0 0 1px 0 rgba(0, 0, 0, .25);
}
.card:hover .card-content, .card.hover .card-content {
    box-shadow: inset 0 3px 0 0 #ccb65e;
    border-color: #ccb65e;
}
.card:hover .card-img .overlay, .card.hover .card-img .overlay {
    background-color: rgba(47, 78, 145, .65);
    transition: opacity 0.2s ease;
    opacity: 1;
}
.card-img {
    position: relative;
    height: 224px;
    width: 100%;
    background-color: #fff;
    transition: opacity 0.2s ease;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.card-img .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
}
.card-img .overlay .overlay-content {
    line-height: 224px;
    width: 100%;
    text-align: center;
    color: #fff;
}
.card-img .overlay .overlay-content a {
    color: #fff !important;
    padding: 0 2rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .4);
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}
.card-img .overlay .overlay-content a:hover, .card-img .overlay .overlay-content a.hover {
    background: rgba(47, 78, 145, .7);
    border-color: rgba(47, 78, 145, .9);
}
.card-content {
    width: 100%;
    min-height: 200px;
    background-color: #fff;
    border-top: 1px solid #e9e9eb;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 1em 1em;
    transition: all 0.2s ease;
}
.card-content a {
    text-decoration: none;
    color: #202927;
}
.card-content h2, .card-content a h2 {
    font-size: 1em !important;
    line-height: 1.25em !important;
    font-weight: 500;
    padding: 0em !important;
    border-bottom: 1px solid ;
    color: rgba(47, 78, 145, .9);
}
.card-content p, .card-content a p {
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 500;
    min-height: 7.5em;
   /* border-bottom: 1px solid #e9e9eb;*/
    min-width: 100%;
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    color: rgba(32, 41, 28, .8);
}
.card-title {
    font-size: 1em;
    line-height: 1.25em;
    font-weight: 700;
    color: rgba(47, 78, 145, .9);
    padding-top: 1em;
    min-height: 5em;
    max-height: 5em;
}

.description{
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 500;
    text-align: justify;
    min-height: 12em;
    max-height: 12em;
    padding-top: 1em;
    color: rgba(32, 41, 28, .8);
}

.readmore {
    background-image: linear-gradient(to bottom, transparent 0%, #fff 30%);
    position:absolute;
    width:100%;
    height:6em;
    font-weight:bold;
    bottom: 0em;
    left: 0px;
    text-align: center;
}

.readmore span {
    position: absolute;
    width: 50%;
    font-size: 1em;
    line-height: 1em;
    font-weight: 500;
    color: #fff;
    background-color: #2f4e91;
    border-radius: 25px;
    height: 40px;
    line-height: 40px;
    bottom: 1.25em;
    left: 25%;
    right: 25%;
    cursor: pointer;
}
.readmore span:hover {
    background-color: rgba(47, 78, 145, .7);
}

.readmore span:active {
    background-color: rgba(47, 78, 145, .7);
    outline: none;
    border: none !important;
}
@media screen and (max-width: 960px) {
    .card-wrapper {
        min-width: 100%;
        max-width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .card {
        min-width: 300px !important;
        max-width: 300px !important;
    }
}


/*##### Menu by Kruse #####*/
#menuTrigger.open span {
    background-color: #ffffff;
}
@media screen and (max-width: 960px) {
    div#c-1 .menuWrapper .ed-menu ul li a.active {
        background: #ffffff;
        color: #2f4e91;
    }
}
div#c-1 .menuWrapper {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: red;
    position: fixed;
    top: 0;
    bottom: auto;
//height: 89px;
    padding: 0;
    width: 100%;
    display: block;
    z-index: 99;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    z-index: 101;
    background: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
.img-left {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 20px rgba(0,0,0, .5);
}
.img-right {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 20px rgba(0,0,0, .5);
}
.news-item {
    margin-bottom: 20px;
}
.news-item:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    div#c-1 .teamSection {
        text-align: left !important;
    }
    .img-left, .img-right {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
    div#c-1 .menuWrapper h1 {
        margin: 0;
        text-align: left;
        line-height: normal;
    //position: absolute;
        top: 37px;
        font-size: 20px;
        line-height: normal;
        padding: 4px 15px;
    }
}
