.employment {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	margin-block-end: 0 !important;
}

.employment--content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: 5rem;
    max-width: 1140px;
    margin-inline: auto;
}

.employment--icons {
    display: flex;
    justify-content: center;
}

.employment--icons img {
    width: 200px;
    height: 200px;
    padding: 30px;
}

.employment--title h1 {
    color: #f9fafb;
    font-size: 45px;
    text-align: center;
    font-weight: 700;
    letter-spacing: normal;
    direction: ltr;
    line-height: 120%;
}

.employment--title p {
    color: #f9fafb;
    direction: ltr;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 120%;
    text-align: center;
    margin-block: .75rem 3rem;
}

/* employment--list */
.employment--list ul {
    display: flex;
    flex-wrap: wrap;
}

.employment--list ul li {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    position: relative;
    padding-inline-start: 2.75rem;
    margin: 16px;
    flex-basis: calc(50% - 32px);
}

.employment--list ul li::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(../img/icons/check.png);
    background-repeat: no-repeat;
}

.employment--list ul li h3 {
    color: var(--baseLight-color);
    font-size: 18px;
    text-align: left;
    font-weight: 700;
    letter-spacing: normal;
    direction: ltr;
    line-height: 120%;
}

.employment--list ul li p {
    color: #d9d9d9;
    direction: ltr;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 120%;
    text-align: left;
}

.employment--form {
    margin-block-start: 5rem;
	width: 50%;
}

.employment--form p {
    padding: 10px;
    color: #f9fafb;
    direction: ltr;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 120%;
    text-align: center;
    margin-block-start: 1.5rem;
}

@media screen and (max-width: 1200px){
	.employment--form {
		width: 70%;
	}
}

@media screen and (max-width: 992px) {
    .employment--title h1 {
        font-size: var(--text-4xl);
    }

    .employment--title p {
        font-size: var(--text-xl);
    }
	
	.employment--form {
		width: 80%;
	}
}

@media screen and (max-width: 768px) {
    .employment--title h1 {
        font-size: var(--text-3xl);
    }

    .employment--title p {
        font-size: var(--text-lg);
    }

    .employment--icons img {
        width: 180px;
        height: 180px;
        padding: 24px;
    }
	
	.employment--form {
		width: 90%;
	}
}

@media screen and (max-width: 576px) {
    .employment--list ul li {
        flex-basis: calc(100% - 32px);
    }

    .employment--icons img {
        width: 150px;
        height: 150px;
        padding: 20px;
    }
	
	.employment--form {
		width: 100%;
	}
}