
.mvp-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #fff !important;
    text-decoration: none !important;
    padding:30px 30px 30px 282px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1;
	margin-left: calc(-50vw + 50%);  /* container se bahar nikalna */
    width: 80%; 
}

/* hover effect */
.mvp-btn:hover {
background-color:black;
}

.mvp-btn:hover .mvp-text,
.mvp-btn:hover .mvp-text small {
    color: #fff !important;
}

.mvp-text {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.3;
    color: black;
    pointer-events: none; 
	display:flex;
	flex-direction:column;
	gap:10px;
}

.mvp-text small {
    display: block;
    font-weight: normal;
    font-size: 18px;
    color: black;
}

.mvp-icon {
    font-size: 170px;
    font-weight: bold;
    color: transparent;                 /* no fill */
    -webkit-text-stroke: 2px #f25000;   /* red outline */
    line-height: 1;
    margin-left: 20px;
    pointer-events: none;
}

/* Hover effect: outline white */
.mvp-btn:hover .mvp-icon {
    -webkit-text-stroke: 2px #f25000;
}


@media screen and (max-width: 800px) {
.mvp-btn {
    padding:20px;
	margin-left: calc(0);  /* container se bahar nikalna */
    width: 100%; 
	margin:0px;
}

}