html,
body {
    height: 100%;
    background: #f8f2ed;
}

@font-face {
    font-family: 'indivisible-regular';
    src: url('../fonts/Indivisible-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'indivisible-semibold';
    src: url('../fonts/Indivisible-SemiBold.woff2') format('woff2');
}

.indivisible-regular {
    font-family: 'indivisible-regular', Fallback, sans-serif;
}

.indivisible-semibold {
    font-family: 'indivisible-semibold', Fallback, sans-serif;
}

.gradient-custom {
    /* background: #008148; */
    /* background: -webkit-linear-gradient(to top, rgba(0, 78, 57, 1.0), rgba(0, 78, 57, 1.0)); */
    background: linear-gradient(to top, #f8f2ed, #f8f2ed)
}

/* 
.gradient-custom {
    background: #000000;
    background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 1.0), rgba(255, 174, 0, 0.4));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(255, 174, 0, 0.3))
} */

.main-container {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in;
}

.main-cards {
    max-height: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}

.card {
    background-color: #f8f2ed !important;
    --mdb-card-border-radius: 0 !important;
    --mdb-card-box-shadow: 0 !important;
    
}

.card-cursor-pointer {
    cursor: pointer;
}

.card-body {
    padding-bottom: 0px !important;
}

.card-title,
.card-footer {
    color: white !important;
}

.card-footer {
    --mdb-card-footer-border-color: #f8f2ed !important;
    --mdb-card-footer-border-width: 0 !important;
    padding-top: 0px !important;
}

.not-found-href {
    color: #e0ac00 !important;
}

.not-found-href:hover {
    color: #e2c256 !important;
}

.nowrap {
    white-space: nowrap;
}



.image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25), 0 3px 10px 6px rgba(0, 0, 0, 0.22) !important;
    transition: opacity 0.7s ease-out, transform 0.1s ease-out;
}

.image-hover:hover {
    opacity: 1;
}

.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The Image container */
.img-hover-zoom {
    height: 100%;
    /* Modify this according to your need */
    overflow: hidden;
    /* Removing this will break the effects */
}

/* Zoom-n-rotate Container */
.img-hover-zoom--zoom-n-rotate {
    transition: transform .5s ease-in-out;
}

/* The Transformation */
.img-hover-zoom--zoom-n-rotate:hover {
    /* transform: scale(1.05) rotate(4deg); */
    transform: rotate(4deg);
}

.footer {
    position: fixed;
    bottom: 0px;
    z-index: 5000;
    width: 100%;
    height: 20px;
    background-color: #f8f2ed;
    color: black;
}

@media (min-width: 300px) and (max-width: 1000px) {
    .card {
        min-width: 10rem;
    }
}

@media (min-width: 1000px) {
    .card {
        min-width: 10rem;
    }
}

@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
    .card {
        width: 10rem;
    }
}
