.guides-payment-section {
    width: calc(100% - 2 * 2.778vw);
    padding: 10.417vw 2.778vw;
    background-color: #000;
}

.guides-payment-cards {
    display: flex;
    justify-content: center;
    gap: 1.667vw;
}

.guides-card {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.333vw;
    border-top-left-radius: 3.472vw;
    border-bottom-right-radius: 3.472vw;
}

.guides-card-light {
    background-color: #f1f1f1;
    color: #000;
}

.guides-card-orange {
    background-color: #ff5900;
    color: #fff;
}

.guides-card-title {
    margin: 0;
    font-family: var(--title-font);
    font-size: 2.917vw;
    font-weight: 500;
    font-style: normal;
    line-height: 110%;
    letter-spacing: -2.5%;
    text-transform: uppercase;
    color: black;
}

.guides-card-light .guides-card-title span {
    color: #ff5900;
}
.guides-card-orange .guides-card-title span {
    color: #fff;
}

.payment-gateway-card-title {
    display: flex;
    flex-direction: column;
    color: #000;
}

.payment-gateway-card-title span {
    color: #fff;
}

.guides-card-description {
    margin: 1.667vw 0 3.264vw;
    font-family: var(--base-font);
    font-size: 1.111vw;
    font-weight: 500;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
}
.guides-card.guides-card-light .guides-card-description {
    color: black;
}
.guides-card.guides-card-orange .guides-card-description {
    color: white;
}

.guides-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.2222vw;
}
.guides-card-bottom .guides-chevrons img {
    max-width: 5vw;
    width: 100%;
}

.guides-chevrons {
    position: relative;
    display: flex;
    align-items: center;
    width: 4.167vw;
    height: 3.472vw;
}

.guides-chevrons span {
    width: 2.083vw;
    height: 2.083vw;
    border-top: 0.347vw solid;
    border-right: 0.347vw solid;
    transform: rotate(45deg);
}

.guides-chevrons span {
    margin-left: -0.833vw;
}

.guides-chevrons-dark span {
    border-color: #000;
}

.guides-chevrons-light span {
    border-color: #fff;
}

.guides-card-button {
    display: flex;
    align-items: center;
    height: 3.472vw;
    padding: 0 1.25vw;
    border-radius: 0.278vw;
    min-width: 14.6944vw;

    font-family: var(--base-font);
    font-size: 0.903vw;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.4s,
        background-color 0.4s;
}

.guides-card-button::after {
    content: "";
    flex-shrink: 0;
    width: 1.3vw;
    height: 1.2vw;
    margin-left: 0.694vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    /* transition: background-image 0.4s; */
}

.guides-button-orange {
    background-color: #ff5900;
    color: #fff;
}

.guides-button-orange::after {
    background-image: url("/wp-content/themes/pmtech/pages/payments-catalog/payments-single/assets/img/white-arrow.svg");
}
/* 
.guides-button-orange:hover {
    color: #000;
}

.guides-button-orange:hover::after {
    background-image: url("/wp-content/themes/pmtech/pages/payments-catalog/payments-single/assets/img/black-arrow.svg");
} */

.guides-button-dark {
    background-color: #000;
    color: #fff;
}

/* .guides-button-dark::after {
    background-image: url("/wp-content/themes/pmtech/pages/payments-catalog/payments-single/assets/img/globe.svg");
} */

/* .guides-button-dark:hover {
    background-color: #fff;
    color: #000;
} */

/* .guides-button-dark:hover::after {
    background-image: url("/wp-content/themes/pmtech/pages/payments-catalog/payments-single/assets/img/black-globe.svg");
} */

@media screen and (max-width: 960px) {
    /* guides */

    .guides-payment-section {
        width: 100%;
        padding: 27.692vw 0 20.513vw;
    }

    .guides-payment-cards {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 6.154vw;
    }

    .guides-card {
        width: calc(100% - 2 * 6.154vw);
        padding: 6.154vw;
        border-top-left-radius: 7.692vw;
        border-bottom-right-radius: 7.692vw;
    }

    .guides-card-title {
        font-size: 6.179vw;
        letter-spacing: -0.025em;
    }

    .guides-card-light .guides-card-title {
        max-width: 78.205vw;
    }

    .guides-card-description {
        width: 100%;
        margin: 5.128vw 0 8.205vw;
        font-size: 3.077vw;
        line-height: 130%;
    }

    .guides-card-bottom {
        align-items: center;
        width: 100%;
        margin-top: 8.205vw;
    }

    .guides-card-orange .guides-card-bottom {
        /* margin-top: 0; */
    }

    .guides-chevrons {
        width: 11.282vw;
    }

    .guides-chevrons span {
        width: 3.128vw;
        height: 3.128vw;
        margin-left: -1.538vw;
        border-top-width: 1.026vw;
        border-right-width: 1.026vw;
    }

    .guides-chevrons span:first-child {
        margin-left: 0;
    }

    .guides-card-button {
        justify-content: center;
        width: 64.103vw;
        height: 12.308vw;
        padding: 0 3.077vw;
        border-radius: 1.026vw;
        font-size: 2.564vw;
        line-height: 110%;
        white-space: nowrap;
    }

    .guides-card-button::after {
        width: 4.103vw;
        height: 4.103vw;
        margin-left: 2.051vw;
    }
}