/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (max-width: 601px) {
    .vueperslide__title {
        color:lavenderblush;
        font-weight: 600;
        font-size: 18px;
        text-align: left;
        padding-right: 25%;
    }
}
@media screen and (max-width: 601px) {
    .vueperslide__content {
        font-size: 12px;
        font-weight: 600;
        color:lavenderblush;
        text-align: left;
        padding-right: 15%;
    }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (min-width: 600px) {
    .vueperslide__title {
        color:lavenderblush;
        font-weight: 600;
        font-size: 35px;
        text-align: left;
        padding-right: 40%;
    }
}
@media screen and (min-width: 600px) {
    .vueperslide__content {
        font-size: 18px;
        font-weight: 600;
        color:lavenderblush;
        text-align: left;
        padding-right: 30%;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
section {
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.column {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
}
.card {
    width: 100%;
    height: 100%;
    padding: 1.2em 0.9em;
    background: linear-gradient(#ffffff 50%, #2c7bfe 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
}
.card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
}
.card p {
    color: #575a7b;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}
.icon-wrapper {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 18px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
}
.card:hover {
    background-position: 0 100%;
}
.card:hover .icon-wrapper {
    background-color: #ffffff;
    color: #2c7bfe;
}
.card:hover h3 {
    color: #ffffff;
}
.card:hover p {
    color: #f0f0f0;
}
@media screen and (min-width: 768px) {
    section {
        padding: 0 2em;
    }
    .column {
        flex: 0 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 992px) {
    section {
        padding: 1em 3em;
    }
    .column {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

/* Add to your main CSS file */
.payment-step {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #f9f9f9;
    margin-bottom: 20px;
}

.payment-step h4 {
    margin-bottom: 15px;
    color: #333;
}

#paypal-button-container {
    border: 2px solid red !important;
    padding: 20px !important;
}