.work-vacancies-section {
padding: 80px 0;
background: #fff;
}
.work-vacancies-title {
font-size: 48px;
font-weight: 400;
color: #000000;
margin-bottom: 60px;
display: flex;
align-items: center;
gap: 15px;
}
.work-vacancies-bullet {
color: #7fb539;
font-size: 48px;
line-height: 1;
} .vacancies-list {
display: flex;
flex-direction: column;
gap: 20px;
} .vacancy-item {
border: 2px solid #e5e5e5;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
background: #fff;
}
.vacancy-item:hover {
border-color: #7fb539;
box-shadow: 0 4px 12px rgba(127, 181, 57, 0.1);
}
.vacancy-item.active {
border-color: #7fb539;
} .vacancy-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 32px;
cursor: pointer;
background: #fff;
transition: background 0.3s ease;
}
.vacancy-header:hover {
background: #f9fdf5;
}
.vacancy-item.active .vacancy-header {
background: #f9fdf5;
border-bottom: 2px solid #e5e5e5;
}
.vacancy-title-wrapper {
display: flex;
align-items: center;
gap: 16px;
flex: 1;
}
.vacancy-title {
font-size: 24px;
font-weight: 600;
color: #2d5016;
margin: 0;
}
.vacancy-city {
display: inline-flex;
align-items: center;
padding: 6px 16px;
background: #7fb539;
color: #fff;
font-size: 14px;
font-weight: 500;
border-radius: 20px;
}
.vacancy-toggle {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: transparent;
border: 2px solid #7fb539;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
flex-shrink: 0;
}
.vacancy-toggle:hover {
background: #7fb539;
transform: scale(1.05);
}
.vacancy-toggle:hover .vacancy-arrow {
color: #fff;
}
.vacancy-arrow {
color: #7fb539;
transition: all 0.3s ease;
}
.vacancy-toggle:hover .vacancy-arrow {
color: #fff;
}
.vacancy-item.active .vacancy-arrow {
transform: rotate(180deg);
} .vacancy-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out;
background: #fafafa;
}
.vacancy-item.active .vacancy-content {
max-height: 3000px;
transition: max-height 0.7s ease-in;
}
.vacancy-description {
padding: 32px;
color: #333;
font-size: 16px;
line-height: 1.8;
border-bottom: 2px solid #e5e5e5;
}
.vacancy-description h3,
.vacancy-description h4 {
color: #2d5016;
margin-top: 24px;
margin-bottom: 12px;
}
.vacancy-description ul,
.vacancy-description ol {
margin-left: 20px;
margin-bottom: 16px;
}
.vacancy-description li {
margin-bottom: 8px;
} .vacancy-application-form {
padding: 32px;
background: #fff;
}
.vacancy-form-title {
font-size: 24px;
font-weight: 600;
color: #2d5016;
margin-bottom: 24px;
} .vacancy-form .form-row {
margin-bottom: 20px;
}
.vacancy-form .form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #2d5016;
font-size: 14px;
}
.vacancy-form .form-group input[type="text"],
.vacancy-form .form-group input[type="tel"],
.vacancy-form .form-group input[type="email"] {
width: 100%;
padding: 12px 16px;
border: 2px solid #e5e5e5;
border-radius: 8px;
font-size: 16px;
transition: border-color 0.3s ease;
}
.vacancy-form .form-group input:focus {
outline: none;
border-color: #7fb539;
}
.vacancy-form .file-upload-wrapper {
border: 2px dashed #e5e5e5;
border-radius: 8px;
padding: 16px;
background: #fafafa;
transition: border-color 0.3s ease;
}
.vacancy-form .file-upload-wrapper:hover {
border-color: #7fb539;
}
.vacancy-form .file-upload-display {
display: flex;
align-items: center;
gap: 8px;
color: #666;
font-size: 14px;
}
.vacancy-form .file-icon {
font-size: 20px;
}
.vacancy-form .checkbox-group {
display: flex;
align-items: flex-start;
gap: 12px;
}
.vacancy-form .checkbox-label {
display: flex;
align-items: flex-start;
gap: 12px;
cursor: pointer;
font-size: 14px;
color: #666;
}
.vacancy-form .checkbox-custom {
width: 20px;
height: 20px;
border: 2px solid #e5e5e5;
border-radius: 4px;
flex-shrink: 0;
position: relative;
transition: all 0.3s ease;
}
.vacancy-form input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
background: #7fb539;
border-color: #7fb539;
}
.vacancy-form input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
content: "✓";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 14px;
font-weight: bold;
}
.vacancy-form input[type="checkbox"] {
position: absolute;
opacity: 0;
pointer-events: none;
}
.vacancy-form .job-application-submit-btn {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 16px 32px;
background: #7fb539;
color: #fff;
font-size: 16px;
font-weight: 600;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.vacancy-form .job-application-submit-btn:hover {
background: #6a9b2f;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(127, 181, 57, 0.3);
}
.vacancy-form .button-arrow {
font-size: 20px;
transition: transform 0.3s ease;
}
.vacancy-form .job-application-submit-btn:hover .button-arrow {
transform: translateX(4px);
}
.vacancy-form .job-application-success {
padding: 24px;
background: #f0f9e8;
border: 2px solid #7fb539;
border-radius: 8px;
text-align: center;
}
.vacancy-form .job-application-success h3 {
color: #2d5016;
margin-bottom: 8px;
}
.vacancy-form .job-application-success p {
color: #666;
margin: 0;
} @media (max-width: 768px) {
.work-vacancies-section {
padding: 60px 0;
}
.work-vacancies-title {
font-size: 36px;
margin-bottom: 40px;
}
.work-vacancies-bullet {
font-size: 36px;
}
.vacancy-header {
padding: 20px;
}
.vacancy-title {
font-size: 20px;
}
.vacancy-title-wrapper {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.vacancy-city {
font-size: 12px;
padding: 4px 12px;
}
.vacancy-toggle {
width: 36px;
height: 36px;
}
.vacancy-description,
.vacancy-application-form {
padding: 24px;
}
.vacancy-form-title {
font-size: 20px;
}
.vacancy-form .job-application-submit-btn {
width: 100%;
justify-content: center;
}
}
@media (max-width: 480px) {
.work-vacancies-title {
font-size: 28px;
}
.work-vacancies-bullet {
font-size: 28px;
}
.vacancy-title {
font-size: 18px;
}
.vacancy-description,
.vacancy-application-form {
padding: 20px;
}
}