/* .select {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 250px;
  height: 40px;
  left: 70%;
}



.option {
  padding: 0 30px 0 10px;
  min-height: 32px;
  display: flex;
  align-items: center;
  background: #eaeaea;
  border-top: #084892 solid 1px;
  position: absolute;
  top: 0;
  width: 100%;
  pointer-events: none;
  order: 2;
  z-index: 1;
  transition: background 0.4s ease-in-out;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}

.option:hover {
  background: #084892;
  color: white;
}

.select:focus .option {
  position: relative;
  pointer-events: all;
}

.selectopt {
  opacity: 0;
  position: absolute;
  left: -99999px;
}

.selectopt:checked + label {
  order: 1;
  z-index: 2;
  background: #eaeaea;
  border-top: none;
  position: relative;
}

.selectopt:checked + label:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  position: absolute;
  right: 10px;
  top: calc(50% - 2.5px);
  pointer-events: none;
  z-index: 3;
}

.selectopt:checked + label:before {
  position: absolute;
  right: 0;
  height: 40px;
  width: 40px;
  content: "";
  background: #084892;
} */

.title {
  display: block;
  position: relative;
  width: auto;
  height: auto;

  letter-spacing: -1PX;
  text-transform: uppercase;
  font-size: 24px;
  color: black;
  border-bottom: thin solid #dadada;
  text-align: left !important;
}

.title span {

  border-bottom: solid 2px #EF9024;
  color: black;
}

.form-select {

  width: 50%;
  padding: 3px 10px;

}
.select_col {
  display: flex;
  justify-content: right;
}

@media only screen and (max-width: 767px) {
  .title{
    text-align: center !important;
  }
  .select_col {
    margin-top: 1rem;
    justify-content: center;
  }
}

@media only screen and (max-width: 992px) {
  #accordionExample {
    display: none;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-md-9 {
    width: 100%;
  }
  .bread_container {
    margin-top: 3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .select {
    left: 40%;
  }
}

@media only screen and (min-width: 993px) {
  /* .bread_container {
    margin-top: 13rem;
  } */
  #accordionExample {
    display: block;
  }
}
