[type="file"] {
    color: #878787;
  }
  [type="file"]::-webkit-file-upload-button {
    background:   #DDDDDD;
    border-radius: 29px;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    font-family: "poppins_medium";
    outline: none;
    padding: 10px 25px;
    text-transform: uppercase;
    transition: all 1s ease;
  }

  


.tabs button {
  cursor: pointer;
  width: 115px;
  font-family: "poppins_medium";
  font-size: 21px;
  margin-bottom: 46px;
}

#careers {
  padding: 100px 0px;
}

#careers .wrapper {
}

#careers .wrapper .main-careers {
}

#careers .wrapper .main-careers .tabs {
}

#careers .wrapper .main-careers .tabs button {
}

#careers .wrapper .main-careers .common-tab-content .flex-container {
 
}
#careers .wrapper .main-careers .common-tab-content  .job-box {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
#careers .wrapper .main-careers .common-tab-content .job-card {
  width: 23%;
  border-radius: 16px;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 30px;
  transition: border-color 0.3s ease;
}

#careers .wrapper .main-careers .common-tab-content .job-card:hover {
  border-color: var(--Primary, #b7815b);
}

#careers .wrapper .main-careers .common-tab-content .job-card .job-descp {
  border-bottom: 1px solid #d9d9d9;
}

#careers .wrapper .main-careers .common-tab-content .job-card .job-descp h2 {
  font-size: 21px;
  font-family: "poppins_semibold";
  margin-bottom: 10px;
}

#careers .wrapper .main-careers .common-tab-content .job-card .job-descp span {
  color: #888;
  font-size: 15px;
  margin-bottom: 15px;
  display: block;
}

#careers .wrapper .main-careers .common-tab-content .job-card p {
  margin-top: 20px;
  font-size: 16px;
  min-height: 130px;
}

#careers .wrapper .main-careers .common-tab-content .job-card .apply-button {
  display: block;
  border-radius: 29px;
  border: 1px solid var(--Primary, #b7815b);
  padding: 10px 20px;
  text-align: center;
  color: #b7815b;
  margin-top: 20px;
}

#careers .wrapper .main-careers .common-tab-content .job-card .apply-button:hover {
  color: #b7815b;

}

.tabs button.active {
  color: #b7815b;
  text-decoration: underline;
}

body.modal-open {
  overflow: hidden;
}

#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#apply-modal {
  padding: 100px 0px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#apply-modal .main-apply {
  margin: 0 auto;
  padding: 100px 100px 80px 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 15px;
  background: #f2f1f1;
}

#apply-modal .main-apply form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#apply-modal .main-apply form .top {
  width: 45%;
  border-bottom: 1px solid #ddd;
  margin-bottom: 45px;
  padding: 10px 0px;
}

#apply-modal .main-apply form .top label {
}

#apply-modal .main-apply form .top input {
}

#apply-modal .main-apply form .top input::placeholder {
  color: #000;
  font-size: 14px;
}



#apply-modal .main-apply form .bottom {
  width: 100%;
}

#apply-modal .main-apply form .mail {
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
  padding: 10px 0px;
}

#apply-modal .main-apply form .bottom label {
}

#apply-modal .main-apply form .bottom input {
}

#apply-modal .main-apply form .bottom input::placeholder {
  font-size: 14px;
  color: #000;
}


#apply-modal .main-apply form div {
}

#apply-modal .main-apply form div label {
  display: block;
  font-size: 19px;
  color: #8a8a8a;
}

#apply-modal .main-apply form div input {
}

#apply-modal .main-apply form div input::placeholder {
  margin-bottom: 10px;
}

#apply-modal .main-apply form .upload {
  margin-bottom: 50px;
}

#apply-modal .main-apply form .upload a {
  padding: 10px;
  border-radius: 29px;
  background: #ddd;
  display: block;
  width: 139px;
  text-align: center;
}

#apply-modal .main-apply form .submit {
  width: 100%;
}

#apply-modal .main-apply form .submit .button {
  padding: 12px 15px;
  border-radius: 29px;
  cursor: pointer;
  background: var(--Primary, #b7815b);
  display: block;
  margin: 0 auto;
  width: 148px;
  text-align: center;
  color: #fff;
  font-size: 20px;
}

@media all and (max-width: 1280px) {
  #careers .wrapper .main-careers .common-tab-content .flex-container {
      flex-wrap: wrap;
  }
  #careers .wrapper .main-careers .common-tab-content .job-card {
      width: 31%;
      padding: 20px;
  }
  #apply-modal .main-apply {
    padding: 100px 70px 80px 70px;
}
}

@media all and (max-width: 980px) {
  #careers .wrapper .main-careers .common-tab-content .job-card {
      width: 48%;
      padding: 20px;
  }

  #apply-modal {
    width: 80%;
  }
  #apply-modal .main-apply {
    padding: 60px 70px 60px 70px;
  }
  #apply-modal .main-apply form .submit .button {
    font-size: 17px;
  }



}

@media all and (max-width: 768px) {
  #careers .wrapper .main-careers .common-tab-content .job-card {
      width: 47%;
  }
  #careers {
      padding: 70px 0px;
  }
}

@media all and (max-width: 640px) {
  #careers .wrapper .main-careers .common-tab-content .job-card {
      width: 95%;
      margin: 0 auto;
  }
  #apply-modal .main-apply {
    padding: 14px 45px 36px 45px;
}
  #apply-modal .main-apply form .top {
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 45px;
    padding: 10px 0px;
}
  .tabs button {
      font-size: 19px;
  }
  #apply-modal .main-apply form .top {
    margin-bottom: 30px;
}

}

@media all and (max-width: 480px) {
  #apply-modal .main-apply {
    padding: 14px 20px 36px 20px;
}

}
