.navbar.navbar-dark {
	background: #2c2f48 !important;
}

.navbar-brand { padding: 5.5px 0 !important; }

.top_navbar > li > a {
	background: none;
	padding: 5px 15px;
	display: flex;
	align-items: center;
	color: #fff;
	border: none;
	transition: 0.3s all;
	cursor: pointer;
}

.top_navbar > li > a:hover,
.top_navbar > li.active > a { opacity: 1; text-decoration: none; }

.media-body p { font-size: 15px; font-family: 'Open Sans', sans-serif; }

.contanct-block { font-family: 'Open Sans', sans-serif; text-align: center; margin-bottom: 20px; }
.contanct-block *,
footer#footer,
footer#footer *:not(i.fab) { font-family: 'Open Sans', sans-serif; }

.contanct-block > .contact-header > span { font-size: 108px; margin-bottom: 10px; }
footer#footer { background-color: #d4ecff; color: #000; padding: 20px; }
.privacy_user a { color: #222; font-weight: 700; font-size: 24px; line-height: 1.55; text-decoration: underline; }
.contanct-block > .contact-body { font-size: 18px; font-weight: 700; }
header .after-h1:last-child { margin-bottom: 20px; }
.discount {
	color: #fff;
	font-size: 25px;
	font-family: 'Open Sans';
	line-height: 1.55;
	font-weight: 600;
	background-position: center center;
	border-color: transparent;
	border-style: solid;
	margin-bottom: 30px;
}

.way-point {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(100% - 2px);
	display: flex;
	cursor: pointer;
	fill: #2a293a;
}

.way-point > svg { fill: inherit; }
.way-point svg path { fill: inherit; }
.audit-block { margin-bottom: 40px; position: relative; }
.audit-circle { width: 4px; height: 4px; border-radius: 30px; background-color: #FFEC17; }
.audit-circles {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	position: absolute;
	top: 22%;
	left: -20px;
	width: 100%;
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.audit-block .audit-image { text-align: center; margin-bottom: 10px; }
.audit-block .audit-image img {
	width: 100px;
	height: 100px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.audit-block .audit-caption{
	text-align: center;
	font-family: 'Open Sans',Arial,sans-serif;
	font-weight: 600;
	color: #fff;
	letter-spacing: 2.5px;
}

@media(max-width: 768px) {
	.audit-circles { display: none; }
}

@media(min-width: 992px) {
	header{ height: 85vh; }
}

.contact_links li a { font-size: 20px; }

.telegram_link { font-size: 60px; color: #0088cc; transition: all 200ms ease-in-out; }
.telegram_link:hover { color: #39ADE6; }



.navbar.fixed-bottom.navbar.navbar-dark { border-top-left-radius: 15px; border-top-right-radius: 15px; }
.navbar.fixed-bottom ul li { margin: 0 6px; }
.navbar.fixed-bottom ul li a.nav-link span.super_icon {
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	transition: 150ms ease-in-out;
}
.navbar.fixed-bottom ul li.nav-item.active a.nav-link,
.navbar.fixed-bottom ul li.nav-item.active a.nav-link span.super_icon { color: #ffb23f; }
.navbar.fixed-bottom ul li a.nav-link {
	transition: 150ms ease-in-out;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}

.blob {
	transform: scale(1);
	animation: pulse 2s infinite;
}


@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.15, 1.15, 1.15);
		transform: scale3d(1.15, 1.15, 1.15);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.15, 1.15, 1.15);
		transform: scale3d(1.15, 1.15, 1.15);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}