.banner {
    width: 100%;
    margin-bottom: 30px;
}

.wrapper .title {
    font-weight: 500;
    font-size: 24px;
    color: #C49A6C;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper .subtitle {
    text-align: center;
    margin-bottom: 30px;
}

/* .cards {
    max-width: 900px;
    margin: 0 auto;
} */

.cards .card {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cards .card>* {
    width: 50%;
}

.cards .card:nth-child(even) {
    flex-direction: row-reverse;
}

.cards .card .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cards .card .content h3 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #C49A6C;
}

.button-wrap {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.button-wrap a {
    padding: 18px 32px;
    background: #C49A6C;
    color: #fff;
    border: 2px solid #C49A6C;
    border-radius: 2px;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    transition: .3s;
    text-transform: uppercase;
}

.button-wrap a:hover {
    background: transparent;
    color: #C49A6C;
}

@media(max-width: 769px) {
    .cards .card {
        flex-direction: column !important;
    }
    .cards .card>* {
        width: 100%;
    }
    .button-wrap a {
        padding: 12px 24px;
        font-size: 14px;
        line-height: 14px;
    }
}