/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@keyframes blink-animation {
	to {
	visibility: hidden;
	}
}

@-webkit-keyframes blink-animation {
	to {
	visibility: hidden;
	}
}

.mainContent {
    width: 90%;
    /*margin: 2.5em auto;*/
    /*background: #fff;*/
    /*padding: 1em;*/
    margin-bottom: 15px;
}

.contactFrm h4 {
    font-size: 1em;
    color: #252525;
    margin-bottom: 0.5em;
    font-weight: 300;
    letter-spacing: 5px;
}

.contactFrm input[type="text"], 
.contactFrm input[type="email"] {
    width: 70%;
    outline: none;
    font-size: 0.9em;
    padding: .7em 1em;
    border: 1px solid #000;
    -webkit-appearance: none;
    display: block;
    /*margin-bottom: 1.2em;*/
}

.contactFrm textarea {
    resize: none;
    width: 93.5%;
    font-size: 0.9em;
    outline: none;
    padding: .6em 1em;
    border: 1px solid #000;
    min-height: 10em;
    -webkit-appearance: none;
}

.contactFrm input[type="submit"] {
    outline: none;
    color: #FFFFFF;
    padding: 0.5em 0;
    font-size: 1em;
    margin: 1em 0 0 0;
    -webkit-appearance: none;
    background: #006faa;
    transition: 0.5s all;
    border: 2px solid #006faa;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    -moz-transition: 0.5s all;
    width: 20%;
    cursor: pointer;
}

.contactFrm input[type="submit"]:hover {
    background: none;
    color: #006faa;
}

.contactFrm input[type="reset"] {
    outline: none;
    color: #000;
    padding: 0.5em 0;
    font-size: 1em;
    font-weight: bold;
    margin: 1em 0 0 0;
    -webkit-appearance: none;
    background: #ecf0f1;
    transition: 0.5s all;
    border: 2px solid #bdc3c7;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    -moz-transition: 0.5s all;
    width: 20%;
    cursor: pointer;
}

.contactFrm input[type="reset"]:hover {
    background: none;
    color: #006faa;
}


.wr_item.kontak {
    display:flex;
    justify-content:flex-start;
    flex-wrap: wrap;
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.wr_item.umkm {
    display:flex;
    justify-content:flex-start;
    flex-wrap: wrap;
}
.umkm .item {
    width: 32.8%;
    margin:10px .2%;
    /*background: #bdc3c7;*/
    align-self: stretch;
    border: 1px solid #999;
    
}
.umkm .item:hover {
    background-image: linear-gradient(-20deg, #00cdac 0%, #8ddad5 100%);
    
}
.umkm .ipicture {
    height: 250px;
    /* transition: background .25s ease-out;*/
    background:url('') center/70% no-repeat;
}
.umkm .ipicture:hover {
   /* background-size:80%;
  transform: rotate(360deg);
  -ms-transform: rotate(360deg); 
  -webkit-transform: rotate(360deg); 
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s  ease-in-out;
  -o-transition: all .3s  ease-in-out;
  -ms-transition: all .3s  ease-in-out;
  transition: all .3s ease-in-out;*/
}

.umkm .iname {
    text-align:center;
    font-weight:bold;
    padding: 15px;
    letter-spacing: .2em;

}

.btn_goto{
	display: block;
	position: relative;
	height: 30px;
	padding: 7px;
	margin: 10px 20px;
	background: #C30;
	float: right;
	color:white;
	letter-spacing: .2em;
	line-height: 14px;
	vertical-align: middle;
}
.btn_goto:hover{
	color:white;
	letter-spacing: .1em;
}
.btn_goto::after{
	content: "";
	display: block;
	position: absolute;
	right: -20px;
	top: -5px;
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #C30;
}

/*============================HALAMAN UMKM===================================*/

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/* untuk ukuran 1080px kebawah */
@media screen and (max-width: 1080px) {
	
	.product .item {
	    width:31.6%;
	    margin:10px .5%;
	}
	.umkm .item {
	    width: 48.6%;
	    margin:10px .5%;
	}
	
}


/* untuk ukuran layar 700px kebawah */
@media screen and (max-width: 768px) {
	.umkm .item {
	    width: 98.6%;   
	}

	.umkm .ipicture {
	    background:url('') center/35% no-repeat;
	}

    .umkm .ipicture:hover {
       /* background:#fff url('') center/60% no-repeat;*/
    }

    .umkm1 .ipicture {
        width: 99%;
        height: 200px;
        background-size: 50%;
    }
    .umkm1 .ipicture:hover {
        background-size: 60%;
    }

}


