/*Pag top background*/
#background-top-img{
  height: 80vh;
  width: 100%;
  background-image: url(../img/img/trabalheConosco2.png);
  background-position: center;
  background-size: cover;
}

/*Seção Vagas disponíveis*/
#vagas .contact-button {
  background-color: #BDE549;
  border: #BDE549;
}
#vagas .contact-button:hover {
  background-color: #FB7B04;
  border: #FB7B04;
  font-weight: 700;
}

    /*Vagas indisponível*/
.vagas-inds {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 80%;
}

.vagas-inds .botao .btn-light {
  background-color: #FEFEFE;
  border: #FEFEFE;
}
.vagas-inds .botao .btn-light:hover {
  background-color: #BDE549;
  border: #BDE549;
}

.vagas-inds span{
  font-size: 25px;
  color: #FEFEFE;
  text-transform: uppercase;
}

    /*Vagas disponíveis*/
#vagas .card {
  height:95%;
  width: 95%;
}

#vagas .card:hover {
  /*border: 4px solid #BDE549;*/
  box-shadow: 7px 5px 20px #141414;
  .card-img img {
  transform: scale(1.05);
  }
}

#vagas .card .card-img {
  width: 100%;
  height: 100%;
  padding: 2px;
}

#vagas .card .card-img img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.btn-BT {
  font-weight: 600;
  color: #042C6A;
}
.btn-BT:hover {
  font-weight: 700;
  color: #042C6A;
}

/*Programas*/
.nossa-empresa .title {
  border-bottom: 4px solid #FB7B04;
}

.programa-inf h4{
  font-weight: 600;
}

.programa-inf p{
  font-weight: 500;
  text-align: justify;
}

.programa-img{
  height: auto;
  width: 100%;
}
.programa-img img{
  height: auto;
  width: 100%;
}

/*Modal*/
.modal-card {
  height: 100vh;
  width: 100vw;
  position:fixed;
  z-index: 1040;
  left: 0;
  right: 0;
  top: 0;
}

.modal-bg {
  position:fixed;
  z-index: -99;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000000d4;
  height: 100%;
  width: 100%;
}

.modal-body {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: none !important;
}

.modal-header .modal-title {
  text-align: center;
  font-size: 23px;
  color: #FEFEFE;
}

.modal-header i {
  font-size: 28px;
  color: #FEFEFE;
  display: flex;
  align-items: center;
  text-align: center;
}
.modal-header i:hover {
  font-size: 35px;
  color: #BDE549;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: max-content;
}

.modal-content img {
  border-radius: 10px;
  max-width: 80vw;
  max-height: 70vh;
  width: auto;
  height: auto;
}

.modal-header div,
.modal-header button{
  font-size: 15px;
}

.modal-footer {
  background-color: transparent;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.modal-footer a {
  font-size: 16px;
  padding: 8px;
}

@media (min-width: 577px) and (max-width: 768px) {
  .programa-img img{
    height: auto;
    width: 100%;
  }
  .vagas-inds span{
    font-size: 20px;
    color: #ccc;
    text-transform: uppercase;
  }
}

