
.karticky {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;

    background-position: center;
}

.karticky .karticka {
    width: 30%;
    height: 550px;
    margin: 20px;

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

    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    filter: grayscale(100%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 30px inset, rgba(0, 0, 0, 0.3) 0px 18px 6px inset;
}

.karticka .schovate {
    max-height: 0;

    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    overflow: hidden;
    transition: all 0.4s ease-in-out;

}

.karticka .schovate p {
    color: #FFFFFF;
    width: 90%;
    text-align: center;
    font-size: 1.2rem;
    margin: 15px 0;
}

.karticka .schovate a {
    width: 50%;
    border-radius: 100px;
    background-color: #b38b39;
    margin: 10px 5px;
    color: #FFFFFF;   

    text-align: center;
    padding: 15px 25px;
    font-size: 16px;

    transition: all 0.5s ease-in-out;
}

.karticka .schovate a:hover {
    background-color: rgba(179, 139, 57, 0.8);
    border: 1px solid #b38b39;
    color: #FFFFFF;
}

.karticky .karticka:hover {
    box-shadow: none;
    filter: none;
    cursor:grab;
}

.karticky .karticka:hover .schovate {
    max-height: 400px;
    width: 80%;

    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(44px);
    -webkit-backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.karticky .karticka:hover h3 {
    font-size: 2.6rem;
}

.karticky .karticka h3 {
    font-family: 'Pathway Gothic One', 'BenchNine';
    transition: all 0.5s ease-in-out;
    font-size: 2.3rem;
    color: #FFFFFF;
    font-weight: 300;
    z-index: 1;
    text-shadow: 
        0px 2px 5px rgba(12, 12, 12, 0.2),
        0px 2px 5px rgba(12, 12, 12, 0.2),
        0px 2px 5px rgba(12, 12, 12, 0.2)
    ;
    text-align: center;
}

.karticky .karticka:hover h3 {
    margin: 20px 0;
}

.kopka {
    display: flex;
    flex-direction: column;	
    justify-content: center;
    align-items: center;				
}

.kopka a {
    margin-top: 0 !important;
    width: 80% !important;
}

@media only screen and (min-width: 1930px) { 
	 
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	.karticky {
        flex-direction: column;
    }

    .karticky .karticka {
        width: 90%;
    }
}
@media screen and (max-width: 959px) {
	.karticky {
        flex-direction: column;
    }

    .karticky .karticka {
        width: 90%;
    }
    .karticky .karticka:hover .schovate {
        height: 350px;
    }
    .kopka {
        flex-direction: column;
    }
    .karticka .schovate .kopka a {
        width: 80%;
    }

}