/*
 *  Copyright (c) 2023 Adam Mroczek - warsaw.media <mroczek.online@gmail.com>
 */


.item.copy {
    position: absolute!important;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px!important;
    opacity: .4;
}
.item.login {
    background: rgba(100,100,100,.4)!important;
}

.main-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-top: 80px;
}
.main-cards > .item-card {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 3px 1px rgba(0,0,0,.2);
    transition: all .3s ease;
    width: 300px;
}
@media (max-width: 768px) {
    .main-cards {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .main-cards > .item-card {
        width: 100%;
    }
    .main-cards .custom-subheader {
        margin-top:0!important;
    }
}
.main-cards > .item-card:hover {
    box-shadow: 0 2px 8px 1px rgba(0,0,0,.2);
}
.main-cards > .item-card .custom-subheader {
    color:rgba(150,150,150,1)!important;
}
.main-cards > .item-card:hover .custom-subheader {
    color:rgba(50,50,80,1)!important;
}

.main-messages {
    margin: 24px auto;
    max-width:980px;
}