:root {
    --bg-color: #d8f9ff;
    --bg-white: #ffffff;
    --heading-light-black: #080705;
    --bg-light-black: #080705;
    --primary-color-theme: #2fbbdc;
    --border-color: #eeeeee;
    --border-second: #cccccc;
}
.social-media-list {
    display: none;
}

.career-job .job-container {
    margin-top: 50px;
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.career-job .card-job {
    border: 2px solid var(--border-color);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .career-job .card-job {
        flex-direction: column;
        align-items: flex-start;
    }
}

.career-job .card-job h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}



.career-job .card-job p {
    font-size: 14px;
    line-height: 22px;
}

.career-job .btn-wrapper {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .career-job .btn-wrapper {
        width: 100%;
    }
}

.career-job .btn-wrapper h4 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media(max-width:768px){
    .career-job .btn-wrapper h4 {
        margin-bottom: 0;
    }
}

.career-job .btn-wrapper a {
    cursor: pointer;
    background-color: var(--primary-color-theme);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    border: none;
    color: var(--bg-white);
    transition: all ease-in-out 0.2s;
    padding: 1rem 3rem;
}

.career-job .btn-wrapper a:hover {
    background-color: var(--bg-light-black);
    color: var(--bg-white);
}

.career-job .container-apply {
    margin-top: 80px;
    padding: 70px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media(max-width:480px){
    .career-job .container-apply {
    margin-top: 60px;
   
}
}

@media (max-width: 768px) {
    .career-job .container-apply {
        padding: 20px;
    }
}

.career-job .apply-form {
    width: 40%;
    background-color: var(--bg-white);
    padding: 35px 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 768px) {
    .career-job .apply-form {
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}

.career-job .apply-form h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font_kanit);
}

.career-job .apply-form .form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.career-job .apply-form .form form .element {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border-second);
    border-radius: 4px;
    padding: 10px;
}

.career-job .apply-form .form form .element label {
    font-size: 11px;
    color: var(--bg-light-black);
}
.career-job .apply-form .form form .element input {
    outline: none;
    border: none;
    font-size: 14px;
}

.career-job .apply-form .form form button {
    background-color: var(--primary-color-theme);
    color: #ffffff;
    padding: 15px 0;
    font-size: 18px;
}


/* get in touch section css */

.touch .touch-container {
    padding: 60px;
    display: flex;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .touch .touch-container {
        padding: 20px;
    }
}

.touch .touch-container .touch-content {
    width: 440px;
    padding: 40px;
    background-color: var(--bg-white);
}

@media(max-width:480px){
   .touch .touch-container .touch-content {
    padding: 20px;
} 
}

.touch .touch-container .touch-content h3 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: bold;
}
.touch .touch-container .touch-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 25px;
    font-weight: 600;
}
.touch .touch-container .touch-content p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
    margin: 0;
}
.touch .touch-container .touch-content .button {
    margin-top: 20px;
    cursor: pointer;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    border: none;
    background-color: var(--primary-color-theme);
    transition: all ease-in-out;
    display: inline-block;
    align-items: center;
    padding: 16px 50px;
    color: var(--bg-white);
}

/* career page top heading */
.career-job .career_heading .section-title-wrapper .title-wrapper .section-title {
   margin-top: 50px;
    font-size: 30px;
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
}


