#top-image {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -999;
    object-fit: cover;
}

#recruit-content .recruit-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35vh;
    background: linear-gradient(179deg, #347caf, #19467f);
    position: absolute;
}
#recruit-title {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#recruit-title h1 {
    color: #1b2e71;
    font-size: 41px;
    text-align: center;
    background: #fff;
    padding: 5px 43px;
    position: absolute;
    margin-top: -26px;
}
.sub-title {
    color: #6acbff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 55px;
    margin-bottom: 50px;
    padding-left: 3px;
    letter-spacing: 6px;
}

#recruit-text {
    font-size: 1.2rem;
    color: #ededed;
    letter-spacing: 1.4px;
    line-height: 2;
    text-align: center;
    margin-bottom: 100px;
}

#contents {
    width: 100%;
    padding: 50px 0px;
    background: #0b4c7c;
}
#contents h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
}
#contents .sub-title {
    color: #6acbff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 7px;
    margin-bottom: 50px;
    padding-left: 3px;
    letter-spacing: 6px;
    text-align: center;
}
#job-list {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    margin-top: 25px;
}
#job-list .job {
    width: 28%;
    min-width: 361px;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    margin: 2% 1.5%;
    color: #132f5e;
    cursor: pointer;
    transition: 0.3s;
}
#job-list .job:hover {
    transform: scale(1.01);
}
#job-list .job .job-image {
    width: 100%;
    height: 11.5vw;
    min-height: 230px;
    object-fit: cover;
    object-position: top;
    border-radius: 3px;
    margin-bottom: 20px;
}
#job-list .job h3 {
    font-size: 1.5rem;
    padding: 0px 5px;
    margin-bottom: 10px;
}
.job-info {
    display: flex;
    align-items: center;
    padding: 2px 7px;
}
.job-info .icon {
    width: 23px;
    height: fit-content;
}
.job-info p {
    margin-left: 8px;
    font-size: 1.3rem;
}
.job .tags {
    padding: 5px;
    margin-top: 8px;
}
.job .tags .tag {
    display: inline-block;
    background: #0095ff;
    color: #fff;
    border-radius: 33px;
    padding: 4px 13px;
    font-size: 1.1rem;
    margin: 7px 5px 0px 0px;
}

#contact {
    width: 100%;
    background: #f5f6f9;
    padding: 0px;
}
#recruit-content .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background: linear-gradient(179deg, #347caf, #19467f);
    padding-top: 5%;
}
#contact #contact-title h2 {
    color: #fff;
}
#contact #contact-title .sub-title {
    font-size: 1vw;
    margin-top: 7px;
    margin-bottom: 50px;
}
#contact .content .form textarea {
    height: 250px;
}

#recruit-content .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background: linear-gradient(179deg, #347caf, #19467f);
    padding-top: 0%;
    padding-bottom: 10%;
    color: #fff;
    font-size: 21px;
}
#contact .content .form input, #contact .content .form textarea {
    background: #ffffff;
}
@media screen and (max-width: 800px) {
    #contact .content .form textarea {
        height: 23vw;
    }
}
@media screen and (max-width: 700px) {
    #recruit-content .content {
        font-size: 16px;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        background: linear-gradient(179deg, #347caf, #19467f);
        padding-top: 0%;
        padding-bottom: 12%;
        color: #fff;
        align-content: flex-start;
    }
    #contact #contact-title h2 {
        letter-spacing: 4px;
        backdrop-filter: blur(7px);
        text-align: left;
        font-weight: bold;
        color: #ffffff;
        border-radius: 18px;
        line-height: 70px;
        display: inline-block;
        word-break: break-word;
        font-size: 34px;
        margin-top: 30px;
    }
    #contact #contact-title {
        margin-bottom: 0px;
        text-align: center;
        padding-left: 0px;
    }
    #contact .sub-title {
        text-align: center;
        margin-top: 0px;
    }
    #contact #contact-title .sub-title {
        margin-top: 0px;
    }
    #job-list .job {
        margin: 4% 1.5%;
    }

}
@media screen and (max-width: 450px) {
    #job-list .job {
        width: 80%;
        min-width: unset;
    }

}