.btnStyle,
.btnStyle-yellow,
.btnStyle-yellow-border {
  background: var(--blue);
  color: var(--white);
  border: 0;
  border-radius: 5px;
  display: inline-block;
  padding: 12px 15px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.btnStyle:hover,
.btnStyle:focus {
  background: #ff5900;
  color: var(--black);
}
.btnStyle-yellow {
  background: #ff5900;
  color: var(--black);
}
.btnStyle-yellow:hover,
.btnStyle-yellow:focus {
  background: #ffd561;
  color: var(--white);
}
.btnStyle-yellow-border {
  background: #fff0;
  color: #ff5900;
  border: 1px solid #ff5900;
}
.btnStyle-yellow-border:hover {
  background: #ff5900;
  color: var(--black);
}
.linkStyle {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  position: absolute;
  bottom: 2rem;
}
.linkStyle:hover {
  color: #ff5900;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.listStyle,
.listStyle li {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.6rem;
}
.listStyle.flex50 {
  flex-flow: row wrap;
}
.listStyle li {
  flex-direction: row;
  align-items: flex-start;
}
.listStyle li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icons/check.webp) top left/100% no-repeat;
}
.mainSlider .listStyle li:before {
  content: none;
}
.listStyle.flex50 li {
  flex: 0 0 49%;
}
.listStyle li i {
  font-size: 1.25rem;
  color: #ff5900;
  position: relative;
  top: 6px;
}
.listStyle p {
  margin: 0;
  width: 100%;
}
.blueBg .listStyle p {
  color: #fff;
}
.listStyle li img {
  width: 25px;
}
.slick-dots li {
  width: 1rem;
  height: 5px;
  background: #ff5900;
  margin: 0 3px;
  transition: ease all 0.5s;
}
.slick-dots li.slick-active {
  background: #ff5900;
  width: 65px;
}
.slick-dots li button,
.slick-dots li button:before {
  width: 100%;
  height: 100%;
  padding: 0;
}
.slick-next,
.slick-prev {
  width: 4rem;
  height: 4rem;
  background: #ff5900;
  color: var(--black);
  border-radius: 100px;
}
.slick-next {
  right: -6rem;
}
.slick-prev {
  left: -6rem;
}
.slick-next:hover,
.slick-prev:hover {
  background: var(--white);
}
.slick-next:before,
.slick-prev:before {
  color: var(--black);
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
}
.slick-prev:before {
  content: "\f104";
}
.slick-next:before {
  content: "\f105";
}
.searchForm {
  background: var(--blue);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  border-radius: 5px;
  display: flex;
  gap: 2em;
}
.searchForm select.form-control {
  appearance: auto;
  width: 45%;
}
.searchForm .input-group {
  padding: 10px;
  background: var(--white);
  border-radius: 5px;
}
.searchForm .form-control {
  border: 0;
  border-radius: 5px;
}
.searchForm .form-control:focus {
  box-shadow: none;
}
