:root {
	/*====== Colors ======*/
	--green-color: #00c7fd;
	--blue-color: #282c75;

	--purple-color: #815df0;
	--purpleDark-color: #5e48d2;
	--black-color: #000;
	--white-color: #fff;
	--grey-color: #e9e9e9;
	--lightt-grey-color: #ededed;
	--dark-grey-color: #a9a9a9;
	--color-black: hsl(0, 0%, 10%);
	--color-darks: hsl(0, 0%, 20%);
	--color-greys: hsl(0, 0%, 80%);
	--color-light: hsl(0, 0%, 96%);
	--color-white: hsl(0, 0%, 100%);
	--color-blues: hsl(217, 91%, 60%);
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/*========== LAYOUT ==========*/

.border__big {
	width: 80%;
	margin: 200px auto 0 auto;
	height: 8px;
	background: var(--green-color);
}

.contact {
	padding: 80px 0 100px 0;
	text-align: center;
}

.contact p {
	margin-top: 50px;
	font-size: 24px;
}

.progress-container {
	width: 90%;
	margin: 0 auto;
	border: 1px solid #a8a8a8;
	border-radius: 15px;
	padding: 2px;
}

.progress-bar {
	height: 14px;
	background-color: #fff;
	width: 100%;
	border-radius: 10px;
	transition: width 0.3s ease-in-out;
}

.progressInfo {
	width: 90%;
	margin: 20px auto;
	display: grid;
	grid-template-columns: 30% 70%;
	align-items: center;
}

.zysk__grid2 .progressInfo {
	width: 360px;
}

/*========== HEADER ==========*/

#headerTOP {
	width: 100%;
}

#header__grid {
	display: flex;
	gap: 20px;
}

#header__image {
	width: 70%;
	margin-top: -50px;
}

@media screen and (max-width: 960px) {
	#header__grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		margin-top: 10px;
		align-items: center;
	}

	#header__image {
		width: 100%;
		margin: 0;
	}
}

.ruless {
	margin-top: 50px;
}

.ruless .ruless__paragraph {
	text-align: center;
	margin-top: 30px;
	font-size: 20px;
}

.ruless .ruless__border {
	background: var(--green-color);
	height: 3px;
	width: 60%;
	margin: 30px auto;
}

@media screen and (max-width: 960px) {
	.ruless {
		margin-top: 50px;
	}

	.ruless .ruless__border {
		width: 90%;
	}
}

/*========== Formsection ==========*/

.form__box {
	width: 100%;
	background: url('../img/bkg_form.webp') center no-repeat;
	background-size: cover;
	padding: 120px 0 100px 0;
}

.formSection {
	margin: 0 auto !important;
	text-align: center;
	padding: 10px 10px 25px 10px;
	border: 3px solid var(--green-color);
	background: #09001f;
	width: 1000px;
	border-radius: 40px;
}

.formSection > h2 {
	padding: 35px 0;
	font-size: 44px !important;
}

#form h3 {
	margin: 20px auto !important;
}

#form ::placeholder {
	color: rgba(0, 0, 0, 0.6);
}

.formSection .formSection__form {
	width: 700px;
	margin: 0 auto;
}

.formSection .formSection__form .oneInput,
.formSection .formSection__form .twoInput {
	margin: 10px auto;
}

.formSection .formSection__form .twoInput {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 30px;
}

.formSection .formSection__form .threeInput {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 15px;
	align-items: center;
}

.formSection .formSection__form .oneInput input,
.formSection .formSection__form .twoInput input,
.formSection .formSection__form .threeInput input {
	width: 100%;
	padding: 15px 0 15px 12px;
	border-radius: 10px;
	border: 1px solid #d5d5d5;
	font-size: 17px;
}

.formSection .formSection__form select {
	width: 102%;
	font-size: 17px;
	padding: 10px 10px 10px 30px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../img/arrow.png) 93% / 4.5% no-repeat #fff;
	border-radius: 10px;
	border: 1px solid #d5d5d5;
}

.formSection .formSection__form .oneInput select {
	background: url(../img/arrow.png) 96.5% / 2.2% no-repeat #fff;
}

.formSection .formSection__form #fileSection {
	background: #fff;
	border: 1px solid #d5d5d5;
	color: #000;
	border-radius: 10px;
	padding: 30px 23px 20px 23px;
	width: 95%;
}

#form #btnSend {
	background: var(--green-color);
	color: #000;
	padding: 18px 10px !important;
	text-decoration: none !important;
	border: none !important;
	text-align: center !important;
	font-weight: bold !important;
	font-size: 24px !important;
	width: 320px !important;
	margin: 40px auto 20px auto;
	border-radius: 10px !important;
	transition: 0.45s !important;
	cursor: pointer !important;
	z-index: 5 !important;
	transform: skew(-20deg);
}

#form #btnSend span {
	display: block;
	transform: skew(20deg) !important;
}

#form #btnSend:hover {
	opacity: 0.85;
	font-size: 25px !important;
}

@media screen and (max-width: 909px) {
	#form #btnSend {
		bottom: 240px;
	}
}

#form .exampleFile {
	margin-top: 20px;
}

#form .exampleFile .btn-tertiary {
	padding: 9px 0;
	font-size: 14px;
}

#form .exampleFile .btn-tertiary2 {
	padding: 9px 0;
	font-size: 13px;
}

#form .exampleFile .btn-tertiary:hover {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 1279px) {
	.formSection {
		width: 90%;
	}
}

@media screen and (max-width: 759px) {
	.formSection .formSection__form {
		width: 90%;
	}

	.formSection .formSection__form .twoInput,
	.formSection .formSection__form .threeInput {
		display: block;
	}

	.formSection .formSection__form .twoInput input:nth-child(2),
	.formSection .formSection__form .twoInput select:nth-child(2) {
		margin-top: 10px;
	}

	.formSection .formSection__form .oneInput input,
	.formSection .formSection__form .twoInput input,
	.formSection .formSection__form .threeInput input {
		width: 95%;
	}

	.formSection .formSection__form select {
		width: 100%;
		background: url(../img/arrow.png) 95% / 4% no-repeat #fff !important;
	}

	.formSection .formSection__form #fileSection {
		width: 84%;
	}

	#form #btnSend {
		width: 270px !important;
	}

	.form__box {
		padding: 120px 0 50px 0;
	}
}

/* Checkbox */

.flex-checkbox {
	position: relative;
	z-index: 10;
	margin: 25px 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	color: #fff !important;
}

.flex-checkbox a {
	text-decoration: underline !important;
}

.flex-checkbox label {
	margin-left: 10px;
	font-size: 15px;
	margin-top: 2px;
}

input[type='checkbox'] {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	background: none;
	height: 16px;
	width: 16px;
	border: 1px solid #fff;
}

input[type='checkbox']:checked {
	background: #fff;
}

input[type='checkbox']:hover {
	filter: brightness(90%);
}

input[type='checkbox']:disabled {
	background: none;
	opacity: 0.6;
	pointer-events: none;
}

input[type='checkbox']:after {
	content: '';
	position: relative;
	left: 40%;
	top: 20%;
	width: 15%;
	height: 40%;
	border: 1px solid #fff;
	transform: rotate(45deg);
	display: none;
}

input[type='checkbox']:checked:after {
	display: block;
}

input[type='checkbox']:disabled:after {
	border-color: #7b7b7b;
}

/* == LOADER == */

#form .loader {
	display: none;
	padding: 50px 0;
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 24px;
}

#loading-bar-spinner.spinner {
	left: 50%;
	margin-left: -20px;
	top: 50%;
	margin-top: -20px;
	position: absolute;
	z-index: 19 !important;
	-webkit-animation: loading-bar-spinner 350ms linear infinite;
	animation: loading-bar-spinner 350ms linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
	width: 40px;
	height: 40px;
	border: solid 3px transparent;
	border-top-color: #fff !important;
	border-left-color: #fff !important;
	border-radius: 50%;
}

@-webkit-keyframes loading-bar-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes loading-bar-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*========== Modele ==========*/

.models {
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(24, 27, 44, 1) 74%, rgba(24, 27, 44, 1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(24, 27, 44, 1) 74%, rgba(24, 27, 44, 1) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(24, 27, 44, 1) 74%, rgba(24, 27, 44, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#181b2c",GradientType=1);
	padding: 80px 0 50px 0;
}

.models .models__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 40px;
	text-align: center;
	width: 650px;
	margin: 30px auto 50px auto;
}

.models .models__grid .models__grid-btn1,
.models .models__grid .models__grid-btn2 {
	background: #fff;
	color: #000;
	font-weight: bold;
	text-decoration: none;
	border-radius: 10px;
	padding: 15px 0;
	font-size: 17px;
	transform: skew(-20deg);
	transition: 0.4s;
}

.models .models__grid .models__grid-btn2 {
	background: var(--green-color);
}

.models .models__grid .models__grid-btn1 span,
.models .models__grid .models__grid-btn2 span {
	display: block;
	transform: skew(20deg) !important;
}

.models .models__grid .models__grid-btn1:hover,
.models .models__grid .models__grid-btn2:hover {
	opacity: 0.85;
	font-size: 18px !important;
}

@media screen and (max-width: 950px) {
	.models {
		padding: 30px 0 10px 0;
	}

	.models .models__grid {
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
		margin: 0 auto 50px auto;
	}

	.models .models__grid .models__grid-btn2 {
		margin-top: 30px;
	}
}

/*========== Search models ==========*/

.models .form-group {
	position: relative;
	margin-top: 70px;
	margin-left: -35px;
}

.models .dropdown-group-label {
	font-weight: bold;
	color: #444;
	padding: 10px 15px;
	background: #f2f2f2;
}

.models .form-arrow {
	position: absolute;
	top: 0.9rem;
	right: -1rem;
	z-index: 10;
	font-size: 2rem;
	line-height: inherit;
	color: var(--color-darks);
}
.models .form2 .dropdown {
	position: relative;
	color: #000;
}
.models .form2 .dropdown-select {
	position: relative;
	font-family: 'Instrument Sans', sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
	user-select: none;
	width: 100%;
	height: auto;
	padding: 0.75rem 1.25rem;
	border: 2px solid var(--green-color);
	outline: none;
	border-radius: 0.5rem;
	margin-top: 40px;
	color: var(--color-black);
	background-clip: padding-box;
	box-shadow: var(--shadow-medium);
	transition: all 0.3s ease-in-out;
	text-align: left;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../img/arrow_down.svg) 97% / 3% no-repeat #dfdfdf;
}
.models .form2 .dropdown-menu {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	width: 106%;
	z-index: 10;
	border-radius: 0.25rem;
	background-color: var(--color-white);
	box-shadow: var(--shadow-large);
	transition: all 0.3s ease-in-out;
}
.models .form2 .dropdown-menu-inner {
	max-height: 16rem;
	overflow-y: scroll;
	overflow-x: hidden;
	text-align: left;
}
.models .form2 .dropdown-menu-inner::-webkit-scrollbar {
	width: 5px;
	height: auto;
}
.models .form2 .dropdown-menu-inner::-webkit-scrollbar-thumb {
	border-radius: 0.25rem;
	background-color: var(--color-greys);
	box-shadow: var(--shadow-small);
}
.models .form2 .dropdown-menu-item {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 1rem;
	font-weight: normal;
	line-height: inherit;
	cursor: pointer;
	user-select: none;
	padding: 0.65rem 1.25rem;
	background-color: var(--color-white);
	transition: all 0.2s ease-in-out;
}
.models .form2 .dropdown-menu-item:hover {
	color: var(--color-black);
	background-color: var(--green-color);
}
.models .form2 .dropdown-menu-item.is-select,
.models .form2 .dropdown-menu-item.is-select:hover {
	color: var(--color-white);
	background-color: var(--color-blues);
}
.models .form2 .dropdown-menu-search {
	display: block;
	font-family: 'Instrument Sans', sans-serif;

	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	width: 94%;
	height: auto;
	padding: 0.65rem 1.25rem;
	border: none;
	outline: none;
	color: var(--color-black);
	background-clip: padding-box;
	background-color: var(--color-light);
}

.models .wrapper-column {
	max-width: 40rem;
	height: auto;
	margin: 0 auto;
	padding: 0 3rem 3rem 3rem;
	border-radius: 0.25rem;
	z-index: 11;
}

.models .form-arrow {
	z-index: 1;
}

@media screen and (max-width: 950px) {
	.models .form2 .dropdown-menu {
		width: 113%;
	}

	.models .form2 .dropdown-menu-search {
		width: 88%;
	}
}

/*========== Partnerzy ==========*/

.partners {
	padding-bottom: 200px;
}

.partners .partners__box {
	background: #fff;
	width: 900px;
	padding: 40px 20px;
	border-radius: 15px;
	margin: 100px auto 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
}

.partners .partners__box img {
	width: 170px;
	display: block;
	text-align: center;
	margin: 0 auto;
}

@media screen and (max-width: 950px) {
	.partners {
		padding-bottom: 50px;
	}

	.partners .partners__box {
		width: 90%;
		display: block;
		margin: 50px auto 0 auto;
	}

	.partners .partners__box img {
		margin: 30px auto;
	}
}

/*========== Instructions ==========*/

.instructions {
	text-align: center !important;
	margin: 30px auto !important;
	width: 1100px !important;
}

.instructions h2 {
	color: #fff;
	font-family: intelone-display, serif;
}

.instructions p {
	width: 85% !important;
	margin: 30px auto !important;
	font-size: 20px !important;
}

.instructions a {
	font-family: 'Instrument Sans', sans-serif;
	color: var(--green-color) !important;
}

.instructions__line {
	margin: 40px 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.instructions .instructions__content-flex {
	display: grid !important;
	grid-template-columns: 5% 95% !important;
	align-items: center !important;
}

.instructions .instructions__content-flex div:nth-child(1) p {
	font-family: 'Instrument Sans', sans-serif;
	font-weight: 700;
	border: 3px solid var(--green-color);
	color: #fff !important;
	border-radius: 50% !important;
	padding: 5px;
	width: 38px !important;
	font-size: 28px !important;
	margin: 0 auto;
}

.instructions .instructions__content-flex div:nth-child(2) p {
	text-align: left !important;
}

.instructions__content-btnregulamin {
	background: #fff !important;
	width: 250px;
	margin: 20px auto;
	text-decoration: none;
	padding: 15px 30px;
	display: block;
	font-size: 19px;
	transform: skew(-20deg);
	border-radius: 10px;
	transition: 0.32s;
}

.instructions__content-btnregulamin span {
	color: #000 !important;
	font-weight: 700;
	display: block;
	transform: skew(20deg) !important;
}

.instructions__content-btnregulamin:hover {
	font-size: 20px;
}

@media screen and (max-width: 1110px) {
	.instructions {
		width: 98% !important;
	}

	.instructions .instructions__content-flex {
		display: block !important;
	}

	.instructions p {
		width: 95% !important;
	}
}

@media screen and (min-width: 2000px) {
	.ruless .ruless__paragraph {
		font-size: 25px !important;
	}

	.instructions p {
		font-size: 25px !important;
	}

	.instructions .instructions__content-flex div:nth-child(1) p {
		width: 52px !important;
		font-size: 38px !important;
	}
}

/*========== ZYSK ==========*/

.zysk {
	margin: 100px 0;
}

.zysk .zysk__grid2 {
	text-align: center;
}

.zysk .zysk__grid2 .zysk__grid2-box img {
	display: block;
	width: 300px;
	margin: 0 auto;
}

.zysk .zysk__maininfo {
	text-align: center;
	margin-top: 30px;
	font-size: 19px;
}

.zysk .zysk__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 80px;
	text-align: center;
	width: 1200px;
	margin: 200px auto 0 auto;
}

.zysk .zysk__grid3 {
	width: 900px;
	margin: 0 auto;
	gap: 50px 0;
	display: grid;
	grid-template-columns: 45% 10% 45%;
	align-items: center;
	text-align: center;
}

.zysk .zysk__grid3 p,
.zysk .zysk__grid2 p {
	font-size: 19px;
}

.zysk .zysk__grid3 img {
	width: 300px;
	margin: 0 auto;
}

.zysk .zysk__grid3 .full {
	width: 100%;
}

.zysk .zysk__grid .zysk__grid-box {
	border: 2px solid var(--green-color);
	border-radius: 10px;
	position: relative;
}

.zysk .zysk__grid .zysk__grid-box .heading__ico {
	position: absolute;
	top: -130px;
	left: 50%;
	margin-left: -47.5%;
	width: 95%;
}

.zysk .zysk__grid .zysk__grid-box .heading__ico-one {
	margin-left: -22%;
	width: 44%;
}

.zysk .zysk__grid .zysk__grid-box .heading__ico-one-vader {
	top: -180px;
}

.zysk .zysk__grid .zysk__grid-box .heading__ico-one-wings,
.zysk .zysk__grid .zysk__grid-box .heading__ico-one-sokol {
	width: 80%;
	top: -100px;
	margin-left: -40%;
}

.zysk .zysk__grid .box__blue {
	border-radius: 10px;
	background: #09001f;
	padding: 60px 20px 30px 20px;
	font-size: 20px;
}

.zysk .zysk__grid .box__blue h3 {
	font-weight: 400;
}

.zysk .zysk__grid .box__info {
	padding: 30px 20px;
	font-size: 17px;
}

.zysk .zysk__grid .box__info2 {
	padding: 80px 20px 40px 20px;
	font-size: 22px;
}

.zysk .zysk__grid .heading__bottom {
	position: absolute;
	bottom: -130px;
	width: 40%;
	left: 50%;
	margin-left: -20%;
}

@media screen and (max-width: 1220px) {
	.zysk .zysk__grid {
		width: 95%;
		display: block;
	}

	.zysk .zysk__grid .zysk__grid-box {
		margin: 160px 0;
	}

	.zysk .zysk__grid .zysk__grid-box2 {
		margin: 300px 0;
	}

	.zysk .zysk__grid .zysk__grid-box3 {
		margin-top: 50px;
	}
}

@media screen and (max-width: 1024px) {
	.zysk .zysk__grid3 {
		width: 95%;
		display: block;
	}

	.zysk .zysk__grid3 .full {
		width: 150px;
		margin: 50px 0;
	}

	.progressInfo {
		display: block;
	}

	.progress-container {
		margin-top: 20px;
	}

	.zysk .zysk__grid3 p,
	.zysk .zysk__grid2 p {
		font-size: 26px;
	}
}

.logo-wrapper {
	display: flex;
	justify-content: center;
	padding: 20px 0;
}

.x-kom-logo {
	height: 40px;
	width: auto;
}

.slider .products__item {
	max-width: 300px;
}
@media screen and (min-width: 600px) {
	.slider .products__item {
		max-width: unset;
	}
}
.products__item {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	margin: 0 auto;
	padding: 24px 30px 30px 30px;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px, rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
	transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
	font-size: 0.9rem;
	background: #fff;
	max-width: 360px;
	text-align: center;
	color: #000;
	z-index: 2;
}
@media screen and (min-width: 660px) {
	.products__item {
		max-width: 300px;
	}
}
@media (min-width: 992px) {
	.products__item {
		max-width: 340px;
	}
}
@media (min-width: 576px) {
	.products__item:hover {
		box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
		transform: translateY(-4px);
	}
}
.products__item-badge {
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #4d4d4d;
	border: 1px solid #ccc;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	font-size: 14px;
	vertical-align: baseline;
	align-self: flex-start;
	position: absolute;
}
.products__item-image {
	margin-top: 16px;
}
.products__item-image img {
	max-height: 200px;
	height: 100%;
	width: 80%;
	transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
	margin: 0 auto;
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
}
.products__item h4 {
	margin-bottom: 8px;
}
.products__item-rating {
	margin-bottom: 10px;
}
.products__item ul {
	list-style-type: none;
	list-style-position: outside;
	padding-left: 0;
	margin-bottom: 20px;
}
.products__item ul li {
	margin-bottom: 0px;
	font-weight: 200;
	color: #4d4d4d;
}
.products__item ul li strong {
	color: #000;
	font-weight: 400;
}
.products__item-footer {
	display: flex;
	justify-content: center;
	bottom: 24px;
	width: 100%;
	margin-top: auto;
}
.products__item-footer-button {
	/* position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%); */
	margin-top: 20px;
}

.products__item-footer-button a {
	text-decoration: none;
	margin-top: 20px;
}

.products__item-footer-button svg path {
	pointer-events: none;
}
.products__item-footer-button svg rect {
	fill: #0082fa;
	transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
	height: 40px;
	width: 40px;
}
.products__item-footer-button svg rect:hover {
	fill: #0067c7;
}
.products__item-footer-button svg rect:active {
	fill: #004d94;
}
.products__item-footer-cart {
	height: 24px;
	width: 24px;
}
.products__item-price {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.products__item-price .old-price {
	text-decoration: line-through;
	color: #999;
	font-weight: 300;
	margin-left: 10px;
}
.products__item-price .new-price {
	font-size: 1.5rem;
	font-weight: 400;
}

.slider__container {
	display: flex;
}
.slider {
	margin-bottom: 0;
	margin: 0 auto;
}
.tns-ovh {
	overflow: visible;
}
.slider__nav {
	display: none;
}
@media (min-width: 768px) {
	.slider__nav {
		display: block;
	}
}
.slider__nav button {
	height: 50px;
	width: 50px;
	border-radius: 8px;
	border: none;
	background: #0082fa;
	margin: 0 20px;
}
@media screen and (min-width: 576px) {
	.slider__nav button {
		margin: 0 -10px;
	}
}
.slider__nav-next:hover,
.slider__nav-prev:hover {
	background: #0067c7;
}
.slider__nav-next:active,
.slider__nav-prev:active {
	background: #004d94;
}
.slider__nav-next,
.slider__nav-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-100%);
	transition: 0.3s;
}
.slider__nav-next {
	right: 0;
	top: 30%;
}
@media screen and (min-width: 576px) {
	.slider__nav-next {
		top: 50%;
	}
}
.slider__nav-prev {
	left: 0;
	top: 30%;
}
@media screen and (min-width: 576px) {
	.slider__nav-prev {
		top: 50%;
	}
}
.slider__nav button[disabled] {
	background: rgba(0, 0, 0, 0.15);
	opacity: 0.4;
}
.slider__nav button[disabled] svg {
	fill: rgba(0, 0, 0, 0.4);
}
.tns-outer {
	padding: 0;
}
@media (min-width: 992px) {
	.tns-outer {
		padding: 0 100px !important;
	}
}
.tns-item {
	opacity: 0.3;
	filter: blur(1px);
	transition: 0.5s;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: grab;
}
.tns-slide-active {
	opacity: 1;
	filter: unset;
}
.tns-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 60px 0 0 0;
}
.tns-nav [aria-controls] {
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 0 2px;
	border-radius: 200px;
	background: #ccc;
	border: 0;
	transition: 0.3s;
}
.tns-nav .tns-nav-active {
	background: #0082fa;
	width: 8px;
	height: 8px;
} /*# sourceMappingURL=xmain.min.css.map */

.position-relative {
	position: relative;
}

.cta {
	position: relative;
	border-radius: 8px;
	border: none;
	width: -moz-fit-content;
	width: fit-content;
	height: 42px;
	line-height: 42px;
	padding: 0 32px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-out;
	background: #0082fa;
	color: #fff;
	margin-top: 10px;
	z-index: 1;
	white-space: nowrap;
	flex-shrink: 0;
}
.cta[disabled] {
	filter: grayscale(100);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	opacity: 0.5;
}
.cta:hover {
	background: #0067c7;
	color: #fff;
}
.cta--outline {
	border: 1px solid #0082fa;
	color: #0082fa;
	background: none;
}
.cta--outline:hover {
	background: #0082fa;
	color: #fff;
}
.cta--secondary {
	background: #0fd2ff;
	border: none;
	color: #fff;
}
.cta--secondary:hover {
	background: #00b2db;
	color: #fff;
}
.cta--secondary--outline {
	border: 1px solid #0fd2ff;
	color: #0fd2ff;
	background: none;
}
.cta--secondary--outline:hover {
	background: #0fd2ff;
	color: #fff;
}
.cta--white {
	background: #fff;
	color: #000;
}
.cta--white:hover {
	background: #ccc;
	color: #000;
}
.cta--white--outline {
	border: 1px solid #fff;
	color: #fff;
	background: none;
}
.cta--white--outline:hover {
	background: #fff;
	color: #000;
}
.cta--black {
	background: #222;
	color: #fff;
}
.cta--black:hover {
	background: #444;
	color: #fff;
}
.cta--black--outline {
	border: 1px solid #000;
	color: #000;
	background: none;
}
.cta--black--outline:hover {
	background: #000;
	color: #fff;
}
.cta--gray {
	background: #575757;
	color: #fff;
}
.cta--gray:hover {
	background: #3d3d3d;
	color: #fff;
}
.cta--gray--secondary {
	background: #f0f0f0;
	border: none;
	color: #666;
}
.cta--gray--secondary:hover {
	background: #e0e0e0;
	color: #333;
}
.cta--gray--outline {
	border: 1px solid #575757;
	color: #575757;
	background: none;
}
.cta--gray--outline:hover {
	background: #575757;
	color: #fff;
}
.cta--violet {
	background: #8250fa;
	color: #fff;
}
.cta--violet:hover {
	background: #5f1ef9;
	color: #fff;
}
.cta--violet--secondary {
	background: #ece5fe;
	border: none;
	color: #5f1ef9;
}
.cta--violet--secondary:hover {
	background: #ded1fe;
	border: none;
	color: #4606de;
}
.cta--violet--outline {
	border: 1px solid #8250fa;
	color: #8250fa;
	background: none;
}
.cta--violet--outline:hover {
	background: #8250fa;
	color: #fff;
}
.cta--pink {
	background: #fa0064;
	color: #fff;
}
.cta--pink:hover {
	background: #c70050;
	color: #fff;
}
.cta--pink--outline {
	border: 1px solid #fa0064;
	color: #fa0064;
	background: none;
}
.cta--pink--outline:hover {
	background: #fa0064;
	color: #fff;
}
.cta--pink--secondary {
	background: #ffe1ed;
	border: none;
	color: #c70050;
}
.cta--pink--secondary:hover {
	background: #ffd1e4;
	border: none;
	color: #c70050;
}
.cta--blue {
	background: #0fd2ff;
	color: #fff;
}
.cta--blue:hover {
	background: #00b2db;
	color: #fff;
}
.cta--blue--outline {
	border: 1px solid #0fd2ff;
	color: #0fd2ff;
	background: none;
}
.cta--blue--outline:hover {
	background: #0fd2ff;
	color: #fff;
}
.cta--big {
	height: 48px;
	line-height: 48px;
	padding: 0 34px;
	font-size: 1.1rem;
}
.cta--medium {
	height: 40px;
	line-height: 40px;
	font-size: 1rem;
}
.cta--small {
	height: 40px;
	padding: 0 24px;
	font-size: 0.95rem;
}
.cta--circle {
	padding: 0;
	height: 44px;
	width: 44px;
}

.cta-row a {
	color: #000;
	text-decoration: none;
	margin: 0 auto;
}

.cta-row {
	margin-top: 40px;
	margin-bottom: 60px;
}

#rootContainer {
	width: 100% !important;
}
