#recruitment .wrapper{
    padding: 50px 8%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#recruitment .wrapper .row{
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 991px){
    #recruitment .wrapper{
        padding: 50px;
    }

    #recruitment .wrapper .row{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px){
    #recruitment .wrapper{
        padding: 50px 15px;
    }
}

#recruitment .wrapper .item{
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    overflow: hidden;
    height: 130px;
    border-left: 5px solid #1196db;
    display: flex;
    margin-bottom: 40px;
    transition: all 0.3s;
}

#recruitment .wrapper .item:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}


#recruitment .wrapper .item .left{
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 0;

}

#recruitment .wrapper .item .left h3{
    font-size: 24px;
    color: #1196db;
    text-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    white-space: nowrap;
}

#recruitment .wrapper .item .left span{
    font-size: 16px;
    color: #999999;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*#recruitment .wrapper .item .left li{*/
    /*display: inline-block;*/
    /*position: relative;*/
    /*font-size: 16px;*/
    /*color: #999999;*/
    /*padding: 0 5px;*/
/*}*/

/*#recruitment .wrapper .item .left li::after{*/
    /*content: '|';*/
    /*position: absolute;*/
    /*display: block;*/
    /*color: #999999;*/
    /*top: 0;*/
    /*left: 100%;*/
/*}*/

/*#recruitment .wrapper .item .left li:last-child::after{*/
    /*content: '';*/
    /*visibility: hidden;*/
    /*display: none;*/
/*}*/

#recruitment .wrapper .item .center{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#recruitment .wrapper .item .center p:first-child{
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

#recruitment .wrapper .item .center p:last-child{
    font-size: 16px;
    color: #999999;
}

#recruitment .wrapper .item .right{
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#recruitment .wrapper .item .right a{
    font-size: 16px;
    white-space: nowrap;
    padding: 10px 15px;
    background-color: #1196db;
    color: #ffffff;
}

@media screen and (max-width: 767px){
    #recruitment .wrapper .item{
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        margin-bottom: 40px;
    }

    #recruitment .wrapper .item .left{
        text-align: center;
    }

    #recruitment .wrapper .item .center{
        text-align: center;
        margin: 20px 0;
    }
}

.card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.card-wrapper .card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    box-sizing: border-box;
    padding: 100px 15px;
    width: 50%;
    border-bottom: 4px solid #1196db;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-wrapper .card .card-title {
    text-align: center;
    color: #1196db;
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.5;
    transition: all 0.2s;
}

.card-wrapper .card img {
    max-width: 280px;
    transition: all 0.2s;
}

@media screen and (max-width: 1200px) {
    .card-wrapper .card {
        width: 80%;
    }

}

@media screen and (max-width: 991px) {
    .card-wrapper .card {
        width: 100%;
        padding: 60px 15px;
    }

    .card-wrapper .card .card-title {
        font-size: 24px;
    }

    .card-wrapper .card img {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .card-wrapper .card .card-title {
        font-size: 22px;
    }
}