
/* 
    Created on : 31 dic. 2024, 12:07:02
    Author     : d_z_y
*/



.card {
    border-radius: 10px;
    text-align: left;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 100%;
    background-color: transparent;
    border: none;
    height: auto;
    min-height: 450px;
    overflow: hidden;
    margin-bottom: 10px;
}

.card-inner{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 450px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 10px;
}
.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 450px;
    backface-visibility: hidden;
    border-radius: 10px;

}
.card-back {
    background: #c74a05;
    background: -moz-linear-gradient(top,  #c74a05 0%, #fa6400 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c74a05), color-stop(100%,#fa6400));
    background: -webkit-linear-gradient(top,  #c74a05 0%,#fa6400 100%);
    background: -o-linear-gradient(top,  #c74a05 0%,#fa6400 100%);
    background: -ms-linear-gradient(top,  #c74a05 0%,#fa6400 100%);
    background: linear-gradient(to bottom,  #c74a05 0%,#fa6400 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 30px 20px 30px 20px;
    border-radius: 10px;
}
.card-bg-orange .btn-primary{
    position: absolute;
    width: 150px;
    bottom: 15px;
    right: 26px;
    background-color: #282828;
    border-color: #282828;
    color: #ffffff;
    border-radius: 100px;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;

}
.card-bg-orange .btn-primary:hover, .card-bg-orange .btn-primary:not(:disabled):not(.disabled).active, .card-bg-orange .btn-primary:not(:disabled):not(.disabled):active, .show > .card-bg-orange .btn-primary.dropdown-toggle{
    background-color: #000000;
    border-color: #000000;
}
@media (max-width: 768px){
    .carousel-card .carousel {
        padding: 0 0;
    }
    .carousel-card {
        padding-left: 0;
        padding-right: 0;
    }
    .carousel-control-prev, .carousel-control-next{
      display: none;  
    }

}