﻿

.termine {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.termin {
    width: 45%;
    border-radius: 10px;
    position: relative;
      
}

.termin .termin_wrapper {
    background-color: #5691BF;
    height: 190px;
    width: 85%;
    color: white;
    border-radius: 15px;
}

.termin .termin_wrapper span , .termin .termin_wrapper a {
    display: block;
    font-size: 1.5rem;
    width: 80%;
    padding-left: 15px;
    color: white;
 }

.termin .termin_wrapper a {
    font-size:1.2rem;
    position:absolute;
    bottom:10px;
    text-decoration:none;
}

.termin .termin_wrapper img {
    height: 40px;
    position: absolute;
    bottom: 10px;
    display: inline-block;
    left: 55%;
}

.termin .termin_wrapper span.description {
    font-size:.9rem;
    margin-top: 10px;
}


.termin .circle_wrapper {
    height: 190px;
    width: 190px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-size: contain;
    float: right;
    position: absolute;
    border: solid 10px white;
    /* right: 69px; */
    /* position: relative; */
    top: -4px;
    right: 0px;
    background-color: white;
}

.termin h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding-left: 15px;
    padding-top: 10px;
    margin:0px;
    width: 75%;
}

@media screen and (min-width: 360px) and (max-width: 800px) {

    .termin {
        width: 95%;
        margin-bottom:1rem;
    }

    .termin .circle_wrapper {
        display:none;
    }

    .termin .termin_wrapper {
        width: 100%;
    }
}