/* background image */
.block-produk-1 {
    overflow: hidden;
    position: relative;
}
.block-produk-1 .produk-bg {
    background-attachment: fixed;
    background-image: url('/img/bg-no-contrast.png');
    background-position: 0px 0px;
    background-repeat: repeat;
    height: 100%;
    position: absolute;
    width: 100%;
    min-width: 1170px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
.block-produk-1 .md-box {
    background: rgba(255, 255, 255, 0.493);
    position: relative;
    height: 100%;
}

/* Flip Cards CSS */
.card-container {
    perspective: 700px;
    padding-bottom: 3rem;
}
.card-flip {
    position: relative;
    width: 95%;
    transform-style: preserve-3d;
    height: 29rem;
    transition: all 0.5s ease-out;
    background:whitesmoke;
    border: none;
}

.card-flip div {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    height: 100%;
    width: 100%;
    border: none;
}

.card-flip .front {
    position: relative;
    z-index: 1;
    padding-top: .5rem;
}

.card-flip .back {
    position: relative;
    z-index: 0;
    transform: rotateY(-180deg);
}

.card-container:hover .card-flip {
    transform: rotateY(180deg);
}

.card-info-position{
    text-align: center;
    /* padding: 3rem; */
}
.card-info-position img{
    width: 100%;
    height: 90%;
}
.card-info-position a{
    text-decoration: none;
    /* color: #013775; */
    color: #1877f2;
    font-weight: lighter;
}
.card-info-position a:hover{
    /* color: darkgoldenrod;  */
    color:#ebc302;
    font-weight: bolder;
}

.card-flip p{
    margin: .1rem;
    font-style: italic;
}
.card-flip h4{
    font-size: larger;
    font-weight: bolder;
    margin-top: .8rem;
    /* color: #013775; */
    color: #1877f2;
    font-weight: bolder;
    text-decoration: underline;
}
.card-flip b{
    /* color: darkgoldenrod;  */
    color: #ebc302;
    font-weight: bolder;
}
.img-place img{
    width: 30rem;
    height: 20rem;
}

.pengurus{
    padding-top: 2.3rem;
}

@media (max-width: 768px){
    .img-place img{
        width: 30rem;
        height: 20rem;
    }
}

@media (max-width: 576px){ 
    .img-place img{
        width: 82%;
        height: 50%;
    }
}


