.recruitment-process-info-container {
    position: relative;
    padding: 84px 100px 85px 115px;
}

.main-line {
    background-color: #E5E5E5;
    top: 0;
    height: 100%;
}

.small-arrow-right {
    border-color: transparent #E5E5E5 transparent transparent;
}

.recruitment-process-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    font-size: 90px;
    font-weight: bold;
    padding-bottom: 80px;
    color: #2D2D2D;
}

.recruitment-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 90px;
    grid-template-rows: auto;
    padding-bottom: 100px;
}

.info-box {
    position: relative;
    padding: 88px 53px 95px 53px;
    border: 1px solid #D6D6D6;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.info-box:first-child:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 99%;
    border: 1px solid #1CA9E7;
    width: 50px;
    transform: translate(50%, -50%);
}

.info-box:nth-child(2):after {
    content: "";
    position: absolute;
    top: 50%;
    left: 99%;
    border: 1px solid #1CA9E7;
    width: 50px;
    transform: translate(50%, -50%);
}

.info-box:nth-child(1)::before {
    position: absolute;
    bottom: calc(100% - 23.5px);
    content: "";
    display: block;
    width: 52px;
    height: 47px;
    background: #fff url('/img/cv.svg') no-repeat;
}

.info-box:nth-child(2)::before {
    position: absolute;
    bottom: calc(100% - 23.5px);
    content: "";
    display: block;
    width: 54px;
    height: 48px;
    background: #fff url('/img/taks.svg') no-repeat;
}

.info-box:nth-child(3)::before {
    position: absolute;
    bottom: calc(100% - 23.5px);
    content: "";
    display: block;
    width: 52px;
    height: 48px;
    background: #fff url('/img/talk.svg') no-repeat;
}

.info-box > h3 {
    font-family: 'Red Hat Display', sans-serif;
    text-align: center;
    color: #2D2D2D;
    font-weight: bold;
    padding-bottom: 28px;
    font-size: 25px;
}

.info-box > span {
    color: #8E8E8E;
    text-align: center;
    font-size: 20px;
}

.info-slogan-container {
    position: relative;
    padding: 63px 0 80px 0;
    border: 1px solid #D6D6D6;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.info-slogan-container::before {
    position: absolute;
    bottom: calc(100% - 23.5px);
    content: "";
    display: block;
    width: 61px;
    height: 47px;
    background: #fff url('/img/welcome.svg') no-repeat;
}

.info-slogan-container > h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 25px;
    padding-bottom: 42px;
}

.info-slogan-container > span {
    font-size: 20px;
    color: #8E8E8E;
}



@media only screen and (max-width: 1024px) {
    .recruitment-process-info-container {
        position: relative;
        padding: 44px 40px 85px 40px;
    }
    .recruitment-info-container {
        grid-template-columns: 1fr;
    }

    .recruitment-process-title {
        font-size: 40px;
    }

    .info-box:nth-child(1)::after, .info-box:nth-child(2):after{
        display: none;
    }

    .info-slogan-container {
        padding: 63px 53px 80px 53px;
        text-align: center;
    }
}

@media only screen and (max-width: 375px) {
    .job-title, .job-description {
        padding-bottom: 33px;
    }
    .job-title {
        font-size: 18px;
        text-align: center;
    }

    .info-box {
        padding: 88px 15px 95px 15px;
    }

    .info-box > h3 {
        font-size: 18px;
        text-align: center;
    }
    .info-box > span {
        font-size: 15px;
    }
    .info-slogan-container {
        padding: 88px 15px 95px 15px;
        text-align: center;
    }

    .info-slogan-container >h3 {
        font-size: 18px;
    }

    .info-slogan-container > span {
        font-size: 15px;
    }
}

