.custom-select-wrapper {
     position: relative;
     user-select: none;
     width: 100%;
}
 .custom-select {
     position: relative;
     display: flex;
     flex-direction: column;
     border-width: 1px;
     border-style: solid;
     border-color: #39414e;
     border-radius: 5px;
}
 .custom-select__trigger {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px;
     font-size: 14px;
     font-weight: 400;
     color: #aab2bf;
     cursor: pointer;
}
.custom-select__trigger > span{
     font-family: "opensans-regular";
     height: 19px;
}
.custom-select__trigger.placeholder > span{
     color: #757575;
}
 .custom-options {
     position: absolute;
     display: block;
     top: 100%;
     left: 0;
     right: 0;
     border: 1px solid #aab2bf;
     border-top: 0;
     background: #fff;
     transition: all 0.5s;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     z-index: 2;
}
.custom-select.open {
     border-color:#fff;  
}
.custom-select.open .custom-options {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
     background: #151c2c;
}
 .custom-option {
     position: relative;
     display: block;
     padding: 0 10px 0 10px;
     font-size: 14px;
     font-weight: 300;
     line-height: 30px;
     color: #aab2bf;
     cursor: pointer;
     transition: all 0.5s;
}
 .custom-option:hover {
     cursor: pointer;
     background-color: #aab2bf;
     color: #394a6d;
     font-weight: 700;
}
 .custom-option.selected {
     color: #394a6d;
     background-color: #aab2bf;
}

.arrow {
     position: relative;
     height: 15px;
     width: 15px;
     display:flex;
     align-items: center;
     justify-content: center;
}
.arrow img{
     height: 6.67px;
     width: 12px;
     transition-duration: 0.8s;
     transition-property: transform;
     content: url('../../image/contactus/arrow.png');
}
.custom-select.open .custom-select__trigger .arrow img {
     transform: rotate(180deg);

}