@charset "utf-8";
/* CSS Document */



#gruppe ul {
    text-align: left;
    padding:8px 20px 20px 20px;

}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    margin: 50px;
    padding: 0px 20px;
}

.pricing-table {
    -webkit-box-shadow: 1px 2px 20px 11px rgba(126,126,126,.5);
    -moz-box-shadow: 1px 2px 20px 11px rgba(126,126,126,.5);
    box-shadow: 1px 2px 20px 11px rgba(126,126,126,.5);
    text-align: center;
    padding: 30px 0px;
    border-radius: 5px;
    position: relative;
    background: #FFFFFF;
    font-weight: bold;
}

.pricing-table .head {

    transition: all 0.5s ease;
}

.pricing-table .head .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content .price {
    background: linear-gradient(to right, #A7C4A0 10%, #7B8CDE 90%);
    width: 90px;
    height: 90px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    margin-top: -50px;
    transition: all 0.5s ease;
    box-shadow: 0px 0px 12px #2b97c9;
}

.pricing-table:hover .content .price {
    transform: scale(1.2);
}


.pricing-table .content .price h1{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

#gruppe h4 {
    color: #BDE351;
    font-size: 24px;
}

.paketname {
    font-size: 32px;
    background:  #BDE351;
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 10px;
}


#gruppe .detailangaben p {
    text-align: left;
    font-weight: bold;
}

.detailangaben {
    padding: 20px;
}

#gruppe {
    padding: 70px 0;
}


#gruppe li {
    list-style: disc;
    margin-left: 20px;
}

#gruppe li::marker {
  color: #BDE351;
}

.gruppenpreis {
    position: absolute;
    bottom: 0;
    left: 0;
        font-size: 30px;
    background:  #BDE351;
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    width: 100%
    
}



.pricing-table .content ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-top: 13px;
}

.pricing-table .content ul li {
    margin: 20px 0px;
    font-size: 15px;
}

.pricing-table .content .buy-now {
    background: linear-gradient(to right, #A7C4A0 10%, #7B8CDE 90%);
    border-radius: 50px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.pricing-table .btn.round {
    color: #fff;
    padding: 14px 40px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    border: none;
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
    margin: 2px;
    z-index: 9999;
}

.pricing-table .btn.round {
    z-index: 50;
    color: #333;
}

.pricing-table:hover .btn.round {
	color:#fff !important;
}       

.pricing-table .btn.round:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 50px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    transition: all 0.4 linear;
    width: 100%;
    z-index: -1;
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
}

.pricing-table:hover .btn.round:after {
    opacity: 0;
    transform: scale(0);
}

.fa-circle-check {
    color: #54d994;
}

.fa-circle-xmark {
    color: #e23c3c;
}


 
 @media screen and (max-width:1000px){
    .wrapper{
         grid-template-columns: 1fr;
     } 
 }