main{
    margin: 0;
    padding: 0;
}

.hero-banner{
    height: 20vh;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--dark-blue);
}
.hero-banner > h1{
    font-size: 3rem;

    color: white;
}

.memberships-section{
    width: 100%;
    height: fit-content;

    padding: 0px 0px 20px 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgb(255, 255, 255);
}
.memberships-section > p{
    width: 90%;
    font-size: 12px;
    color: gray;
}

.memberships-container{
    width: 90%;
    height: fit-content;

    padding: 5% 0px 5% 0px;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    gap: 50px;

    background-color: rgb(255, 255, 255);
}

.memberships-item{
    width: 70%;
    height: 75vh;

    position: relative;

    padding: 2% 0px 2% 0%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 20px;

    overflow: hidden;

    background-color: white;

    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.memberships-item:nth-child(2){
    scale: 1.1;
}

.memberships-item-recommendation{
    border: 1px solid var(--dark-blue);
    border-radius: 15px;

    align-self: flex-start;

    padding: 0px 10px 0px 10px;
    margin-bottom: -10px;
}
.memberships-item-recommendation > p{
    font-size: 10px;
    font-weight: bold;
    color: var(--dark-blue);
}

.memberships-item-text{
    width: 90%;
    height: 100%;


    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
}
.memberships-item-text > h2{
   font-size: 2rem;
    text-align: center;

   margin-bottom: -15px;
}
.memberships-item-text > h4{
    color: var(--dark-blue);

    margin-bottom: -10px;
}
.memberships-item-text > p{
    text-align: center;
}

.memberships-item-text > ul{
    list-style: none;
    padding-left: 0px;
    margin-left: 0px;
}
.memberships-item-text > ul li {
    position: relative;
    padding-left: 35px;

    margin-bottom: 15px;
}
.memberships-item-text > ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    
    /* Hier kannst du die Größe beliebig anpassen: */
    width: 25px;  
    height: 25px; 
    
    background-image: url('Images/Bestätigungs_harken_blau.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.memberships-item > button{
    height: 40px;
    width: 80%;

    border-radius: 20px;
    border: 1px solid var(--dark-blue);
    
    color: white;
    background-color: var(--dark-blue);

    transition: background-color .3s ease-in-out;
}
.memberships-item > button:hover{
    cursor: pointer;
    border: 1px solid var(--light-blue);
    background-color: var(--light-blue);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1350px) {
    .hero-banner > h1{
        font-size: 1.5rem;
        text-align: center;
        color: white;
    }
    .memberships-section{
        padding-bottom: 0px;
    }
    
    .memberships-container{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .memberships-item{
        width: 90%;
        height: fit-content;

        padding-bottom: 8%;
    }
    .memberships-item:nth-child(1){
        order: 2;
    }
    .memberships-item:nth-child(2){
        scale: 1;
        order: 1;
    }
    .memberships-item:nth-child(3){
        order: 3;
    }
    .memberships-item-recommendation{
        margin-top: 15px;
    }
}