@charset "UTF-8";

:root,
[data-bs-theme=light] {
	--font: 'Afacad', system-ui, sans-serif;

	--primary-color: hsl(225 76% 37%);
	--primary-color-light: hsl(225 76% 47%);
	--primary-color-dark: hsl(225 76% 27%);

	--xxl: 7.5rem;
	--xl: calc(var(--xxl) / 2);

	--bs-primary: hsl(225 76% 37%);
	--bs-primary-rgb: 23, 58, 166;

	--bs-light: hsl(204 20% 95%);
	--bs-light-rgb: 240, 243, 245;

	--bs-dark: black;
	--bs-dark-rgb: 0, 0, 0;

	--bs-body-color: black;

	--bs-link-color: var(--primary-color);
	--bs-link-color-rgb: 23, 58, 166;
	--bs-link-decoration: none;
	--bs-link-hover-color: var(--primary-color-dark);
	--bs-link-hover-color-rgb: 23, 58, 166;

	--h1: clamp(3.55rem, 3.55rem + ((1vw - 0.2rem) * 1.333), 6.3125rem);
	--h2: clamp(2.6625rem, 2.6625rem + ((1vw - 0.2rem) * 1.333), 4.7375rem);
	--h3: clamp(1.75rem, 1.75rem + ((1vw - 0.2rem) * 1.333), 3.55rem);
	--h4: clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 1.333), 2.6625rem);
	--h5: clamp(1.35rem, 1.35rem + ((1vw - 0.2rem) * 1.333), 1.75rem);
	--h6: clamp(1.15rem, 1.15rem + ((1vw - 0.2rem) * 1.333), 1.5rem);
	--lead: var(--h6);
}

[x-cloak] {
	display: none !important;
}

:focus-visible {
	outline: 2px dashed var(--primary-color);
	outline-offset: 2px;
}

body {
	font-family: var(--font);
	line-height: 1.65;
	font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 1.333), 1.125rem);
}

.font-size-12px {
	font-size: .75rem;
}

.font-size-14px {
	font-size: .875rem;
}

.font-size-16px {
	font-size: 1rem;
}

.font-size-18px {
	font-size: 1.125rem;
}

.font-size-20px {
	font-size: 1.25rem;
}

.font-size-22px {
	font-size: 1.375rem;
}

.font-size-24px {
	font-size: 1.5rem;
}

.font-size-26px {
	font-size: 1.625rem;
}

.font-size-28px {
	font-size: 1.75rem;
}

.font-size-30px {
	font-size: 1.875rem;
}

.font-size-32px {
	font-size: 2rem;
}

.font-size-34px {
	font-size: 2.125rem;
}

.font-size-36px {
	font-size: 2.25rem;
}

.font-size-38px {
	font-size: 2.375rem;
}

.font-size-40px {
	font-size: 2.5rem;
}

.font-size-42px {
	font-size: 2.625rem;
}

.font-size-44px {
	font-size: 2.75rem;
}

.font-size-46px {
	font-size: 2.875rem;
}

.font-size-48px {
	font-size: 3rem;
}

.font-size-50px {
	font-size: 3.125rem;
}

.icon {
	width: var(--icon-size, 72px);
}

.icon-72px,
[src*="_72px"] {
	width: 72px;
}

.icon-48px,
[src*="_48px"] {
	width: 48px;
}

.icon-32px,
[src*="_32px"] {
	width: 32px;
}

.icon-16px,
[src*="_16px"] {
	width: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font);
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.1;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.h1 em,
.h2 em,
.h3 em,
.h4 em,
.h5 em,
.h6 em {
	font-style: normal;
	color: var(--primary-color);
}

h1,
.h1 {
	font-size: var(--h1) !important;
}

h2,
.h2 {
	font-size: var(--h2) !important;
}

h3,
.h3 {
	font-size: var(--h3) !important;
}

h4,
.h4 {
	font-size: var(--h4) !important;
}

h5,
.h5 {
	font-size: var(--h5) !important;
}

h6,
.h6 {
	font-size: var(--h6) !important;
}

.lead {
	font-size: var(--lead);
}

strong,
b {
	font-weight: 600;
}

.container {
	max-width: 100%;
	width: 100%;
	padding-inline: clamp(1.5rem, 7vw, 7.5rem);
}

.inset-0 {
	inset: 0;
}

.p-xxl {
	padding: var(--xxl);
}

.p-xl {
	padding: var(--xl);
}

.px-xxl {
	padding-inline: var(--xxl)
}

.px-xl {
	padding-inline: var(--xl)
}

.pt-xxl {
	padding-top: var(--xxl);
}

.pb-xxl {
	padding-bottom: var(--xxl);
}

.py-xxl {
	padding-top: var(--xxl);
	padding-bottom: var(--xxl);
}

.mt-xxl {
	margin-top: var(--xxl);
}

.mb-xxl {
	margin-bottom: var(--xxl);
}

.my-xxl {
	margin-top: var(--xxl);
	margin-bottom: var(--xxl);
}

.pt-xl {
	padding-top: var(--xl);
}

.pb-xl {
	padding-bottom: var(--xl);
}

.py-xl {
	padding-top: var(--xl);
	padding-bottom: var(--xl);
}

.mt-xl {
	margin-top: var(--xl);
}

.mb-xl {
	margin-bottom: var(--xl);
}

.my-xl {
	margin-top: var(--xl);
	margin-bottom: var(--xl);
}

#main ol li ul {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#main ol li+li {
	margin-top: 1rem;
}

/*  MARK: navbar  */

.navbar {
	--bs-navbar-padding-x: 0;
	--bs-navbar-padding-y: 1.5rem;
	--bs-navbar-active-color: white;
	--bs-navbar-nav-link-padding-x: 1rem;
	transition: padding 200ms, background-color 200ms;
}

.navbar.affix {
	--bs-navbar-padding-y: .5rem;
	background-color: hsl(225 76% 37% / .9);
	backdrop-filter: blur(.35rem);

	& .navbar-brand {
		filter: brightness(0) grayscale(1) invert(1);
	}
}

.langs {
	border: 1px solid hsl(0 0% 100% / .5);
	border-radius: 2rem;
	padding-inline: .5rem;
	color: white;

	& .dropdown-toggle {
		line-height: 1;
		padding: .7rem .45rem;

		&::after {
			margin-left: 0;
		}
	}

	& .dropdown-menu {
		width: 100%;
		min-width: 100px;
	}

	& img {
		border-radius: .25rem;
	}
}

.navbar-brand {
	margin: 0;
	padding: 0;
}

.navbar-brand-image {
	height: 68px;
	transition: height 200ms;
}

.affix .navbar-brand-image {
	height: 40px;
}

.navbar-nav .nav-link {
	font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 1.333), 1.3125rem);
	font-weight: 600;
	color: white;
}

.dropdown-menu {
	border: 0;
	padding: .75rem;
	border-radius: .5rem;
	background-color: hsl(225 76% 37%);
}

.dropdown-item {
	color: white;
	font-size: 1.125rem;
	;
	padding: 0.25rem .65rem;
	border-radius: .25rem;
	transition: color 200ms, background-color 200ms;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
	color: var(--primary-color);
	background-color: white;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: .155em;
	vertical-align: 0;
	content: "";
	border: 0;
	background-image: url(../img/drop.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: .5rem;
	height: .33rem;
}

.navbar-light:not(.affix) .dropdown-toggle::after {
	filter: invert(1);
}

/*  MARK: header  */

header h1 {
	font-size: clamp(8rem, 8rem + ((1vw - 0.2rem) * 1.333), 12.625rem) !important;
	line-height: .7;
	margin: 0 0 -3px 0;
}

.swiper__image {
	height: 100vh;
	object-position: center;
}

/*  MARK: main content */

.btn {
	--bs-btn-padding-x: 1.875rem;
	--bs-btn-padding-y: 1.25rem;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 700;
	--bs-btn-line-height: 1.5;
	--bs-btn-border-radius: 0;
}

.btn-primary {
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color-light);
	--bs-btn-hover-border-color: var(--primary-color-light);
	--bs-btn-active-bg: var(--primary-color-dark);
	--bs-btn-active-border-color: var(--primary-color-dark);
}

.btn-outline-primary {
	--bs-btn-color: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color);
	--bs-btn-hover-border-color: var(--primary-color);
	--bs-btn-active-bg: var(--primary-color);
	--bs-btn-active-border-color: var(--primary-color);
}

.card[x-data] {
	cursor: pointer;

	& .card-img-top {
		overflow: hidden;

		& img {
			transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
		}
	}

	&:hover .card-img-top img,
	&:focus .card-img-top img {
		transform: scale(1.1);
	}
}

.card-title-link {
	color: var(--bs-body-color);
	text-decoration: none;
	transition: color 200ms;

	&:hover,
	&:focus {
		color: var(--primary-color);
	}
}

a.more {
	transition: color 200ms;

	& img {
		transition: transform 200ms;
	}

	&:hover,
	&:focus {
		color: var(--primary-color) !important;

		& img {
			transform: translateX(5px);
		}
	}
}

.counters .h2 {
	border-top: 1px solid white;
	padding-top: 1rem;
}

#transport .border img {
	transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#transport .border:hover img,
#transport .border:focus img {
	transform: scale(1.03);
}

.badge.rounded-circle {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
}

/* #info>.row {
	height: 100vh;
	min-height: 800px;
} */

#mapa iframe {
	width: 100%;
	display: block;
}


.nav-pills .nav-link {
	color: var(--bs-body-color);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background-color: transparent;
	color: var(--primary-color);
	border-bottom: 3px solid var(--primary-color);
}

.badge-country {
	display: flex;
	gap: .5rem;
	align-items: center;
}

.badge-country img {
	width: 24px;
	height: 24px;
}

/*  MARK: stopka */

footer a {
	text-decoration: none;
	color: white;
	transition: color 200ms;
}

footer a:hover,
footer a:focus {
	color: hsl(0 0% 100% / .7);
	text-decoration: underline;
}

.list-unstyled li+li {
	margin-top: 0.75em;
}

.madeby {
	display: flex;
	align-items: center;
}

.madeby small {
	font-size: 0.625rem;
	margin: 0.2em 0.2em 0 0;
}

/*  MARK: sub content  */

.sub {
	padding-top: 118px;
}

.parallax-thumb {
	height: 60vh;
	object-position: 50% -12vw;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--bs-body-color);
}

.navbar-light .langs {
	border-color: var(--bs-border-color);
	color: var(--bs-body-color);
}

.navbar-light {
	border-bottom: 1px solid var(--bs-border-color);
}

.affix {
	& .navbar-nav .nav-link {
		color: white;
	}

	& .langs {
		border-color: white;
		color: white;
	}
}

main:has(#sub-pages:last-of-type) {
	padding-bottom: 0;
}

.gallery a {
	display: block;
	width: 100%;
	overflow: hidden;
}

.gallery a img {
	width: 100%;
	display: block;
	transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery a:hover img {
	transform: scale(1.1);
}

.downloads a {
	text-decoration: none;
	color: black;
	border: 1px solid hsl(0 0% 90%);
	border-radius: .25rem;
	transition: color 200ms, border-color 200ms;

	& .h5 {
		font-size: var(--lead) !important;
		font-weight: normal;
	}
}

.downloads a:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-control,
.form-check-input {
	border-radius: .25rem;
	padding: .75rem;
	transition: border-color 200ms;

	&:hover,
	&:focus {
		border-color: var(--primary-color);
	}
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check {
	padding-left: 2.4rem;
	min-height: 2.5rem;

	& label {
		font-size: .875rem;
	}
}

.form-check .form-check-input {
	margin-left: -2.1em;
}

.form-control.error {
	border-color: red;
}

.error-msg {
	color: red;
}

.job-offer,
.more-arrow {
	transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.job-offer:hover {
	background: #e0e7eb !important;
}

.job-offer:hover .more-arrow {
	transform: scale(1.3);
}

.more-arrow {
	width: 24px;
}

.transport-grid {
	flex: none;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	grid-template-columns: repeat(2, minmax(100px, 1fr));
	grid-auto-rows: minmax(0, 1fr);
	justify-content: center;
	gap: 16px;
	width: 100%;
	min-height: 400px;
	display: grid;
}

.transport-grid .card:first-of-type {
	grid-row: span 2;
}

/*  MARK: paginator  */

.pagination {
	display: flex;
}

.pagination li {
	display: none;
}

.pagination .active,
.pagination .insertPage,
.pagination li:first-child,
.pagination li:last-child {
	display: block;
}

.pagination a,
.pagination input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 5px;
	padding: 0;
	text-align: center;
	color: #bbb;
	border: 1px solid #e1e1e1;
	text-decoration: none;
	transition: all .2s;
}

.pagination a:focus,
.pagination a:hover,
.pagination input:focus,
.pagination input:hover {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.pagination input::placeholder {
	color: #bbb;
	font-size: 16px;
	font-weight: 500;
}

.pagination .active a {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	cursor: text;
}

.pagination .insertPage+.insertPage {
	display: none;
}


.stats {
	position: absolute;
	bottom: 0;
	left: 0;
	aspect-ratio: 1;
	max-width: 65%;
	max-height: 100%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	mix-blend-mode: hard-light;
}

.stat-box-1,
.stat-box-2 {
	aspect-ratio: 1;
	background: var(--primary-color);
	mix-blend-mode: overlay;
	color: white;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.stat-box-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.stat-box-1 h5 {
	margin: 0;
}

.stat-box-2 h2 {
	line-height: 1;
}

.stat-box-2 .myStatsSwiper {
	height: 100%;
}

.stat-box-2 .myStatsSwiper .swiper-slide {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.stat-box-2 .myStatsSwiper .swiper-wrapper {
	align-items: center;
}

.stat-box-1 {
	align-self: flex-start;
}

.stat-box-2 {
	align-self: flex-end;
}

/*  MARK: RWD  */

@media (max-width: 1199px) {

	.navbar-light.affix,
	.navbar-dark,
	.navbar[data-bs-theme=dark] {
		--bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.5);
		--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

		--bs-navbar-toggler-border-radius: .75rem;
	}

	.navbar-nav .nav-link {
		color: white;
	}

	.offcanvas {
		height: 100dvh;
	}

}


@media (max-width: 991px) {
	footer {
		text-align: center;

		& a.d-flex {
			flex-direction: column;
			gap: .25rem !important;
			margin-top: 1.5rem;
		}
	}

	.navbar-nav .nav-link {
		font-size: 1.125rem;
	}
}


@media (max-width: 575px) {
	:root {
		--xxl: 3.5rem;
	}

	header h1 {
		font-size: clamp(6rem, 6rem + ((1vw - 0.2rem) * 1.333), 12.625rem) !important;
	}

	.p-xxl {
		padding: var(--xl);
	}

	.navbar-brand-image {
		height: 50px;
	}
}

@media (max-width: 450px) {

	.langs .dropdown-toggle span,
	.langs .dropdown-toggle::after {
		display: none;
	}

	.langs {
		& .dropdown-toggle {
			padding: .75rem .25rem;
		}
	}

	.navbar-brand-image {
		height: 45px;
	}

	header h1 {
		font-size: clamp(4rem, 4rem + ((1vw - 0.2rem) * 1.333), 12.625rem) !important;
	}
}