.button {
  position: relative;
  height: 50px;
  padding: 0 45px 0 20px; /* icon will overlap padding on right */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffffff;
  background-color: #ff4e54;
  overflow: hidden;
  border-radius: 25px;
}

.button .button__text {
  color: #fff;
  font-weight: 600;
  z-index: 1;
  transition: all 0.3s;
}

.button .button__icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background-color: #EC1C23;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.button .svg {
  width: 20px;
  fill: #fff;
}

.button:hover {
  background: #EC1C23;
}

.button:hover .button__text {
  color: transparent;
}

.button:hover .button__icon {
  width: 100%;
  right: 0;
  justify-content: center;
}

.button:active .button__icon {
  background-color: #911115;
}

.button:active {
  border: 1px solid #911115;
}

@media (max-width: 768px) {
.pricing-bg{
  display: none;
}
}

