/*s_sec_dvd*/
.s_sec_dvd {
    padding: 40px 0;
}
@media (max-width:768px){
    .s_sec_dvd {
        padding: 20px 0;
    }
}


/* wBox */
.wBox {
    border-radius: 20px;
    position: relative;
    padding: 30px 20px;
    background-color: #f7f7f7;
	
	-webkit-transition: all 0.35s ease-out;
	-moz-transition: all 0.35s ease-out;
	-o-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.wBox:hover {
    background-color: #fff;
	box-shadow: 2px 2px 20px #eaeaea;
}
.wBox .disCnt {
    position: absolute;
    right: -15px;
    top: -5px;
	
	-webkit-transition: all 0.35s ease-out;
	-moz-transition: all 0.35s ease-out;
	-o-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.wBox:hover .disCnt {
    top: -15px;
}
.wBox .disCnt > div {
    display: flex;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    position: relative;
    line-height: 1.1em;
    background: linear-gradient(#ed174d, #c91845);
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 2px;
	box-shadow: 10px 10px 15px #d8d8d8;
    overflow: hidden;
}
.wBox .disCnt > div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#f71b52, #db1849);
    opacity: 0;
	
	-webkit-transition: all 0.35s ease-out;
	-moz-transition: all 0.35s ease-out;
	-o-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.wBox:hover .disCnt > div::after {
    opacity: 1;
}
.wBox .disCnt > div span {
    position: relative;
    z-index: 3;
}
.wBox .disCnt > div strong {
    display: inline-block;
    margin-right: 2px;
}
@media (max-width:600px){
    .wBox .disCnt > div {
        height: 50px;
        width: 50px;
        font-size: 12px;
    }
}