.main-tarot-cards{
    /* background-color: aliceblue; */ 
    padding: 20px;
}
.tarot-card-box{
    width: 100%;
    height: 530px;
    max-width: 750px;
    position: relative;
    margin: auto;
    margin-top: 60px;
}
.tarot-card-box .card-image{
    max-width:33%;
    border-radius:12px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
.tarot-card-box .card-image.card-1 {
    display:inline;
    left:0;
    top:9%;
    position:absolute;
    transform:rotateZ(-15deg);
}
.tarot-card-box .card-image.card-1:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1) rotateZ(-15deg);
    /* z-index:999; */
}
.tarot-card-box .card-image.card-2 {
    display:inline;
    left:66%;
    top:9%;
    position:absolute;
    transform:rotateZ(15deg);
}
.tarot-card-box .card-image.card-2:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1) rotateZ(15deg);
    /* z-index:999; */
}
.tarot-card-box .card-image.card-3 {
    display:inline;
    left:11%;
    top:5%;
    position:absolute;
    transform:rotateZ(-10deg);
}
.tarot-card-box .card-image.card-3:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1) rotateZ(-10deg);
    /* z-index:999; */
}
.tarot-card-box .card-image.card-4 {
    display:inline;
    left:55%;
    top:5%;
    position:absolute;
    transform:rotateZ(10deg);
}
.tarot-card-box .card-image.card-4:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1) rotateZ(10deg);
    /* z-index:999; */
}
.tarot-card-box .card-image.card-5 {
    display:inline;
    left:22%;
    top:2%;
    position:absolute;
    transform:rotateZ(-5deg);
}
.tarot-card-box .card-image.card-5:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1) rotateZ(-5deg);
    /* z-index:999; */
}
.tarot-card-box .card-image.card-6 {
    display:inline;
    left:44%;
    top:2%;
    position:absolute;
    transform:rotateZ(5deg);
}
.tarot-card-box .card-image.card-6:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1) rotateZ(5deg);
    /* z-index:999; */
}
.tarot-card-box .card-image.card-7 {
    display:inline;
    left:33%;
    top:0px;
    position:absolute;
}
.tarot-card-box .card-image.card-7:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /* z-index:999; */
}
@media(max-width: 991px){
    .tarot-card-box{
        height: 480px;
        margin-top: 50px;
    }
}
@media(max-width: 767px){
    .tarot-card-box{
        height: 340px;
        margin-top: 50px;
    }
}
@media(max-width: 505px){
    .tarot-card-box{
        height: 300px;
    }
}
@media(max-width: 445px){
    .tarot-card-box{
        height: 280px;
    }
}
@media(max-width: 420px){
    .tarot-card-box{
        height: 250px;
    }
}
@media(max-width: 390px){
    .tarot-card-box{
        height: 230px;
    }
}
@media(max-width: 360px){
    .tarot-card-box{
        height: 200px;
    }
}