* {
    margin: 0;
    padding: 0;
}
.flex-card-container{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card-container {
    position: relative;
    width: 405px;
    height: 540px;
    margin: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    align-items: center;
    margin-bottom: 50px;
}

.card-container .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0 !important;
}

.card-container .photo {
    position: absolute;
    top: -30px;
    width: 120%;
    height: 120%;
    border-radius: 0%;
    overflow: hidden;
    transition: 0.5s;
}

.card-container:hover .photo {
    margin-top: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.card-container .photo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 80%, #222322);
}


/* .card-container h1 {
    position: absolute;
    top: 600px;
    transition: 0.5s;
} */

.card-container h1 {
    margin-top: 250px;
    /* width: 80%; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
    font-family: var(--secondary-font);
    font-size: 40px;
    text-align: center;
    /* margin-bottom: 20px; */
    /* padding-bottom: 20px; */
}

.card-container h2 {
    margin-top: 30px;
    width: 80%;
    border-bottom: 1px solid #000000;
    /* font-family: var(--main-font); */
    font-weight: 900;
    font-size: 25px;
    text-align: center;
    /* margin-bottom: 20px; */
    padding-bottom: 20px;
}

.card-container p {
    margin-top: 10px;
    text-align: center;
    width: 90%;
    /* font-family: var(--main-font); */
    font-weight: 900;
    /* text-indent: 32px; */
    font-size: 20px;
    line-height: 30px;
    /* margin-bottom: 55px; */
    /* margin-top: -20px; */
}

.SZB {
    color: rgb(255, 255, 255);
    font-family: var(--secondary-font);
    font-size: 100px;
    /* text-align: center; */
    /* text-indent: 40px; */
    line-height: 50px;
    letter-spacing: 2px;
    margin-top: 70px;
    margin-bottom: 30px;
    text-align: center;
    /* z-index: ; */
    position: relative;
}


@media (max-width: 768px) {

    .SZB {
    color: rgb(255, 255, 255);
    font-family: var(--secondary-font);
    font-size: 8vw;
    /* text-align: center; */
    /* text-indent: 40px; */
    line-height: 50px;
    letter-spacing: 2px;
    margin-top: 70px;
    margin-bottom: 30px;
    text-align: center;
    /* z-index: ; */
    position: relative;
    }

    .card-container {
    position: relative;
    width: 80vw;
    height:auto;
    margin: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    align-items: center;
    margin-bottom: 50px;
    }
}

