
/* --------------------------------------------------------------------------- */
/* Benefits Layout */
/* --------------------------------------------------------------------------- */

.box-benefits{
	position: relative;
	transition: .5s ease;
}

.box-benefits::before{
	content: "";
    display: inline-block;
    position: absolute;
    left: 20px;
	top: 40px;
    width: 130px;
    height: 100px;
    background-color: #ffd8e4;
    border-radius: 0 65px 65px 0;
}

.box-benefits > div > div{
	padding-left: 160px;
}

a .box-benefits:hover {
	background-color: #ffd8e4;
}

.btn-benefits {
	display: -webkit-box;
    display: -ms--flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 40px 20px 15px;
    align-items: center;
    color: #eb1000;
    text-decoration: none;
    background-color: #fff;
    box-shadow: 2px 2px 4px #ddd;
    transition: all .5s ease;
    position: relative;
	border: solid 10px #ede8f3;
	position: relative;
}

.btn-benefits::before {
	content: "";
	position: absolute;
	top: calc(50% - 50px);
	left: 0;
	width: 110px;
	height: 100px;
	background-color: #ffd8e4;
	border-radius: 0 50px 50px 0;
    transition: .5s ease;
}

.btn-benefits .img-wrap {
    position: relative;
    display: inline-block;
  }

.btn-benefits img {
    display: block;
    height: auto;
    vertical-align: bottom;
	width: 70px;
    margin-right: 50px;
	z-index: 2;
    transition: .5s ease;
}

.btn-benefits .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.btn-benefits:hover .img-hover {
    opacity: 1;
}

.btn-benefits:hover .img-normal {
    opacity: 0;
}

.btn-benefits p {
    font-size: 20px;
    font-weight: 700;
	transition: all .5s ease;
}
.btn-benefits p span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all .5s ease;
}

.btn-benefits:not(.no-link):after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #eb1000;
    transition: right 0.5s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
}

.btn-benefits:not(.no-link):hover {
    border: solid 10px #ffd8e4;
}

.btn-benefits:not(.no-link):hover:before {
    background-color: #f10900;
}

.btn-benefits:not(.no-link):hover:after {
    right: 15px;
}

/* --------------------------------------------------------------------------- */
/* Responsive Setting */
/* --------------------------------------------------------------------------- */

@media only, screen and (max-width: 768px) {
	
	.box-benefits a{
		display: block;
		margin: 0 auto 10px;
	}
	
	.box-benefits img{
        margin: 0;
    }
	
	.box-benefits > div{
		flex: inherit;
	}

	.btn-benefits::before {
		top: calc(50% - 30px);
		width: 60px;
		height: 60px;
	}
	
	.btn-benefits img {
		width: 40px;
		margin-left: -8px;
		margin-right: 25px;
		z-index: 2;
	}

}/*max768*/

