:root {
	--color-brand: #bd0c1e;
	--color-dark: #121217;
	--color-dark-2: #17171c;
	--color-white: #fff;
	--color-text-secondary: #9d9d9d;
	--color-text-light: #aab4b6;
	--color-stroke: #f2f2f2;
	--radius-base: 16px;
	--radius-small: 8px;
	--radius-full: 800px;
	--shadow-base: -2px 4px 20px 0 rgba(0, 0, 0, .08);
	--container-max: 1260px;
	--container-px: 5px;
}

body {
	background: #121217;
}

.page {
	position: relative;
	font-family: "Factor A", sans-serif;
}

.career-changellenge_bg {
	position: absolute;
	left: 0;
	bottom: -450px;
	width: 65%;
	z-index: -1;
}

.desktop-menu-container {
	height: auto;
	max-height: 100% !important;
	background: #121217;
}

.desktop-menu {
	padding: 24px 0;
}

.desktop-menu__logo,
.menu-desktop-item__link,
.desktop-menu-promasters__separator,
.desktop-menu-promasters__second,
.desktop-menu-container.fixed .desktop-menu .desktop-menu__logo,
.desktop-menu-container.fixed .desktop-menu .desktop-menu__items .menu-desktop-item__link,
.desktop-menu-container.fixed .desktop-menu button[data-trigger=""].menu-desktop-item__link {
	color: #FFFFFF;
}

.desktop-menu-container .desktop-menu .desktop-menu__logo svg path,
.desktop-menu-container.fixed .desktop-menu .desktop-menu__logo svg path {
	fill: #FFFFFF;
}

.desktop-menu-promasters {
	background: none;
}

.main-container.main-container--footer,
.main-footer {
	background: #121217;
}

.main-footer__logo {
	color: #FFFFFF;
}

.main-footer__logo svg path {
	fill: #FFFFFF;
}

.subscribe-form__description,
.subscribe-form__privacy,
.footer-menu-group__title,
.footer-menu-group__link,
.social-btns__title,
.main-footer__copyright--desktop {
	color: #9D9D9D;
}

.cursor {
	animation: blink 0.7s infinite;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
	padding: 0 var(--container-px);
}

/* =============================================
   TYPOGRAPHY
============================================= */
.heading-xl {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.27;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.heading-lg {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.heading-md {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.text-body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.31;
}

.text-body-lg {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.text-caption {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.33;
}

.text-brand {
	color: var(--color-brand);
}

.text-secondary {
	color: var(--color-text-secondary);
}

.text-light-color {
	color: var(--color-text-light);
}

.text-dark {
	color: var(--color-dark);
}

/* =============================================
   BUTTON
============================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 24px;
	border-radius: var(--radius-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	border: none;
	transition: opacity .2s;
}

.btn:hover {
	opacity: .85;
}

.btn--primary {
	background: var(--color-brand);
	color: #fff;
}

.btn--icon {
	width: 48px;
	height: 48px;
	padding: 12px;
	border-radius: var(--radius-full);
	background: #fff;
	box-shadow: var(--shadow-base);
}

.btn--icon svg {
	width: 24px;
	height: 24px;
}

/* =============================================
   CHIP
============================================= */
.chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: var(--radius-base);
	border: 1px solid var(--color-stroke);
	background: #fff;
	font-size: 16px;
	color: var(--color-dark);
	white-space: nowrap;
}

.chip--sm {
	font-size: 12px;
	padding: 8px;
}

.chip--brand-border {
	border: .5px solid var(--color-brand);
}

/* =============================================
   HERO
============================================= */
.hero {
	margin: 32px 0 112px;
}

.hero__logo-mobile {
	display: none;
}

.hero__inner {
	background: var(--color-dark-2);
	border-radius: 24px;
	padding: 64px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
}

.hero__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 78px;
	z-index: 1;
}

.hero__title {
	color: #fff;
	margin-bottom: 16px;
}

.hero__subtitle {
	font-size: 20px;
	color: #fff;
	line-height: 1.1;
	margin: 0;
}

.hero__image {
	width: 298px;
	height: 327px;
	flex-shrink: 0;
	position: relative;
}

.hero__image img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 1;
}

.hero__btn {
	line-height: normal;
	padding: 14px 24px 15px;
	z-index: 1;
}

.hero__bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

.hero__bg--mobile {
	display: none;
}

/* =============================================
   GOAL BLOCK
============================================= */
.goal {
	margin: 112px 0;
}

.goal__inner {
	display: flex;
	gap: 48px;
	align-items: flex-start;
}

.goal__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	color: #fff;
}

.goal__title {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 0;
}

.goal__body {
	font-size: 20px;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.goal__body p {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 0;
}

.goal__bento {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.goal__bento:after {
	content: '';
	position: absolute;
	right: 125px;
	bottom: -60px;
	width: 133px;
	height: 115px;
	background: url(images/cup.webp);
	background-size: cover;
}

.goal__col {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 188px;
}

.goal__stat {
	border-radius: var(--radius-base);
	padding: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
	aspect-ratio: 1;
}

.goal__stat--brand {
	background: var(--color-brand);
	color: #fff;
}

.goal__stat--white {
	background: #fff;
	color: var(--color-dark);
}

.goal__stat--light {
	background: #fff8f8;
	color: #101011;
}

.goal__stat-number {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.goal__stat-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.goal__stat_white {
	color: #fff;
	background: transparent;
}

.goal__img {
	width: 100%;
	border-radius: var(--radius-base);
	overflow: hidden;
}

.goal__img_mini {
	height: 188px;
}

.goal__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.goal__img--tall {
	height: 385px;
}

.goal__img--sq {
	height: 188px;
}

/* =============================================
   LOGOS TICKER
============================================= */
.logos {
	padding: 40px 0;
	overflow: hidden;
}

.logos__title {
	color: var(--color-white);
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 25px;
}

.logos__track {
	display: flex;
	gap: 21px;
	align-items: center;
}

.logos__item {
	background: #fff;
	border: 1.5px solid var(--color-dark);
	border-radius: 24px;
	box-shadow: 3px 2px 0 #121217;
	padding: 8px 12px;
	height: 46px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logos__item img {
	height: 100%;
	width: auto;
}

.logos__item span {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-dark);
	white-space: nowrap;
}

/* =============================================
   VALUES BLOCK
============================================= */
.values {
	margin: 48px 0 112px;
}

.values__inner {
	background: var(--color-dark-2);
	border-radius: 24px;
	padding: 48px 28px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.values__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	color: #fff;
	z-index: 1;
}

.values__title {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.values__subtitle {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0;
}

.values__block-gallery {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	z-index: 1;
}

.values__gallery {
	display: flex;
	gap: 16px;
	justify-content: center;
	z-index: 1;
}

.values__photo {
	width: 228px;
	height: 228px;
	border-radius: var(--radius-base);
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
	z-index: 1;
	border: 1px solid transparent;
	transition: border-color 0.5s ease, transform 0.5s ease;
}

.values__photo:hover {
	transform: scale(1.04);
}

.values__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.values__photo--highlighted {
	border-color: var(--color-brand);
}

@keyframes valueCardIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.values__card {
	position: relative;
	display: none;
	max-width: 960px;
	min-height: 288px;
	background: #dfdfe2;
	border-radius: var(--radius-base);
	overflow: hidden;
	z-index: 1;
}

.values__card-show {
	display: flex;
	animation: valueCardIn 0.75s ease;
}

.values__card-black {
	color: #FFFFFF;
	background: #121216;
}

.values__card-img {
	width: 270px;
	height: auto;
	flex-shrink: 0;
	overflow: hidden;
	z-index: 1;
}

.values__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.values__card-content {
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	color: var(--color-dark);
}

.values__card-black .values__card-content {
	color: #FFFFFF;
}

.values__card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0;
}

.values__card-list {
	list-style: disc;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0;
}

.values__card-ps {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.values__bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

/* =============================================
   BENEFITS BLOCK
============================================= */
.benefits {
	margin: 112px 0;
}

.benefits__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.benefits__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	color: #fff;
}

.benefits__title {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.benefits__subtitle {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0;
}

.benefits__layout {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.benefits__image {
	width: 485px;
	height: 729px;
	border-radius: var(--radius-base);
	overflow: hidden;
	flex-shrink: 0;
}

.benefits__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefits__cards {
	display: grid;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	gap: 8px;
	width: 710px;
	height: 729px;
	transition: all 0.4s ease-out;
}

.benefits__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
	color: #fff;
	background-color: var(--color-dark-2);
	border-radius: var(--radius-base);
	padding: 24px;
	overflow: hidden;
	transition: background-color 0.4s ease-out, gap 0.4s ease-out;
	cursor: pointer;
}

.benefits__card:hover {
	background-color: var(--color-brand);
}

.benefits__card.benefits__card--open {
	justify-content: flex-start;
	gap: 48px;
	background-color: var(--color-brand);
}

.benefits__card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.benefits__card-title {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
}

.benefits__card-text {
	position: relative;
	overflow: hidden;
	max-height: 0;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 160%;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: max-height 0.1s ease-out, opacity 0.4s ease-out 0.13s, visibility 0.4s ease-out 0.13s;
}

.benefits__card--open .benefits__card-text {
	max-height: max-content;
	opacity: 1;
	visibility: visible;
}

.benefits__card-num {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	transition: opacity 0.4s ease-out;
}

.benefits__card--open .benefits__card-num {
	opacity: 0;
}

.benefits__card-star {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 60%;
	max-height: 95%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease-out, visibility 0.1s ease-out;
}

.benefits__card--open .benefits__card-star {
	opacity: 1;
	visibility: visible;
}

/* =============================================
   ADD BENEFITS
============================================= */
.add-benefits {
	margin: 112px 0;
}

.add-benefits__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

.add-benefits__title {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 0;
}

.add-benefits__bento {
	display: flex;
	gap: 16px;
	width: 100%;
	align-items: flex-start;
}

.add-benefits__bento--mobile {
	display: none;
}

.add-benefits__col--left {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 705px;
}

.add-benefits__col--right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.add-benefits__row {
	display: flex;
	gap: 16px;
}

.add-benefits__tile {
	border-radius: var(--radius-base);
	padding: 24px;
	overflow: hidden;
	position: relative;
	flex: 1;
}

.add-benefits__tile--white {
	background: #fff;
	color: var(--color-dark);
}

.add-benefits__tile--brand {
	background: var(--color-brand);
	color: #fff;
}

.add-benefits__tile--height-279 {
	height: 279px;
}

.add-benefits__tile--height-307 {
	height: 307px;
}

.add-benefits__tile-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
}

.add-benefits__img {
	border-radius: var(--radius-base);
	overflow: clip;
	flex: 1.5;
}

.add-benefits__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.add-benefits__img--height-237 {
	height: 237px;
}

.add-benefits__arrows {
	background: var(--color-brand);
	border-radius: var(--radius-base);
	padding: 30px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-benefits__arrows img {
	height: 42px;
}

.add-benefits__tile-kotocoin {
	max-width: 220px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
}

.add-benefits__tile--end {
	padding-top: 36px;
	padding-bottom: 35px;
}

.add-benefits__tile--bg {
	position: absolute;
	left: 0;
	bottom: 0;
}

/* =============================================
   VACANCIES BLOCK
============================================= */
.vacancies {
	margin: 112px 0;
}

.vacancies__inner {
	background: var(--color-dark-2);
	border-radius: 24px;
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.vacancies__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	color: #fff;
	width: 100%;
}

.vacancies__title {
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.vacancies__subtitle {
	color: #fff;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 0;
}

.vacancies__bg-right,
.vacancies__bg-left {
	position: absolute;
}

.vacancies__bg-right {
	top: 0;
	right: 0;
	width: 30%;
}

.vacancies__bg-left {
	left: 0;
	bottom: 0;
	width: 25%;
}

/* =============================================
   CASES BLOCK
============================================= */
.cases {
	margin: 112px 0;
}

.cases__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.cases__header {
	display: flex;
	gap: 70px;
	align-items: center;
}

.cases__title {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	flex: 1;
	margin-bottom: 0;
}

.cases__pagination {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-shrink: 0;
}

.cases__pagination .btn:focus {
	box-shadow: none !important;
}

.cases__pagination .btn.swiper-button-disabled {
	pointer-events: none;
}

.cases__scroll {
	overflow: hidden;
}

.cases__track {}

.case-card {
	width: 392px;
	height: 392px;
	border-radius: var(--radius-base);
	overflow: hidden;
	position: relative;
}

.case-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-card__chip {
	position: absolute;
	bottom: 24px;
	left: 22px;
}

/* =============================================
   MORE BENEFITS
============================================= */
.more-benefits {
	margin: 112px 0;
}

.more-benefits__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.more-benefits__title {
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
}

.more-benefits__bento {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.more-benefits__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1;
}

.more-benefits__col--mid {
	flex-shrink: 0;
	width: 400px;
}

.more-benefits__col--right {
	flex-shrink: 0;
	width: 376px;
}

.more-benefits__tile {
	border-radius: var(--radius-base);
	overflow: hidden;
	flex: 1;
}

.more-benefits__text-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 120%;
	text-align: center;
	background: var(--color-dark-2);
	border-radius: var(--radius-base);
	padding: 28px 16px;
	z-index: 1;
}

.more-benefits__text-tile--h100 {
	height: 100%;
}

.more-benefits__text-tile--brand {
	background: var(--color-brand);
}

.more-benefits__img {
	border-radius: var(--radius-base);
	overflow: hidden;
	flex: 1;
}

.more-benefits__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.more-benefits__img--h250 {
	height: 250px;
	flex: none;
}

/* =============================================
   RESUME BLOCK
============================================= */
.resume {
	margin: 112px 0 100px;
}

.resume__inner {
	background: var(--color-dark-2);
	border-radius: var(--radius-base);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 64px 48px;
}

.resume__content {
	max-width: 650px;
	display: flex;
	flex-direction: column;
	gap: 48px;
	flex: 1;
}

.resume__content-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.resume__title {
	font-size: 34px;
	font-weight: 700;
	color: #f8f8f8;
	line-height: 1.1;
	margin-bottom: 0;
}

.resume__text {
	font-size: 20px;
	color: #fff;
	line-height: 1.2;
}

.resume__image {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
	border-radius: 0 var(--radius-base) var(--radius-base) 0;
}

.resume__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.resume__btn {
	max-width: 210px;
	height: 51px;
	line-height: normal;
	padding: 15px 24px;
}

#jsModalCareerChangellenge .modal-dialog {
	max-width: 768px;
}

#jsModalCareerChangellenge .modal-content {
	font-family: "Factor A", sans-serif;
	border-radius: 24px;
	overflow: hidden;
}

#jsModalCareerChangellenge .vacancy-response {
	max-width: 768px;
	padding: 32px;
	margin: 0;
}

#jsModalCareerChangellenge .close {
	top: 32px;
	right: 32px;
	display: flex;
	background: none;
}

#jsModalCareerChangellenge .vacancy-response__title {
	font-family: "Factor A", sans-serif;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
}

#jsModalCareerChangellenge .vacancy-response__contacts {
	gap: 24px;
}

#jsModalCareerChangellenge .vacancy-response__field {
	max-width: 100%;
}

#jsModalCareerChangellenge .vacancy-response__field.vacancy-response-field input {
	min-height: 48px;
	max-height: 48px;
	font-family: "Factor A", sans-serif !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	border-radius: 16px;
	background: #FFF;
	border: 1px solid #F2F2F2;
	padding: 12px 16px;
}

#jsModalCareerChangellenge .vacancy-response__field.vacancy-response-field .selectize-control.single .selectize-input {
	min-height: 48px;
	max-height: 48px;
	font-family: "Factor A", sans-serif !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	border-radius: 16px;
	background: #FFF;
	border: 1px solid #F2F2F2 !important;
	padding: 12px 16px;
}

#jsModalCareerChangellenge .selectize-input.required:before {
	content: none;
}

#jsModalCareerChangellenge .selectize-dropdown [data-selectable].option {
	font-family: "Factor A", sans-serif !important;
}

#jsModalCareerChangellenge .selectize-dropdown .option,
#jsModalCareerChangellenge .selectize-dropdown .optgroup-header,
#jsModalCareerChangellenge .selectize-dropdown .no-results, .selectize-dropdown .create {
	padding: 5px .75rem;
}

#jsModalCareerChangellenge .vacancy-response-field__textarea {
	height: 112px;
	font-family: "Factor A", sans-serif !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	background: #FFF;
	border: 1px solid #F2F2F2;
	border-radius: 16px;
}

#jsModalCareerChangellenge .vacancy-response-resume .vacancy-response__h3 {
	font-family: "Factor A", sans-serif !important;
	color: #121217;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 16px;
}

#jsModalCareerChangellenge .vacancy-repselectize-input {
	font-family: "Factor A", sans-serif !important;
	color: #BD0C1E;
	background: #FFF;
	border-radius: 16px;
	border: 1px solid #F2F2F2;
	padding: 16px 24px;
}

#jsModalCareerChangellenge .vacancy-repselectize-input:hover {
	border-color: #BD0C1E;
}

#jsModalCareerChangellenge .field-file__name {
	font-family: "Factor A", sans-serif !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}

#jsModalCareerChangellenge .btn-main_red {
	width: 100%;
	font-family: "Factor A", sans-serif !important;
}

#jsModalCareerChangellenge .vacancy-response-link_personal-data-policy {
	font-family: "Factor A", sans-serif !important;
	line-height: normal;
}

#jsModalCareerChangellenge .vacancy-response__success-msg__title {
	font-family: "Factor A", sans-serif !important;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
}

#jsModalCareerChangellenge .vacancy-response__success-msg__text {
	font-family: "Factor A", sans-serif !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 0;
}

#jsModalCareerChangellenge .vacancy-response__success-msg {
	width: 100%;
	max-width: 100%;
}

#jsModalCareerChangellenge .alert {
	display: block;
	background: none;
	padding: 0;
	margin: 0;
}

#jsModalCareerChangellenge .alert p {
	color: #db182a;
	font-weight: 600;
	margin-bottom: 8px;
}

/* =============================================
   RESPONSIVE — TABLET & MOBILE
============================================= */
@media (max-width: 1280px) {
	:root {
		--container-px: 40px;
	}

	.hero__inner {
		padding: 48px;
	}

	.goal__bento {
		display: none;
	}

	.goal__text {
		max-width: 100%;
	}

	.values__photo {
		width: 160px;
		height: 160px;
	}

	.resume__image {
		display: none;
	}
}

@media (max-width: 900px) {
	:root {
		--container-px: 20px;
	}

	/* Hero */
	.hero {
		margin: 48px 0;
	}

	.hero__logo-mobile {
		display: block;
		max-width: 200px;
		width: 100%;
		height: auto;
		margin-bottom: 32px;
	}

	.hero__inner {
		height: 780px;
		flex-direction: column;
		align-items: flex-start;
		padding: 64px 16px;
		gap: 32px;
		min-height: auto;
	}

	.hero__content {
		gap: 62px;
	}

	.hero__image {
		position: absolute;
		right: 0;
		bottom: 80px;
		width: auto;
		height: 310px;
	}

	.hero__image img {
		width: auto;
		height: 100%;
		margin: auto;
	}

	.hero__bg {
		display: none;
	}

	.hero__bg--mobile {
		display: block;
		position: absolute;
		bottom: 0;
		right: 0;
		height: 100%;
	}

	/* Goal */
	.goal {
		margin: 48px 0;
	}

	.goal__inner {
		flex-direction: column;
	}

	.goal__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	.goal__bento {
		width: 100%;
		display: flex;
		padding-bottom: 8px;
	}

	.goal__bento::-webkit-scrollbar {
		display: none;
	}

	.goal__col {
		width: calc((100% - 16px) / 3);
	}

	.goal__text {
		gap: 8px;
		text-align: center;
	}

	.goal__body p {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
	}

	.goal__stat {
		gap: 8px;
	}

	.goal__stat-number {
		font-size: 16px;
		font-weight: 700;
		line-height: 120%;
	}

	.goal__stat-label {
		font-size: 12px;
		font-weight: 400;
		line-height: 120%;
	}

	.goal__img--tall {
		height: 250px;
	}

	.goal__img--sq {
		height: 122px;
	}

	.goal__bento:after {
		right: 110px;
		bottom: -27px;
		width: 80px;
		height: 70px;
	}

	/* Logos */
	.logos {
		margin: 20px 0 10px;
	}

	.logos__title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.logos__track {
		gap: 8px;
	}

	.logos__item {
		height: 34px;
		padding: 8px;
	}

	.logos__item span {
		font-size: 13px;
	}

	/* Values */
	.values {
		margin: 36px 0 68px;
	}

	.values__inner {
		padding: 32px 16px;
	}

	.values__block-gallery {
		flex-direction: row;
		align-items: flex-start;
		gap: 24px;
	}

	.values__gallery {
		flex-direction: column;
	}

	.values__photo {
		width: 110px;
		height: 110px;
		flex-shrink: 0;
	}

	.values__card {
		flex-direction: column;
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		z-index: 1;
	}

	.values__card-img {
		width: 100%;
		height: 200px;
	}

	.values__card-title {
		font-size: 16px;
		font-weight: 700;
		line-height: 20px;
	}

	.values__card-list,
	.values__card-ps {
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}

	.values__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	.values__subtitle {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
	}

	.values__card-content {
		padding: 16px;
	}

	/* Benefits */
	.benefits {
		margin: 48px 0;
	}

	.benefits__header {
		gap: 8px;
	}

	.benefits__inner {
		gap: 16px;
	}

	.benefits__layout {
		flex-direction: column;
		gap: 16px;
	}

	.benefits__image {
		width: 100%;
		height: 280px;
	}

	.benefits__cards {
		width: 100%;
		height: auto;
		grid-template-rows: auto;
		transition: none;
	}

	.benefits__card {
		padding: 24px 16px;
	}

	.benefits__card.benefits__card--open {
		gap: 8px;
	}

	.benefits__card--brand {
		flex: none;
		height: auto;
		min-height: 180px;
	}

	.benefits__card--dark {
		flex: none;
	}

	.benefits__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	.benefits__subtitle {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
	}

	.benefits__card-title,
	.benefits__card-num {
		font-size: 16px;
		font-weight: 700;
		line-height: 20px;
	}

	.benefits__card-text {
		max-width: 100% !important;
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}

	.benefits__card-star {
		max-height: 100%;
		display: none !important;
	}

	.benefits__card--open {
		gap: 8px;
	}

	/* Add Benefits */
	.add-benefits {
		margin: 48px 0;
	}

	.add-benefits__bento {
		display: none;
	}

	.add-benefits__bento--mobile {
		display: block;
		width: 100%;
		height: auto;
	}

	.add-benefits__col--left {
		width: 100%;
	}

	.add-benefits__col--right {
		width: 100%;
	}

	.add-benefits__row {
		flex-wrap: wrap;
	}

	.add-benefits__tile--height-279 {
		height: auto;
		min-height: 160px;
	}

	.add-benefits__tile--height-307 {
		height: auto;
		min-height: 200px;
	}

	.add-benefits__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	/* Vacancies */
	.vacancies__inner {
		gap: 16px;
		padding: 32px 20px;
	}

	.vacancies__header {
		gap: 8px;
	}

	.vacancies__row {
		display: flex;
		flex-direction: column;
	}

	.vacancies__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	.vacancies__subtitle {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
	}

	/* Cases */
	.cases__inner {
		gap: 16px;
	}

	.cases__header {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}

	.cases__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
		text-align: center;
	}

	.cases__title br {
		display: none;
	}

	.cases__pagination {
		display: none;
	}

	.case-card {
		width: 280px;
		height: 280px;
	}

	.cases__track {}

	/* More benefits */
	.more-benefits__bento {
		flex-direction: column;
		gap: 8px;
	}

	.more-benefits__col {
		flex-direction: row;
		gap: 8px;
	}

	.more-benefits__col--mid {
		width: 100%;
	}

	.more-benefits__col--right {
		width: 100%;
		flex-direction: column;
	}

	.more-benefits__col--right .more-benefits__text-tile br {
		display: none;
	}

	.more-benefits__img {
		flex-basis: 50%;
	}

	.more-benefits__img--h250 {
		height: auto;
	}

	.more-benefits__inner {
		gap: 16px;
	}

	.more-benefits__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	.more-benefits__text-tile {
		flex-basis: 50%;
		text-align: center;
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
		padding: 16px;
	}

	/* Resume */
	.resume__inner {
		flex-direction: column;
		gap: 32px;
		padding: 32px 24px;
	}

	.resume__content {
		gap: 24px;
	}

	.resume__content-text {
		gap: 8px;
	}

	.resume__title {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
	}

	.resume__text {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
	}

	.resume__image {
		display: none;
	}

	/* Headings */
	.heading-xl {
		font-size: 24px;
		font-weight: 800;
		line-height: 127%;
	}

	.heading-xl br {
		display: none;
	}

	.heading-lg {
		font-size: 16px;
		font-weight: 400;
		line-height: 110%;
	}

	.career-changellenge_bg {
		bottom: -230px;
		width: 100%;
	}

	#jsModalCareerChangellenge .vacancy-response__title {
		text-align: center;
	}

	#jsModalCareerChangellenge .modal-content {
		min-height: auto;
		padding-bottom: 0;
	}

	#jsModalCareerChangellenge .field-file__box {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	#jsModalCareerChangellenge .field-file__name {
		word-break: break-word;
		padding: 0;
		margin: 0;
	}
}

@media (max-width: 480px) {
	.heading-md {
		font-size: 18px;
	}

	.text-body-lg {
		font-size: 17px;
	}
}

@media (max-width: 425px) {
	.values__block-gallery {
		gap: 16px;
	}

	.values__photo {
		width: 90px;
		height: 90px;
	}

	.chip {
		font-size: 13px;
	}
}