.btn-brown-gradient {
    background-image: linear-gradient(to right, #8E5E3C 0%, #6A422F 51%, #8E5E3C 100%);
    background-size: 200% auto;
    color: white;
    border: none;
    transition: background-position 0.5s;
}

.text-bg-brown-gradient {
    background-image: linear-gradient(to right, #8E5E3C 0%, #6A422F 51%, #8E5E3C 100%);
    transition: background-position 0.5s;
}

.text-bg-brown-gradient:hover {
    background-position: right center;
}

.btn-brown-gradient:hover {
    background-position: right center;
    color: #fff;
}

.select-striped option:nth-child(even) {
    background-color: #f2f2f2;
}

.select-striped option:nth-child(odd) {
    background-color: #ffffff;
}

option {
    text-transform: capitalize;
}