* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

:root {
    --mainColor1: #101916;
    --mainColor2: #1c312a;
    --mainColor3: #648374;
    --mainColor4: #e3e5d8;
    --mainColor5: #afc1b6;
    --mainColor6: #fff;
    --mainColor7: #000;
}

.spacer {
    aspect-ratio: 960/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    z-index: -1;
}

.layer1 {
    background: linear-gradient(#1019169e, #1019168c), url(../img/recruitment/recruitmentbg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wlc h1 {
    text-align: center;
    font-size: 64px;
    color: var(--mainColor4);
}

.wlc p {
    text-align: center;
    font-size: 20px;
    padding: 10px 150px;
    color: var(--mainColor4);
}

.recruitment {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    background-color: var(--mainColor6);
    color: var(--mainColor2);
    margin: 6rem 8rem 3rem 8rem;
}

.recruitment-section p {
    font-size: 1.2rem;
    margin: 0 auto;
}

.recruitment-img img {
    position: relative;
    width: 400px;
    padding-top: 6rem;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.heading {
    text-align: center;
    font-size: 4rem;
    margin-top: 4rem;
}

.recruitment-content h2 {
    line-height: 1.5;
    font-size: 4rem;
}

.recruitment-content p {
    font-size: 1.2rem;
    margin: 2rem 0 2rem;
}

.divider {
    height: 3px;
    width: 400px;
    border-radius: 5px;
    background: var(--mainColor2);
}

.divider-line {
    height: 5px;
    width: 80%;
    border-radius: 5px;
    background: var(--mainColor2);
    margin: 1rem auto;
}

.s3 {
    width: 100%;
    height: 240vh;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-rows: repeat(1fr, 5);
    grid-template-columns: 1fr;
    padding: 10px 100px;
    margin-top: 20px;
}

.col {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.col .img {
    width: 100%;
    height: 100%;
}

.col .img img {
    border-radius: 2px;
    width: 400px;
    height: 300px;
}

.col .detail {
    width: 100%;
    height: 100%;
}

.col h2 {
    font-size: 40px;
    color: var(--mainColor2);
}

.col p {
    font-size: 22px;
    color: var(--mainColor3);
}




@media only screen and (max-width: 1400px) {

    .col h2 {
        font-size: 36px;
        color: var(--mainColor2);
    }

    .col p {
        font-size: 20px;
        color: var(--mainColor3);
    }

}

@media only screen and (max-width: 1200px) {

    .recruitment {
        margin: 4rem 4rem 2rem 4rem;
    }

    .heading {
        font-size: 4rem;
        margin-top: 2rem;
    }

    .recruitment-content h2 {
        line-height: 1.5;
        font-size: 3.5rem;
    }

    .recruitment-content p {
        font-size: 1.1rem;
        margin: 2rem 0 2rem;
    }

    .s3 {
        height: 240vh;
    }

    .col h2 {
        font-size: 32px;
        color: var(--mainColor2);
    }

    .col p {
        font-size: 16px;
        color: var(--mainColor3);
    }

}

@media only screen and (max-width: 1000px) {

    .heading h1 {
        font-size: 50px;
    }

    .heading h1:hover {
        font-size: 52px;
    }

    .heading p {
        font-size: 18px;
        padding: 0 30px;
    }

    .recruitment {
        margin: 3rem 3rem 2rem 3rem;
    }

    .recruitment-section p {
        font-size: 1rem;
    }

    .recruitment-img img {
        width: 300px;
        padding-top: 6rem;
    }

    .heading {
        font-size: 3rem;
        margin-top: 2rem;
    }

    .recruitment-content h2 {
        line-height: 1.5;
        font-size: 3rem;
    }

    .recruitment-content p {
        font-size: 1rem;
        margin: 1.5rem 0 1.5rem;
    }

    .divider {
        width: 300px;
    }

    .s3 {
        padding: 4px 30px;
        height: 250vh;
    }

    .col {
        gap: 30px;
    }

    .col .img img {
        border-radius: 2px;
        width: 330px;
        height: 250px;
    }

    .col h2 {
        font-size: 28px;
        color: var(--mainColor2);
    }

}

@media only screen and (max-width: 900px) {

    .wlc h1 {
        font-size: 54px;
    }

    .wlc p {
        font-size: 18px;
        padding: 8px 120px;
    }
}

@media only screen and (max-width: 800px) {

    .wlc h1 {
        font-size: 48px;
    }

    .wlc p {
        font-size: 16px;
        padding: 8px 60px;
    }

    .s3 {
        padding: 4px 30px;
        height: 250vh;
    }

    .col {
        gap: 30px;
    }

    .col .img img {
        border-radius: 2px;
        width: 330px;
        height: 250px;
    }

    .col h2 {
        font-size: 24px;
        color: var(--mainColor2);
    }

    .col p {
        font-size: 14px;
        color: var(--mainColor3);
    }

}

@media only screen and (max-width: 700px) {

    .heading h1 {
        font-size: 40px;
    }

    .heading h1:hover {
        font-size: 42px;
    }

    .heading p {
        font-size: 16px;
        padding: 0 40px;
    }

    .recruitment {
        margin: 2rem 2rem 1.2rem 2rem;
        grid-template-columns: 1fr;
    }

    .recruitment-section p {
        font-size: 1rem;
        margin: 0 5rem 8rem 5rem;
    }

    .recruitment-img {
        margin: 0 auto;
    }

    .recruitment-img img {
        width: 300px;
        padding-top: 3rem;
    }

    .heading {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .recruitment-content h2 {
        line-height: 1.2;
        font-size: 2rem;
    }

    .recruitment-content p {
        font-size: 1.2rem;
        margin: 1rem 0 1rem;
    }

    .divider {
        width: 200px;
        margin-top: .6rem;
    }

    .s3 {
        height: 600vh;
        grid-template-columns: 1fr;
        padding: 10px 70px;
    }

    .col {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: .7fr 1.5fr;
        grid-template-columns: 1fr;
    }

    .col .img img {
        width: 500px;
        height: 300px;
    }

    .col h2 {
        font-size: 40px;
    }

    .col p {
        font-size: 22px;
    }

}

@media only screen and (max-width: 600px) {

    .s3 {
        height: 600vh;
        grid-template-columns: 1fr;
        padding: 10px 70px;
    }

    .col {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: .7fr 1.5fr;
        grid-template-columns: 1fr;
    }

    .col .img img {
        width: 440px;
        height: 300px;
    }

    .col h2 {
        font-size: 36px;
    }

    .col p {
        font-size: 20px;
    }

}

@media only screen and (max-width: 500px) {

    .heading h1 {
        font-size: 30px;
    }

    .heading h1:hover {
        font-size: 32px;
    }

    .heading p {
        font-size: 14px;
        padding: 0 50px;
    }

    .s3 {
        height: 500vh;
        padding: 10px 70px;
    }

    .col {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: .7fr 1.5fr;
    }

    .col .img img {
        width: 340px;
        height: 270px;
    }

    .col h2 {
        font-size: 30px;
    }

    .col p {
        font-size: 16px;
    }

}

@media only screen and (max-width: 400px) {

    .wlc h1 {
        font-size: 36px;
    }

    .wlc p {
        font-size: 14px;
        padding: 6px 10px;
    }

    .heading h1 {
        font-size: 24px;
    }

    .heading h1:hover {
        font-size: 26px;
    }

    .heading p {
        font-size: 12px;
        padding: 0 50px;
    }

    .s3 {
        height: 470vh;
        padding: 10px 10px;
    }

    .col {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: .7fr 1.5fr;
    }

    .col .img img {
        width: 300px;
        height: 240px;
    }

    .col h2 {
        font-size: 28px;
    }

    .col p {
        font-size: 16px;
    }

}