:root {
    --career2-teal: #128c91;
    --career2-teal-dark: #105d60;
    --career2-purple: #794585;
    --career2-purple-dark: #593461;
    --career2-text: #000000;
    --career2-text-secondary: #363636;
    --career2-bg: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--career2-bg);
    color: var(--career2-text);
    font-family: "Century Gothic", Arial, sans-serif;
}

.topbar {
    border-bottom: 1px solid rgba(16, 93, 96, 0.09);
    background: #fff;
}

.topbar__container {
    width: min(1717.5px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.topbar__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.topbar__logo {
    width: auto;
    height: 96px;
    display: block;
}

.topbar__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 42px;
}

.topbar__link {
    position: relative;
    color: var(--career2-teal);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding-bottom: 5px;
    transition: color 0.2s ease;
}

.topbar__link:hover {
    color: var(--career2-purple);
}

.topbar__link.is-active {
    color: var(--career2-purple);
}

.topbar__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2.5px;
    background: var(--career2-purple);
}

.career2-page {
    min-height: 100vh;
    background: #fff;
}

.career-hero {
    padding: 28px 0 64px;
}

.career-hero__container {
    width: min(1717.5px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
}

.career-hero__head {
    display: block;
    width: 1717.5px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
    transform: translateX(75px) translateY(-10px);
}

.career-hero__actions {
    position: absolute;
    left: 158px;
    top: 470px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20.6px;
    z-index: 2;
}

.btn {
    box-sizing: border-box;
    width: 298.86px;
    height: 75px;
    border-radius: 12.5px;
    border: 1px solid transparent;
    box-shadow: 7.95455px 7.95455px 85.7955px rgba(56, 56, 56, 0.25);
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Century Gothic", Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24.3261px;
    line-height: 154%;
    letter-spacing: -0.02em;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn--teal {
    background: var(--career2-teal);
    border-color: var(--career2-teal-dark);
}

.btn--purple {
    background: var(--career2-purple);
    border-color: var(--career2-purple-dark);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 9px 9px 95px rgba(56, 56, 56, 0.3);
}

.btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.career-hero__chips{
    margin: 38px auto 0;
    max-width: 1920px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15.5px;
  }  

.career-consult {
    background: rgba(230, 229, 235, 0.22);
    min-height: 868px;
    padding: 76px 0 82px;
}

.career-consult__container {
    width: min(852px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.career-consult__title {
    margin: 0;
    color: #000;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.career-consult__cards {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 250px));
    justify-content: center;
    gap: 66px;
}

.consult-card {
    text-align: center;
    transition: transform 0.22s ease;
}

.consult-card__icon-wrap {
    width: 250px;
    height: 250px;
    border-radius: 56px;
    background: linear-gradient(134.45deg, rgba(56, 188, 167, 0.8) 5.77%, rgba(142, 61, 160, 0.8) 94.99%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: box-shadow 0.22s ease;
}

.consult-card:hover {
    transform: translateY(-8px);
}

.consult-card:hover .consult-card__icon-wrap {
    box-shadow: 0 10px 24px rgba(56, 56, 56, 0.24);
}

.consult-card:nth-child(3) .consult-card__icon-wrap {
    background: linear-gradient(134.55deg, rgba(56, 188, 167, 0.8) 7.52%, rgba(142, 61, 160, 0.8) 94.17%);
}

.consult-card__icon {
    width: 176px;
    height: 176px;
    object-fit: contain;
}

.consult-card__title {
    margin: 15px 0 0;
    color: #000;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.career-consult__lead {
    margin: 52px auto 0;
    max-width: 661px;
    color: #000;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 121%;
    text-align: center;
    letter-spacing: 0.02em;
}

.career-consult__cta {
    box-sizing: border-box;
    margin: 32px auto 0;
    width: 426px;
    height: 71px;
    border: 1px solid #105d60;
    border-radius: 11.9084px;
    background: linear-gradient(180deg, #38bca7 0%, #128c91 100%);
    box-shadow: 0 0 20px rgba(56, 56, 56, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 154%;
    letter-spacing: -0.02em;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.career-consult__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(56, 56, 56, 0.25);
}

.career-consult__cta:focus-visible {
    outline: 2px solid var(--career2-teal);
    outline-offset: 2px;
}

.career-social {
    padding: 56px 0 84px;
}

.career-social__container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.career-social__visual {
    position: relative;
}

.career-social__head {
    display: block;
    width: 1200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
}

.career-social__overlay {
    position: absolute;
    top: 142px;
    right: 72px;
    width: 501px;
    color: #ffffff;
}

.career-social__title {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.career-social__subtitle {
    margin: 24px 0 0;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.career-social__lead {
    margin: 56px auto 0;
    width: min(775px, calc(100% - 24px));
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #363636;
}

.career-social__buttons {
    margin-top: 54px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.career-social__btn {
    box-sizing: border-box;
    height: 106px;
    border-radius: 30px;
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 154%;
    letter-spacing: -0.02em;
    transition: transform 0.16s ease, box-shadow 0.2s ease;
}

.career-social__btn--teal {
    background: #128c91;
    border-color: #105d60;
}

.career-social__buttons .career-social__btn:nth-child(1) {
    width: 386px;
}

.career-social__buttons .career-social__btn:nth-child(2) {
    width: 384px;
}

.career-social__buttons .career-social__btn:nth-child(3) {
    width: 386px;
}

.career-social__btn--purple {
    background: #7c338c;
    border-color: #593461;
    width: 497px;
    height: 103px;
}

.career-social__btn--center {
    display: flex;
    margin: 38px auto 0;
}

.career-social__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
}

.career-social__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
}

.career-social__btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.career-events {
    padding: 42px 0 76px;
}

.career-events__surface {
    width: min(1934px, calc(100% - 16px));
    margin: 0 auto;
    min-height: 650px;
    background: linear-gradient(259.91deg, rgba(121, 69, 133, 0.08) 3.84%, rgba(56, 188, 167, 0.08) 71.66%);
    padding: 49px 0 42px;
}

.career-events__title {
    margin: 0;
    text-align: center;
    color: #000;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.career-events__lead {
    margin: 24px auto 0;
    width: min(680px, calc(100% - 24px));
    text-align: center;
    color: #363636;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.career-events__carousel {
    margin-top: 56px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.career-events__carousel::-webkit-scrollbar {
    display: none;
}

.career-events__carousel.is-dragging {
    cursor: grabbing;
}

.career-events__track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    padding: 0 0 10px;
}

.career-events__card {
    width: 497px;
    height: 331px;
    border-radius: 60px;
    box-shadow: none;
    overflow: hidden;
    flex: 0 0 auto;
}

.career-events__card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.career-employers {
    padding: 18px 0 84px;
}

.career-employers__container {
    width: min(1126px, calc(100% - 48px));
    margin: 0 auto;
}

.career-employers__title {
    margin: 0;
    text-align: center;
    color: #000;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.career-employers__rows {
    margin-top: 62px;
    display: grid;
    gap: 28px;
}

.career-employers__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    column-gap: 24px;
}

.career-employers__row:nth-child(1) {
    min-height: 98px;
}

.career-employers__row:nth-child(2) {
    min-height: 148px;
}

.career-employers__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.22s ease, filter 0.22s ease;
    transform-origin: center center;
}

.career-employers__row:nth-child(1) .career-employers__logo {
    max-height: 98px;
}

.career-employers__row:nth-child(2) .career-employers__logo {
    max-height: 148px;
}

.career-employers__logo:hover {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 8px 14px rgba(56, 56, 56, 0.22));
}

.career-employers__all {
    box-sizing: border-box;
    width: 249px;
    height: 57px;
    margin: 24px auto 0;
    border: 2px solid #128c91;
    border-radius: 35px;
    background: #fff;
    color: #128c91;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 22.0872px;
    line-height: 154%;
    letter-spacing: -0.02em;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.career-employers__all:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(56, 56, 56, 0.18);
}

.career-employers__all:focus-visible {
    outline: 2px solid #128c91;
    outline-offset: 2px;
}

.career-hiring {
    padding: 8px 0 84px;
}

.career-hiring__container {
    width: min(999px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
}

.career-hiring__head {
    display: block;
    width: 999px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
}

.career-hiring__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.career-hiring__title {
    margin: 51px 0 0;
    color: #ffffff;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 121%;
    letter-spacing: 0.02em;
    text-align: center;
}

.career-hiring__cta {
    box-sizing: border-box;
    margin-top: 43px;
    width: 497px;
    height: 103px;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 154%;
    letter-spacing: -0.02em;
    transition: transform 0.16s ease, box-shadow 0.2s ease;
}

.career-hiring__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}

.career-hiring__cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.consult-modal.is-open {
    display: block;
}

.consult-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.32);
}

.consult-modal__dialog {
    position: relative;
    width: min(760px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 12px auto;
    background: linear-gradient(180deg, #ffffff 0%, #fbfffe 100%) padding-box, linear-gradient(180deg, #38bca7 0%, #8e3da0 100%) border-box;
    border: 4px solid transparent;
    border-radius: 62px;
    padding: 44px 72px 36px;
    box-shadow: 0 16px 40px rgba(56, 56, 56, 0.25);
}

.consult-modal__dialog::-webkit-scrollbar {
    display: none;
}

.consult-modal__title {
    margin: 0;
    text-align: center;
    color: #000;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.consult-modal__subtitle {
    margin: 12px auto 0;
    max-width: 360px;
    text-align: center;
    color: #363636;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.consult-modal__close {
    position: absolute;
    top: 26px;
    right: 22px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.consult-modal__close span {
    position: absolute;
    top: 19px;
    left: 1px;
    width: 37px;
    height: 1px;
    background: #000;
}

.consult-modal__close span:first-child {
    transform: rotate(45deg);
}

.consult-modal__close span:last-child {
    transform: rotate(-45deg);
}

.consult-form {
    margin-top: 38px;
    padding: 4px;
}

.consult-field {
    display: block;
}

.consult-field input {
    width: 100%;
    height: 52px;
    border: 1.5px solid rgba(18, 140, 145, 0.28);
    border-radius: 18px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 121%;
    color: #000;
    padding: 12px 16px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(18, 140, 145, 0.08);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.consult-field input:hover {
    border-color: rgba(18, 140, 145, 0.55);
}

.consult-field input:focus {
    border-color: #128c91;
    box-shadow: 0 0 0 4px rgba(18, 140, 145, 0.12), 0 10px 22px rgba(18, 140, 145, 0.12);
    transform: translateY(-1px);
}

.consult-field input::placeholder {
    color: #9aa7a8;
    opacity: 1;
}

.consult-topics {
    margin: 6px 0 18px;
    padding: 18px;
    border: 1.5px solid rgba(121, 69, 133, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(56, 188, 167, 0.08) 0%, rgba(142, 61, 160, 0.08) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.consult-topics legend {
    margin: 0 0 12px;
    padding: 0 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #193539;
}

.consult-check {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(18, 140, 145, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    font-size: 17px;
    line-height: 130%;
    color: #193539;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.consult-check:hover {
    transform: translateY(-1px);
    border-color: rgba(18, 140, 145, 0.38);
    box-shadow: 0 10px 20px rgba(18, 140, 145, 0.1);
    background: #fff;
}

.consult-check input[type="checkbox"] {
    appearance: none;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin: 0;
    border: 2px solid #128c91;
    border-radius: 7px;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-check input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transform-origin: center;
    transition: transform 0.16s ease;
}

.consult-check input[type="checkbox"]:checked {
    border-color: #7c338c;
    background: linear-gradient(180deg, #38bca7 0%, #128c91 100%);
    box-shadow: 0 5px 12px rgba(18, 140, 145, 0.24);
}

.consult-check input[type="checkbox"]:checked::before {
    transform: rotate(-45deg) scale(1);
}

.consult-check input[type="checkbox"]:focus-visible {
    outline: 2px solid #7c338c;
    outline-offset: 3px;
}

.consult-check--other {
    align-items: center;
}

.consult-other-input {
    flex: 1;
    min-width: 150px;
    height: 44px;
    border: 1.5px solid rgba(18, 140, 145, 0.28);
    border-radius: 16px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 121%;
    padding: 9px 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(18, 140, 145, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.consult-other-input:focus {
    border-color: #128c91;
    box-shadow: 0 0 0 4px rgba(18, 140, 145, 0.12), 0 10px 22px rgba(18, 140, 145, 0.12);
    transform: translateY(-1px);
}

.consult-other-input:disabled {
    background: rgba(255, 255, 255, 0.5);
    color: #969696;
    cursor: not-allowed;
    box-shadow: none;
}

.consult-datetime {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1.5px solid rgba(18, 140, 145, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 18px rgba(18, 140, 145, 0.07);
}

.consult-date-row,
.consult-time-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
}

.consult-row-label {
    min-width: 70px;
    font-weight: 700;
    font-size: 18px;
    line-height: 121%;
    color: #193539;
}

.consult-date-row select,
.consult-time-row select {
    border: 1.5px solid rgba(18, 140, 145, 0.28);
    border-radius: 14px;
    height: 42px;
    padding: 0 12px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 121%;
    background: #fff;
    color: #193539;
    outline: none;
    box-shadow: 0 6px 14px rgba(18, 140, 145, 0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-date-row select:focus,
.consult-time-row select:focus {
    border-color: #128c91;
    box-shadow: 0 0 0 4px rgba(18, 140, 145, 0.12);
}

.consult-date-row select[name="day"],
.consult-date-row select[name="month"] {
    width: 72px;
}

.consult-date-row select[name="year"] {
    width: 96px;
}

.consult-time-row select {
    width: 190px;
}

.consult-form__submit {
    box-sizing: border-box;
    margin: 22px auto 0;
    width: 320px;
    height: 56px;
    border: 1px solid #105d60;
    border-radius: 18px;
    background: linear-gradient(180deg, #38bca7 0%, #128c91 100%);
    box-shadow: 0 12px 24px rgba(18, 140, 145, 0.24);
    color: #fff;
    display: block;
    font-family: "Century Gothic", Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 154%;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.consult-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(56, 56, 56, 0.25);
}

.consult-form__submit:focus-visible {
    outline: 2px solid var(--career2-teal);
    outline-offset: 2px;
}

body.consult-modal-open,
body.modal-open {
    overflow: hidden;
}

.vacancy-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: none;
}

.vacancy-modal.is-open {
    display: block;
}

.vacancy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.32);
}

.vacancy-modal__dialog {
    position: relative;
    width: min(760px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow: auto;
    margin: 12px auto;
    background: linear-gradient(180deg, #ffffff 0%, #fbfffe 100%) padding-box, linear-gradient(180deg, #38bca7 0%, #8e3da0 100%) border-box;
    border: 4px solid transparent;
    border-radius: 54px;
    padding: 40px 34px 34px;
    box-shadow: 0 16px 40px rgba(56, 56, 56, 0.25);
}

.vacancy-modal__title {
    margin: 0;
    text-align: center;
    color: #000;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 121%;
    letter-spacing: 0.02em;
}

.vacancy-modal__close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.vacancy-modal__close span {
    position: absolute;
    top: 17px;
    left: 1px;
    width: 33px;
    height: 1px;
    background: #000;
}

.vacancy-modal__close span:first-child {
    transform: rotate(45deg);
}

.vacancy-modal__close span:last-child {
    transform: rotate(-45deg);
}

.vacancy-form {
    margin-top: 30px;
    padding: 4px;
}

.vacancy-form__label {
    display: block;
    margin-bottom: 16px;
}

.vacancy-form__label > span {
    display: block;
    margin-bottom: 9px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #193539;
}

.vacancy-form input[type="text"],
.vacancy-form input[type="tel"],
.vacancy-form input[type="email"],
.vacancy-form textarea {
    width: 100%;
    border: 1.5px solid rgba(18, 140, 145, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 121%;
    color: #000;
    padding: 12px 16px;
    box-shadow: 0 8px 18px rgba(18, 140, 145, 0.08);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.vacancy-form input[type="text"],
.vacancy-form input[type="tel"],
.vacancy-form input[type="email"] {
    height: 52px;
}

.vacancy-form input[type="text"]:hover,
.vacancy-form input[type="tel"]:hover,
.vacancy-form input[type="email"]:hover,
.vacancy-form textarea:hover {
    border-color: rgba(18, 140, 145, 0.55);
}

.vacancy-form input[type="text"]:focus,
.vacancy-form input[type="tel"]:focus,
.vacancy-form input[type="email"]:focus,
.vacancy-form textarea:focus {
    border-color: #128c91;
    box-shadow: 0 0 0 4px rgba(18, 140, 145, 0.12), 0 10px 22px rgba(18, 140, 145, 0.12);
    transform: translateY(-1px);
}

.vacancy-options {
    margin: 4px 0 18px;
    padding: 18px;
    border: 1.5px solid rgba(121, 69, 133, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(56, 188, 167, 0.08) 0%, rgba(142, 61, 160, 0.08) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.vacancy-options legend {
    margin-bottom: 12px;
    padding: 0 8px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #193539;
}

.vacancy-option {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(18, 140, 145, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 130%;
    color: #193539;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vacancy-option:hover {
    transform: translateY(-1px);
    border-color: rgba(18, 140, 145, 0.38);
    box-shadow: 0 10px 20px rgba(18, 140, 145, 0.1);
    background: #fff;
}

.vacancy-option input[type="checkbox"] {
    appearance: none;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin: 0;
    border: 2px solid #128c91;
    border-radius: 7px;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vacancy-option input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transform-origin: center;
    transition: transform 0.16s ease;
}

.vacancy-option input[type="checkbox"]:checked {
    border-color: #7c338c;
    background: linear-gradient(180deg, #38bca7 0%, #128c91 100%);
    box-shadow: 0 5px 12px rgba(18, 140, 145, 0.24);
}

.vacancy-option input[type="checkbox"]:checked::before {
    transform: rotate(-45deg) scale(1);
}

.vacancy-option input[type="checkbox"]:focus-visible {
    outline: 2px solid #7c338c;
    outline-offset: 3px;
}

.vacancy-option--other {
    align-items: center;
}

.vacancy-other-input {
    flex: 1 1 auto;
    min-width: 180px;
    margin-left: 4px;
}

.vacancy-other-input:disabled {
    background: rgba(255, 255, 255, 0.5);
    color: #969696;
    cursor: not-allowed;
    box-shadow: none;
}

.vacancy-form textarea {
    min-height: 128px;
}

.vacancy-form textarea[name="responsibilities"],
.vacancy-form textarea[name="candidate_requirements"],
.vacancy-form textarea[name="work_conditions"] {
    min-height: 196px;
}

.vacancy-form textarea[name="resume_contacts"],
.vacancy-form textarea[name="target_audience"] {
    min-height: 128px;
}

.vacancy-form input::placeholder,
.vacancy-form textarea::placeholder {
    color: #9aa7a8;
    opacity: 1;
}

.vacancy-form__logo-row {
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.vacancy-form__logo-label {
    display: inline-block;
    margin-top: 4px;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #000;
}

.vacancy-upload {
    position: relative;
    box-sizing: border-box;
    width: 249px;
    min-height: 249px;
    border: 1px dashed #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 34px 16px 20px;
    color: #969696;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.16s ease;
}

.vacancy-upload:hover {
    transform: translateY(-1px);
    border-color: #128c91;
}

.vacancy-upload.is-dragover {
    border-color: #128c91;
    background: rgba(18, 140, 145, 0.05);
}

.vacancy-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.vacancy-upload__top,
.vacancy-upload__bottom {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 121%;
    letter-spacing: 0.02em;
    color: #969696;
}

.vacancy-upload__filename {
    margin: 0 0 14px;
    text-align: right;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 121%;
    color: #969696;
}

.vacancy-form__submit {
    box-sizing: border-box;
    margin: 24px auto 0;
    width: 318px;
    height: 56px;
    border: 1px solid #105d60;
    border-radius: 18px;
    background: linear-gradient(180deg, #38bca7 0%, #128c91 100%);
    box-shadow: 0 12px 24px rgba(18, 140, 145, 0.24);
    color: #fff;
    display: block;
    font-family: "Century Gothic", Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 154%;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.career-form__alert {
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.career-form__alert--success {
    background: rgba(18, 140, 145, 0.12);
    color: #0b6d70;
    border: 1px solid rgba(18, 140, 145, 0.35);
}

.career-form__alert--error {
    background: rgba(121, 69, 133, 0.12);
    color: #6b2e7b;
    border: 1px solid rgba(121, 69, 133, 0.35);
}

.page-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2000;
    padding: 14px 18px;
    border-radius: 16px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    max-width: min(92vw, 520px);
    text-align: center;
}

.page-toast--success {
    background: #f3fbfa;
    color: #0b6d70;
    border: 1px solid rgba(18, 140, 145, 0.35);
}

.page-toast--error {
    background: #f8f0fa;
    color: #6b2e7b;
    border: 1px solid rgba(121, 69, 133, 0.35);
}

.vacancy-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(56, 56, 56, 0.25);
}

.vacancy-form__submit:focus-visible {
    outline: 2px solid var(--career2-teal);
    outline-offset: 2px;
}

.footer {
    background: linear-gradient(135deg, #007b6c 0%, #7c338c 100%);
    color: #fff;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.footer .container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.footer .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.footer h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer p {
    margin: 0 0 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    font-weight: 500;
}

.footer-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #38bca7 0%, #7c338c 100%);
    transform: translateY(-3px);
}

.chip {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 68.17px;
    border: 2.5px solid var(--career2-teal);
    border-radius: 38.2168px;
    background: #fff;
    box-shadow: 0 0 20.3494px rgba(56, 56, 56, 0.2);
    text-decoration: none;
    color: var(--career2-teal);
    padding: 0 20px 0 10px;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.chip--wide {
    width: 400.76px;
}

.chip--compact {
    width: 367.71px;
    box-shadow: 0 0 20.3494px rgba(56, 56, 56, 0.19);
}

.chip__icon {
    width: 52.4px;
    height: 52.4px;
    flex: 0 0 auto;
    object-fit: contain;
    margin-right: 2px;
}

.chip__text {
    display: inline-block;
    color: var(--career2-teal);
    font-style: normal;
    font-weight: 700;
    font-size: 22.0872px;
    line-height: 154%;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(56, 56, 56, 0.24);
}

.chip:focus-visible {
    outline: 2px solid var(--career2-teal);
    outline-offset: 2px;
}

@media (max-width: 1440px) {
    .topbar__logo {
        height: 80px;
    }

    .topbar__link {
        font-size: 15px;
    }

    .career-hero__actions,
    .career-hero__chips {
        margin-left: 0;
        justify-content: center;
    }

    .career-hero__actions {
        position: static;
        margin-top: 18px;
    }

    .career-hero__chips {
        gap: 14px;
    }

    .career-social {
        padding: 46px 0 72px;
    }

    .career-social__container {
        width: min(1200px, calc(100% - 28px));
    }

    .career-social__overlay {
        top: 124px;
        right: 58px;
        width: 455px;
    }

    .career-social__title {
        font-size: 38px;
    }

    .career-social__subtitle {
        margin-top: 20px;
        font-size: 24px;
    }

    .career-social__lead {
        margin-top: 48px;
        width: min(720px, calc(100% - 24px));
        font-size: 36px;
    }

    .career-social__buttons {
        margin-top: 42px;
    }

    .career-social__btn {
        font-size: 23px;
    }

    .career-social__buttons .career-social__btn:nth-child(1),
    .career-social__buttons .career-social__btn:nth-child(2),
    .career-social__buttons .career-social__btn:nth-child(3) {
        width: calc((100% - 28px) / 3);
    }

    .career-social__btn--purple {
        width: min(497px, 100%);
    }

    .career-events {
        padding: 34px 0 64px;
    }

    .career-events__surface {
        width: calc(100% - 16px);
        min-height: auto;
        padding: 42px 0 34px;
    }

    .career-events__carousel {
        margin-top: 42px;
    }

    .career-employers {
        padding: 18px 0 72px;
    }

    .career-employers__container {
        width: min(1126px, calc(100% - 28px));
    }

    .career-employers__rows {
        margin-top: 48px;
        gap: 24px;
    }

    .career-employers__row {
        column-gap: 16px;
    }

    .career-hiring {
        padding: 8px 0 72px;
    }

    .career-hiring__container {
        width: min(999px, calc(100% - 28px));
    }
}

@media (max-width: 1180px) {
    .topbar__container {
        width: min(1717.5px, calc(100% - 28px));
    }

    .topbar__nav {
        gap: 10px 22px;
    }

    .topbar__link {
        font-size: 14px;
    }

    .career-hero__container {
        width: min(1717.5px, calc(100% - 28px));
    }

    .btn {
        width: 278px;
        height: 72px;
        font-size: 23px;
    }

    .chip--wide,
    .chip--compact {
        width: 400.76px;
        max-width: 100%;
    }

    .career-consult {
        min-height: initial;
        padding: 62px 0 70px;
    }

    .career-consult__cards {
        gap: 28px;
    }

    .consult-card__icon-wrap {
        width: 230px;
        height: 230px;
        border-radius: 48px;
    }

    .consult-card__icon {
        width: 160px;
        height: 160px;
    }

    .consult-card__title {
        font-size: 22px;
    }

    .career-consult__lead {
        font-size: 24px;
    }

    .consult-modal__dialog {
        padding: 32px 34px 24px;
        border-radius: 30px;
    }

    .career-social {
        padding: 38px 0 58px;
    }

    .career-social__overlay {
        top: 104px;
        right: 46px;
        width: 390px;
    }

    .career-social__title {
        font-size: 34px;
    }

    .career-social__subtitle {
        margin-top: 18px;
        font-size: 22px;
    }

    .career-social__lead {
        margin-top: 44px;
        width: min(680px, calc(100% - 20px));
        font-size: 32px;
    }

    .career-social__buttons {
        margin-top: 32px;
        gap: 10px;
    }

    .career-social__btn {
        height: 90px;
        font-size: 20px;
        gap: 9px;
    }

    .career-social__icon {
        width: 30px;
        height: 30px;
    }

    .career-social__btn--purple {
        height: 92px;
    }

    .career-events__title {
        font-size: 34px;
    }

    .career-events__lead {
        font-size: 22px;
    }

    .career-events__track {
        gap: 22px;
    }

    .career-events__card {
        width: 440px;
        height: 293px;
        border-radius: 52px;
    }

    .career-employers {
        padding: 16px 0 62px;
    }

    .career-employers__title {
        font-size: 36px;
    }

    .career-employers__rows {
        margin-top: 38px;
        gap: 20px;
    }

    .career-employers__row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 16px;
    }

    .career-employers__row:nth-child(1),
    .career-employers__row:nth-child(2) {
        min-height: 0;
    }

    .career-employers__row .career-employers__logo {
        max-height: 84px;
    }

    .career-employers__all {
        margin-top: 18px;
    }

    .career-hiring {
        padding: 8px 0 64px;
    }

    .career-hiring__title {
        margin-top: 40px;
        font-size: 36px;
    }

    .career-hiring__cta {
        margin-top: 28px;
        width: 440px;
        height: 88px;
        font-size: 24px;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .topbar__container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .topbar__logo {
        height: 74px;
    }

    .topbar__nav {
        justify-content: center;
        gap: 8px 16px;
    }

    .topbar__link {
        font-size: 14px;
    }

    .career-hero {
        padding-top: 18px;
    }

    .career-hero__head {
        transform: translateX(14px) translateY(-8px);
    }

    .career-hero__actions {
        margin-top: 18px;
        gap: 12px;
    }

    .btn {
        width: min(100%, 420px);
    }

    .career-hero__chips {
        margin-top: 28px;
        gap: 10px;
    }

    .chip--wide,
    .chip--compact {
        width: min(100%, 420px);
    }

    .career-consult {
        padding: 48px 0 56px;
    }

    .career-consult__title {
        font-size: 34px;
    }

    .career-consult__cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
    }

    .consult-card__icon-wrap {
        width: 220px;
        height: 220px;
    }

    .consult-card__icon {
        width: 150px;
        height: 150px;
    }

    .consult-card__title {
        margin-top: 12px;
    }

    .career-consult__lead {
        margin-top: 24px;
        font-size: 21px;
    }

    .career-consult__cta {
        width: min(100%, 426px);
        margin-top: 20px;
    }

    .consult-modal__dialog {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        overflow: auto;
        margin: 8px auto;
        padding: 40px 22px 28px;
        border-radius: 26px;
    }

    .consult-modal__close {
        top: 22px;
        right: 20px;
        width: 32px;
        height: 32px;
    }

    .consult-modal__close span {
        top: 15px;
        left: 1px;
        width: 30px;
    }

    .consult-modal__title {
        font-size: 22px;
        padding-right: 20px;
    }

    .consult-modal__subtitle {
        font-size: 10px;
    }

    .consult-form {
        margin-top: 28px;
    }

    .consult-field input,
    .consult-topics legend,
    .consult-check,
    .consult-other-input {
        font-size: 16px;
    }

    .consult-field input {
        height: 46px;
    }

    .consult-row-label {
        min-width: 58px;
        font-size: 16px;
    }

    .consult-date-row select,
    .consult-time-row select {
        font-size: 16px;
        height: 40px;
    }

    .consult-time-row select {
        width: 140px;
    }

    .consult-form__submit {
        width: 240px;
        height: 40px;
        font-size: 15px;
    }

    .vacancy-modal__dialog {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        margin: 8px auto;
        border-radius: 26px;
        padding: 38px 22px 28px;
    }

    .vacancy-modal__title {
        font-size: 30px;
        line-height: 116%;
    }

    .vacancy-modal__close {
        top: 22px;
        right: 20px;
        width: 32px;
        height: 32px;
    }

    .vacancy-modal__close span {
        top: 15px;
        left: 1px;
        width: 30px;
    }

    .vacancy-form {
        margin-top: 22px;
    }

    .vacancy-form__label > span,
    .vacancy-form input[type="text"],
    .vacancy-form input[type="tel"],
    .vacancy-form input[type="email"],
    .vacancy-form textarea,
    .vacancy-form__logo-label,
    .vacancy-options legend {
        font-size: 20px;
    }

    .vacancy-option {
        font-size: 18px;
    }

    .vacancy-form__logo-row {
        flex-direction: column;
        align-items: stretch;
    }

    .vacancy-upload {
        width: 100%;
        max-width: 280px;
    }

    .vacancy-upload__filename {
        text-align: left;
    }

    .vacancy-form__submit {
        width: 240px;
        height: 40px;
        font-size: 15px;
    }

    .footer .row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .career-social {
        padding: 34px 0 48px;
    }

    .career-social__container {
        width: calc(100% - 20px);
    }

    .career-social__overlay {
        top: 72px;
        right: 24px;
        width: 292px;
    }

    .career-social__title {
        font-size: 27px;
    }

    .career-social__subtitle {
        margin-top: 12px;
        font-size: 17px;
    }

    .career-social__lead {
        margin-top: 34px;
        width: calc(100% - 20px);
        font-size: 25px;
    }

    .career-social__buttons {
        margin-top: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .career-social__buttons .career-social__btn:nth-child(1),
    .career-social__buttons .career-social__btn:nth-child(2),
    .career-social__buttons .career-social__btn:nth-child(3) {
        width: 100%;
        height: 82px;
    }

    .career-social__btn {
        font-size: 21px;
    }

    .career-social__btn--purple {
        width: 100%;
        height: 82px;
        margin-top: 14px;
    }

    .career-events {
        padding: 28px 0 44px;
    }

    .career-events__surface {
        width: calc(100% - 10px);
        padding: 30px 0 28px;
    }

    .career-events__title {
        font-size: 30px;
    }

    .career-events__lead {
        font-size: 18px;
        margin-top: 16px;
    }

    .career-events__carousel {
        margin-top: 30px;
    }

    .career-events__track {
        gap: 16px;
    }

    .career-events__card {
        width: 340px;
        height: 226px;
        border-radius: 40px;
    }

    .career-employers {
        padding: 14px 0 52px;
    }

    .career-employers__title {
        font-size: 32px;
    }

    .career-employers__rows {
        margin-top: 30px;
        gap: 18px;
    }

    .career-employers__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 14px;
        column-gap: 14px;
    }

    .career-employers__row .career-employers__logo {
        max-height: 74px;
    }

    .career-employers__all {
        margin-top: 14px;
    }

    .career-hiring {
        padding: 6px 0 54px;
    }

    .career-hiring__title {
        margin-top: 34px;
        font-size: 30px;
    }

    .career-hiring__cta {
        margin-top: 22px;
        width: min(420px, calc(100% - 26px));
        height: 78px;
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .topbar__container {
        width: calc(100% - 20px);
    }

    .topbar__logo {
        height: 60px;
    }

    .topbar__link {
        font-size: 13px;
    }

    .career-hero__container {
        width: calc(100% - 20px);
    }

    .career-hero__head {
        transform: translateX(0) translateY(-6px);
    }

    .btn {
        height: 62px;
        font-size: 18px;
    }

    .chip {
        height: 62px;
        padding-right: 14px;
    }

    .chip__icon {
        width: 40px;
        height: 40px;
    }

    .chip__text {
        font-size: 17px;
    }

    .career-consult {
        padding: 36px 0 46px;
    }

    .career-consult__container {
        width: calc(100% - 20px);
    }

    .career-consult__title {
        font-size: 30px;
    }

    .consult-card__icon-wrap {
        width: 196px;
        height: 196px;
        border-radius: 44px;
    }

    .consult-card__icon {
        width: 132px;
        height: 132px;
    }

    .consult-card__title {
        font-size: 19px;
    }

    .career-consult__lead {
        font-size: 18px;
    }

    .career-consult__cta {
        height: 62px;
        font-size: 22px;
    }

    .consult-modal__dialog {
        padding: 34px 16px 20px;
        border-radius: 18px;
    }

    .consult-modal__title {
        font-size: 20px;
    }

    .consult-modal__subtitle {
        max-width: 100%;
    }

    .consult-field input,
    .consult-topics legend,
    .consult-check,
    .consult-other-input {
        font-size: 14px;
    }

    .consult-field input {
        height: 42px;
    }

    .consult-check {
        gap: 8px;
    }

    .consult-check input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .consult-row-label {
        min-width: 50px;
        font-size: 14px;
    }

    .consult-date-row,
    .consult-time-row {
        gap: 8px;
        flex-wrap: wrap;
    }

    .consult-date-row select[name="day"],
    .consult-date-row select[name="month"] {
        width: 78px;
    }

    .consult-date-row select[name="year"] {
        width: 102px;
    }

    .consult-time-row select {
        width: 100%;
    }

    .consult-date-row select,
    .consult-time-row select {
        font-size: 14px;
        height: 38px;
    }

    .consult-form__submit {
        width: 220px;
        height: 38px;
        font-size: 14px;
    }

    .vacancy-modal__dialog {
        padding: 34px 16px 20px;
        border-radius: 18px;
    }

    .vacancy-modal__title {
        font-size: 24px;
    }

    .vacancy-form__label > span,
    .vacancy-form input[type="text"],
    .vacancy-form input[type="tel"],
    .vacancy-form input[type="email"],
    .vacancy-form textarea,
    .vacancy-form__logo-label,
    .vacancy-options legend {
        font-size: 16px;
    }

    .vacancy-option {
        align-items: flex-start;
        font-size: 15px;
    }

    .vacancy-option--other {
        flex-wrap: wrap;
    }

    .vacancy-other-input {
        flex: 1 0 100%;
        margin-left: 32px;
    }

    .vacancy-form input[type="text"],
    .vacancy-form input[type="tel"],
    .vacancy-form input[type="email"] {
        height: 38px;
    }

    .vacancy-form textarea,
    .vacancy-form textarea[name="responsibilities"],
    .vacancy-form textarea[name="candidate_requirements"],
    .vacancy-form textarea[name="work_conditions"] {
        min-height: 132px;
    }

    .vacancy-form textarea[name="resume_contacts"],
    .vacancy-form textarea[name="target_audience"] {
        min-height: 92px;
    }

    .vacancy-upload {
        min-height: 190px;
        max-width: 100%;
    }

    .vacancy-form__submit {
        width: 220px;
        height: 38px;
        font-size: 14px;
    }

    .footer {
        padding: 3.5rem 0 2.5rem;
    }

    .footer .container {
        width: calc(100% - 32px);
    }

    .footer h5 {
        font-size: 1.25rem;
    }

    .career-social {
        padding: 28px 0 40px;
    }

    .career-social__overlay {
        top: 48px;
        right: 14px;
        width: 210px;
    }

    .career-social__title {
        font-size: 20px;
    }

    .career-social__subtitle {
        margin-top: 10px;
        font-size: 13px;
    }

    .career-social__lead {
        margin-top: 26px;
        width: calc(100% - 16px);
        font-size: 18px;
    }

    .career-social__buttons {
        margin-top: 16px;
    }

    .career-social__btn {
        height: 70px;
        font-size: 17px;
        gap: 8px;
        border-radius: 20px;
    }

    .career-social__icon {
        width: 26px;
        height: 26px;
    }

    .career-social__btn--purple {
        height: 70px;
    }

    .career-events {
        padding: 22px 0 34px;
    }

    .career-events__surface {
        width: calc(100% - 8px);
        padding: 22px 0 20px;
    }

    .career-events__title {
        font-size: 24px;
    }

    .career-events__lead {
        width: calc(100% - 18px);
        font-size: 15px;
        margin-top: 12px;
    }

    .career-events__carousel {
        margin-top: 20px;
    }

    .career-events__card {
        width: 280px;
        height: 186px;
        border-radius: 32px;
    }

    .career-employers {
        padding: 12px 0 44px;
    }

    .career-employers__container {
        width: calc(100% - 20px);
    }

    .career-employers__title {
        font-size: 27px;
    }

    .career-employers__rows {
        margin-top: 24px;
    }

    .career-employers__row {
        grid-template-columns: 1fr;
    }

    .career-employers__row .career-employers__logo {
        max-height: 68px;
    }

    .career-employers__all {
        width: min(249px, 100%);
        font-size: 20px;
    }

    .career-hiring {
        padding: 4px 0 44px;
    }

    .career-hiring__container {
        width: calc(100% - 20px);
    }

    .career-hiring__title {
        margin-top: 28px;
        font-size: 24px;
    }

    .career-hiring__cta {
        margin-top: 16px;
        width: calc(100% - 20px);
        max-width: 360px;
        height: 64px;
        font-size: 18px;
        border-radius: 18px;
    }
}
