.button__icon--no-transform {
	transform: none !important;
}
.relative {
	position: relative;
}

.header {
	display: block;
	padding: 1.75rem 0;
	height: 6.25rem;
	background-color: #FFFFFF;
	border-bottom: 2px solid #B8D8ED;
}

@media only screen and (max-width: 1024px) {
	.header {
		height: 5rem;
		padding: 1.125rem 0;
	}
}

@media only screen and (max-width: 680px) {
	.header {
		height: 3.75rem;
		padding: 0.625rem 0;
	}
}

.header--fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
}

.header__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__buttons-wrap {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

@media only screen and (max-width: 1024px) {
	.header__buttons-wrap {
		gap: 0.9375rem;
	}
}

.header__button {
	height: 2.6875rem;
	white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
	.header__button {
		height: 2.25rem;
		font-size: 0.875rem;
	}
}

@media only screen and (max-width: 1024px) {
	.header__button .button__text {
		font-size: 0.875rem;
	}
}

.t-cards__inner {
	width: 100%;
	padding: 2.5rem 2.8125rem;
}

@media only screen and (max-width: 1024px) {
	.t-cards__inner {
		padding: 1.875rem 1.25rem;
	}
}

.t-cards__title {
	font-family: "Akrobat Bold", sans-serif;
	color: #FFFFFF;
	font-size: 2.625rem;
	text-align: center;
}

@media only screen and (max-width: 1440px) {
	.t-cards__title {
		font-size: 2.375rem;
	}
}

@media only screen and (max-width: 1024px) {
	.t-cards__title {
		font-size: 1.875rem;
	}
}

.t-cards__item {
	display: flex;
	height: 8.75rem;
	padding: 1.875rem;
	border-radius: 1.875rem;
	background-color: #FFFFFF;
}

@media only screen and (max-width: 1200px) {
	.t-cards__item {
		padding: 1.375rem;
		align-items: center;
	}
}

.t-cards__item-picture {
	display: block;
	width: 5rem;
	height: 5rem;
	margin-right: 1.0625rem;
}

.t-cards__item-picture img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.t-cards__item-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 5rem;
}

.t-cards__item-text {
	font-family: "Akrobat Bold", sans-serif;
	font-size: 1.1875rem;
	font-weight: 700;
}

.t-cards__item-link {
	color: #007EC1;
}

.t-cards__item-link-icon {
	width: 0.3125rem;
	height: 0.625rem;
}

.t-exp__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5rem 4.375rem;
}

@media only screen and (max-width: 1024px) {
	.t-exp__wrap {
		padding: 1.875rem 1.25rem;
	}
}

.t-exp__title {
	color: #FFFFFF !important;
}

@media only screen and (max-width: 1200px) {
	.t-exp__title {
		font-size: 2.375rem !important;
		text-align: center;
	}
}

@media only screen and (max-width: 1024px) {
	.t-exp__title {
		font-size: 2rem !important;
	}
}

.t-exp__content {
	color: #FFFFFF !important;
	text-align: center;
	font-weight: 400;
}

.t-form__wrapper {
	position: relative;
	height: 100%;
	padding: 3.3125rem 4.375rem;
	background-color: #007EC1;
	border-radius: 1.875rem;
	z-index: 2;
}

@media only screen and (max-width: 1024px) {
	.t-form__wrapper {
		padding: 1.875rem 1.25rem;
	}
}

.t-form form {
	display: flex;
	position: relative;
	flex-direction: column;
	width: 100%;
}

.t-form label {
	margin-bottom: 0.9375rem;
}

.t-form label:last-of-type {
	margin-bottom: 2rem;
}

.t-form input {
	background-color: #FFFFFF;
	width: 100%;
	background-repeat: no-repeat;
	background-position: 20px center;
	margin-right: 0;
	padding: 0.75rem 0.9375rem 0.75rem 2.875rem !important;
}

.t-form input::placeholder {
	color: #9C9C9C;
}

.t-form input[type=submit] {
	width: fit-content;
	color: #0b3247;
	font-size: 0.875rem;
	font-weight: 700;
	background-color: #b8d8ed;
	padding: 0.625rem 1.25rem !important;
	border: none;
	outline: none;
	border-radius: 0.25rem;
	cursor: pointer;
}

.t-form input[type=text] {
	background-image: url(https://uavprof.com/wp-content/themes/uavprof/assets/img/feedback/person.svg);
}

.t-form input[type=tel] {
	background-image: url(https://uavprof.com/wp-content/themes/uavprof/assets/img/feedback/phone.svg);
}

.t-form input[type=email] {
	background-image: url(https://uavprof.com/wp-content/themes/uavprof/assets/img/feedback/email.svg);
}

.t-form button {
	width: fit-content;
	color: #0b3247;
	font-size: 0.875rem;
	font-weight: 700;
	background-color: #b8d8ed;
	padding: 0.625rem 1.25rem;
	border: none;
	outline: none;
	border-radius: 0.25rem;
	cursor: pointer;
}

.t-form__pic {
	position: relative;
	right: 5.625rem;
	height: 100%;
	width: 41.25rem;
	border-radius: 1.875rem;
	overflow: hidden;
	z-index: 1;
}

@media only screen and (max-width: 1024px) {
	.t-form__pic {
		right: 0;
		top: -3.75rem;
		width: 100%;
		height: 20.625rem;
	}
}

.t-form__pic img {
	object-position: center;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.t-color-block {
	display: flex;
	border-radius: 1.875rem;
	width: 100%;
}

.t-color-block__img-wrap {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 2.0625rem;
	padding: 1.375rem 1.9375rem;
}

@media only screen and (max-width: 1024px) {
	.t-color-block__img-wrap {
		flex-direction: column;
		padding: 0.9375rem;
		gap: 3rem;
	}
}

@media only screen and (max-width: 1024px) {
	.mtm-1 {
		margin-top: 1rem;
	}
}

.t-color-block__link {
	display: flex;
	max-height: 4.625rem;
	width: 100%;
	max-width: 9.375rem;
}

@media only screen and (max-width: 1024px) {
	.t-color-block__link {
		max-height: 3.625rem;
		max-width: 7.8125rem;
	}
}

.t-color-block__link:hover img {
	filter: none;
}

.t-color-block__link img {
	filter: grayscale(1);
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.3s ease-in-out;
}

.t-color-block--light {
	background-color: #D0E9F6;
}

@media only screen and (max-width: 1024px) {
	.t-color-block--light {
		width: fit-content;
	}
}

.t-color-block--dark {
	background-color: #007EC1;
}

@media only screen and (max-width: 1024px) {
	.t-intro__tabl-wrap {
		display: flex;
		align-items: center;
		column-gap: 3.4375rem;
	}
}

.t-intro__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.t-intro__title {
	font-family: "Akrobat Bold", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #0b3247;
	margin: 0;
}

@media only screen and (max-width: 1200px) {
	.t-intro__title {
		font-size: 1.6rem;
	}
}

.t-intro__pic-min {
	position: relative;
	top: 2.5rem;
	left: 0.9375rem;
	width: 6.625rem;
	height: 6.5rem;
	z-index: 2;
}

@media only screen and (max-width: 1024px) {
	.t-intro__pic-min {
		top: 0;
		left: 0;
		width: 4.5625rem;
		height: 4.4375rem;
	}
}

.t-intro__pic-min img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.t-intro__pic-main {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35.3125rem;
	height: 23.75rem;
	left: -1.5625rem;
}

@media only screen and (max-width: 1024px) {
	.t-intro__pic-main {
		position: absolute;
		top: -3.125rem;
		width: 21.25rem;
		height: auto;
		left: auto;
		right: -6.875rem;
	}
}

@media only screen and (max-width: 560px) {
	.t-intro__pic-main {
		right: -10.4375rem;
	}
}

.t-intro__pic-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.t-intro__bg {
	position: absolute;
	right: -36.125rem;
	top: 0.8125rem;
	width: 55rem;
	height: 100%;
	border-radius: 50px;
	overflow: hidden;
	z-index: 1;
}

@media only screen and (max-width: 1024px) {
	.t-intro__bg {
		left: 10.625rem;
		top: 0;
		height: 100%;
		min-height: 17.5rem;
		min-width: 50%;
	}
}

.t-intro__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.t-intro__btn {
	width: fit-content;
	padding: 1rem 1.25rem;
}

.t-intro__btn svg {
	flex-shrink: 0;
	width: 1.25rem !important;
	max-width: none !important;
	max-height: 0.9375rem !important;
}

.t-partner__logo-block {
	display: grid;
	grid-template-rows: repeat(3, minmax(38px, 89px));
	grid-auto-flow: column;
	grid-gap: 1.875rem;
	align-items: center;
}

@media only screen and (max-width: 1024px) {
	.t-partner__logo-block {
		grid-template-rows: repeat(4, minmax(30px, 69px));
		align-items: normal;
	}
}

.t-partner__text {
	max-width: 31.25rem;
}

.t-partner__logo-block-item {
	min-height: 1.125rem;
}

@media only screen and (max-width: 1024px) {
	.t-partner__logo-block-item {
		max-width: 8.875rem;
	}
}

.t-partner__logo-block-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.t-partner__logo-block-item--wide {
	grid-column: span 2;
}
@media only screen and (max-width: 1024px) {
	.t-partner__logo-block-item--wide {
		grid-column: span 1;
	}
}

.t-partner__card {
	display: flex;
	flex-direction: column;
	padding: 1.875rem;
	border-radius: 1.875rem;
	background-color: #FFFFFF;
	box-shadow: 0px 4px 14px 0px rgba(0, 126, 193, 0.2);
	height: 100%;
	min-height: 23.25rem;
}

.t-partner__card-header {
	display: flex;
	margin-bottom: 0.9375rem;
}

.t-partner__card-pic {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	margin-right: 1.875rem;
}

@media only screen and (max-width: 1024px) {
	.t-partner__card-pic {
		width: 5rem;
		height: 5rem;
	}
}

.t-partner__card-title {
	color: #007EC1;
	font-family: "Akrobat Bold", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
}

@media only screen and (max-width: 1024px) {
	.t-partner__card-text {
		color: #6F7481;
	}
}

.t-partner__card-blockq {
	font-style: italic;
	margin: 0;
}

.t-program {
	position: relative;
}

.t-program__btn {
	width: fit-content;
}

.t-program__decor {
	position: absolute;
	width: 33.125rem;
	height: 35.9375rem;
	z-index: 1;
}

.t-program__decor img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.t-program__card {
	position: relative;
	z-index: 2;
	background-color: #FFFFFF;
	height: 20rem;
	padding: 1.25rem 1rem 1.25rem 1.875rem;
	border-radius: 1.875rem;
	box-shadow: 0px 4px 14px 0px rgba(0, 126, 193, 0.2);
}

@media only screen and (max-width: 1024px) {
	.t-program__card {
		padding: 1.875rem 1.5625rem;
		height: fit-content;
	}
}

.t-program__card-header {
	display: flex;
	align-items: baseline;
	color: #0B3247;
	font-family: "Akrobat Bold", sans-serif;
	font-size: 1.5rem;
	line-height: 1;
}

@media only screen and (max-width: 1200px) {
	.t-program__card-header {
		font-size: 1.375rem;
	}
}

@media only screen and (max-width: 1200px) {
	.t-program__card-text {
		font-size: 0.875rem;
	}
}

.t-program__card-header-accent {
	color: #007DC6;
	font-size: 6.25rem;
	margin-right: 0.375rem;
}

@media only screen and (max-width: 1200px) {
	.t-program__card-header-accent {
		font-size: 4.0625rem;
	}
}

.t-training__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2.1875rem 3.9375rem;
}

@media only screen and (max-width: 1024px) {
	.t-training__inner {
		flex-direction: column-reverse;
		padding: 1.875rem 1.25rem;
		text-align: center;
	}
}

.t-training__pic {
	width: 30rem;
	height: 21.25rem;
	flex-shrink: 0;
	margin-right: 0.9375rem;
}

@media only screen and (max-width: 1024px) {
	.t-training__pic {
		max-width: 100%;
		width: 100%;
	}
}

.t-training__pic img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media only screen and (max-width: 1024px) {
	.t-training__content {
		margin-bottom: 1.25rem;
	}
}

.t-training__title {
	margin-bottom: 1.4375rem;
}

.t-training__button {
	width: fit-content !important;
	color: #0B3247 !important;
	border-color: #007EC1 !important;
}

@media only screen and (max-width: 1024px) {
	.t-training__button {
		margin: 0 auto;
	}
}

.t-training__button svg {
	width: 0.375rem;
	height: 0.875rem;
}

.t-review__card {
	display: block;
	height: 100%;
	min-height: 34.375rem;
	padding: 1.875rem;
	background-color: #FFFFFF;
	border-radius: 1.875rem;
	box-shadow: 0px 4px 14px 0px rgba(0, 126, 193, 0.2);
}

@media only screen and (max-width: 1024px) {
	.t-review__card {
		height: fit-content;
		min-height: fit-content;
	}
}

.t-review__card-header {
	display: flex;
	align-items: center;
	margin-bottom: 0.625rem;
}

.t-review__card-pic {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	margin-right: 1.25rem;
}

.t-review__card-title {
	color: #0B3247;
	font-family: "Akrobat Bold", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: normal;
}

.t-review__card-text {
	font-size: 0.875rem;
	margin-bottom: 1.25rem;
}

@media only screen and (max-width: 1024px) {
	.t-review__card-text {
		color: #6F7481;
	}
}

.t-review__card-blockq {
	margin: 0;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 17;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-style: italic;
	padding-top: 1.25rem;
	border-top: 1px solid #007EC1;
}

/*!*********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/swiper.min.css ***!
  \*********************************************************************************************************************************************************/
/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
	font-family: swiper-icons;
	src: url("data:application/font-woff;charset=utf-8;base64, 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");
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
	content: "";
	flex-shrink: 0;
	order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
}

/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/modules/navigation/navigation.min.css ***!
  \********************************************************************************************************************************************************************************/
:root {
	--swiper-navigation-size: 44px;
}

.swiper-button-next, .swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
	display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
	content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	content: "next";
}

.swiper-button-lock {
	display: none;
}

/*!*******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/@fancyapps/ui/dist/fancybox.css ***!
  \*******************************************************************************************************************************************************************/
.carousel {
	position: relative;
	box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
	box-sizing: inherit;
}

.carousel.is-draggable {
	cursor: move;
	cursor: grab;
}

.carousel.is-dragging {
	cursor: move;
	cursor: grabbing;
}

.carousel__viewport {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
}

.carousel__track {
	display: flex;
}

.carousel__slide {
	flex: 0 0 auto;
	width: var(--carousel-slide-width, 60%);
	max-width: 100%;
	padding: 1rem;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	list-style: none;
	user-select: none;
}

.carousel__dots .carousel__dot {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.carousel__dots .carousel__dot:after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: currentColor;
	opacity: 0.25;
	transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
	opacity: 1;
}

.carousel__button {
	width: var(--carousel-button-width, 48px);
	height: var(--carousel-button-height, 48px);
	padding: 0;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: all;
	cursor: pointer;
	color: var(--carousel-button-color, currentColor);
	background: var(--carousel-button-bg, transparent);
	border-radius: var(--carousel-button-border-radius, 50%);
	box-shadow: var(--carousel-button-shadow, none);
	transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.carousel__button.is-prev {
	left: 10px;
}

.carousel__button.is-next {
	right: 10px;
}

.carousel__button[disabled] {
	cursor: default;
	opacity: 0.3;
}

.carousel__button svg {
	width: var(--carousel-button-svg-width, 50%);
	height: var(--carousel-button-svg-height, 50%);
	fill: none;
	stroke: currentColor;
	stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
	stroke-linejoin: bevel;
	stroke-linecap: round;
	filter: var(--carousel-button-svg-filter, none);
	pointer-events: none;
}

html.with-fancybox {
	scroll-behavior: auto;
}

body.compensate-for-scrollbar {
	overflow: hidden !important;
	touch-action: none;
}

.fancybox__container {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	margin: 0;
	padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	color: var(--fancybox-color, #fff);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow: hidden;
	z-index: 1050;
	outline: none;
	transform-origin: top left;
	--carousel-button-width: 48px;
	--carousel-button-height: 48px;
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
	--carousel-button-svg-stroke-width: 2.5;
	--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
	box-sizing: inherit;
}

.fancybox__container :focus {
	outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
	box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
	.fancybox__container {
		--carousel-button-width: 48px;
		--carousel-button-height: 48px;
		--carousel-button-svg-width: 27px;
		--carousel-button-svg-height: 27px;
	}
}

.fancybox__backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	z-index: 10;
}

.fancybox__carousel.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
	cursor: default;
}

.fancybox__track {
	display: flex;
	height: 100%;
}

.fancybox__slide {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 48px 8px 8px 8px;
	position: relative;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	outline: 0;
	overflow: auto;
	--carousel-button-width: 36px;
	--carousel-button-height: 36px;
	--carousel-button-svg-width: 22px;
	--carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
	content: "";
	flex: 0 0 0;
	margin: auto;
}

@media all and (min-width: 1024px) {
	.fancybox__slide {
		padding: 64px 100px;
	}
}

.fancybox__content {
	margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
	padding: 36px;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	position: relative;
	align-self: center;
	display: flex;
	flex-direction: column;
	z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
	outline: thin dotted;
	box-shadow: none;
}

.fancybox__caption {
	align-self: center;
	max-width: 100%;
	margin: 0;
	padding: 1rem 0 0 0;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	visibility: visible;
	cursor: auto;
	flex-shrink: 0;
	overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
	visibility: hidden;
}

.fancybox__container > .carousel__dots {
	top: 100%;
	color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
	z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
	right: 8px;
}

@media all and (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-next {
		right: 40px;
	}
}

.fancybox__nav .carousel__button.is-prev {
	left: 8px;
}

@media all and (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-prev {
		left: 40px;
	}
}

.carousel__button.is-close {
	position: absolute;
	top: 8px;
	right: 8px;
	top: calc(env(safe-area-inset-top, 0px) + 8px);
	right: calc(env(safe-area-inset-right, 0px) + 8px);
	z-index: 40;
}

@media all and (min-width: 1024px) {
	.carousel__button.is-close {
		right: 40px;
	}
}

.fancybox__content > .carousel__button.is-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
	pointer-events: none;
}

.fancybox__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
	cursor: pointer;
	z-index: 1053;
}

.fancybox__spinner svg {
	animation: fancybox-rotate 2s linear infinite;
	transform-origin: center center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}

.fancybox__spinner svg circle {
	fill: none;
	stroke-width: 2.75;
	stroke-miterlimit: 10;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	animation: fancybox-dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
	stroke: currentColor;
}

@keyframes fancybox-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
	animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
	animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
	animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
	animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
	animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
	animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
	animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
	animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}

@keyframes fancybox-zoomInUp {
	from {
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
	to {
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes fancybox-zoomOutDown {
	to {
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

@keyframes fancybox-throwOutUp {
	to {
		transform: translate3d(0, -30%, 0);
		opacity: 0;
	}
}

@keyframes fancybox-throwOutDown {
	to {
		transform: translate3d(0, 30%, 0);
		opacity: 0;
	}
}

.fancybox__carousel .carousel__slide {
	scrollbar-width: thin;
	scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 2px;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
	cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
	cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
	cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing;
}

.fancybox__image {
	transform-origin: 0 0;
	user-select: none;
	transition: none;
}

.has-image .fancybox__content {
	padding: 0;
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
}

.is-closing .has-image .fancybox__content {
	overflow: visible;
}

.has-image[data-image-fit=contain] {
	overflow: visible;
	touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
	flex-direction: row;
	flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
	overflow-x: hidden;
	overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
	min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
	max-width: 100%;
	height: auto;
}

.has-image[data-image-fit=cover] {
	overflow: visible;
	touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
	width: 100%;
	height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	max-width: 100%;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
	width: 100%;
	height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, 0.9);
	color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
	background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.fancybox__thumbs {
	flex: 0 0 auto;
	position: relative;
	padding: 0px 3px;
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
	animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
	opacity: 0;
}

.fancybox__thumbs .carousel__slide {
	flex: 0 0 auto;
	width: var(--fancybox-thumbs-width, 96px);
	margin: 0;
	padding: 8px 3px;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-width: 5px;
	border-style: solid;
	border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
	opacity: 0;
	transition: opacity 0.15s ease;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
	opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
	pointer-events: none;
	user-select: none;
}

.fancybox__thumb {
	position: relative;
	width: 100%;
	padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
	background-size: cover;
	background-position: center center;
	background-color: rgba(255, 255, 255, 0.1);
	background-repeat: no-repeat;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 20;
	background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
	padding: 0;
	touch-action: none;
	display: flex;
	justify-content: space-between;
	--carousel-button-svg-width: 20px;
	--carousel-button-svg-height: 20px;
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
	.fancybox__toolbar {
		padding: 8px;
	}
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
	animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
	opacity: 0;
}

.fancybox__toolbar__items {
	display: flex;
}

.fancybox__toolbar__items--left {
	margin-right: auto;
}

.fancybox__toolbar__items--center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
	margin-left: auto;
}

@media (max-width: 640px) {
	.fancybox__toolbar__items--center:not(:last-child) {
		display: none;
	}
}

.fancybox__counter {
	min-width: 72px;
	padding: 0 10px;
	line-height: var(--carousel-button-height, 48px);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
	background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 30;
	user-select: none;
}

.fancybox__container:fullscreen::backdrop {
	opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
	display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
	display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
	display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
	display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
	display: block;
}
