/* =========================================   CUSTOM SELECT   ========================================= */   .custom-select{    position:relative;    width:100%;}.custom-select-trigger{    width:100%;    min-height:42px;    padding:8px 16px;    border:1px solid #fff;    border-radius:10px;    background:#000;    color:#fff;    font-size:1rem;    font-weight:400;    box-sizing:border-box;    display:flex;    align-items:center;    justify-content:space-between;    cursor:pointer;}.custom-select-arrow{    margin-left:12px;    font-size:1rem;    line-height:1;}.custom-select-options{    display:none;    width:100%;    margin-top:4px;    border:1px solid #fff;    border-radius:10px;    background:#000;    color:#fff;    box-sizing:border-box;}.custom-select.open .custom-select-options{    display:block;}.custom-select-options div{    padding:8px 16px;    font-size:1rem;    font-weight:400;    line-height:1.4;    cursor:pointer;}.custom-select-options div:hover{    background:#9edfff;    color:#000;}.contact-select{    display:none;}