.pay-earn p {
    max-width: 800px;
}
.pay-options {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 75px;
    padding: 30px;
}
.pay-earn {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
         padding: 0 0 30px 0;
    width: 100vw;
    position: relative;
    margin-right: -50vw;
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
}
.pay-earn h2{
 color: #264822;
}

.pay-earn .text__bold {
    color: #ffd33f;
}

.option {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    padding: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.option>div {
    flex: 1 1 50%;
    background-color: #fff;
    height: 100%;
    padding: 40px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.option img {
    flex: 1 1 50%;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    position: static;
    z-index: 1;
}
.pay-options .option:nth-child(even) {
    flex-direction: row-reverse;
}

.pay-options {
    background-color: #eaf4e5;
}
.pay-options .option:first-child {
    margin-top: 16px;
    margin-bottom: 16px;
}

.addresses {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    justify-items: center;
}

@media (min-width: 576px) {
    .addresses {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .pay-options .option {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 25px;
    }
    .option--full {
        grid-column: 1 / -1;
        display: flex;
        width: 100%;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
    .option--full > div {
        width: 100%;
        max-width: 100%;
    }
}