/* common style for the whole main element
-------------------------------------------------- */

.hero .displaylg {
  font-size: 3.56rem;
  font-weight: 700;
  text-align: center;
  line-height: 4rem;
  margin-bottom: .5em;
}
/*
    hero images box displays below search button on mobile/tablet size and above on desktop size.
*/
.hero .heroImages {
    order: 0
}
/*
    centerLeftBox:
    words align center when can display in one line, left when in multiple lines.
*/
.hero .centerLeftBox {
    text-align: center;
}
.hero .centerLeftBox .content {
    display: inline-block;
    text-align: left;
}

@media screen and (min-width: 768px) and (max-width: 991px){
    .hero .wrapper {
        width: 85%;
    }
}

/*
    search area.
    include:
    two filter inputs (location and career) and one search button on mobile size
    one filter input (location or title) and one search button on desktop size
*/
.hero .searchBtn button {
    border-radius: 50px;
    background-image: linear-gradient(87.44deg, #129EFF -3.23%, #1800FF 57.45%);
    color: white;
    border: 0;
  text-transform: capitalize;
  /* font-size: 1.4375rem; */
}
.hero .searchBtn button:hover span {
  background-color: #f3ec78;
    background-image: linear-gradient(87.44deg, #129EFF -3.23%, #1800FF 57.45%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
.hero .searchBtn button:hover {
  background-color: white;
  background-image: none;
  color: #2458F1;
  border: 2px solid #2458F1; 
  padding: 0.775rem 2.375rem;
  /*  border-image-slice: 1; */
  /* border-image-source: linear-gradient(87.44deg, #129EFF -3.23%, #1800FF 57.45%); */
}
@media screen and (max-width: 767px){
    .hero .searchBtn {
        flex-direction: column;
    }
    .hero .searchBtn .inputWithLabel, .hero .searchBtn .inputWithLabel label{
        width: 100%;
    }
    .hero .searchBtn label {
        font-size: 0.875rem;
        font-weight: 600;
    }
    .hero .searchBtn label input {
        border-color: #A8A9AB;
        border-radius: 8px;
        box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
        margin-top: 0.375rem;
        padding: 0.46rem 0.75rem;
    }
    .hero .searchBtn label input::placeholder {
        color: #505457 !important;
    }
    .hero .searchBtn button {
        width: 100%;
        font-size: 0.875rem;
        font-weight: 700;
        padding: 0.625rem 1rem;
    }
    .hero .searchBtn button span {
        vertical-align: middle;
    }
    .hero .searchBtn button img {
        width: 15px;
        height: 15px;
    }
}
@media screen and (min-width: 768px) {
    .hero .searchBtn {
        border-radius: 50px;
        background-color: #E9EFFF;
        align-items: center;
    }
    .hero .searchBtn input {
        border: 0px;
        background-color: #E9EFFF;
        font-size: 1.125rem;
    }
    .hero .searchBtn input:focus {
        /*
        against bootstrap form component 
        */
        box-shadow: none !important;
        outline: none;
        margin-left: 0px !important;
    }
    .hero .searchBtn input::placeholder {
        color: #25282A !important;
    }
    .hero .searchBtn .inputIcon {
        margin-left: 20px;
        background-color: #E9EFFF;
    }
    .hero .searchBtn button {
        font-size: 1.44rem;
        font-weight: 600;
        padding: 0.9rem 2.5rem 0.9rem 2.5rem;
        margin-left: 2px;
    }
}
@media screen and (max-width: 576px) {
  hr.separator {
    margin: 0;
    height: 0;
  }
  .hero .wrapper {
    width: 100%;
  }
  .hero .searchBtn button {
    margin-bottom: 2em;
  }
  .hero .centerLeftBox .content p {
    font-size: 1rem;
    line-height: 1.5;
  }
