body {
	margin: 0;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	background-color: #080808;
}

p {
	color: white;
	text-align: center;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #080808;
	padding: 10px 20px;
}

.navbar-left .icon img {
	width: 200px;
	height: auto;
	margin-left: 30px;
}

.navbar-right {
	position: relative;
	margin-right: 30px;
}

@media (max-width: 550px) {
	.navbar-left .icon img {
		margin-left: 0px;
	}
	.navbar-right {
		margin-right: 0px;
	}
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropbtn {
	background-color: #080808;
	color: rgb(153, 9, 134);
	padding: 10px;
	font-size: 20px;
	border: none;
	cursor: pointer;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: rgb(153, 9, 134);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px #080808;
	z-index: 1;
}

.dropdown-content a {
	color: #080808;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #080808;
	color: rgb(153, 9, 134);
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: #000000;
}

#generalText {
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 40px;
	text-align: center;
	background: radial-gradient(
		circle at 100%,
		#ffffff,
		#814a88 50%,
		#8300a3 75%,
		#cc01bb 75%
	);
	font-weight: 600;
	background-size: 200% auto;
	color: #000;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: animatedTextGradient 2.5s linear infinite;
}

@keyframes animatedTextGradient {
	to {
		background-position: 200% center;
	}
}

@media (max-width: 550px) {
	#generalText {
		font-size: 20px;
	}
	p.downGeneralText {
		font-size: 14px;
	}
}

.downGeneralText {
	font-size: 18px;
	text-align: center;
	color: rgb(177, 176, 177);
}

.video {
	display: flex;
	margin: auto;
	justify-content: center;
	align-items: center;
}

video {
	max-width: 1000px;
	width: 90%;
	height: auto;
	border-radius: 50px;
}

@keyframes shadowPulse {
	0% {
		box-shadow: 0 0 30px rgb(56, 0, 49);
	}
	50% {
		box-shadow: 0 0 0px rgb(0, 0, 0);
	}
	100% {
		box-shadow: 0 0 30px rgb(56, 0, 49);
	}
}

video {
	animation: shadowPulse 2s infinite;
}

@import url('https://fonts.googleapis.com/css2?family=Taviraj&display=swap');

svg {
	font-family: 'Cormorant Infant', sans-serif;
	width: 100%;
	height: 100%;
	margin-bottom: -50px;
}
svg text {
	animation: stroke 5s infinite alternate;
	stroke-width: 2;
	stroke: #ffffff;
	font-size: 80px;
}

@media (max-width: 550px) {
	svg text {
		font-size: 60px;
	}
}
@keyframes stroke {
	0% {
		fill: rgba(114, 3, 99, 0);
		stroke: rgb(255, 255, 255);
		stroke-dashoffset: 25%;
		stroke-dasharray: 0 50%;
		stroke-width: 2;
	}
	70% {
		fill: rgba(114, 3, 99, 0);
		stroke: rgba(114, 3, 99, 1);
	}
	80% {
		fill: rgba(114, 3, 99, 0);
		stroke: rgba(114, 3, 99, 1);
		stroke-width: 3;
	}
	100% {
		fill: rgb(221, 221, 221);
		stroke: rgba(114, 3, 99, 0);
		stroke-dashoffset: -25%;
		stroke-dasharray: 50% 0;
		stroke-width: 0;
	}
}

.wrapper {
	background-color: #080808;
}

/* hyzmatlarymyz */
.dashHyzmatlar {
	margin: 0;
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.containers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 70%;
	margin-left: 15.5%;
	margin-right: 14.5%;
}

.card {
	background: rgb(15, 15, 15);
	border-radius: 50px;
	max-width: 500px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	padding: 20px;
	margin: 20px;
	margin-bottom: 30px;
}

.card {
	border: 5px solid transparent;
	border-radius: 8px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	z-index: 1;
	animation: gradient-border 3s linear infinite;
}

@keyframes gradient-border {
	0% {
		border-image: linear-gradient(20deg, #c5c5c5da, #68025f);
		border-image-slice: 1;
	}
	50% {
		border-image: linear-gradient(45deg, #4201dada, #b900b9);
		border-image-slice: 1;
	}
	100% {
		border-image: linear-gradient(45deg, #b900b9, #4201dada);
		border-image-slice: 1;
	}
}
.card img {
	border-radius: 10px;
	object-fit: cover;
	width: auto;
	height: auto;
	max-height: 100px;
}

.card h2 {
	margin: 10px 0;
	font-size: 1.5em;
	color: #ffffff;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card p {
	color: #ffffff;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
	.containers {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, auto);
	}
	.slider {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.containers {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(6, auto);
	}
	.slider {
		width: 100%;
	}
}

@media (max-width: 550px) {
	.card img {
		border-radius: 5px;
		max-height: 50px;
	}

	.card p {
		color: #ffffff;
		font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
		font-size: 12px;
	}

	.card h2 {
		margin: 10px 0;
		font-size: 15px;
		color: #ffffff;
		font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	}
}
.Hyz {
	font-size: 40px;
	text-align: center;
	background: radial-gradient(
		circle at 100%,
		#ffffff,
		#814a88 50%,
		#8300a3 75%,
		#cc01bb 75%
	);
	font-weight: 600;
	background-size: 200% auto;
	color: #000;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: animatedTextGradient 2.5s linear infinite;
}

@keyframes animatedTextGradient {
	to {
		background-position: 200% center;
	}
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-250px * 7));
	}
}

.slider {
	background: rgb(255, 249, 254);
	height: 100px;
	margin: auto;
	overflow: hidden;
	position: relative;
	max-width: 960px;
	box-shadow: 0 0 20px #6c0086;
	border-radius: 20px;
	border: 4px solid rgb(153, 9, 134);
}
@media (max-width: 970px) {
	.slider {
		width: 90%;
	}
}

@media (max-width: 550px) {
	.Hyz {
		font-size: 20px;
	}
}

.slider::before,
.slider::after {
	content: '';
	height: 100px;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.slider::before {
	left: 0;
	top: 0;
}

.slider .slide-track {
	animation: scroll 40s linear infinite;
	display: flex;
	width: calc(250px * 14);
}

.slider .slide {
	height: 100px;
	width: 250px;
}

@media (max-width: 550px) {
	.slider .slide-track {
		animation: scroll 10s linear infinite;
	}
}

.prog {
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 40px;
	text-align: center;
	background: radial-gradient(
		circle at 100%,
		#ffffff,
		#814a88 50%,
		#8300a3 75%,
		#cc01bb 75%
	);
	font-weight: 600;
	background-size: 200% auto;
	color: #000;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: animatedTextGradient 2.5s linear infinite;
}

@keyframes animatedTextGradient {
	to {
		background-position: 200% center;
	}
}

@media (max-width: 550px) {
	.prog {
		font-size: 20px;
	}
}

/* programma barada */

#programDas {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 150px;
	margin-bottom: 150px;
}
:root {
	--color: #86057c;
	width: 100%;
}

* {
	box-sizing: border-box;
}

@keyframes move-dot1 {
	0% {
		transform: translateX(-50%) translateY(-50%);
	}
	20% {
		transform: translateX(-50%) translateY(30%);
	}
	100% {
		transform: translateX(-50%) translateY(30%);
	}
}

@keyframes move-dot2 {
	0% {
		transform: translateX(-50%) translateY(-50%);
	}
	15% {
		transform: translateX(-50%) translateY(-10%);
	}
	30% {
		transform: translateX(-10%) translateY(-10%);
	}
	100% {
		transform: translateX(-10%) translateY(-10%);
	}
}

.animation-example {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 800px;
	width: 800px;
	margin-top: -100px;
}

.animation-example > .item {
	position: absolute;
	top: 50;
	left: 50%;
	height: 50%;
	width: 50%;
	transform: translateX(-50%);
	transform-origin: 50% 100%;
	pointer-events: none;
}

.animation-example > .item:nth-child(2) {
	transform: translateX(-50%) rotate(90deg);
}

.animation-example > .item:nth-child(3) {
	transform: translateX(-50%) rotate(180deg);
}

.animation-example > .item:nth-child(4) {
	transform: translateX(-50%) rotate(270deg);
}

.animation-example > .item > .line {
	height: 100%;
	width: calc(50% + 1px);
	border-right: 2px dashed var(--color);
}

.animation-example > .item > .dot {
	position: absolute;
	left: 50%;
	top: 10%;
	transform: translateX(-50%) translateY(-50%);
	height: 100%;
	width: 100%;
	animation: move-dot1 5.5s linear infinite;
}

.animation-example > .item > .dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	height: 5%;
	width: 5%;
	background: #fff;
	border: 2px solid var(--color);
	border-radius: 50%;
}

.animation-example > .item > .circle {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 40%;
	width: 40%;
	border-radius: 50%;
	background: var(--color);
}

.animation-example > .item.-type2 {
	top: 0;
	left: 0;
	transform: none;
	transform-origin: 100% 100%;
}

.animation-example > .item.-type2:nth-child(5) {
	transform: scaleX(-1);
}

.animation-example > .item.-type2:nth-child(6) {
	transform: scaleX(-1) scaleY(-1);
}

.animation-example > .item.-type2:nth-child(7) {
	transform: scaleY(-1);
}

.animation-example > .item.-type2 > .line {
	position: absolute;
	top: 30%;
	left: calc(30% - 1px);
	width: 70%;
	height: 40%;
	border-right: none;
	border-left: 2px dashed var(--color);
	border-bottom: 2px dashed var(--color);
}

.animation-example > .item.-type2 > .dot {
	top: 30%;
	left: 30%;
	animation: move-dot2 4s linear infinite;
}

.animation-example > .item.-type2 > .circle {
	top: 30%;
	left: 30%;
	transform: translateX(-50%) translateY(-50%);
}

.animation-example > .item:nth-of-type(1) > .dot {
	animation-delay: 0s;
}

.animation-example > .item:nth-of-type(7) > .dot {
	animation-delay: 0.5s;
}

.animation-example > .item:nth-of-type(2) > .dot {
	animation-delay: 1s;
}

.animation-example > .item:nth-of-type(6) > .dot {
	animation-delay: 1.5s;
}

.animation-example > .item:nth-of-type(3) > .dot {
	animation-delay: 2s;
}

.animation-example > .item:nth-of-type(5) > .dot {
	animation-delay: 2.5s;
}

.animation-example > .item:nth-of-type(4) > .dot {
	animation-delay: 3s;
}

.animation-example > .item:nth-of-type(8) > .dot {
	animation-delay: 3.5s;
}

.animation-example > .center {
	position: absolute;
	top: 50%;
	left: 52.5%;
	transform: translateX(-50%) translateY(-50%);
	height: 50%;
	width: 50%;
}

.animation-example > .center > .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-radius: 50%;
}

.animation-example > .center > .circle:nth-child(1) {
	height: 100%;
	width: 100%;
	background: #fff1fd;
	box-shadow: 0 0 3vmin rgba(255, 255, 255, 0.1);
}

.animation-example > .center > .circle:nth-child(2) {
	height: 80%;
	width: 80%;
	border: 2px solid var(--color);
}

.animation-example > .center > .circle:nth-child(3) {
	height: 50%;
	width: 50%;
	background: var(--color);
}

.text1 {
	color: white;
	margin-top: 70px;
	text-align: center;
	font-size: 20px;
}
.text2 {
	margin-top: 70px;
	color: white;
	transform: rotate(-90deg);
	font-size: 20px;
}
.text3 {
	color: white;
	transform: rotate(-180deg);
	font-size: 20px;
	margin-top: 70px;
}
.text4 {
	margin-right: 5px;
	margin-top: 68px;
	color: white;
	transform: rotate(90deg);
	font-size: 20px;
}
.text5 {
	text-align: center;
	color: white;
	margin-top: 60px;
	font-size: 20px;
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: 'FlipH';
}
.text6 {
	color: white;
	transform: rotate(-180deg);
	font-size: 20px;
	margin-top: 70px;
}
.text7 {
	text-align: center;
	color: white;
	margin-top: 70px;
	font-size: 20px;
	transform: rotate(180deg);
	-moz-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
	filter: FlipV;
	-ms-filter: 'FlipV';
}
.text8 {
	color: white;
	color: white;
	margin-top: 70px;
	font-size: 20px;
}

.text9 {
	color: white;
	text-align: center;
	margin-top: 75px;
	font-size: 30px;
}

@media (max-width: 1440px) {
	.animation-example {
		height: 700px;
		width: 700px;
		margin-top: 10px;
	}
	.text1 {
		color: white;
		margin-top: 60px;
		text-align: center;
		font-size: 18px;
	}
	.text2 {
		margin-top: 60px;
		color: white;
		transform: rotate(-90deg);
		font-size: 17px;
	}
	.text3 {
		color: white;
		transform: rotate(-180deg);
		font-size: 18px;
		margin-top: 60px;
	}
	.text4 {
		margin-right: 5px;
		margin-top: 60px;
		color: white;
		transform: rotate(90deg);
		font-size: 18px;
	}
	.text5 {
		text-align: center;
		color: white;
		margin-top: 55px;
		font-size: 18px;
		-moz-transform: scaleX(-1);
		-o-transform: scaleX(-1);
		-webkit-transform: scaleX(-1);
		transform: scaleX(-1);
		filter: FlipH;
		-ms-filter: 'FlipH';
	}
	.text6 {
		color: white;
		transform: rotate(-180deg);
		font-size: 18px;
		margin-top: 60px;
	}
	.text7 {
		text-align: center;
		color: white;
		margin-top: 60px;
		font-size: 18px;
		transform: rotate(180deg);
		-moz-transform: scaleY(-1);
		-o-transform: scaleY(-1);
		-webkit-transform: scaleY(-1);
		transform: scaleY(-1);
		filter: FlipV;
		-ms-filter: 'FlipV';
	}
	.text8 {
		color: white;
		color: white;
		margin-top: 60px;
		font-size: 18px;
	}

	.text9 {
		color: white;
		text-align: center;
		margin-top: 60px;
		font-size: 25px;
	}
}
@media (max-width: 1100px) {
	#programDas {
		margin-top: 150px;
		margin-bottom: 150px;
	}
	.animation-example {
		height: 600px;
		width: 600px;
	}
	.text1 {
		color: white;
		margin-top: 50px;
		text-align: center;
		font-size: 17px;
	}
	.text2 {
		margin-top: 50px;
		color: white;
		transform: rotate(-90deg);
		font-size: 17px;
	}
	.text3 {
		color: white;
		transform: rotate(-180deg);
		font-size: 17px;
		margin-top: 50px;
	}
	.text4 {
		margin-right: 5px;
		margin-top: 48px;
		color: white;
		transform: rotate(90deg);
		font-size: 17px;
	}
	.text5 {
		text-align: center;
		color: white;
		margin-top: 45px;
		font-size: 17px;
		-moz-transform: scaleX(-1);
		-o-transform: scaleX(-1);
		-webkit-transform: scaleX(-1);
		transform: scaleX(-1);
		filter: FlipH;
		-ms-filter: 'FlipH';
	}
	.text6 {
		color: white;
		transform: rotate(-180deg);
		font-size: 17px;
		margin-top: 50px;
	}
	.text7 {
		text-align: center;
		color: white;
		margin-top: 50px;
		font-size: 17px;
		transform: rotate(180deg);
		-moz-transform: scaleY(-1);
		-o-transform: scaleY(-1);
		-webkit-transform: scaleY(-1);
		transform: scaleY(-1);
		filter: FlipV;
		-ms-filter: 'FlipV';
	}
	.text8 {
		color: white;
		color: white;
		margin-top: 50px;
		font-size: 17px;
	}

	.text9 {
		color: white;
		text-align: center;
		margin-top: 60px;
		font-size: 25px;
	}
}

@media (max-width: 550px) {
	#programDas {
		margin-top: 0px;
		margin-bottom: -200px;
	}
	.animation-example {
		height: 320px;
		width: 320px;
		margin-left: -20px;
		margin-top: -150px;
	}
	.text1 {
		color: white;
		margin-top: 25px;
		text-align: center;
		font-size: 10px;
	}
	.text2 {
		margin-top: 25px;
		color: white;
		transform: rotate(-90deg);
		font-size: 12px;
	}
	.text3 {
		color: white;
		transform: rotate(-180deg);
		font-size: 10px;
		margin-top: 25px;
	}
	.text4 {
		margin-right: 5px;
		margin-top: 25px;
		color: white;
		transform: rotate(90deg);
		font-size: 10px;
	}
	.text5 {
		text-align: center;
		color: white;
		margin-top: 20px;
		font-size: 10px;
		-moz-transform: scaleX(-1);
		-o-transform: scaleX(-1);
		-webkit-transform: scaleX(-1);
		transform: scaleX(-1);
		filter: FlipH;
		-ms-filter: 'FlipH';
	}
	.text6 {
		color: white;
		transform: rotate(-180deg);
		font-size: 10px;
		margin-top: 25px;
	}
	.text7 {
		text-align: center;
		color: white;
		margin-top: 25px;
		font-size: 10px;
		transform: rotate(180deg);
		-moz-transform: scaleY(-1);
		-o-transform: scaleY(-1);
		-webkit-transform: scaleY(-1);
		transform: scaleY(-1);
		filter: FlipV;
		-ms-filter: 'FlipV';
	}
	.text8 {
		color: white;
		color: white;
		margin-top: 25px;
		font-size: 10px;
	}

	.text9 {
		color: white;
		text-align: center;
		margin-top: 20px;
		font-size: 20px;
	}

	.animation-example > .center {
		position: absolute;
		top: 50%;
		left: 56%;
	}
}

/* carousel */
#scene {
	display: flex;
	align-items: center;
	border-radius: 50px;
	border: 4px solid rgb(153, 9, 134);
	max-width: 1300px;
	max-height: 600px;
	height: auto;
	margin: auto;
	background-color: #f0f0f0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	overflow: hidden;
	position: relative;
}
@media (max-width: 1100px) {
	#scene {
		width: 100%;
		border-radius: 0px;
	}
}

@media (max-width: 970px) {
	div#left-zone {
		width: 30%;
		height: 80%;
	}
	.icon {
		width: 20px;
		height: 20px;
		margin-left: 10px;
	}
	li.item {
		margin-left: -20px;
	}
	li.item.active {
		margin-left: 15px;
		color: rgb(153, 9, 134);
		border-right: 0px;
	}
	div#scene p {
		font-size: 10px;
	}
}

@media (max-width: 550px) {
	div#left-zone {
		width: 30%;
		height: 100%;
	}
	img.icon {
		width: 15px;
		height: 15px;
		margin-left: 5px;
	}
	li.item {
		margin-left: -20px;
	}
	li.item.active {
		margin-left: 5px;
		color: rgb(153, 9, 134);
	}
	div#scene p {
		font-size: 10px;
	}
	div.content img {
		padding: 20px;
	}
}

#scene p {
	color: rgb(0, 0, 0);
	font-size: 16px;
}

#left-zone {
	background-color: #f0f0f0;
	width: 30%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.list_carousel {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.item {
	margin-left: 20px;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 10px;
	border-right: 2px solid transparent;
}

.item input[type='radio'] {
	display: none;
}

.item label {
	display: flex;
	align-items: center;
	padding: 10px;
	margin-left: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.icon {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

.item.active {
	border-right: 5px solid rgb(153, 9, 134);
	margin-left: 50px;
	color: rgb(153, 9, 134);
}

#right-zone {
	width: 70%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.content {
	display: none;
}

.content img {
	padding: 50px;
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}

.contactUs {
	color: white;
	text-align: center;
	height: 300px;
	width: 100%;
	align-items: center;
	display: flex;
}
.linerr {
	display: flex;
	width: 100%;
	justify-content: center;
}

.lineHr {
	width: 100%;
	height: 3px;
	background-color: rgb(153, 9, 134);
}
.contact {
	font-family: 'Times New Roman', Times, serif;
	text-align: center;
	margin-top: 150px;
	color: white;
	font-size: 30px;
}
@media (max-width: 1440px) {
	.contact {
		margin-top: 50px;
	}
}
@media (max-width: 970px) {
	.contact {
		margin-top: -100px;
		font-size: 25px;
	}
}

@media (max-width: 550px) {
	.contact {
		margin-top: -100px;
		font-size: 16px;
	}

	.contactUs {
		margin-top: -80px;
		font-size: 12px;
	}
	p.privacy {
		font-size: 12px;
	}

	.telephone {
		margin-bottom: -100px;
	}

	.address {
		margin-bottom: -100px;
	}

	.email {
		margin-bottom: -100px;
	}
}

.telephone {
	width: 33.3%;
	align-items: center;
}
.telephone label {
	margin-left: 10px;
}

.address {
	width: 33.3%;
	align-items: center;
}

.address label {
	margin-left: 10px;
}
.email {
	width: 33.3%;
	align-items: center;
}

.email label {
	margin-left: 10px;
}
.privacy {
	font-size: 18px;
}

