@charset "UTF-8";
:root {
	--color-black--rgb: 51, 51, 51;
	--color-black: #333333;
	--color-grey--rgb: 98, 101, 112;
	--color-grey: #626570;
	--color-grey-100--rgb: 171, 171, 171;
	--color-grey-100: #ababab;
	--color-white--rgb: 253, 253, 253;
	--color-white: #fdfdfd;
	--color-yellow-100--rgb: 248, 183, 57;
	--color-yellow-100: #f8b739;
	--color-blue--rgb: 0, 71, 255;
	--color-blue: #0047ff;
	--color-blue-100--rgb: 38, 90, 166;
	--color-blue-100: #265aa6;
	--color-green--rgb: 0, 223, 102;
	--color-green: #00df66;
}

@media (min-width: 1200px) {
	:root {
		--wrap: 10vw;
	}
}
@media (min-width: 1200px) and (min-width: 1540px) {
	:root {
		--wrap: calc((100vw - 1340px) / 2);
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	:root {
		--wrap: 5vw;
	}
}
@media (max-width: 899px) {
	:root {
		--wrap: 5vw;
	}
}

.menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 10000;
}
@media screen and (max-width: 1200px) {
	.menu {
		justify-content: flex-end;
	}
}
.menu__toggle {
	display: none;
}
@media screen and (max-width: 1200px) {
	.menu__toggle {
		display: flex;
		position: relative;
		z-index: 10;
		width: 30px;
		height: 30px;
		cursor: pointer;
		transition: all 0.2s ease;
	}
	.menu__toggle span,
	.menu__toggle:before,
	.menu__toggle::after {
		content: "";
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background-color: var(--color-black);
		left: 0;
		transition: all 0.2s ease;
	}
	.menu__toggle span {
		top: 14px;
		opacity: 1;
	}
	.menu__toggle::before {
		top: 4px;
	}
	.menu__toggle::after {
		top: 24px;
	}
	.menu__toggle._active-menu {
		transform: translate(10px, -40px);
	}
	.menu__toggle._active-menu span {
		opacity: 0;
		background-color: var(--color-black);
	}
	.menu__toggle._active-menu::before {
		transform: rotate(-45deg);
		top: 14px;
		background-color: var(--color-black);
	}
	.menu__toggle._active-menu::after {
		transform: rotate(45deg);
		top: 14px;
		background-color: var(--color-black);
	}
}
@media screen and (max-width: 829px) {
	.menu__toggle._active-menu {
		transform: translate(10px, -40px);
	}
}
@media screen and (max-width: 540px) {
	.menu__toggle._active-menu {
		transform: translate(150px, -200px);
	}
}
.menu__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
	.menu__box {
		position: fixed;
		z-index: 9;
		width: 38%;
		height: 100%;
		top: 0;
		right: -100%;
		flex-direction: column;
		overflow: auto;
		background-color: var(--color-white);
		align-items: flex-start;
		justify-content: flex-start;
		padding: 30px 80px 30px 30px;
	}
	.menu__box._active-menu {
		right: 0;
	}
}
@media screen and (max-width: 829px) {
	.menu__box {
		width: 100%;
		padding: 30px;
	}
}
.menu__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.menu__list {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
}
.menu__list li {
	margin-top: 0;
	padding: 0;
}
.menu__list li::before {
	content: none;
}
@media screen and (max-width: 1200px) {
	.menu__list li:last-child a {
		margin-bottom: 0;
	}
}
.menu__item {
	display: inline-block;
	color: var(--color-black);
	font-size: 16px;
	transition: all 0.2s ease;
	margin: 0 12px;
	position: relative;
	line-height: 100%;
}
@media screen and (max-width: 1200px) {
	.menu__item {
		color: var(--color-black);
	}
}
.menu__item:hover {
	color: var(--color-blue);
}
@media screen and (max-width: 1200px) {
	.menu__item {
		font-size: 22px;
		margin: 0 0 25px 0;
	}
}
.menu__item svg {
	margin-left: 6px;
	transition: 0.3s ease;
}
.menu__btn {
	font-weight: 700;
	color: var(--color-blue-200);
}
.menu__submenu {
	display: block;
	width: 100%;
	transition: 0.3s ease;
	z-index: 2;
}
@media (min-width: 900px) {
	.menu__submenu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 350px;
		max-width: 350px;
		padding-top: 10px;
		opacity: 0;
		visibility: hidden;
	}
	.menu__list li:hover .menu__submenu {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 899px) {
	.menu__submenu {
		height: 0;
		opacity: 0;
	}
}
.menu__submenu ul {
	background-color: var(--color-white);
	border-radius: 12px;
	padding: 10px;
}
.menu__submenu ul > * + * {
	margin-top: 10px;
}
.menu__call__container {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.menu__call__container {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
}
.menu__call {
	margin-right: 27px;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: var(--color-black);
	transition: all 0.1s ease;
}
@media screen and (max-width: 1200px) {
	.menu__call {
		margin: 0 0 20px 0;
		font-size: 18px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call {
		font-size: 23px;
	}
}
.menu__call svg {
	width: 12px;
	height: 12px;
	margin-right: 6px;
}
@media screen and (max-width: 1200px) {
	.menu__call svg {
		width: 18px;
		height: 18px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call svg {
		width: 23px;
		height: 23px;
	}
}
.menu__call:hover svg {
	animation-name: tada;
	animation-duration: 1s;
	animation-timing-function: ease;
}
.menu__call:hover svg path {
	transition: all 0.1s ease;
}
.menu__call.menu__call__mob {
	display: none;
}
@media screen and (max-width: 1200px) {
	.menu__call.menu__call__mob {
		display: block;
		margin: 0 35px 0 0;
	}
	.menu__call.menu__call__mob svg {
		width: 18px;
		height: 18px;
		margin-right: 0;
	}
}
@media screen and (max-width: 770px) {
	.menu__call.menu__call__mob {
		margin-right: 15px;
	}
}
@media screen and (max-width: 1200px) {
	.menu__call__btn {
		width: 183px;
		height: 33px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call__btn {
		width: 210px;
		height: 33px;
	}
}
@media screen and (max-width: 1200px) {
	.menu__call__btn span {
		font-size: 18px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call__btn span {
		font-size: 20px;
	}
}
.menu__cart {
	cursor: pointer;
	position: relative;
	width: 20px;
	height: 20px;
	z-index: 1;
}
@media screen and (max-width: 1200px) {
	.menu__cart {
		margin-right: 35px;
	}
}
@media screen and (max-width: 770px) {
	.menu__cart {
		margin-right: 25px;
	}
}
.menu__cart svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}
.menu__cart .cart-count {
	display: none;
	position: absolute;
	width: 10px;
	height: 10px;
	top: -1px;
	right: -4px;
	border-radius: 50%;
	font-size: 6px;
	line-height: 9.8px;
	margin: auto;
	text-align: center;
	color: #fff;
	border: 1.5px solid #ffffff;
}
.menu__cart .cart-count._no-empty-cart {
	display: block;
}

* {
	-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
@media (max-width: 899px) {
	* {
		outline: none;
	}
}

body,
input,
textarea,
button,
select {
	font-family: "Montserrat", sans-serif;
}

a {
	text-decoration: none;
	color: var(--color-black);
	transition: 0.3s ease;
}

a:hover {
	color: var(--color-blue);
}

p {
	margin: 0;
}

ol,
ul {
	padding: 0;
}

ul {
	list-style: none;
}
ul > * + * {
	margin-top: 10px;
}
ul li {
	position: relative;
	padding: 0 14px;
}

html,
body {
	position: relative;
	color: var(--color-grey);
	background-color: var(--color-white);
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 125%;
	margin: 0;
	padding: 0;
}

body._lock {
	overflow: hidden;
}

._container {
	width: 100%;
	padding: 0 var(--wrap);
	margin: 0;
}

@media (min-width: 1200px) {
	section {
		padding: 90px 0;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	section {
		padding: 45px 0;
	}
}
@media (max-width: 899px) {
	section {
		padding: 38px 0;
	}
}
@media (min-width: 1200px) {
	section._grey + ._grey {
		padding-top: 0;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	section._grey + ._grey {
		padding-top: 45px;
	}
}
@media (max-width: 899px) {
	section._grey + ._grey {
		padding-top: 38px;
	}
}

._grey {
	background-color: var(--color-grey-100);
}

b {
	color: var(--color-blue);
}

h1,
.h1 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	color: var(--color-white);
	line-height: 120%;
	font-weight: 700;
	letter-spacing: 0em;
}
@media (min-width: 1200px) {
	h1,
	.h1 {
		font-size: 54px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	h1,
	.h1 {
		font-size: 44px;
	}
}
@media (max-width: 899px) {
	h1,
	.h1 {
		font-size: 36px;
	}
}

h2,
.h2 {
	margin: 0;
	color: var(--color-blue);
	font-family: "Montserrat", sans-serif;
	line-height: 110%;
	letter-spacing: 0em;
	font-weight: 500;
}
@media (min-width: 1200px) {
	h2,
	.h2 {
		font-size: 55px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	h2,
	.h2 {
		font-size: 42px;
	}
}
@media (max-width: 899px) {
	h2,
	.h2 {
		font-size: 34px;
	}
}

h3,
.h3 {
	margin: 0;
	color: var(--color-blue);
	font-family: "Montserrat", sans-serif;
	line-height: 110%;
	font-weight: 500;
	letter-spacing: 0em;
}
@media (min-width: 1200px) {
	h3,
	.h3 {
		font-size: 40px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	h3,
	.h3 {
		font-size: 32px;
	}
}
@media (max-width: 899px) {
	h3,
	.h3 {
		font-size: 24px;
	}
}

.btn {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	color: var(--color-white);
	padding: 18px 36px;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	outline: none;
	border: none;
	background-color: var(--color-blue);
	border: 2px solid var(--color-blue);
}
.btn:hover {
	box-shadow: 0px 9px 43.3px #7da1ff;
}
.btn:focus-visible {
	box-shadow: 0px 9px 43.3px #7da1ff;
}

.btn.btn-empty {
	background: transparent;
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
}
.btn.btn-empty:hover {
	background: var(--color-blue);
	color: var(--color-white);
	border: 1px solid var(--color-blue);
}
.btn.btn-empty:focus-visible {
	background: var(--color-blue);
	color: var(--color-white);
	border: 1px solid var(--color-blue);
}

.block-title {
	text-align: center;
}

.block-subtitle {
	text-align: center;
	color: var(--color-grey);
	margin-top: 14px;
}

.swiper-container {
	width: 100%;
	margin: 24px auto;
}

.swiper-slide-container {
	height: 100%;
	margin: auto;
	display: flex;
}

.swiper-button-prev,
.swiper-button-next {
	border-radius: 100%;
	width: 10px;
	height: 16px;
	background-size: 14px;
	color: var(--color-grey);
	--swiper-navigation-size: 14px;
	position: relative;
}

.swiper-button-prev {
	background-position-x: 11px;
}
@media (max-width: 899px) {
	.swiper-button-prev {
		background-position-x: 7px;
		left: -10px;
	}
}

.swiper-button-next {
	transform: rotate(180deg);
	background-position-x: 10px;
}
@media (max-width: 899px) {
	.swiper-button-next {
		background-position-x: 6px;
		right: -10px;
	}
}

.block-title {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: var(--wrap);
}
.block-title span {
	display: inline-block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: var(--color-blue);
	margin-left: 50px;
}

.header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 2;
}
@media (min-width: 1200px) {
	.header {
		padding: 108px 0 0;
	}
}
@media (max-width: 1199px) {
	.header {
		padding: 50px 0 0;
	}
}
.header__wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 899px) and (max-width: 540px) {
	.header__wrapper {
		flex-direction: column;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.header__wrapper > * + * {
		margin-top: 30px;
	}
}
.header__logo {
	order: 1;
}
.header__logo a {
	display: block;
	max-width: 200px;
	min-width: 200px;
	width: 100%;
}
.header__logo a img {
	display: block;
	width: 100%;
}
@media (min-width: 1200px) {
	.header .menu {
		order: 2;
	}
}
@media (max-width: 1199px) {
	.header .menu {
		order: 3;
	}
}
@media (min-width: 1200px) {
	.header__button {
		order: 3;
	}
}
@media (max-width: 1199px) {
	.header__button {
		order: 2;
	}
}
.header__marquee {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
@media (min-width: 900px) {
	.header__marquee {
		height: 400px;
	}
}
@media (max-width: 899px) {
	.header__marquee {
		height: 300px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.header__marquee {
		height: 250px;
	}
}
.header__marquee .marquee {
	font-weight: 400;
	font-size: 38px;
	padding: 16px 0;
	position: relative;
}
@media (min-width: 900px) {
	.header__marquee .marquee {
		padding: 16px 0;
	}
}
@media (max-width: 899px) {
	.header__marquee .marquee {
		padding: 12px 0;
	}
}
.header__marquee .marquee.marquee-1 {
	background: var(--color-green);
	color: var(--color-black);
	transform: rotate(-7deg) scale(1.1);
}
.header__marquee .marquee.marquee-2 {
	background: var(--color-blue);
	color: var(--color-white);
	transform: rotate(-5deg) scale(1.1) translateY(44px);
}
.header__marquee .marquee__part {
	flex-shrink: 0;
	padding: 0 90px;
}
.header__marquee .marquee__inner {
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	flex: auto;
	flex-direction: row;
}

/*
* BANNER
*/
.banner {
	position: relative;
	padding-top: 0;
}
@media (min-width: 1200px) {
	.banner {
		padding-bottom: 0;
	}
}
@media (max-width: 899px) {
	.banner {
		padding-bottom: 70px;
	}
}
.banner__wrapper {
	position: relative;
	z-index: 1;
}

.about {
	padding-top: 50px;
	position: relative;
	z-index: 1;
}
@media (max-width: 899px) {
	.about {
		padding-top: 25px;
	}
}
@media (min-width: 900px) {
	.about__wrapper > * + * {
		margin-top: 50px;
	}
}
@media (max-width: 899px) {
	.about__wrapper > * + * {
		margin-top: 36px;
	}
}
.about-banner {
	width: 100%;
	position: relative;
}
.about-banner__video {
	width: 100%;
	position: relative;
	padding-top: 44%;
}
.about-banner__video:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 32.29%,
		rgba(0, 0, 0, 0.8) 100%
	);
	z-index: 2;
}
.about-banner__video video {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.about-banner__video video.blured {
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
}
.about-banner__bottom {
	position: absolute;
	bottom: 14%;
	display: flex;
	width: 100%;
	padding: 0 var(--wrap);
	z-index: 3;
}
@media (min-width: 900px) {
	.about-banner__bottom {
		justify-content: space-between;
		align-items: center;
	}
}
@media (max-width: 899px) {
	.about-banner__bottom {
		flex-direction: column;
	}
}
.about-banner__title {
	font-weight: 400;
	line-height: 120%;
	color: var(--color-white);
}
@media (min-width: 1200px) {
	.about-banner__title {
		font-size: 55px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.about-banner__title {
		font-size: 42px;
	}
}
@media (max-width: 899px) {
	.about-banner__title {
		font-size: 32px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.about-banner__title {
		font-size: 28px;
	}
}
.about-banner-button {
	display: flex;
	align-items: center;
	text-align: right;
	font-weight: 500;
	font-size: 30px;
	line-height: 120%;
	color: var(--color-white);
	transition: 0.4s ease;
	cursor: pointer;
}
@media (min-width: 1200px) {
	.about-banner-button {
		font-size: 30px;
		padding: 14px 45px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.about-banner-button {
		font-size: 24px;
		padding: 14px 45px;
	}
}
@media (max-width: 899px) {
	.about-banner-button {
		font-size: 20px;
		margin-top: 20px;
	}
}
html:not(.v-mobile) .about-banner-button:hover {
	color: var(--color-blue);
	background-color: var(--color-white);
}
html:not(.v-mobile) .about-banner-button:hover svg {
	box-shadow: 0px 9px 43.3px #7da1ff;
}
html:not(.v-mobile) .about-banner-button:hover svg circle {
	fill: var(--color-blue);
}
html:not(.v-mobile) .about-banner-button:hover svg path {
	fill: var(--color-white);
	transform: scale(1.1);
}

.about-banner-button > * + * {
	margin-left: 20px;
}
.about-banner-button svg {
	transition: inherit;
	border-radius: 50%;
}
@media (max-width: 899px) {
	.about-banner-button svg {
		width: 60px;
		height: 60px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.about-banner-button svg {
		width: 40px;
		height: 40px;
	}
}
.about-banner-button svg circle {
	transition: inherit;
}
.about-banner-button svg path {
	transform-origin: center;
	transition: inherit;
}
.about__info {
	display: grid;
}
@media (min-width: 900px) {
	.about__info {
		grid-template-columns: 2fr 3fr;
		gap: 80px;
		padding: 0 var(--wrap);
	}
}
@media (min-width: 900px) and (max-width: 1920px) {
	.about__info {
		padding: 0 0 0 var(--wrap);
	}
}
@media (max-width: 899px) {
	.about__info {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 0 var(--wrap);
	}
}
.about__top {
	display: grid;
	gap: 50px;
}
@media (min-width: 1200px) {
	.about__top {
		grid-template-columns: 4fr 1fr;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.about__top {
		grid-template-columns: 4fr 1fr;
	}
}
@media (max-width: 899px) {
	.about__top {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 900px) {
	.about__top h3 + p {
		margin-top: 50px;
	}
}
@media (max-width: 899px) {
	.about__top h3 + p {
		margin-top: 30px;
	}
}
.about__text {
	color: var(--color-grey);
}
@media (min-width: 900px) {
	.about__text h3 {
		margin-bottom: 50px;
	}
}
@media (max-width: 899px) {
	.about__text h3 {
		margin-bottom: 30px;
	}
}
.about-gallery {
	overflow: hidden;
}
@media (min-width: 900px) {
	.about-gallery > * + * {
		margin-top: 50px;
	}
}
@media (max-width: 899px) {
	.about-gallery > * + * {
		margin-top: 30px;
	}
}
.about-slider {
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 40px;
}
.about-slider .swiper-slide {
	position: relative;
	width: 100%;
	padding-top: 57%;
}
.about-slider .swiper-slide img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.about-slider .swiper-nav {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	bottom: 0;
}
.about-slider .swiper-nav > * {
	position: relative;
	width: 100%;
	margin: 0;
	top: 0;
	bottom: 0;
	min-width: -moz-fit-content;
	min-width: fit-content;
}
.about-slider .swiper-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 12px;
}
.about-slider .swiper-pagination-bullet-active {
	background-color: var(--color-blue);
}
.about-slider .swiper-button-prev {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.about-slider .swiper-button-prev:after {
	content: none;
}
.about-slider .swiper-button-prev svg {
	width: 24px;
}
.about-slider .swiper-button-next {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transform: rotate(0);
}
.about-slider .swiper-button-next:after {
	content: none;
}
.about-slider .swiper-button-next svg {
	width: 24px;
}
.about-img__wrapper {
	position: relative;
	width: 100%;
}
.about-img__wrapper img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 20px;
}
.about-details {
	display: flex;
	padding: 0 var(--wrap);
}
@media (min-width: 1200px) {
	.about-details {
		margin-top: 170px;
		justify-content: center;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.about-details {
		margin-top: 120px;
		justify-content: center;
	}
}
@media (max-width: 899px) {
	.about-details {
		margin-top: 60px;
		flex-direction: column;
	}
}
@media (min-width: 900px) {
	.about-details > * + * {
		margin-left: 50px;
	}
}
@media (max-width: 899px) {
	.about-details > * + * {
		margin-top: 50px;
	}
}
.about-details-item {
	display: inline-flex;
	width: -moz-fit-content;
	width: fit-content;
}
.about-details-item > * + * {
	margin-left: 50px;
}
.about-details-item__title {
	line-height: 140%;
	color: var(--color-black);
}
@media (min-width: 900px) {
	.about-details-item__title {
		font-size: 32px;
	}
}
@media (max-width: 899px) {
	.about-details-item__title {
		font-size: 24px;
	}
}
.about-details-item__text {
	margin-top: 12px;
}
@media (min-width: 900px) {
	.about-details-item__text {
		font-size: 26px;
	}
}
@media (max-width: 899px) {
	.about-details-item__text {
		font-size: 18px;
	}
}

.steps__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	margin-top: 60px;
}
@media (min-width: 900px) {
	.steps__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 899px) {
	.steps__wrapper {
		grid-template-columns: 1fr;
	}
}
.steps-item {
	position: relative;
}
.steps-item__title {
	font-size: 24px;
	line-height: 125%;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
}
@media (min-width: 900px) {
	.steps-item__title {
		min-height: 60px;
	}
}
.steps-item__text {
	margin-top: 24px;
}
.steps-item__text ol > * + * {
	margin-top: 24px;
}
.steps__button {
	margin: 60px auto 0;
}

/*
* speakers
*/
.speakers__list {
	display: grid;
	padding-left: var(--wrap);
	padding-right: calc(var(--wrap) / 2);
}
@media (min-width: 1200px) {
	.speakers__list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 100px;
		margin-top: 75px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.speakers__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 100px;
		margin-top: 60px;
	}
}
@media (max-width: 899px) {
	.speakers__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
		margin-top: 50px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.speakers__list {
		grid-template-columns: 1fr;
	}
}
.speakers-item {
	display: flex;
	flex-direction: column;
	position: relative;
	min-width: 100%;
}
@media (max-width: 1199px) {
	.speakers-item._double:not(._with-text) {
		grid-column: span 2;
	}
}
@media (max-width: 1199px) and (max-width: 540px) {
	.speakers-item._double:not(._with-text) {
		grid-column: span 1;
	}
}
.speakers-item._pixeled {
	position: relative;
}
.speakers-item._pixeled:before {
	content: "";
	position: absolute;
	display: block;
	left: -1px;
	top: -1px;
	width: 101%;
	height: 101%;
	border-radius: 5px;
	box-shadow: 0 0 1rem 10px rgba(0, 0, 0, 0.2);
	background-color: rgba(255, 255, 255, 0.15);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 2;
}
.speakers-item._pixeled:after {
	content: "Скоро з'явиться";
	position: absolute;
	display: block;
	top: calc(50% - 11px);
	left: calc(50% - 83px);
	color: var(--color-white);
	z-index: 3;
	text-shadow: 0px 1px 1px rgba(var(--color-black--rgb), 1);
	font-size: 20px;
}
.speakers-item__card {
	margin-top: 12px;
	border: 4px solid var(--color-blue);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.speakers-item._double
	.speakers-item:not(.border-full):first-child
	.speakers-item__card {
	border-right: 2px solid var(--color-blue);
}

.speakers-item._double
	.speakers-item:not(.border-full):last-child
	.speakers-item__card {
	border-left: 2px solid var(--color-blue);
}

.speakers-item__img {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 113%;
}
.speakers-item__img img {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	transition: 0.3s ease;
}
.speakers-item__info {
	padding: 20px 20px 10px;
}
@media (max-width: 899px) {
	.speakers-item__info {
		padding: 12px;
	}
}
.speakers-item__info > * + * {
	margin-top: 16px;
}
.speakers-item__name {
	font-weight: 500;
	line-height: 110%;
	color: var(--color-black);
}
@media (min-width: 1200px) {
	.speakers-item__name {
		font-size: 34px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.speakers-item__name {
		font-size: 28px;
	}
}
@media (max-width: 899px) {
	.speakers-item__name {
		font-size: 24px;
	}
}
.speakers-item__position {
	margin-top: 16px;
	line-height: 120%;
}
@media (min-width: 1200px) {
	.speakers-item__position {
		font-size: 18px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.speakers-item__position {
		font-size: 16px;
	}
}
@media (max-width: 899px) {
	.speakers-item__position {
		margin-top: 8px;
		font-size: 16px;
	}
}
.speakers-item__theme {
	display: flex;
	padding: 20px;
	border-top: 4px solid var(--color-blue);
	color: var(--color-blue);
	margin-top: auto;
}
@media (min-width: 1200px) {
	.speakers-item__theme {
		font-size: 18px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.speakers-item__theme {
		font-size: 16px;
	}
}
@media (max-width: 899px) {
	.speakers-item__theme {
		font-size: 16px;
		padding: 12px;
	}
}
.speakers-item__theme > * + * {
	margin-left: 12px;
}
.speakers-item__theme svg {
	min-width: 16px;
}
.speakers-item__insta {
	display: flex;
	align-items: center;
	color: var(--color-blue);
}
.speakers-item__insta > * + * {
	margin-left: 6px;
}
.speakers-item__text {
	text-align: center;
	transform: rotate(90deg);
}
.speakers-item__text._second {
	transform: rotate(-90deg);
}
@media (min-width: 1200px) {
	.speakers-item._with-text {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}
}
.speakers-item._double:not(._with-text) {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}
.speakers-item._texting {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
@media (max-width: 1199px) {
	.speakers-item._texting {
		display: none;
	}
}
.speakers-item._texting p {
	font-size: 52px;
	font-weight: 500;
	white-space: nowrap;
	line-height: 100%;
}
.speakers-item._texting p:first-child {
	color: var(--color-blue);
}
.speakers-item._texting p:last-child {
	color: var(--color-white);
	-webkit-text-stroke: 1px var(--color-blue);
	text-stroke: 1px var(--color-blue);
}
.speakers .speakers-item__theme.float {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white);
	text-align: center;
	justify-content: center;
	border: 4px solid var(--color-blue);
}
.speakers .extra-text {
	display: none; /* Початково текст приховано */
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.6;
}
.speakers .read-more {
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}
.speakers ul {
	margin: 10px 0;
	padding-left: 20px;
}

/*
* program
*/
.program__wrapper {
	margin-top: 50px;
}
@media (min-width: 900px) {
	.program__wrapper > * + * {
		margin-top: 100px;
	}
}
@media (max-width: 899px) {
	.program__wrapper > * + * {
		margin-top: 50px;
	}
}
.program__text {
	margin-top: 50px;
	font-size: 30px;
	line-height: 110%;
}
@media (min-width: 900px) {
	.program-section > * + * {
		margin-top: 50px;
	}
}
@media (max-width: 899px) {
	.program-section > * + * {
		margin-top: 25px;
	}
}
.program-section__title {
	color: var(--color-blue);
	line-height: 110%;
}
@media (min-width: 900px) {
	.program-section__title {
		margin-top: 50px;
		font-size: 50px;
		padding-left: 50px;
	}
}
@media (max-width: 899px) {
	.program-section__title {
		margin-top: 25px;
		font-size: 32px;
	}
}
.program-item {
	display: grid;
	gap: 40px;
	line-height: 110%;
	align-items: center;
	position: relative;
}
@media (min-width: 900px) {
	.program-item {
		padding: 25px 50px;
		grid-template-columns: 1fr 4fr;
		margin-top: 50px;
		font-size: 30px;
	}
}
@media (max-width: 899px) {
	.program-item {
		padding: 25px;
		grid-template-columns: 1fr;
		margin-top: 25px;
		font-size: 24px;
	}
}
.program-item:nth-child(odd) {
	background-color: rgba(var(--color-blue--rgb), 0.05);
	border: 44px solid var(--color-blue);
	color: var(--color-blue);
}
.program-item-info {
	font-size: 22px;
}
.program-item-info > * + * {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 4px solid var(--color-blue);
}
.program-item-info__wrapper {
	display: grid;
	align-items: center;
}
@media (min-width: 900px) {
	.program-item-info__wrapper {
		grid-template-columns: 5fr 3fr;
		gap: 40px;
	}
}
@media (max-width: 899px) {
	.program-item-info__wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.program-item__place {
	font-size: 20px;
}
@media (max-width: 899px) {
	.program-item__place {
		font-size: 18px;
	}
}
.program-item-block {
	position: absolute;
	display: flex;
	align-items: center;
	width: 100%;
}
@media (min-width: 1200px) {
	.program-item-block {
		justify-content: flex-start;
		left: -160px;
	}
}
@media (max-width: 1199px) {
	.program-item-block {
		display: none;
	}
}
@media (max-width: 899px) {
	.program-item-block {
		display: none;
	}
}
.program-item-block p {
	color: var(--color-white);
	-webkit-text-stroke: 1px var(--color-blue);
	text-stroke: 1px var(--color-blue);
	font-size: 50px;
	font-weight: 500;
}
@media (min-width: 1200px) {
	.program-item-block p {
		transform: rotate(-90deg);
		transform-origin-x: 0;
		font-size: 50px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.program-item-block p {
		font-size: 44px;
	}
}
@media (max-width: 899px) {
	.program-item-block p {
		font-size: 32px;
	}
}

@media (min-width: 1200px) {
	.location__wrapper {
		margin-top: 80px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.location__wrapper {
		margin-top: 50px;
	}
}
@media (max-width: 899px) {
	.location__wrapper {
		margin-top: 40px;
	}
}
.location__wrapper > * + * {
	margin-top: 50px;
}
.location-item {
	display: grid;
}
@media (min-width: 1200px) {
	.location-item {
		grid-template-columns: 2fr 5fr;
		gap: 150px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.location-item {
		grid-template-columns: 2fr 5fr;
		gap: 100px;
	}
}
@media (max-width: 899px) {
	.location-item {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.location-item__title {
	font-size: 30px;
	color: var(--color-black);
	line-height: 120%;
}
.location-item__text {
	font-size: 28px;
	line-height: 120%;
}
@media (max-width: 899px) {
	.location-item__text {
		font-size: 24px;
	}
}

.form__wrapper {
	background-color: rgba(var(--color-blue--rgb), 0.05);
	margin-top: 50px;
}
@media (min-width: 1200px) {
	.form form {
		padding: 100px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.form form {
		padding: 50px;
	}
}
@media (max-width: 899px) {
	.form form {
		padding: 50px 0;
	}
}

.footer {
	background-color: #f8f8f8;
	padding: 90px 0 50px var(--wrap);
	color: var(--color-black);
	font-size: 16px;
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.footer {
		padding: 90px var(--wrap) 50px;
	}
}
@media (max-width: 899px) {
	.footer {
		padding: 50px var(--wrap);
	}
}
.footer__wrapper {
	display: grid;
	align-items: center;
}
@media (min-width: 1200px) {
	.footer__wrapper {
		grid-template-columns: 4fr 1fr;
		gap: 100px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.footer__wrapper {
		grid-template-columns: 4fr 1fr;
		gap: 50px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.footer__wrapper {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 899px) {
	.footer__wrapper {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 899px) {
	.footer__wrapper > * + * {
		margin-top: 50px;
	}
}
.footer__top {
	display: grid;
	align-items: center;
}
@media (min-width: 1200px) {
	.footer__top {
		grid-template-columns: 1fr 3fr;
		gap: 100px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.footer__top {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}
@media (max-width: 899px) {
	.footer__top {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.footer-menu {
	display: flex;
	justify-content: space-between;
	font-weight: 500;
	margin: 0;
}
@media (min-width: 900px) {
	.footer-menu {
		align-items: center;
	}
}
@media (max-width: 899px) {
	.footer-menu {
		flex-direction: column;
	}
}
.footer-menu__item {
	padding: 0;
}
@media (min-width: 900px) {
	.footer-menu > * + * {
		margin: 0 0 0 12px;
	}
}
@media (max-width: 899px) {
	.footer-menu > * + * {
		margin: 16px 0 0;
	}
}
.footer__bottom {
	display: grid;
	align-items: center;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--color-blue-100);
}
@media (min-width: 1200px) {
	.footer__bottom {
		grid-template-columns: 1fr 1fr 2fr;
		gap: 50px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.footer__bottom {
		grid-template-columns: 1fr 1fr 2fr;
		gap: 50px;
	}
}
@media (max-width: 899px) {
	.footer__bottom {
		grid-template-columns: 1fr;
		gap: 35px;
	}
}
.footer-contacts {
	display: flex;
}
.footer-contacts > * + * {
	margin-left: 14px;
}
.footer-contacts svg {
	min-width: 24px;
	max-width: 24px;
}
.footer-contacts a {
	font-weight: 500;
}
.footer-contacts span {
	display: inline-block;
	color: var(--color-grey-100);
	font-weight: 400;
	min-width: 50px;
}
.footer-contacts__wrap {
	display: flex;
	flex-direction: column;
}
.footer-socials {
	display: flex;
	justify-content: space-between;
}
@media (min-width: 900px) {
	.footer-socials {
		justify-self: end;
	}
}
@media (max-width: 899px) {
	.footer-socials {
		justify-self: start;
	}
}
.footer-socials > * + * {
	margin-left: 24px;
}
.footer-socials a svg path {
	transition: 0.3s ease;
}
.footer-socials a:hover svg path {
	fill: var(--color-blue-100);
}
@media (max-width: 1100px) {
	.footer__label {
		display: none;
	}
}

._typography p {
	line-height: 184.8%;
}
._typography strong {
	font-family: "Montserrat", sans-serif;
}
._typography ol,
._typography ul {
	margin: 10px 0 0 16px;
}
._typography ul {
	list-style: disc;
}
._typography li {
	padding: 0;
	line-height: 21px;
}
._typography li::marker {
	color: var(--color-blue);
}
._typography a {
	color: var(--color-blue);
}
._typography a:hover {
	color: var(--color-blue);
	text-decoration: underline;
}

form {
	width: 100%;
}
form > * + * {
	margin-top: 28px;
}
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
	border: 3px solid rgba(var(--color-blue--rgb), 1);
	background: var(--color-white);
	color: var(--color-black);
	font-size: 18px;
	line-height: normal;
	padding: 24px 32px;
	width: 100%;
	resize: none;
}
form input[type="text"]::-moz-placeholder,
form input[type="tel"]::-moz-placeholder,
form input[type="email"]::-moz-placeholder,
form textarea::-moz-placeholder {
	color: rgba(var(--color-black--rgb), 0.4);
}
form input[type="text"]::placeholder,
form input[type="tel"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
	color: rgba(var(--color-black--rgb), 0.4);
}
@media (max-width: 899px) {
	form input[type="text"],
	form input[type="tel"],
	form input[type="email"],
	form textarea {
		font-size: 16px;
	}
}
form textarea {
	padding: 24px 24px;
}
form input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--color-blue);
	margin-right: 16px;
}
form input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
form input[type="radio"]:before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 2px solid var(--color-blue);
	background-color: var(--color-white);
	border-radius: 100%;
}
form input[type="radio"]:checked:before {
	background-color: var(--color-blue);
}
form input[type="radio"] + span {
	margin-left: 12px;
}
form button {
	display: flex;
	align-items: center;
	margin: 100px auto 0;
}
@media (min-width: 900px) and (max-width: 1199px) {
	form button {
		margin: 100px auto 0;
	}
}
@media (max-width: 899px) {
	form button {
		margin: 50px auto 0;
	}
}
form button .loader {
	display: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	animation: rotate 1s linear infinite;
}
form button .loader::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 5px solid #fff;
	animation: prixClipFix 2s linear infinite;
}
@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes prixClipFix {
	0% {
		-webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
	}
	25% {
		-webkit-clip-path: polygon(
			50% 50%,
			0 0,
			100% 0,
			100% 0,
			100% 0,
			100% 0
		);
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	50% {
		-webkit-clip-path: polygon(
			50% 50%,
			0 0,
			100% 0,
			100% 100%,
			100% 100%,
			100% 100%
		);
		clip-path: polygon(
			50% 50%,
			0 0,
			100% 0,
			100% 100%,
			100% 100%,
			100% 100%
		);
	}
	75% {
		-webkit-clip-path: polygon(
			50% 50%,
			0 0,
			100% 0,
			100% 100%,
			0 100%,
			0 100%
		);
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		-webkit-clip-path: polygon(
			50% 50%,
			0 0,
			100% 0,
			100% 100%,
			0 100%,
			0 0
		);
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}
form p {
	color: var(--color-blue);
	font-size: 22px;
	font-weight: 500;
	line-height: 135%;
}
form a {
	color: var(--color-blue);
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
}
form .input {
	display: flex;
	flex-direction: column;
}
form .input > * + * {
	margin-top: 35px;
}
form .radio {
	display: flex;
	flex-direction: column;
	margin-top: 32px;
}
form .radio > * + * {
	margin-top: 18px;
}
form > div {
	display: grid;
}
@media (min-width: 1200px) {
	form > div {
		grid-template-columns: repeat(2, 1fr);
		gap: 150px;
	}
}
@media (min-width: 1200px) and (max-width: 1366px) {
	form > div {
		gap: 100px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	form > div {
		grid-template-columns: repeat(2, 1fr);
		gap: 80px;
	}
}
@media (max-width: 899px) {
	form > div {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}
form label {
	font-size: 20px;
	color: var(--color-black);
	display: flex;
	align-items: center;
}
form .wpcf7-list-item + .wpcf7-list-item {
	margin-left: 40px;
}
@media (max-width: 820px) {
	form .wpcf7-list-item + .wpcf7-list-item {
		margin-left: 10px;
	}
}

.popup {
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	visibility: hidden;
	justify-content: center;
	align-items: center;
	z-index: 10;
	transition: all 0.3s ease;
}
.popup._active-popup {
	top: 0;
	visibility: visible;
}
.popup__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #3b3c3f;
	opacity: 0.8;
}
.popup__wrapper {
	width: 100%;
	overflow: visible;
	position: relative;
	z-index: 2;
}
.popup__wrapper::-webkit-scrollbar-thumb {
	background-color: var(--color-blue);
}
@media (max-width: 899px) {
	.popup-content {
		max-height: 80vh;
		overflow: scroll;
	}
}
.popup-content.with-bg {
	background-color: var(--color-white);
	padding: 24px;
}
.popup-content > * + * {
	margin-top: 24px;
}
@media (max-width: 899px) {
	.popup-content > * + * {
		margin-top: 18px;
	}
}
.popup-content__video {
	width: 100%;
	position: relative;
	padding-top: 57%;
}
.popup-content__video video {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}
.popup__title {
	color: var(--color-black);
	text-align: center;
	font-size: 38px;
	font-weight: 700;
	line-height: 110%;
}
@media (max-width: 899px) {
	.popup__title {
		font-size: 28px;
	}
}
.popup__text {
	font-size: 18px;
	line-height: 130%;
	text-align: center;
}
@media (max-width: 899px) {
	.popup__text {
		font-size: 16px;
	}
}
.popup__socials {
	display: flex;
	justify-content: center;
	margin: 25px auto 0;
}
.popup__socials > * + * {
	margin-left: 24px;
}
.popup__socials a svg path {
	transition: 0.3s ease;
}
.popup__socials a:hover svg path {
	fill: var(--color-blue-100);
}
.popup__close {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	cursor: pointer;
	width: 33px;
	position: absolute;
	right: -50px;
	top: -6px;
}
.popup__close svg {
	width: 100%;
	height: auto;
	transition: all 0.3s ease;
}
.popup__close svg line {
	transition: all 0.3s ease;
}
.popup__close:hover svg {
	transform: rotate(180deg);
}
.popup__close:hover svg line {
	stroke: #69a6f6;
}
@media (min-width: 900px) {
	.popup__wrapper {
		max-width: 784px;
	}
}
@media (max-width: 899px) {
	.popup__wrapper {
		padding: 35px 15px 25px 15px;
	}
}
@media (max-width: 899px) {
	.popup__close {
		right: 25px;
		top: 15px;
	}
}
@media screen and (max-width: 899px) and (max-width: 680px) {
	.popup__close {
		right: 15px;
		top: 10px;
	}
}
@media screen and (max-width: 899px) and (max-width: 490px) {
	.popup__close {
		right: 15px;
		top: 10px;
	}
}
@media screen and (max-width: 899px) and (max-width: 395px) {
	.popup__close {
		right: 5px;
		top: 5px;
	}
} /*# sourceMappingURL=style.css.map */
