@font-face {
	font-family: 'Gik';
	src: url('../fonts/gik-fine.otf') format('opentype');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
	}

@font-face {
	font-family: 'Gik';
	src: url('../fonts/gik-medium.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gik';
	src: url('../fonts/gik-brutal.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'IBM Plex Sans';
	src: url('../fonts/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'IBM Plex Sans';
	src: url('../fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 700;
	font-style: italic;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box; /* Consistent box model */
}

html, body {
	overflow-x: hidden;
	width: 100%;
    scroll-behavior: smooth;
}

body {
	font-family: 'IbM Plex Sans', sans-serif;
	background-color: white;
	color: orange;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;  /* Smoother font on macOS/iOS */
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration: none;
	line-height: 1;
}

span {
	line-height: 1;
}

p, h1, h2, h3, h4, h5, h6  {
	margin: 0;
	padding: 0;
}

ul, ol, li {
	margin-block: 0;
	padding-block: 0;
}

button {
	cursor: pointer;
}

.light {
	color: white;
}

.dark {
	color: rgba(37, 45, 93, 1);
}

.bg-light {
	background-color: white;
}

.bg-dark {
	background-color: rgba(37, 45, 93, 1);
}

.display-none {
	display: none !important;
}

.desktop-flex,
.desktop-block,
.desktop-inline-block {
	display: none;
}

.mobile-flex {
	display: flex;
}

.mobile-block {
	display: block;
}

.mobile-inline-block {
	display: inline-block;
}

.my-container {
	padding: 0 15px;
	width: 100%;
	margin-inline: auto;
	max-width: 1440px;
}

#headerWrapper {
	position: relative;
	z-index: 998;
}

#myHeader {
	position: absolute;
	top: 10px;
	width: 100%;
	opacity: 0;
}

.upper-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#headerLogoArea {
	display: flex;
	align-items: center;
	gap: 16px;
}

#headerLogoArea img {
	width: auto;
	height: 29px;
}

#headerMainLogo {
	display: block;
}

.header-subs-logo {
	display: none;
}

#headerLogoArea img {
	height: 30px;
}

#headerLogoArea svg {
	display: none;
	width: 17px;
	height: 31px;
}

#langBurger {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}

#headerLang {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

#headerLang > img {
	width: 12px;
	height: auto;
}

#headerLang > span {
	font-size: 12px;
	font-weight: 400;
}

#burger {
	position: relative;
	width: 11.64px;
	height: 12px;
	cursor: pointer;
}

#burgerBarTop {
	position: absolute;
	top: 1.34px;
	right: 0;
	height: 1px;
	width: 100%;
}

#burgerBarMiddle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	height: 1px;
	width: 100%;
}

#burgerBarBottom {
	position: absolute;
	bottom: 1.34px;
	right: 0;
	height: 1px;
	width: 100%;
}

#headerLangModal {
	visibility: hidden;
	position: absolute;
	top: 25px;
	right: 25px;
	width: 227px;
	padding: 20px 20px 25px 20px;
	background-color: white;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	border-radius: 15px;
	z-index: 999;
}

#headerLangModalTitleOuter {
	height: 33px;
	border-bottom: 0.5px solid rgba(37, 45, 93, 1);
}

#headerLangModalTitleInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 400;
	font-size: 14px;
	color: rgba(37, 45, 93, 1);
}

#closeLangModal {
	cursor: pointer;
}

#headerLangModalItems {
	margin-top: 10px;
}

.header-lang-modal-item-outer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 38px;
	border-bottom: 0.5px solid rgba(117, 117, 117, 1);
}

.header-lang-modal-item-inner-1 {
	font-weight: 400;
	font-size: 14px;
	color: rgba(44, 49, 81, 1);
}

.header-lang-modal-item-inner-2 {
	font-weight: 400;
	font-size: 14px;
	color: rgba(44, 49, 81, 0.1);
}

.header-lang-modal-item-outer.active .header-lang-modal-item-inner-1 {
	font-weight: 500;
}

.header-lang-modal-item-outer.active .header-lang-modal-item-inner-2 {
	font-weight: 500;
	color: rgba(117, 117, 117, 1);
}

#primaryMenuModal {
	visibility: hidden;
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 57px);
	padding: 24px 16px 158px 20px;
	background-color: white;
	transform: translateX(100%);
	transition: transform 0.2s linear, visibility 0.2s;
	z-index: 999;
}

#primaryMenuModal.active {
	visibility: visible;
	transform: translateX(0);
}

#primaryMenuUpper {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 1320px;
}

#primaryMenuUpperLogo {
	width: auto;
	height: 50px;
}

.close-menu-modal {
	cursor: pointer;
}

#primaryMenuContent {
	margin-top: 49px;
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 1320px;
}

#primaryMenuItems {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.primary-menu-item {
	display: block;
}

.primary-menu-item > a {
	height: 21px;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: rgba(44, 49, 81, 1);
}

.primary-menu-subitems {
	display: flex;
	flex-direction: column;
}

.primary-menu-subitems div {
	display: block;
	height: 18px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: rgba(44, 49, 81, 1);
	margin-top: 8px;
}

#primaryMenuContacts {
	display: none;
}

#hero {
	height: 100dvh;
	overflow: hidden;
	position: relative;
}

.home-hero-logo {
	position: absolute;
	top: 354px;
	left: 50%;
	transform: translateX(-50%);
	transition: visibility 0.5s, opacity 0.5s ease;
}

#heroImg {
	position: absolute;
	width: 100%;
	height: 100dvh;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	inset: 0;
	transform: translate(100%, 100%) scale(0.8);
	transform-origin: top;
	transition: all 3s;
}

#heroFigureMobileLeft {
	position: absolute;
	left: 0;
	transform: translateX(-100%);
	transform-origin: top right;
	transition: all 1.5s;
}

#heroFigureMobileRight {
	position: absolute;
	right: 0;
	transform: translateX(100%);
	transform-origin: bottom left;
	transition: all 1.5s;
}

#heroFigureDesktopLeft,
#heroFigureDesktopRight {
	visibility: hidden;
}

#heroTitleButton {
	position: absolute;
	left: 0;
	top: 30%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

#heroTitleUpper {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	text-transform: uppercase;
}

#heroTitleLower {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
}

#heroDetailsButtonArea {
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
	margin-top: 50px;
}

#heroDetailsButton {
	background-color: rgba(37, 45, 93, 1);
	height: 45px;
	padding: 16px 24px;
	border-radius: 10px 0px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
}

#heroMottoArea {
	position: absolute;
	display: flex;
	align-items: center;
	right: 0;
	bottom: 0;
	width: 200px;
	/* height: 169px; */
	height: 90px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

#heroMotto {
	color: white;
	font-size: 14px;
	font-weight: 500;
	line-height: 115%;
	text-align: right;
}

#about {
	/* height: 815px; */
	height: 100dvh;
	overflow: hidden;
	position: relative;
	background-size: auto 104%;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

#aboutVerticalBar {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(50%, -100%);
	width: 1px;
	height: 69%;
	transition: all 0.5s;
	transform-origin: top;
	background-color: white;
}

#aboutHorizontalBar {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateX(100%);
	width: 45%;
	height: 1px;
	transition: all 0.5s;
	transform-origin: right;
	background-color: white;
}

#aboutFigureMobileLeft {
	position: absolute;
	bottom: 0;
	left: -37px;
	transform: translateY(100%);
	transition: all 0.5s;
}

#aboutFigureMobileRight {
	position: absolute;
	top: 0;
	right: -65px;
	transform: translateY(-100%);
	transition: all 0.5s;
}

#aboutFigureDesktopLeft,
#aboutFigureDesktopRight {
	visibility: hidden;
}

#aboutFact1 {
	position: absolute;
	bottom: 53%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#aboutFact11,
#aboutFact13 {
	color: white;
	font-weight: 400;
	font-size: 25px;
	line-height: 130%;
}

#aboutFact12 {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 400;
	font-size: 84px;
	line-height: 75%;
}

#aboutFact2 {
	position: absolute;
	/* top: 420px; */
	top: 53%;
	width: 48%;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

#aboutFact21,
#aboutFact31 {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 700;
	font-size: 24px;
}

#aboutFact22,
#aboutFact32 {
	color: white;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
}

#aboutFact23,
#aboutFact33 {
	color: white;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
}

#aboutFact3 {
	position: absolute;
	/* top: 420px; */
	top: 53%;
	right: 0;
	width: 48%;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.about-fact {
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

#principles {
	position: relative;
	background-color: #001c38;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100dvh;
}

#principlesTitleText {
	position: relative;
	width: 75%;
	margin: 0;
	padding-top: 29px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

#principlesTitle {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 700;
	font-size: 24px;
}

#principlesText {
	color: white;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

#principlesPartnersContainer {
	position: relative;
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(to right, transparent, rgba(0, 35, 70, 1) 200px, rgba(0, 35, 70, 1) calc(100% - 200px), transparent);
}

#principlesPartnersTrack {
	display: flex;
	align-items: center;
	width: max-content;
	animation: partners-logos-carousel 12s linear infinite;
	transform-origin: left;
}

.principles-partner {
	flex: 0 0 auto;
	margin-right: 200px;
}

.white-colorized {
  	filter: url(#colorize-white);
}

@keyframes partners-logos-carousel {
    /* 0% { transform: scale(0.57) translateX(0); }
    100% { transform: scale(0.57) translateX(-50%); } */
	0% { transform: scale(0.75) translateX(0); }
    100% { transform: scale(0.75) translateX(-50%); }
}

#principlesBottomImageContainer {
	position: relative;
	height: 30vh;
	width: 100%;
	overflow: hidden;
}

#principlesBottomImage {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

#homePrinciplesFigure {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	transform: scale(-1, -1);
}

#services {
	height: 100dvh;
	padding-top: 29px;
}

#servicesTitle {
	font-family: 'Gik', sans-serif;
	color: rgba(37, 45, 93, 1);
	font-weight: 700;
	font-size: 24px;
}

#serviceCards {
	margin-block: 27px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	height: 80vh;
	overflow: auto;
}

.service-card {
	padding: 48px 18px;
	height: 100%;
	width: 100%;
	border-radius: 8px;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	position: relative;
}

.service-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	visibility: visible;
	opacity: 1;
	transition: all 0.5s;
	cursor: pointer;
}

.service-card.active .service-overlay {
	pointer-events: none;
}

.service-card-logo-link {
	position: relative;
	pointer-events: none;
}

.service-card-logo {
	width: auto;
	height: 36px;
	display: block;
}

.service-card-text {
	position: relative;
	margin-top: 76px;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: white;
	pointer-events: none;
	width: 75%;
}

.service-card.active .service-card-logo-link,
.service-card.active .service-card-text {
	pointer-events: auto;
}

#serviceOverlay1 {
	background-color: rgba(17, 96, 192, 0.75);
}

#serviceOverlay2 {
	background-color: rgba(254, 69, 1, 0.75);
}

#serviceOverlay3 {
	background-color: rgba(255, 79, 71, 0.75);
}

.service-card.active #serviceOverlay1,
.service-card.active #serviceOverlay2,
.service-card.active #serviceOverlay3 {
	background-color: rgba(0, 0, 0, 0.5);
}

footer.mobile-block,
footer.mobile-flex {
	color: rgba(44, 49, 81, 1);
}

.footer-upper {
	display: flex;
	justify-content: space-between;
	align-items: start;
	/* max-width: 460px;
	margin-inline: auto; */
}

.footer-contacts-title {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	margin-right: 2%;
}

.footer-contacts-content {
	display: flex;
	flex-direction: column;
	gap: 0.5px;
}

.footer-menu-contacts-item {
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.01em;
}

.footer-mid {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding-block: 40px 20px;
	gap: 60px;
	width: 100%;
	border-block: 1px solid rgba(44, 49, 81, 0.25);
	/* max-width: 460px;
	margin-inline: auto; */
}

.footer-logo,
.footer-subsidiary-logo {
	display: block;
}

.footer-logo img {
	height: 60px;
	width: auto;
}

.footer-menu-socnet {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.footer-lower {
	margin-block: 20px;
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.01em;
	text-align: center;
}

.footer-links a {
	transition: all 0.5s;
}

#sectionBullets {
	position: fixed;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	flex-direction: column;
	gap: 10px;
	z-index: 997;
	display: none;
}

.section-bullet {
	width: 8px;
	height: 8px;
	border-radius: 1px;
	background-color: rgba(44, 49, 81, 1);
	cursor: pointer;
	transition: background-color 0.3s;
	position: relative;
}

.section-bullet-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background-color: rgba(255, 255, 255, 0.9);
	transition: background-color 0.3s;
}

.section-bullet.active {
	background-color: rgba(255, 255, 255, 1);
}

.section-bullet.active .section-bullet-overlay {
	background-color: rgba(37, 45, 93, 0.5);
}

#jsGlobalParams,
#jsLocalParams {
	display: none;
}

#aboutTop {
	height: 815px;
	overflow: hidden;
	position: relative;
}

#aboutTopImg {
	position: absolute;
	width: 100%;
	height: 815px;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	inset: 0;
	transition: all 0.5s;
}

#aboutTopVideoWrapper {
	position: absolute;
	width: 100%;
	height: 815px;
	inset: 0;
	transition: all 0.5s;
	overflow: hidden;
}

#aboutTopVideoWrapper > video {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	transform: translateX(-25%);
	transition: all 0.5s;
}

#aboutTopVideoOverlay {
    position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	inset: 0;
}

#aboutTopText {
	display: none;
}

#aboutTopBlueParallelogram {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	transform: translateX(-100%);
	transition: all 0.5s;
}

#aboutTopBlueTriangle {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 25%;
	transform: translateX(100%);
	transition: all 0.5s;
}

#aboutTopWhiteSquare,
#aboutTopWhiteTriangle,
#aboutTopBlueFigure1 {
	display: none;
}

#aboutMotto {
	margin-top: 137px;
	color: rgba(37, 45, 93, 1);
}

#aboutMotto > div {
	display: flex;
	flex-direction: column;
	gap: 18px;
	overflow: visible;
}

#aboutMottoTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
}

.about-motto-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

#aboutMottoText2 {
	text-align: right;
}

#aboutMottoImage {
	height: 91px;
	background-size: cover;
	background-position: 0 50%;
	background-repeat: no-repeat;
	position: relative;
}

#aboutMottoImageFigure {
	position: absolute;
	bottom: -1px;
	left: -1px;
	width: 50%;
	height: 100%;
}

#aboutHistory {
	margin-top: 137px;
}

#aboutHistoryTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	color: rgba(37, 45, 93, 1);
}

.history-block {
	position: relative;
	margin-top: 25px;
}

.history-buttons-outer {
	position: relative;
}

.history-buttons > button:first-child {
	visibility: hidden;
	opacity: 0;
}

.history-buttons button {
	border-radius: 10px;
	background: transparent;
	border: 1px solid rgb(37, 45, 93, 1);
	color: rgba(37, 45, 93, 1);
	height: 44px;
	width: 44px;
	transition: all 0.5s;
}

.history-timeline-outer {
	position: relative;
	margin-top: 25px;
}

.history-timeline-container {
	overflow: hidden;
	width: 100%;
}

.history-timeline-track {
	display: flex;
	width: max-content;
	transition: all 0.5s;
}

.history-timeline-item {
	flex: 0 0 auto;
	width: 240px;
	height: 100px;
	position: relative;
}

.history-timeline-item > p {
	color: rgba(37, 45, 93, 1);
	font-size: 18px;
	font-weight: 500;
	margin-left: 0;
	margin-top: 1%;
	margin-bottom: 0;
	transition: all 0.5s;
	transform: scale(1);
	transform-origin: left;
	display: inline-block;
	cursor: pointer;
}

.history-timeline-item.active > p {
	transform: scale(1.33);
	margin-top: 0;
	margin-left: 0;
}

.about-history-circle {
	background-color: white;
	border-radius: 50%;
	border: 1px solid rgba(37, 45, 93, 1);
	position: absolute;
	z-index: 2;
	width: 12px;
	height: 12px;
	left: 0;
	top: 45px;
	transition: all 0.5s;
	cursor: pointer;
}

.history-timeline-item.active .about-history-circle {
	border: 3.5px solid rgba(37, 45, 93, 1);
	width: 20px;
	height: 20px;
	top: 40px;
}

.about-history-borderline {
	position: absolute;
	height: 1px;
	background-color: rgba(37, 45, 93, 1);
	top: 50px;
	left: 5px;
	width: 100%;
}

.about-history-card {
	position: absolute;
	margin-top: 0;
	margin-left: 60px;
	padding: 15px;
	width: 100%;
	height: auto;
	background-color: white;
	border-radius: 0 10px 10px 10px;
	box-shadow: 3px 4px 16px 0px rgba(44, 49, 81, 0.08);
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 2%;
	text-align: left;
	color: rgba(44, 49, 81, 0.8);
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

.about-history-card.active,
.about-history-card.active .about-history-card-triangle {
	visibility: visible;
	opacity: 1;
}

.about-history-card-triangle {
	position: absolute;
	top: -20px;
	left: 0;
	filter: drop-shadow(3px 4px 16px rgba(44, 49, 81, 0.08));
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

.about-facts {
	margin-top: 56px;
}

#aboutServices {
	margin-top: 120px;
	padding-bottom: 120px;
	overflow: hidden;
	position: relative;
	color: rgba(37, 45, 93, 1);
}

#aboutServicesImage {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 360px;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

#aboutServicesTriangle {
	position: absolute;
	top: 0;
	right: 0;
	width: 33%;
	height: 90%;
	transform: scaleY(-1);
}

#aboutServicesTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 24px;
}

#aboutServicesSubtitle {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	margin-top: 18px;
}

#aboutServicesCards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 33px;
}

.about-services-card {
	width: 100%;
	border-radius: 10px;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	padding: 30px 54px;
	position: relative;
	background-color: white;
}

.about-services-card-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-services-card-logo {
	height: 24px;
	pointer-events: none;
}

.about-services-card-subtitle {
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	margin-top: 10px;
	pointer-events: none;
}

.about-services-card-link {
	margin-top: 27px;
}

.about-services-card-link a {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	text-decoration: underline;
	width: auto;
}

#subsTop {
	height: 815px;
	overflow: hidden;
	position: relative;
}

#subsTopImg {
	position: absolute;
	width: 100%;
	height: 815px;
	background-size: cover;
	background-position: 60% 50%;
	background-repeat: no-repeat;
	inset: 0;
}

#subsTopImgOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	inset: 0;
}

#subsTop .my-container {
	position: relative;
}

#subsTopTitle1 {
	margin-top: 255px;
	font-family: 'Gik', sans-serif;
	font-weight: 400;
	font-size: 36px;
	text-transform: uppercase;
	color: white;
}

#subsTopTitle2 {
	/* margin-top: 5px; */
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: white;
	display: flex;
	gap: 5px;
	align-items: top;
}

#subsTopTitleLongDash {
	width: 40px;
	height: 1px;
	background-color: white;
	transform: translateY(16px);
}

#subTopSubtitle {
	margin-top: 40px;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: white;
}

#subsTopFigure1 {
	position: absolute;
	bottom: 0;
	left: 0;
}

#subsTop svg {
	position: absolute;
	bottom: -2px;
	width: 100%;
	height: 60px;
}

#subsFactsArea {
	position: relative;
	height: 289px;
	overflow: hidden;
}

#subsFactsArea > svg {
	position: absolute;
	top: -2px;
	width: 100%;
	height: 289px;
}

#subsFactsArea > .my-container {
	position: relative;
}

#subsFacts {
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
}

.subs-fact {
	color: white;
}

.subs-fact-upper {
	display: flex;
	align-items: center;
	gap: 6px;
}

.subs-fact-upper > svg {
	width: 16px;
	height: 28px;
}

.subs-fact-upper > span {
	font-family: 'Gik', sans-serif;
	font-weight: 400;
	font-size: 36px;
}

.subs-fact-lower {
	margin-top: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

.subs-fact-inline {
	display: none;
}

#subsFactBottom {
	margin-top: 37px;
	display: flex;
	justify-content: center;
}

#subsForWhom {
	margin-top: 10px;
}

#subsForWhomTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: rgba(37, 45, 93, 1);
}

#subsForWhomCardsTrack {
	margin-top: 12px;
	height: 200px;
	position: relative;
}

.subs-for-whom-card {
	border-radius: 10px;
	padding: 28px 35px 45px 14px;
	position: relative;
	color: white;
	background-size: cover;
	background-position: 50%;
}

.subs-for-whom-card-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}

.subs-for-whom-card-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	position: relative;
}

.subs-for-whom-card-text {
	margin-top: 10px;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	position: relative;
}

.subs-for-whom-card-figure-1 {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 33%;
	display: none;
}

.subs-for-whom-card-figure-2 {
	position: absolute;
	top: 0;
	right: 0;
	height: 50%;
	display: none;
}

#subsForWhomSwiperPagination {
	position: absolute;
	bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

#subsForWhomSwiperPagination > .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 5px;
	opacity: 1;
	margin: 0;
	padding: 0;
}

#subsForWhomCardsTrack.gtf .swiper-pagination-bullet-active {
  	background: rgba(17, 96, 192, 1);
}

#subsForWhomCardsTrack.gtf-express .swiper-pagination-bullet-active {
  	background: rgba(254, 69, 1, 1);
}

#subsForWhomCardsTrack.gtf-freeport .swiper-pagination-bullet-active {
  	background: rgba(255, 79, 71, 1);
}

#subsForWhomCardsTrack .swiper-button-prev,
#subsForWhomCardsTrack .swiper-button-next {
	display: none;
}

#gtfLogistics {
	margin-top: 36px;
	padding-block: 128px 98px;
	background-size: cover;
	background-position: 50%;
}

#gtfLogisticsCards {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

#gtfLogisticsCardFirst {
	padding: 20px 20px 51px 20px;
	width: 100%;
}

.gtf-logistics-card {
	background-color: white;
	border-radius: 15px;
	color: rgba(44, 49, 81, 1);
	padding: 10px 10px 12px 10px;
	flex: 0 0 auto;
	width: calc((100% - 15px) / 2)
}

#gtfLogisticsCardFirstTitle {
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

#gtfLogisticsCardFirstText {
	margin-top: 19px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

.gtf-logistics-card > img {
	height: 24px;
	width: auto;
}

.gtf-logistics-card-title {
	margin-top: 10px;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
}

.gtf-logistics-card-text {
	display: none;
}

#gtfLogisticsCardLast {
	width: 100%;
}

#subsProducts {
	margin-top: 45px;
}

#subsProductsTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: rgba(37, 45, 93, 1);
}

#subsProductsCards {
	margin-top: 19px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	position: relative;
}

.subs-products-card {
	flex: 0 0 auto;
	width: 100%;
	height: 240px;
	border-radius: 15px;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	position: relative;
	color: rgba(44, 49, 81, 1);
	overflow: hidden;
}

.subs-products-card > svg {
	display: none;
	position: absolute;
}

#subsProductsCard1 > svg.gtf {
	display: block;
	top: 0;
	left: 0;
	width: 67%;
	height: 50%;
}

#subsProductsCard1 > svg.gtf-express,
#subsProductsCard1 > svg.gtf-freeport  {
	display: block;
	top: 0;
	left: 0;
	width: 95%;
	height: 75%;
}

.subs-products-card > img {
	position: absolute;
	bottom: 0;
	right: 0;
	width: auto;
	height: 50%;
}

.subs-products-card-title-text {
	position: relative;
	margin: 20px;
	width: 60%;
}

.subs-products-card-title {
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

.subs-products-card-text {
	margin-top: 10px;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
}

#subsProductsCard2 > svg.gtf {
	display: block;
	top: 0;
	right: 0;
	width: 75%;
	height: 50%;
}

#subsProductsCard2 > svg.gtf-express {
	display: block;
	bottom: 0;
	right: 0;
	width: 85%;
	height: 67%;
}

#subsProductsCard2 > svg.gtf-freeport {
	display: block;
	top: 0;
	right: 0;
	width: 50%;
	height: 75%;
}

#subsProductsCard3 > svg.gtf {
	display: block;
	top: 0;
	left: 0;
	width: 50%;
	height: 67%;
}

#subsProductsCard3 > svg.gtf-express {
	display: block;
	top: 0;
	left: 0;
	width: 95%;
	height: 75%;
}

#subsProductsCard3 > svg.gtf-freeport {
	display: block;
	top: 0;
	left: 0;
	width: 67%;
	height: 50%;
}

#subsProductsCard4 {
	height: 64px;
}

#subsProductsCard4 > div {
	margin-left: 20px;
	display: flex;
	align-items: center;
	height: 100%;
}

#subsProductsCard4 a {
	font-weight: 500;
	color: rgba(37, 45, 93, 1);
	font-size: 18px;
	line-height: 130%;
}

#gtfFreeportBrands {
	margin-top: 57px;
}

#gtfFreeportBrandsContainer {
	position: relative;
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(to right, transparent, white 200px, white calc(100% - 200px), transparent);
}

#gtfFreeportBrandsTrack {
	display: flex;
	align-items: center;
	width: max-content;
	animation: freeport-brands-carousel 20s linear infinite;
	transform-origin: left;
}

.gtf-freeport-brand {
	flex: 0 0 auto;
	margin-right: 70px;
}

.gtf-freeport-brand > img {
	height: 70px;
	width: auto;
}

@keyframes freeport-brands-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#subsSeeMore {
    margin-block: 50px;
    color: rgba(37, 45, 93, 1);
}

#subsSeeMoreTitle {
    font-family: 'Gik', sans-serif;
    font-weight: 400;
    font-size: 36px;
}

#subsSeeMoreTextButton {
    margin-top: 13px;
}

#subsSeeMoreText {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

#subsSeeMoreButtonArea {
    margin-top: 13px;
    width: 100%;
}

#subsSeeMoreButton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    border-radius: 10px 0 10px 0;
}

#subsSeeMoreButton > span {
    color: white;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
}

#careersTop {
	height: 815px;
	overflow: hidden;
	position: relative;
}

#careersTopImg {
	position: absolute;
	width: 100%;
	height: 815px;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	inset: 0;
}

#careersTopImgOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	inset: 0;
}

#careersTopTitleButton {
	position: absolute;
	left: 0;
	top: 38%;
	width: 100%;
}

#careersTopTitleUpper {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	text-transform: uppercase;
}

#careersTopTitleLower {
	font-family: 'Gik', sans-serif;
	color: white;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
}

#careersTopButtonArea {
	width: 100%;
	margin-top: 50px;
}

#careersTopButton {
	background-color: rgba(37, 45, 93, 1);
	height: 45px;
	padding: 16px 24px;
	border-radius: 10px 0px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
}

#careersBuildingFutureContainer {
	position: relative;
	overflow: hidden;
	height: 493px;
}

.careers-building-future-img {
	position: absolute;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

#careersBuildingFutureImg1 {
	top: 0;
	left: 0;
	width: 33.33%;
	height: 215px;
	z-index: 1;
}

#careersBuildingFutureImg2 {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 35%;
	height: 215px;
	z-index: 0;
}

#careersBuildingFutureImg3 {
	top: 0;
	right: 0;
	width: 33.33%;
	height: 215px;
	z-index: 1;
}

#careersBuildingFutureImg4 {
	bottom: 0;
	left: 0;
	width: 33.33%;
	height: 185px;
	z-index: 1;
}

#careersBuildingFutureImg5 {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 35%;
	height: 185px;
	z-index: 0;
}

#careersBuildingFutureImg6 {
	bottom: 0;
	right: 0;
	width: 33.33%;
	height: 185px;
	z-index: 1;
}

#careersBuildingFutureMottoArea {
	position: absolute;
	top: 215px;
	width: 100%;
	height: 93px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: white;
	color: rgba(37, 45, 93, 1);
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 2;
}

#careersBuildingFutureMotto1 {
	font-size: 20px;
}

#careersBuildingFutureMotto2 {
	font-size: 28px;
}

#careersBuildingFutureImg1 > svg {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 39%;
}

#careersBuildingFutureImg3 > svg {
	position: absolute;
	top: 0;
	right: 0;
	width: 75%;
	height: 25%;
}

#careersBuildingFutureMottoArea > svg {
	position: absolute;
	width: 33.33%;
	height: 100%;
}

#careersBuildingFutureMottoAreaSvg1 {
	bottom: 0;
	left: 0;
}

#careersBuildingFutureMottoAreaSvg2 {
	bottom: 0;
	right: 0;
}

#careersWhyChooseUs {
	background-size: cover;
	background-position: 50%;
	padding-block: 28px;
}

#careersWhyChooseUsAllCards {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	width: 100%;
}

.careers-why-choose-us-card {
	background-color: white;
	border-radius: 15px;
	padding: 10px;
	width: calc((100% - 15px) / 2);
	color: rgba(44, 49, 81, 1);
}

#careersWhyChooseUsMainCard {
	flex: 0 0 auto;
	padding: 20px;
	width: 100%;
}

#careersWhyChooseUsMainCardTitle {
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

#careersWhyChooseUsMainCardText {
	margin-top: 12px;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

#careersWhyChooseUsSecondaryCards {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	width: 100%;
}

.careers-why-choose-us-card > img {
	height: 24px;
	width: auto;
}

.careers-why-choose-us-card-title {
	margin-top: 4px;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
}

.careers-why-choose-us-card-text {
	margin-top: 4px;
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
}

.careers-why-choose-us-card.careers-why-choose-us-card-wide {
	width: 100%;
}

#careersVacancies {
	position: relative;
	overflow: hidden;
	height: 100dvh;
	padding-top: 27px;
}

#careersVacancies > .my-container > img {
	height: 93%;
	width: auto;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translateX(38%);
}

#careersVacancies > .my-container {
	position: relative;
	height: 100%;
}

#careersVacanciesContent {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	position: relative;
}

#careersVacanciesTextContent {
	width: 50%;
	color: rgba(37, 45, 93, 1);
}

#careersVacanciesTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 28px;
}

#careersVacanciesSubtitle {
	margin-top: 12px;
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
}

#careersVacanciesText {
	margin-top: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

#careersVacanciesButtonArea {
	margin-bottom: 80px;
}

#careersVacanciesButton {
	background-color: rgba(37, 45, 93, 1);
	height: 45px;
	padding: 16px 24px;
	border-radius: 10px 0px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
}

#vacanciesForm {
	margin-block: 30px;
}

#vacanciesFormWrapperOuter > form {
	position: relative;
	overflow: hidden;
	background-color: white;
	box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.08);
	border-radius: 15px;
}

.vacancies-form-svg-upper {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100px;
}

.vacancies-form-svg-lower {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 87px;
}

#vacanciesFormWrapperInner {
	position: relative;
	padding: 20px 30px;
	width: 100%;
}

.vacancies-form-title {
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
	color: rgba(37, 45, 93, 1);
}

#vacanciesFormSubtitleOuter {
	margin-top: 10px;
}

#vacanciesFormSubtitle {
	/* margin-top: 10px; */
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(37, 45, 93, 1);
}

#vacanciesFormTextInputFields {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
	width: 100%;
}

.vacancies-form-text-input-field {
	flex: 0 0 auto;
	width: 100%;
	height: 41px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(117, 117, 117, 1);
}

.vacancies-form-text-input-field > input,
.vacancies-form-text-input-field > input:focus,
.vacancies-form-text-input-field > textarea,
.vacancies-form-text-input-field > textarea:focus {
    font-family: 'IBM Plex Sans', sans-serif;
	width: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(37, 45, 93, 1);
}

.vacancies-form-text-input-field > input::placeholder,
.vacancies-form-text-input-field > textarea::placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

.vacancies-form-text-input-field > input::-webkit-input-placeholder,
.vacancies-form-text-input-field > textarea::-webkit-input-placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

.vacancies-form-text-input-field > input::-moz-placeholder,
.vacancies-form-text-input-field > textarea::-moz-placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

.vacancies-form-text-input-field > input::-ms-input-placeholder,
.vacancies-form-text-input-field > textarea::-ms-input-placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

.vacancies-form-text-input-field > input:-webkit-autofill,
.vacancies-form-text-input-field > textarea:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px white inset;
	-webkit-text-fill-color: rgba(37, 45, 93, 1);
}

#vacanciesFormFileInputField {
	margin-top: 20px;
}

#vacanciesFormFileUpload {
	display: none;
}

#vacanciesFormFileLabel {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: rgba(117, 117, 117, 1);
	display: flex;
	align-items: center;
	gap: 5px;
}

#vacanciesFormFileUploadButton {
	font-family: 'IBM Plex Sans', sans-serif;
	height: 26px;
	width: 50%;
	max-width: 123px;
	background-color: white;
	border: 0.5px solid rgba(117, 117, 117, 1);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: rgba(44, 49, 81, 1);
	margin-top: 10px;
}

#vacanciesFormSubmitButton {
	font-family: 'IBM Plex Sans', sans-serif;
	margin-top: 20px;
	background-color: rgba(37, 45, 93, 1);
	height: 50px;
	width: 100%;
	border-radius: 10px 0px;
	color: white;
	padding-block: 13.5px;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#vacanciesFormSubmitButtonLoading {
    height: 18px;
    width: auto;
    display: none;
}

#vacanciesFormPrivacyPolicy {
	margin-top: 20px;
	color: rgba(117, 117, 117, 1);
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

#vacanciesFormPrivacyPolicy > a {
	text-decoration: underline;
}

#vacanciesFormModalArea {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#vacanciesFormModalArea > .my-container {
    height: 100%;
}

#vacanciesFormModalArea > .my-container > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#vacanciesFormModal {
    border-radius: 15px;
    background-color: white;
    position: relative;
    width: 100%;
    max-width: 426px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#vacanciesFormModalCheckmark {
    height: 29px;
    width: auto;
}

#vacanciesFormModalTitle {
    margin-top: 13px;
    font-weight: 500;
    font-size: 16px;
    color: rgba(44, 49, 81, 1);
    text-align: center;
}

#vacanciesFormModalSubtitle {
    margin-top: 13px;
    font-weight: 400;
    font-size: 13px;
    color: rgba(44, 49, 81, 1);
    text-align: center;
}

#vacanciesFormModalButtonArea {
    margin-top: 27px;
    display: flex;
    justify-content: center;
}

#vacanciesFormModalButton {
    border-radius: 8px;
    border: 0.5px solid rgba(37, 45, 93, 1);
    padding: 10px 16px;
    font-weight: 500;
    font-size: 13.5px;
    color: rgba(37, 45, 93, 1);
}

#vacanciesFormModalCloseButton {
    position: absolute;
    height: 16px;
    width: auto;
    top: 20px;
    right: 24px;
    cursor: pointer;
}

#contactsContent {
    margin-block: 38px;
}

#contactsContent > .my-container > div {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

#contactsTitleContacts {
    flex: 0 0 auto;
    width: 100%;
}

#contactsTitle {
    font-family: 'Gik', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: rgba(37, 45, 93, 1);
}

#contactsContent form {
	position: relative;
	overflow: hidden;
	background-color: white;
	box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.08);
	border-radius: 15px;
    flex: 0 0 auto;
    width: 100%;
}

#contactsFormTitle {
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: rgba(37, 45, 93, 1);
}

#contactsFormSubtitle {
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: rgba(37, 45, 93, 1);
}

.vacancies-form-text-input-field.contacts-form-textarea-field {
	height: 160px;
    width: 100%;
}

#policyContent {
    margin-bottom: 60px;
}

#policyGoBack > a {
    display: flex;
    gap: 3.5px;
    align-items: center;
}

#policyGoBack > a > svg {
    height: 16px;
    width: auto;
}

#policyGoBack > a > span {
    color: rgba(37, 45, 93, 1);
    font-weight: 500;
    font-size: 16px;
}

#policyContentTitle {
    font-family: 'Gik', sans-serif;
    margin-top: 20px;
    font-weight: 400;
    font-size: 24px;
    color: rgba(37, 45, 93, 1);
}

#policySummaryArticles {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

#policySummaryOuter {
    display: none;
}

#policyArticles {
    border-radius: 15px;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: white;
    color: rgba(44, 49, 81, 1);
    box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
}

.policy-article-item-title {
    font-weight: 500;
    font-size: 13.5px;
    line-height: 150%;
}

.policy-article-item-text {
    font-weight: 400;
    font-size: 13.5px;
    line-height: 130%;
}

#blankTop {
	height: 80px;
}

#newsTitle {
	margin-top: 42px;
	font-weight: 500;
	font-size: 26px;
	line-height: 130%;
	color: rgba(37, 45, 93, 1);
}

#newsDate {
	display: none;
}

#newsFeaturedImage {
	margin-top: 12px;
	width: 100%;
}

#newsFeaturedImage > img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

#newsContentOuter {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

#newsContent {
	width: 100%;
	max-width: 870px;
    color: black;
}

#newsContent * {
	font-family: 'IBM Plex Sans', sans-serif;
    line-height: 150%;
}

#newsContent img {
	border-radius: 10px;
}

#allNewsTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 400;
	font-size: 40px;
	color: rgba(37, 45, 93, 1);
}

#allNewsPostTags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.all-news-post-tag {
    border: 0.5px solid rgba(37, 45, 93, 1);
    border-radius: 10px;
    padding: 8px 16px;
    color: rgba(37, 45, 93, 1);
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
}

.all-news-post-tag.active {
    color: white;
    background-color: rgba(37, 45, 93, 1);
}

#allNewsPosts {
	margin-block: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.all-news-post {
	width: 100%;
	background-color: white;
	border-radius: 10px;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	position: relative;
	color: rgba(37, 45, 93, 1);
	overflow: hidden;
}

.all-news-post-link {
	width: 100%;
	height: 100%;
}

.all-news-post-image {
	width: 100%;
	height: 169px;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

.all-news-post-content {
	padding: 15px 15px 20px 15px;
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-news-post-tag-date {
    margin-top: 12px;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: rgba(117, 117, 117, 1);
}

.all-news-post-title {
	margin-top: 12px;
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

.all-news-post-subtitle {
	margin-top: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

#vacancyGoBack {
	display: flex;
	gap: 8px;
	align-items: center;
	color: rgba(37, 45, 93, 1);
}

.vacancy-go-back-link {
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
}

#vacancyMainCard {
	background-color: white;
	margin-top: 30px;
	border-radius: 10px;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	padding: 30px 24px;
}

.vacancy-main-card-logo-area {
	display: flex;
	justify-content: end;
}

.vacancy-main-card-logo {
	height: 18px;
	width: auto;
}

.vacancy-main-card-position {
	margin-top: 18px;
	color: black;
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

.vacancy-main-card-salary {
	margin-top: 8px;
	color: black;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0.01em;
}

.vacancy-main-card-other-criteria {
	margin-top: 8px;
	font-size: 14px;
	line-height: 130%;
	color: black;
}

.vacancy-main-card-criteria {
	font-weight: 500;
}

.vacancy-main-card-value {
	font-weight: 400;
}

#vacancyContentOuter {
	display: flex;
	justify-content: center;
}

#vacancyContent {
	margin-block: 30px;
	width: 100%;
	max-width: 1000px;
	color: rgba(37, 45, 93, 1);
}

#vacancyContent * {
	font-family: 'IBM Plex Sans', sans-serif;
    line-height: 150%;
}

#vacancyContent img {
	border-radius: 10px;
}

#vacanciesQueryCards {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.vacancies-query-card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	padding: 30px 24px;
    width: 100%;
}

.vacancy-main-card-description {
    display: none;
}

#newsTagOuter {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

#newsTag {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-direction: column;
	color: rgba(37, 45, 93, 1);
	width: 100%;
	max-width: 870px;
}

#newsTagTitle {
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

#newsTagContent {
	width: fit-content;
	height: 40px;
	border-radius: 10px;
	border: 0.5px solid rgba(37, 45, 93, 1);
	padding-inline: 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0.01em;
	display: flex;
	align-items: center;
}

#newsShareOuter {
	display: flex;
	justify-content: center;
	margin-block: 30px;
}

#newsShare {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-direction: column;
	color: rgba(37, 45, 93, 1);
	width: 100%;
	max-width: 870px;
}

#newsShareTitle {
	font-weight: 500;
	font-size: 22px;
	line-height: 130%;
}

#newsShareLinks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.news-share-link-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 98px;
	height: 40px;
	border-radius: 10px;
	border: 0.5px solid rgba(37, 45, 93, 1);
}

.news-share-link-container > svg {
	height: 20px;
	width: auto;
}

.news-share-link-container-long {
	display: flex;
	align-items: center;
	gap: 2.5px;
	width: auto;
	height: 40px;
	border-radius: 10px;
	border: 0.5px solid rgba(37, 45, 93, 1);
	padding-inline: 16px;
}

.news-share-link-container-long > svg {
	height: 16px;
	width: auto;
}

.news-share-link-container-long > span {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0.01em;
}

#homeNews {
	padding-top: 13px;
	height: 100dvh;
}

#homeNews > .my-container {
	height: 100%;
}

#homeNewsTitle {
	font-family: 'Gik', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: rgba(37, 45, 93, 1);
}

#homeNewsPosts {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	height: calc(100% - 100px);
}

.home-news-post {
	width: 100%;
	height: calc((100% - 30px) / 3);
	border-radius: 10px;
	position: relative;
	color: rgba(37, 45, 93, 1);
	overflow: hidden;
}

.home-news-post-link {
	width: 100%;
	height: 100%;
}

.home-news-post-image {
	width: 100%;
	height: 67%;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	position: relative;
}

.home-news-post-image-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.5);
}

.home-news-post-content {
	padding-block: 8px;
	width: 100%;
	position: relative;
}

.home-news-post-date {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

.home-news-post-title {
	margin-top: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

#homeVacancyCards {
	display: flex;
	gap: 15px;
	overflow-x: visible;
	overflow-y: hidden; /* hide vertical scrollbar */
	-webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
	scrollbar-width: none; /* hide scrollbar in Firefox */
}

#homeVacancyCards::-webkit-scrollbar {
  	display: none; /* hide scrollbar in Chrome/Safari/Edge */
}

.home-vacancy-card {
	background-color: rgba(37, 45, 93, 1);
	border-radius: 10px;
	box-shadow: 3px 4px 16px rgba(44, 49, 81, 0.08);
	padding: 24px 12px;
    width: 252px;
	height: 179px;
	flex: 0 0 auto;
}

.home-vacancy-position {
	color: white;
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
}

.home-vacancy-country {
	color: white;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
}

.home-vacancy-link {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.home-vacancy-card-logo {
	height: 27px;
	width: auto;
}

.home-footer-outer {
	/* display: flex; */
	flex-direction: column;
	justify-content: center;
	height: 100dvh;
}

#vacanciesSearchFilters {
	display: flex;
	gap: 5px;
	width: 100%;
	align-items: end;
	margin-top: 23px;
}

#vacanciesSearch {
	width: calc(100% - 34px);
	display: flex;
	gap: 8px;
	align-items: center;
	flex: 0 0 auto;
	height: 41px;
	border-bottom: 1px solid rgba(117, 117, 117, 1);
}

#vacanciesSearch > svg {
	width: 18px;
	height: auto;
}

#vacanciesSearch > input,
#vacanciesSearch > input:focus {
	font-family: 'IBM Plex Sans', sans-serif;
	width: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(37, 45, 93, 1);
}

#vacanciesSearch > input::placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

#vacanciesSearch > input::-webkit-input-placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

#vacanciesSearch > input::-moz-placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

#vacanciesSearch > input::-ms-input-placeholder {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(117, 117, 117, 0.75);
}

#vacanciesSearch > input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px white inset;
	-webkit-text-fill-color: rgba(37, 45, 93, 1);
}

#vacanciesPostsFilters {
	position: relative;
}

#vacanciesContainer {
	/* width: 100%; */
	position: relative;
}

#vacanciesFilters {
	position: absolute;
	visibility: hidden;
	top: 0;
	right: 0;
	background-color: white;
	padding: 16px 16px 50px 16px;
	z-index: 999;
	width: 320px;
	transform: translateX(100%);
	transition: transform 0.2s linear, visibility 0.2s;
}

#vacanciesFilters.active {
	visibility: visible;
	transform: translateX(0);
}

.close-filters-modal {
	cursor: pointer;
}

#vacanciesCloseFiltersModalWrapper {
	display: flex;
	flex-direction: row-reverse;
}

#vacanciesFilterCategories {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.vacancies-filter-category {
	color: black;
}

.vacancies-filter-category-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
}

.vacancies-filter-category-items {
	margin-top: 16px;
	margin-left: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vacancies-filter-category-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.vacancies-filter-checkbox-checkmark {
	position: relative;
	cursor: pointer;
}

.vacancies-filter-checkbox,
.vacancies-filter-checkmark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.vacancies-filter-checkmark {
	visibility: hidden;
}

.vacancies-filter-category-item.active .vacancies-filter-checkmark {
	visibility: visible;
}

.vacancies-filter-item-name {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0.01em;
	cursor: pointer;
}

.vacancies-card-tags-tovacancy {
	display: flex;
	width: 100%;
	margin-top: 18px;
	justify-content: space-between;
	align-items: top;
}

.vacancies-card-tags {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	width: 100%;
}

.vacancies-card-tag {
	padding: 4px 10px;
	border-radius: 5px;
	background-color: rgba(234, 234, 238, 1);
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: rgba(37, 45, 93, 1);
}

.vacancies-card-tovacancy {
	display: none;
}

.vacancies-card-logo-area {
	display: flex;
	justify-content: end;
}

.vacancies-card-logo {
	height: 18px;
	width: auto;
	opacity: 0.65;
}

#vacanciesFilterLabelsOuter {
    display: none;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
    color: rgba(37, 45, 93, 1);
}

#vacanciesFilterLabelsOuter.active {
    display: flex;
}

#vacanciesFilterLabels {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#vacanciesFilterLabels > div {
    padding: 5px 10px;
    display: flex;
    align-items: top;
    gap: 10px;
    border: 0.5px solid rgba(37, 45, 93, 1);
    border-radius: 5px;
}

#vacanciesFilterLabels > div > span {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
}

#vacanciesFilterLabels > div > svg {
    width: 7px;
    height: auto;
    cursor: pointer;
}

#vacanciesClearFilters {
    text-decoration: underline;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    cursor: pointer;
}

.wp-block-gallery {
    gap: 15px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.wp-block-gallery + .wp-block-gallery {
    margin-top: 15px !important;
}

.wp-block-image {
    /* width: 100% !important; */
    flex: 0 0 auto !important;
}