.call-btn {
    margin-top: 30px;
    margin-bottom: 56px;
}

.flex-center {
    display: flex;
    justify-content: center;
}
.call-btn button {
    background: linear-gradient( 270deg, #FF7F00 0%, #FFB800 100%);
    border-radius: 41px;
    text-transform: uppercase;
    padding: 24px;
    font-family: BeVietnamProBlack;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    animation: pulse 2s ease infinite;
    color: #4B3200;
    box-shadow: rgba(255, 127, 0, 1) 0px 0px 0px 0px;
    min-width: 450px;
    text-align: center;
}
.call-btn button i {
    margin-left: 12px;
    width: 36px;
    height: 36px;
    background-image: url(https://dailyyogaappimage.dailyyoga.com/d4/d7/d4d7de8e01fafeb13dc21c7c26005117.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes pulse {
	100% {
		box-shadow: transparent 0px 0px 0px 14px;
	}
}


@media (max-width: 768px) {
    .call-btn button {
        padding: 16px;
        font-size: 16px;
        max-width: 100%;
        min-width: initial;
        width: 100%;
    }
}