select {
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    /* background-image: none; */
    background: linear-gradient( 
135deg , #003679 0%, #ffbb38 100%);
}
.select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    line-height: 3;
    background: #2c3e50;
    overflow: hidden;
    border-radius: .25em;
    width: 50%;
    margin: 0 auto;
    top: 10px;
    margin-bottom: 25px;
}
select option {
    background-color: #003679;
    font-family: "Montserrat", sans-serif;
}
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #ffbb381f;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}
@media (max-width: 768px) {
    .select {
        width: 100%;
    }
}