/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');
/* Mobile */

/* @font-face {
  font-family: KronaOne;
  src: url('../fonts/Krona_One/KronaOne-Regular.woff');
} */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Krona+One&display=swap'); */
/* font-family: 'Inter', sans-serif;
font-family: 'Krona One', sans-serif; */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	user-select: none;
}
input {
	font-family: 'Nunito', sans-serif;
}
li,a,button{
	text-decoration: none;
}
h1{
	font-size: 70px;
	color: #fff;
	font-family: 'Nunito', sans-serif;
}
h2 {
	font-size: 64px;
	color: #fff;
	font-family: 'Nunito', sans-serif;
}
h3 {
	font-size: 40px;
	color: #fff;
	font-family: 'Nunito', sans-serif;
}
h4 {
	font-size: 24px;
	color: #fff;
	font-family: 'Nunito', sans-serif;
}
p{
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #fff;
}
input {
	font-family: 'Inter', sans-serif;
}
strong {
	color: #fff;
}
:root {
	--index: calc(1vw + 1vh);
	--gradient-green: linear-gradient(to right, #61D7FF, #01CE3E,#61D7FF, #01CE3E);
	--gradient-blue: linear-gradient(to right,  #01CE3E 0%,#61D7FF 100%);
	--purple1: #7A00B3;
	--gradient: linear-gradient(92.45deg, #61D7FF 1.16%, #01CE3E 134.76%);
	--purple: #5C9AFF;
	--darkpurple: #614CFF;
	--pink: #B254D7;
	--green: #01CE3E;
	--blue: #61D7FF;
	--darkblue: #2F1AAF;
	--background: #121212;
}

/* Buttons */
.main-button{
	display: block;
	position: relative;
	background: var(--gradient-green);
	background-size: 300%;
	background-position: left;
	font-weight: 600;
	font-size: 14px;
	padding: 20px 30px;
	border-radius: 50px;
	color: #fff;
	width: 200px;
	transition: all 1s ease;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: none;
	border: none;
	text-transform: uppercase;
}
.main-button:hover{
	transition: all 1s ease;
	background-position: right;
}
.consult-button {
	display: block;
	background: #fff;
	width: 200px;
	padding: 20px 30px;
	font-size: 14px;
	border-radius: 50px;
	color: black;
	transition: all 1s ease;
	text-align: center;
	border: 1px solid #fff;
	cursor: pointer;
	text-transform: uppercase;
}
.consult-button:hover{
	background-color: rgba(0, 0, 0, 0);
	color: #fff;
	transition: .3s ease;
	z-index: 10000;
}
/* Legend */
.legend {
	font-family: 'Inter', sans-serif;
	display: block;
	position: relative;
	text-transform: uppercase;
	font-weight: 100;
	font-size: 16px;
	color: #fff;
}
.glow {
	transform: translate3d(0, 0, 0);
}
/* will-change */

/* Body */
body{
	background-color: #121212;
	font-family: 'Inter', sans-serif;
	background-color: var(--background);
	overflow-x: hidden;
}
body.noscroll {
	overflow: hidden;
}
/* Wrapper */
.wrapper{
	display: block;
	position: relative;
	margin: 0px auto;
	padding: 0px 70px;
	max-width: 1440px;
}
.content {
	display: block;
	position: relative;
	width: 100%;
}
/* Noise */
.noise{
	display: block;
	position: absolute;
	background-image: url(../images/png/noise.png);
	background-repeat: repeat;
	width: 100%;
	height: auto;
	left: 0px;
	top: 0px;
	z-index: 1;
}
/* Darkener */
.darkener{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #121212;
	opacity: .3;
	z-index: 0;
}
/* Stars */
.star{
	display: block;
	position: absolute;
}
.star.extrabig{
	width: 150px;
	height: 150px;
}
.star.big{
	width: 100px;
	height: 100px;
}
.star.medium {
	width: 75px;
	height: 75px;
}
.star.small{
	width: 50px;
	height: 50px;
}
.star.extrasmall{
	width: 25px;
	height: 25px;
}
.star__inner {
	display: flex;
	position: relative;
	background: #000000;
	mix-blend-mode: color-dodge;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	z-index: 0;
}
.star__hor{
	display: block;
	position: absolute;
	width: 100%;
	height: 10%;
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, #fff 3.65%, rgba(58, 113, 255, 0) 100%);
	z-index: 0;
}
.star__ver{
	display: block;
	position: absolute;
	width: 100%;
	height: 10%;
	transform: rotate(90deg);
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, #fff 3.65%, rgba(58, 113, 255, 0) 100%);
	z-index: 0;
}

/* Top menue */
.logo{
	display: block;
	width: 105px;
	height: 65px;
	flex-shrink: 0;
	object-fit: contain;
}
.nav__links{
	list-style: none;
}
.nav__links  > li > a {
	cursor: pointer;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}
.nav__links > li > a:hover {
	color: var(--blue);
	transition: all .3s ease;
}
.nav__links > li {
	display: inline-block;
	padding: 0px 17px;
}
.social{
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	list-style: none;
}
.social > li {
	display: block;
	position: relative;
	padding: 0px 12px;
}

.social > li > a > svg {
	width: 25px;
	height: 25px;
	transition: all .3s ease;
	color: #fff;
	
}
.social > li > a > svg:hover {
	transition: all .3s ease;
	color: var(--blue);
}
.navbar{
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	padding: 10px 0px;
	flex-wrap: nowrap;
}
.telephone{
	display: block;
	position: relative;
	padding: 20px;
}
.telephone > a {
	display: block;
	position: relative;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	transition: all .3s ease;
	color: #fff;
}
.telephone > a:hover {
	color: var(--blue);
	transition: all .3s ease;
}

.top-elipse{
	display: block;
	position: absolute;
	opacity: .4;
	width: 135px;
	height: 55px;
	top: -20px;
	left: 5px;
	z-index: -1;
  border-radius: 100%; /*1*/
  border: 2px solid transparent; /*2*/
  background: linear-gradient(90deg, #61D7FF 0%, #01CE3E 100%) border-box; /*3*/
  -webkit-mask:
     linear-gradient(#fff 0 0) padding-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude; 5
}
.bottom-elipse {
	display: block;
	position: absolute;
	opacity: .4;
	top: -15px;
	left: 5px;
	width: 135px;
	height: 55px;
	z-index: -1;
  border-radius: 100%; /*1*/
  border: 2px solid transparent; /*2*/
  background: linear-gradient(116deg, #61D7FF 0%, #01CE3E 100%) border-box; /*3*/
  -webkit-mask: /*4*/
     linear-gradient(#fff 0 0) padding-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /*5'*/
          mask-composite: exclude; /*5*/
}

/* First section */
.first {
	display: block;
	position: relative;
	margin: 0 auto;
	height: auto;
	padding: 25px 0px;
}
.first__content{
	display: block;
	position: relative;
	width: 100%;
}
.scene {
	display: block;
}
.first__glow2{
	display: block;
	position: absolute;
	width: 267px;
	height: 270px;
	right: 0px;
	top: 20px;
	background: var(--darkblue);
	filter: blur(200px);
	z-index: -5;
	border-radius: 100%;
}
.first__glow1{
	display: block;
	position: absolute;
	width: 215px;
	height: 256px;
	right: 0px;
	top: 108px;
	background: #B254D7;
	filter: blur(175px);
	z-index: -5;
	border-radius: 100%;
}
.first__content__glow1{
	content: '';
	display: block;
	position: absolute;
	width: 267px;
	height: 270px;
	right: 66px;
	top: 243px;
	background: #B254D7;
	filter: blur(175px);
	z-index: -5;
	border-radius: 100%;
}

.first__text {
	display: flex;
	flex-direction: column;
	max-width: 760px;
	z-index: 10000;
}
.first__legend {
	margin-bottom: 18px;
	letter-spacing: .14em;
	color: rgba(255, 255, 255, .7);
}
.first__text > .star{
	bottom: 0;
	left: 0;
}
.first__text__glow1 {
	display: block;
	position: absolute;
	width: 466px;
	height: 308px;
	left: 66px;
	top: 270px;
	background: #B254D7;
	filter: blur(150px);
	z-index: -5;
}
.first__text__glow2 {
	display: block;
	position: absolute;
	width: 298px;
	height: 427px;
	left: -79px;
	top: 270px;
	background: var(--darkblue);
	filter: blur(175px);
	z-index: -5;
}

.first__title {
	display: block;
	position: relative;
	max-width: 720px;
	margin-bottom: 14px;
	font-size: clamp(46px, 4.5vw, 68px);
	line-height: .96;
	letter-spacing: -.03em;
	color:#fff;
}
.first__text > p {
	display: block;
	position: relative;
	max-width: 530px;
	margin-bottom: 25px;
	color:#fff;
	z-index: 10000;
}
.first__subtitle {
	max-width: 610px !important;
	margin-bottom: 22px !important;
	font-size: 18px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .82) !important;
}
.first__selling-points {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 720px;
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 10000;
}
.first__selling-point {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 19px;
	line-height: 1.38;
	color: rgba(255, 255, 255, .94);
}
.first__selling-point--wide {
	grid-column: span 2;
}
.first__selling-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	margin-top: 4px;
}
.first__selling-icon > svg {
	width: 28px;
	height: 28px;
}
.first__selling-label {
	display: block;
	padding-top: 3px;
}
.first__selling-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .92);
}
.first__selling-text strong {
	display: inline-block;
	margin-right: 4px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.first__buttons {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 18px;
	margin-top: 24px;
	z-index: 10000;
}
.first__button {
	min-width: 240px;
	box-shadow: 0 18px 40px rgba(1, 206, 62, .18);
}
.button-right {
	display: block;
	background: #fff;
	background-position: left;
	width: auto;
	min-width: 240px;
	padding: 20px 30px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .01em;
	border-radius: 50px;
	color: #000;
	transition: all 1s ease;
	text-align: center;
	border: 1px solid #fff;
	cursor: pointer;
	white-space: nowrap;
	text-transform: uppercase;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.button-right:hover{
	background-color: rgba(0, 0, 0, 0);
	color: #fff;
	transition: .3s ease;
	z-index: 10000;
	border-color: #fff;
}
.priviliges {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 16px;
	margin-top: 44px;
}
.priviliges__item {
	min-width: 150px;
	padding: 14px 18px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .03);
}
.priviliges__item > p {
	margin-bottom: 6px;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}
.priviliges__item > span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, .72);
}
.planet{
	display: block;
	position: relative;
	text-align: right;
}
.planet-wrapper {
	display: block;
	position: relative;
}
/* .mainplanet__ring1 {
	stroke-dasharray: 1000;
  stroke-dashoffset: 165%;
  animation: dash 6s linear infinite;
}
.mainplanet__ring12 {
	stroke-dasharray: 500;
  stroke-dashoffset: 165%;
	animation-delay: 1.5s;
	animation-name: dash;
	animation-duration: 3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.mainplanet__ring2 {
	stroke-dasharray: 1000;
  stroke-dashoffset: 165%;
  animation: dash 5s linear infinite;
}
.mainplanet__ring22 {
	stroke-dasharray: 500;
  stroke-dashoffset: 165%;
	animation-delay: 2.5s;
	animation-name: dash;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
} */

.planet-wrapper::before {
	content: '';
	display: block;
	position: absolute;
	width: 287px;
	height: 373px;
	left: 45vw;
	top: 7vh;
	background: #5C9AFF;
	filter: blur(50px);
	transform: rotate(89.36deg);
	z-index: -5;
	border-radius: 100%;
	transform: translate3d(0,0,0);
}
.planet > .planet-wrapper > svg {
	display: block;
	position: absolute;
	right: 0;
	width: 870px;
	height: 515px;
	z-index: 10;
}


/* Second section */

.second {
	display: block;
	position: relative;
	margin: 0 auto;
	height: auto;
}
.second__glow1{
	display: block;
	position: absolute;
	width: 963px;
	height: 163px;
	left: 200px;
	bottom: -75px;
	background: #B254D7;
	filter: blur(225px);
	transform: matrix(0.97, -0.26, 0.26, 0.97, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.second__content{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 100px;
	padding: 100px 0px;
}
.second__content__glow1{
	content: '';
	display: block;
	position: absolute;
	width: 400px;
	height: 660px;
	transform: rotate(90deg);
	left: 200px;
	top: 35px;
	background: #5C9AFF;
	filter: blur(150px);
	z-index: -5;
	border-radius: 100%;
}
.second__content__glow2{
	content: '';
	display: block;
	position: absolute;
	width: 159px;
	height: 450px;
	left: 149px;
	bottom: -250px;
	background: #614CFF;
	filter: blur(175px);
	transform: matrix(0.48, 0.87, -0.87, 0.48, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.first__owl-wrapper {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	width: 640px;
	border-radius: 50px;
	overflow: hidden;
}

.second__item {
	display: block;
	position: relative;
	width: 620px;
	height: 420px;
	background: #121212;
}
.second__item > img{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.first__carousel-nav {
	display: flex;
	position: absolute;
	justify-content: space-between;
	align-items: center;
	left: 0px;
	top: 0px;
	z-index: 100;
	width: 100%;
	height: 100%;
	padding: 0px 20px;
}
.first__carousel-nav > * > svg{
	display: block;
	width: 45px;
	color: #fff;
	opacity: .3;
	transition: all .3s ease;
	cursor: pointer;
}
.first__carousel-nav > *:hover > svg{
	opacity: 1;
	transition: all .3s ease;
}

.second__info{
	display: flex;
	justify-content: left;
	flex-direction: column;
	gap: 20px;
	max-width: 528px;
}
.second__legend {
	display: block;
	position: relative;
	text-transform: uppercase;
	font-weight: 100;
	font-size: 16px;
	color: #fff;
}
.second__info > p {
	color: #fff;
	font-size: 16px;
}
.second__hint{
	display: block;
	position: relative;
	padding-top: 20px;
	margin-top: 40px;
}
.second__hint::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 50px;
}

/* Ticker */

.ticker-wrap{
	display: flex;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 100%;
}
 .ticker-wrap::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #fff;
	left: 0;
	top: 0;
}
.ticker-wrap::after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #fff;
	left: 0;
	bottom:0;
}

/* .ticker{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	flex-direction: start;
} */

/* .ticker:hover{
	animation-play-state: paused;
} */


#webTicker {

}
.ticker__item {
	display: inline-block;
	position: relative;
	margin: 0 auto;
}
.ticker__item-star {
	width: 56px;
	height: 56px;
}
.ticker__item > span {
	display: block;
	position: relative;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
}

.ticker__star-hor{
	display: block;
	position: absolute;
	width: 56px;
	height: 6px;
	border-radius: 100%;
	left: 0px;
	top: calc(50% - 3px);
	background: radial-gradient(50% 50% at 50% 50%, #FFF1E4 15.1%, rgba(255, 200, 58, 0) 100%);
	mix-blend-mode: color-dodge;
}
.ticker__star-ver{
	display: block;
	position: absolute;
	width: 56px;
	height: 6px;
	transform: rotate(90deg);
	border-radius: 100%;
	left: 0px;
	top: calc(50% - 3px);
	background: radial-gradient(50% 50% at 50% 50%, #FFF1E4 15.1%, rgba(255, 200, 58, 0) 100%);
	mix-blend-mode: color-dodge;
}
/* Ticker animation */

/* @keyframes tickering {
	0% { transform: translate3d(120%,0,0); }
	100% { transform: translate3d(-150%,0,0);}
} */


/* holiday-list */
.holiday-list {
	display: block;
	position: relative;
}
.holiday-list__glow1 {
	display: block;
	position: absolute;
	top: 0;
	left: calc(50% - 200px);
	background: #614CFF;
	filter: blur(250px);
	width: 400px;
	height: 90%;
	transform: translate3d(0,0,0) rotate(126deg);
}
.holiday-list__glow2 {
	display: block;
	position: absolute;
	bottom: 0;
	left: calc(50% - 200px);
	background: var(--purple1);
	filter: blur(250px);
	width: 400px;
	height: 90%;
	transform: translate3d(0,0,0) rotate(-126deg);
}
.addons {
	display: block;
	padding-top: 100px;
}
.addons_header {
}
.addons {
	display: block;
	position: relative;
}
.addons-row{
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 10px 25px;
	margin-top: 25px;
	width: 100%;
}

.addons-item{
	display: block;
	position: relative;
	width: 100%;
	font-size: 22px;
	font-weight: bold;
}

.addonst_row-header {
	overflow: hidden;
}
.addonst_row-header::before{
	content: '';
	display: block;
	position: absolute;
	width: 200px;
	height: 140px;
	left: 0px;
	top: 0px;
	background: #B254D7;
	filter: blur(175px);
	transform: translate3d(0,0,0);
}
.addonst_row-header::after{
	content: '';
	display: block;
	position: absolute;
	width: 200px;
	height: 140px;
	right: 0px;
	top: 0px;
	background: #614CFF;
	filter: blur(175px);
	transform: translate3d(0,0,0);
}

/* Third section */
.third {
	display: block;
	position: relative;
}
.third__content{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding: 100px 0px;
	overflow: hidden;
	width: 100%;
	height: auto;
}
.third__content > lite-youtube {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.third__content__glow1 {
	display: block;
	position: absolute;
	width: 395px;
	height: 80%;
	right: 0px;
	top: -160px;
	background: #2F1AAF;
	filter: blur(150px);	
	z-index: -5;
	border-radius: 100%;
}
/* Fourth section */
.fourth{
	display: block;
	position: relative;
	padding: 100px 0px;
}
.fourth__content{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.fourth__content__glowing1 {
	display: block;
	position: absolute;
	width: 694px;
	height: 224px;
	bottom: 15px;
	right: 206px;
	background: #614CFF;
	filter: blur(250px);
	z-index: -5;
	border-radius: 100%;
}
.fourth__content__glowing2 {
	display: block;
	position: absolute;
	width: 694px;
	height: 237px;
	left: 56px;
	bottom: 208px;
	background: #B254D7;
	filter: blur(250px);
	z-index: -5;
	border-radius: 100%;
}
.fourth__legend{
	color: #fff;
	text-transform: uppercase;
	font-weight: 100;
	font-size: 16px;
}
.fourth__form {
	display: flex;
	position: relative;
	justify-content: left;
	flex-direction: column;
	position: relative;
	border: 1px solid #fff;
	border-radius: 50px;
	overflow: hidden;
	padding: 50px;
	max-width: 640px;
	margin-top: 100px;
}

.fourth__form > h3 {
	margin-top: 20px;
}
.fourth__form > p {
	margin: 20px 0px 60px 0px;
}


.fourth__form > input[type=tel],input[type=text] {
	display: block;
	width: 100%;
	height: 40px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #FFF;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	}
.fourth__form > input::placeholder {
	color: #fff;
}
.fourth__form > input:focus {
	outline: none;
}
.fourth__button {
	width: 100%;
	margin-top: 30px;
}
.planet4{
	text-align: right;
}
.planet4 > svg {
	display: block;
	position: absolute;
	right: 100px;
	width: 740px;
	height: 515px;
	z-index: 10;
}
.planet4 > svg::before {
	content: '';
	display: block;
	position: absolute;
	border-radius: 100%;
	width: 900px;
	height: 600px;
	background: rgb(96,219,255);
	background: linear-gradient(90deg, rgba(96,219,255,.7) 0%, rgba(152,58,194,.7) 75%);
}
/* .planetpath_circle1 {
	stroke-dasharray: 1000;
  stroke-dashoffset: 165%;
  animation: dash 3s linear infinite;
}
.planetpath_circle12 {
	stroke-dasharray: 500;
  stroke-dashoffset: 165%;
	animation-delay: 1.5s;
	animation-name: dash;
	animation-duration: 3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.planetpath_circle2 {
	stroke-dasharray: 1000;
  stroke-dashoffset: 165%;
  animation: dash 5s linear infinite;
}
.planetpath_circle22 {
	stroke-dasharray: 500;
  stroke-dashoffset: 165%;
	animation-delay: 2.5s;
	animation-name: dash;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
} */
@keyframes dash {
	to {
		stroke-dashoffset: -165%;
	}
}
/* Fifth */
.fifth{
	display: block;
	position: relative;
	padding: 80px 0px;
	/* overflow: hidden; */
}
.fifth__content{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.fifth__content__glowing1 {
	display: block;
	position: absolute;
	width: 279px;
	height: 802px;
	right: 152px;
	top: 241px;
	background: #2F1AAF;
	filter: blur(225px);
	transform: matrix(0.93, 0.36, -0.36, 0.93, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.fifth__content__glowing2 {
	display: block;
	position: absolute;
	width: 876px;
	height: 308px;
	left: 108px;
	bottom:-58px;
	background: #B254D7;
	filter: blur(250px);
	transform: matrix(0.94, -0.35, 0.35, 0.94, 0, 0);
	z-index: -5;
	border-radius: 100%;
}


.fifth__legend{
	margin-bottom: 20px;
}
.fifth__review{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 70px;
}
.review__item{
	display: flex;
	position: relative;
	border: 1px solid #fff;
	border-radius: 100px;
	overflow: hidden;
	padding: 30px 33px;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
	transition: all .3s ease;
}

.review__item:hover > img{
	filter: grayscale(0%);
	transition: all .3s ease;
}

.review__item > img {
	display: block;
	position: relative;
	object-fit: cover;
	width: 93px;
	height: 84px;
	border-radius: 50%;
	filter: grayscale(100%);
	transition: all .3s ease;
}
.review__item > p {
	text-transform: uppercase;
	max-width: 30ch;
	font-weight: 400;
	font-size: 16px;
}
/* Sixth */
.sixth{
	display: block;
	position: relative;
}
.sixth__conetnt{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 100px;
	justify-content: center;
	padding: 100px 0px;
}
.sixth__conetnt__glowing1 {
	display: block;
	position: absolute;
	width: 876px;
	height: 308px;
	left: 60px;
	bottom: 10px;
	background: #B254D7;
	filter: blur(250px);
	transform: matrix(0.94, -0.35, 0.35, 0.94, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.pricelist_main_header {
	margin-top: 70px;
}
.pricelist_wrapper {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 70px;
	margin-top: 70px;
}

.pricelist_card {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	padding: 30px 15px 30px 15px;
	border: 3px solid #fff;
	border-radius: 50px;
	overflow: hidden;
	gap: 30px;
	/* background: -webkit-linear-gradient(45deg, var(--blue) 0%, var(--pink) 33%, var(--pink) 66%, var(--blue) 100%);
	background-size: 400% 400%;
	font-weight: bold;
	animation: gradientAnimation 5s linear infinite; */
}

.pricelist_card__glow1{
	display: block;
	position: absolute;
}
.pricelist_card__glow2{
	display: block;
	position: absolute;
}
.pricelist_card__glow3{
	display: block;
	position: absolute;
}

.pricelist_delimeter {
	font-size: 18px !important;
	margin-top: 15px !important;
}

.standart_text {
	background: -webkit-linear-gradient(45deg,var(--blue) 0%,#fff 50%,#fff  75%, var(--blue) 100%);
	background-size: 400% 400%;
	font-weight: bold;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientAnimation 5s linear infinite;
}

.standartplus_text {
	background: -webkit-linear-gradient(45deg, var(--blue) 0%, var(--pink) 33%, var(--pink) 66%, var(--blue) 100%);
	background-size: 400% 400%;
	font-weight: bold;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientAnimation 5s linear infinite;
}

.overline_text {
	color: red;
	text-decoration: line-through;
	font-weight: bold;
}



.premium_text {
	/* background: -webkit-linear-gradient(45deg, var(--green) 0%, var(--pink) 16%, var(--blue) 32%, var(--green) 48%, var(--pink) 66%, var(--blue) 82%, var(--gren) 100%); */
	background: -webkit-linear-gradient(45deg, var(--green) 0%, gold 44%, var(--pink) 66%, var(--green) 100%);
	background-size: 350% 350%;
	font-weight: bold;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientAnimation 5s linear infinite;
}

.pricelist_image {
	display: block;
	position: relative;
	width: 150px;
	height: 75px;
}

.pricelist {
	display: block;
	position: relative;
	list-style-type: none;
	margin-bottom: 30px;
}

.pricelist > li {
	display: block;
	position: relative;
	color: #fff;
	font-size: 16px;
	margin-bottom: 5px;
}

.price {
	display: flex;
	position: relative;
	flex-direction: column;
	width: 100%;
	margin-top: 10px;
	gap: 15px;
	margin-bottom: 30px;
}

.pricelist_button {
	border: 1px solid #fff !important;
	margin-top: auto;
}

/* Seventh */

.seventh{
	display: block;
	position: relative;
	padding: 100px 0px;
	height: 775px;
	/* repair height */
}
.seventh__glowing1 {
	display: block;
	position: absolute;
	width: 257px;
	height: 399px;
	left: 207px;
	bottom: 113px;
	background: #5C9AFF;
	filter: blur(125px);
	transform: rotate(89.36deg);
	z-index: -5;
	border-radius: 100%;
}
.seventh__glowing2 {
	display: block;
	position: absolute;
	width: 262px;
	height: 408px;
	right: 253px;
	bottom: 108px;
	background: #5C9AFF;
	filter: blur(125px);
	transform: rotate(89.36deg);
	z-index: -5;
	border-radius: 100%;
}
.seventh__content{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.seventh__content__glowing1{
	display: block;
	position: absolute;
	width: 694px;
	height: 224px;
	left: 30px;
	bottom: 170px;
	background: #614CFF;
	filter: blur(250px);
	z-index: -5;
	border-radius: 100%;
}
.seventh__content__glowing2 {
	display: block;
	position: absolute;
	width: 876px;
	height: 308px;
	right: -10px;
	bottom: -20px;
	background: #B254D7;
	filter: blur(250px);
	transform: matrix(0.94, -0.35, 0.35, 0.94, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.seventh__legend{
	margin-bottom: 20px;
}
.seventh > h2 {
	margin-bottom: 50px;
}
.seventh__owl-wrapper {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	height: auto;
	padding: 50px 100px;
}
.first__owl-inner {
	display: block;
	position: relative;
	width: 100%;
}
.seventh__owl-carousel {
	display: block;
	position: relative;
	justify-content: center;
}
.seventh__item {
	display: flex;
	position: relative;
	width: 420px;
	height: 450px;
	justify-content: center;
	align-items: center;
}
.seventh__item > img {
	display: block;
	position: relative;
	width: 420px;
	height: 450px;
	transition: all .3s ease;
	object-fit: cover;
	border-radius: 50px;
	transition: .3s all ease;
	transform: scale(0.7);
}
.owl-item.center > .seventh__item > img {
	transform: scale(1);
	transition: .3s all ease;
}

.seventh__carousel-nav {
	display: flex;
	position: absolute;
	justify-content: space-between;
	align-items: center;
	left: 0px;
	top: 0px;
	z-index: 100;
	width: 100%;
	height: 100%;
	/* padding: 0px 20px; */
}
.seventh__carousel-nav > * > svg{
	display: block;
	width: 45px;
	color: #fff;
	opacity: .3;
	transition: all .3s ease;
	cursor: pointer;
}
.seventh__carousel-nav > *:hover > svg{
	opacity: 1;
	transition: all .3s ease;
}

/* Eighth */
.eighth{
	display: block;
	position: relative;
}
.eighth__glowing1 {
	content: '';
	display: block;
	position: absolute;
	width: 709px;
	height: 249px;
	left: 24px;
	bottom: 0px;
	background: #B254D7;
	filter: blur(250px);
	transform: matrix(0.94, -0.35, 0.35, 0.94, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.eighth__glowing2 {
	content: '';
	display: block;
	position: absolute;
	width: 876px;
	height: 308px;
	left: 44px;
	bottom: 10px;
	background: #B254D7;
	filter: blur(250px);
	transform: matrix(0.94, -0.35, 0.35, 0.94, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.eight__content {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 100px;
	padding: 100px 0px;
}
.eight__content__glowing1 {
	display: block;
	position: absolute;
	width: 694px;
	height: 224px;
	right: -10px;
	bottom: 30px;
	background: #614CFF;
	filter: blur(250px);
	z-index: -5;
	border-radius: 100%;
}
.eight__content__glowing2 {
	display: block;
	position: absolute;
	width: 694px;
	height: 224px;
	right: -10px;
	bottom: -173px;
	background: #614CFF;
	filter: blur(250px);
	transform: matrix(0.87, -0.49, 0.49, 0.87, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.eighth__mapglower{
	display: block;
	position: absolute;
	width: 401px;
	height: 624px;
	left: 250px;
	top: 0px;
	background: #5C9AFF;
	filter: blur(125px);
	transform: rotate(89.36deg);	
	z-index: -5;
	border-radius: 100%;
}
.map{
	display: block;
	position: relative;
}
.map > iframe {
	display: block;
	width: 640px;
	height: 400px;
	border-radius: 50px;
}
.eight__info__text{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	gap: 40px;
}
.eighth__item {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 15px;
	align-items: center;
}
.eighth__item-svgwrap{
	display: block;
	height: 50px;
	width: 60px;
	object-fit: contain;
	text-align: center;
	line-height: 10px;
}
.item__text {
	display: flex;
	position: relative;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 10px;
	justify-content: center;
}
.item__text > span {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}
.item__text > a {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	transition: all .3s ease;
}
.item__text > a:hover {
	cursor: pointer;
	color: var(--blue);
	transition: all .3s ease;
}
/* Ninth */
.ninth {
	display: block;
	position: relative;
}
.ninth__content {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 105px;
	padding: 80px 0px;
}
.ninth__content__glowing1{
	content: '';
	display: block;
	position: absolute;
	width: 347px;
	height: 224px;
	left: -10px;
	bottom: 0px;
	background: #614CFF;
	filter: blur(250px);
	transform: matrix(0.87, -0.49, 0.49, 0.87, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.ninth__content__glowing2 {
	content: '';
	display: block;
	position: absolute;
	width: 876px;
	height: 308px;
	right: -20px;
	bottom: 100px;
	background: #B254D7;
	filter: blur(250px);
	transform: matrix(0.94, -0.35, 0.35, 0.94, 0, 0);
	z-index: -5;
	border-radius: 100%;
}
.ninth__left {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 140px;
}
.ninth__pseudo-header{
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.ninth__menue {
	list-style: none;
}
.ninth__menue > li {
	margin-bottom: 30px;
}
.ninth__menue > li > a {
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
	transition: all .3s ease;
}
.ninth__menue > li > a:hover {
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
	transition: all .3s ease;
	color: var(--blue);
}
.ninth__text {
	display: flex;
	flex-direction: column;
}
.ninth__text > p {
	margin-bottom: 30px;
	max-width: 310px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 300;
	line-height: 22.4px;
}
.ninth__text > p > a {
	color: var(--blue);
}
.ninth__right {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 40px;
}
.ninth__right__heading{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.ninth__right__heading > .ninth__pseudo-header {
	text-transform: none;
}
.ninth__pseudo-legend{
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}
.ninth__form > input[type=text], input[type=tel] {
  display: block;
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFF;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 30px;
}
.ninth__form > input::placeholder {
	color: #fff;
}
.ninth__form > input:focus {
  outline: none;
}
.ninth__form > .ninth__button {
	width: 100%;
}
/* Footer */
footer {
	display: block;
	position: relative;

}
.footer__content{
	display: flex;
	position: relative;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 70px;
}
.footer__left {
	display: block;
	position: relative;
	z-index: 10;
}
.footer__left > span {
	font-size: 14px;
	font-weight: 400;
	color: #fff;

}
.footer__right {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 35px;
	z-index: 10;
}
.footer__right > a {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}


/* questionnaire */
.questionnaire_holder {
	display: block;
	position: fixed;
	/* background-image: url(../images/png/noise.png);
	background-repeat: repeat; */
	background-color: var(--background);
	overflow: hidden;
	z-index: 1000;
}
.questionnaire_holder::before {
	content: '';
	display: block;
	position: absolute;
	width: 286px;
	height: 393px;
	left: 0px;
	bottom: 0px;
	background: #614CFF;
	filter: blur(175px);
}
.questionnaire_holder::after {
	content: '';
	display: block;
	position: absolute;
	width: 286px;
	height: 393px;
	left: 30%;
	bottom: 13%;
	background: #B254D7;
	filter: blur(150px);
	z-index: -1;
}
.questionnaire_holder-inner{
	display: block;
	position: relative;
	width: 100vw;
	height: 100vh;
	background-image: url(../images/png/noise.png);
	background-repeat: repeat;
}
#form-cross {
	bottom: 90px;
	z-index: 1;
	margin: 0 auto;
	left: calc(50% - 20px);
}
.questionnaire_wrapper {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	height: 100vh;
	padding: 25px 70px 30px 70px;
	overflow: hidden;
}
.questionnaire_wrapper::before {
	content: '';
	display: block;
	position: absolute;
	right: 50px;
	top: 147px;
	width: 206px;
	height: 236px;
	background: #B254D7;
	filter: blur(175px);
	transform: translate3d(0,0,0);
}
.questionnaire_wrapper::after {
	content: '';
	display: block;
	position: absolute;
	right: 21px;
	top: 226px;
	width: 256px;
	height: 249px;
	background: #2F1AAF;
	filter: blur(200px);
	z-index: -1;
	transform: translate3d(0,0,0);
}
.questionnaire_wrapper > h3 {
	display: block;
	position: relative;
	text-align: center;
	margin-bottom: 10px;
}
.questionnaire_wrapper > p {
	display: block;
	position: relative;
	max-width: 520px;
	color: #fff;
	font-weight: 200;
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}
.questionnaire_wrapper > p > span {
	font-weight: 600;
}
.questionnaire_conteiner {
	display: block;
	position: relative;
	width: 100%;
	background-color: var(--background);
}

.tab-status {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 30px 100px;
	overflow: hidden;
}
.tab-status::before{
	content: '';
	display: block;
	position: absolute;
	width: 672px;
	height: 140px;
	left: 0px;
	top: 0px;
	background: #B254D7;
	filter: blur(175px);
	transform: translate3d(0,0,0);
}
.tab-status::after{
	content: '';
	display: block;
	position: absolute;
	width: 672px;
	height: 140px;
	right: 0px;
	top: 0px;
	background: #614CFF;
	filter: blur(175px);
	transform: translate3d(0,0,0);
}
.tab-status > p {
	text-transform: uppercase;
	font-weight: 200;
	font-size: 16px;
	color: #fff;
}
.tab-status__before {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background-color: #fff;
	opacity: .3;
}
.tab-status__after {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 25%;
	height: 5px;
	background-color: #fff;
	transition: .3s all ease;
}
.tab-status__after.half {
	width: 50%;
	transition: .3s all ease;
}
.tab-status__after.seventy-five {
	width: 75%;
	transition: .3s all ease;
}
.tab-status__after.full {
	width: 100%;
	transition: .3s all ease;
}
.questionnaire_form{
	display: block;
	position: relative;
	background-image: url(../images/png/img-noise-100x100.png);
	background-repeat: repeat;
}
.questionnaire_form input {
	font-size: 16px;
	font-weight: 400;
	background-color: transparent;
	outline: none;
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
}
.tab-list {
	display: block;
	position: relative;
}
.tab-list > .star.extrabig {
	right: 180px;
	bottom: 0px;
}
.tab-list > .star.big {
	top: 0;
	left: calc(50% - 50px);
}
.tab-list > .star.medium.l {
	top: 35px;
	left: 0px;
}
.tab-list > .star.medium.r {
	bottom: 0px;
	left: 500px;
}
.tabpanel {
	display: flex;
	position: relative;
	flex-direction: column;
	padding: 25px 50px 25px 50px;
	height: 300px;
	gap: 60px;
	
}
.tabpanel > p {
	display: block;
	position: relative;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
}
/* Amount */
.amount-input {
	display: block;
	position: relative;
	background: transparent;
	border: none;
	color: #fff;
	outline: none;
	width: 100%;
	border-bottom: 1px solid #FFF;
	font-size: 16px;
	font-weight: 400;
	padding: 10px 0px;
}
/* Date */
.date-wrapper {
	display: block;
	position: relative;
	width: 310px;
}
.date-wrapper > svg {
	display: block;
	position: absolute;
	top: -10px;
	right: 0;
	width: 35px;
	height: 35px;
	object-fit: cover;
	color: #fff;
	cursor: pointer;
	transition: all .3s ease;
}
.date-wrapper > svg:hover {
	color: var(--blue);
	transition: all .3s ease;
}
.date-wrapper > svg:active {
	color: var(--blue);
	transition: all .3s ease;
}
.date-wrapper > svg:focus {
	color: var(--blue);
	transition: all .3s ease;
}
.date-input {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 10px;
}
::-webkit-calendar-picker-indicator{
	display: none;
}

/* Contact */
.tabpanel.clientinfo {
	gap: 30px;
}
.tabpanel.clientinfo > input {
	padding-bottom: 12px;
}
/* Thankyou */
.tabpanel.thankyou {
	gap: 20px;
}
.thankyou_title {
	text-align: center;
	letter-spacing: 2px;
}
.thankyou_title > span {
	background: -webkit-linear-gradient(45deg, var(--blue) 0%, var(--pink) 33%, var(--pink) 66%, var(--blue) 100%);
	background-size: 400% 400%;
	font-weight: bold;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientAnimation 5s linear infinite;
}


@keyframes gradientAnimation {
	0% {
			background-position: 0% 0%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
			background-position: 15% 100%
	}
}

.tabpanel.thankyou > h4 {
	display: block;
	position: relative;
	font-weight: 200;
	text-align: center;
}
/* Pagination */
.questionnaire-next {
	display: block;
	position: relative;
}
.pagination {
	display: flex;
	position: relative;
	flex-direction: row;
	width: 100%;
	padding: 0px 50px 110px 50px;
	justify-content: space-between;
}
.btn {
	display: block;
	position: relative;
	padding: 20px 57px;
	border-radius: 100px;
	border: 1px solid #fff !important;
	text-transform: uppercase;
	cursor: pointer;
	transition: .3s ease;
}
#questionnaire-prev {
	color: #fff;
	background-color: transparent;
}
#questionnaire-prev:hover {
	color: var(--background);
	background-color: #fff;
	transition: .3s ease;
}
#questionnaire-next{
	background-color: #fff;
	color: var(--background);
}
#questionnaire-next:hover {
	background-color: transparent;
	color: #fff;
	transition: .3s ease;
}
#questionnaire-submit {
	display: block;
	position: relative;
	outline: none;
	background-color: #fff;
	color: var(--background);
}
#questionnaire-submit:hover {
	background-color: transparent;
	color: #fff;
	transition: .3s ease;
}
#questionnaire-final{
	background-color: #fff;
	color: var(--background);
}
#questionnaire-final:hover {
	background-color: transparent;
	color: #fff;
	transition: .3s ease;
}

/* Miniform */
.miniform-holder {
	display: block;
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: 1000;
	background-color: rgba(18, 18, 18, 0.6)
}
.miniform-holder__inner {
	display: flex;
	position: relative;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
}
.miniform-holder__inner > .darkener {
	opacity: .7;
}
.miniform-holder__inner > .cross {
	right: 60px;
	top: 20px;
	width: 30px;
	height: 30px;
	z-index: 1000;
}
.cross {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	color: #fff;
	cursor: pointer;
	transition: .3s all ease;
}
.cross:hover {
	transform: rotate(180deg);
	transition: .3s all ease;
	color: var(--blue);
}

.miniform {
	display: flex;
	position: relative;
	flex-direction: column;
	flex-wrap: nowrap;
	border: 1px solid #fff;
	border-radius: 50px;
	gap: 20px;
	padding: 50px;
	background-color: var(--background);
	max-width: 640px;
	max-height: 540px;
}
.miniform > img {
	display: block;
	position: absolute;
	width: 190px;
	height: 100px;
	object-fit: cover;
	right: 50px;
	top: 50px;
}

.miniform > form {
	display: flex;
	position: relative;
	margin-top: 10px;
	gap: 30px;
	flex-direction: column;
}
.miniform > form > input {
	outline: none;
}
.miniform > form > .main-button {
	width: 100%;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}
.miniform > p {
	font-size: 14px;
	line-height: 19px;
}
.miniform > p > a {
	color: var(--blue);
	font-size: 14px;
	line-height: 19px;
}

.hidden {
	display: none;
}
.btn.hidden {
	display: none !important;
}

/* Mobile display none */
.mob-hidden {
	display: none;
}


/* Mobile */
@import url("media.css");


.mob-header {
	display: none;
}
.mob-menue {
	display: none;
}
