.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 {
    display: flex;
    gap: 25px;
}

#careers .wrapper .main-careers .common-tab-content .job-card {
    width: 25%;
    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;
}
.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;
}

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

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

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

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

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

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

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

#apply-modal .main-apply form div label {
    display: block;
    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;
    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;
    }
}

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

@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;
    }
    .tabs button {
        font-size: 19px;
    }
}

@media all and (max-width: 360px) {
}
