	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans', sans-serif;
	}

	.container {
	max-width: 1425px;
	margin: 0 auto;
	}

	ul,
	li {
	list-style: none;
	}

	a {
	text-decoration: none;
	}

	.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
	}

	.menu-toggle span {
	width: 30px;
	height: 2px;
	background: #a82323;
	transition: 0.3s;
	}

	@media (max-width: 992px) {
	.menu-toggle {
		display: flex;
	}

	header {
		padding: 0 20px;
		height: 60px;
	}

	nav#main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 1000;
		transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
	}

	nav#main-nav.active {
		right: 0;
	}

	nav#main-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		width: 100%;
	}

	nav#main-nav li {
		width: 100%;
		text-align: center;
		position: relative;
	}

	nav#main-nav a {
		font-size: 15px;
		letter-spacing: 2px;
	}

	.submenu {
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
		width: 100%;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: none !important;
		background: transparent !important;
		display: none;
		padding: 10px 0;
	}

	.submenu a {
		font-size: 16px !important;
		opacity: 0.6;
		padding: 5px 0 !important;
		text-transform: none;
	}

	nav li::after,
	nav a::after {
		display: none !important;
	}
	}

	header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	transition: background 0.3s ease, color 0.3s ease;
	}

	header.dark {
	background: transparent;
	color: #fff;
	}
	header.light {
	background: rgba(255, 255, 255, 0.95);
	color: #000;
	}

	.logo {
	font-weight: bold;
	letter-spacing: 2px;
	}

	@media (max-width: 550px) {
	header {
		justify-content: start;
	}

	.logo {
		padding: 10px;
	}

	.header-logo {
		width: 175px;
	}
	}

	/* ================= NAV ================= */
	nav ul {
	list-style: none;
	display: flex;
	gap: 36px;
	}

	nav li {
	position: relative;
	}

	nav a {
	position: relative;
	color: inherit;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 500;
	padding: 10px 0;
	text-transform: uppercase;
	}

	nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
	}

	nav a:hover::after {
	width: 100%;
	}

	/* hover bridge */
	nav li::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 18px;
	}

	body.no-slider-page header.dark {
	background: #ffffff !important;
	color: #000000 !important;
	position: fixed;
	}

	body.no-slider-page header.dark nav a {
	color: #000000 !important;
	}

	body.no-slider-page .tapes-subnav {
	margin-top: 0;
	}

	body.no-slider-page header.dark .submenu {
	background: #ffffff !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid #eee;
	}

	body.no-slider-page header.dark .submenu a {
	color: #333333 !important;
	text-transform: uppercase;
	padding: 12px 20px !important;
	border-bottom: 1px solid #f0f0f0;
	}

	body.no-slider-page header.dark .submenu a:last-child {
	border-bottom: none;
	}

	body.no-slider-page header.dark .submenu a:hover {
	background: #f8f8f8;
	color: #a82323 !important;
	}

	@media (max-width: 992px) {
	.tapes-subnav {
		top: 60px;
		padding: 5px 0;
	}

	.tapes-subnav ul {
		justify-content: flex-start;
		overflow-x: auto;
		white-space: nowrap;
		padding: 10px 15px;
		-webkit-overflow-scrolling: touch;
	}

	.tapes-subnav ul li {
		margin: 0 10px;
		flex: 0 0 auto;
	}

	.tapes-subnav ul li a {
		font-size: 11px !important;
	}
	}
	/* ================= SUBMENU ================= */
	.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: rgba(10, 28, 38, 0.95);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	}

	header.light .submenu {
	background: #fff;
	}

	.submenu a {
	display: block;
	padding: 12px 22px;
	font-size: 12px;
	letter-spacing: 1px;
	}

	nav li:hover > .submenu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	}

	/* ================= SEARCH ================= */
	.search-btn {
	cursor: pointer;
	font-size: 16px;
	}

	.search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 28, 38, 0.96);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	}

	.search-overlay input {
	width: 60%;
	font-size: 34px;
	background: none;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	outline: none;
	padding: 10px;
	}

	/* ================= HERO ================= */
	.hero-section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	background: url('../img/bg.png') no-repeat center center/cover;
	font-family: 'Inter', sans-serif;
	background-color: #a82323;
	}

	.hero-section-pro {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	background: url('../img/bg.png') no-repeat center center/cover;
	font-family: 'Inter', sans-serif;
	background-color: #a82323;
	}

	.content-wrapper {
	max-width: 800px;
	padding: 20px;
	}

	.hero__title {
	font-family: 'Impact', sans-serif;
	font-size: 120px;
	letter-spacing: 5px;
	margin: 0;
	text-transform: uppercase;
	}

	.hero__subtitle {
	font-family: 'Times New Roman', serif;
	font-style: italic;
	font-size: 32px;
	margin-top: -10px;
	}

	.hero__divider {
	width: 400px;
	border: 0;
	border-top: 2px solid rgba(255, 255, 255, 0.8);
	margin: 20px auto;
	}

	.hero__description {
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 40px;
	}

	.button-group {
	display: flex;
	gap: 30px;
	justify-content: center;
	}

	.hero-btn {
	text-decoration: none;
	color: white;
	padding: 15px 40px;
	font-size: 18px;
	border: 4px solid #ccc;
	border-radius: 12px;
	background: linear-gradient(to bottom, #b32121, #7a1414);
	transition: transform 0.2s, box-shadow 0.2s;
	min-width: 200px;
	font-weight: 400;
	font-family: Noto Sans;
	}

	.hero-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	}

	@media (max-width: 768px) {
	.hero__title {
		font-size: 80px;
	}

	.hero__subtitle {
		font-size: 24px;
	}

	.hero__divider {
		width: 80%;
	}

	.hero__description {
		font-size: 20px;
	}
	}

	@media (max-width: 480px) {
	.hero-section {
		padding: 80px 10px !important;
		height: auto;
		min-height: 100vh !important;
	}

	.hero__title {
		font-size: 90px;
		letter-spacing: 2px;
	}

	.hero__subtitle {
		font-size: 20px;
	}

	.hero__description {
		font-size: 18px;
		line-height: 1.4;
	}

	.button-group {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}

	.hero-btn {
		width: 100%;
		max-width: 280px;
		padding: 12px 20px;
	}
	}

	/* ================= PRODUCTS ================= */
	.garniture-card {
	background-color: #a31f1f;
	padding: 140px 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	}

	.image-inner {
	position: relative;
	display: inline-block;
	margin-top: 120px;
	}

	.border-top {
	position: absolute;
	z-index: 1000;
	top: -93px;
	}

	.border-bottom {
	position: absolute;
	z-index: 1000;
	top: 235px;
	}

	.border-left {
	position: absolute;
	top: 75px;
	left: -177px;
	background-position: center;
	z-index: 1000;
	}

	.border-pic-cnt {
	width: 515px;
	height: 200px;
	}

	.border-pic {
	width: 383px;
	height: 200px;
	transform: rotate(90deg);
	}

	.border-right {
	position: absolute;
	top: 75px;
	left: 303px;
	background-position: center;
	z-index: 1000;
	}

	.main-img {
	display: block;
	max-width: 500px;
	height: 350px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1;
	}

	section.products.hero-section {
	height: auto;
	padding: 100px 0;
	display: block;
	background-color: #a82323;
	}

	.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	padding: 20px;
	}

	.product-pic {
	max-width: 500px;
	height: 350px;
	object-fit: contain;
	margin-bottom: 30px;
	}

	.product-header {
	display: block;
	text-align: center;
	margin: 0 auto 5px auto;
	width: 100%;
	max-width: 400px;
	background: linear-gradient(to right, #999, #fff, #999);
	color: #333 !important;
	padding: 15px 0;
	border-radius: 8px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	/* margin-top: 20px; */
	}

	.card-content {
		margin-top: -40px;
	}

	.garniture-card .card-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1425px;
	justify-content: flex-start;
	gap: 40px;
	}

	.garniture-list li {
	color: white;
	font-size: 1.2rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	}

	.garniture-img-wrapper {
	flex: 1;
	display: flex;
	/* justify-content: center; */
	align-items: center;
	}

	.garniture-img-wrapper .main-img {
	max-width: 500px;
	height: 350px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	}

	@media (max-width: 992px) {
	.garniture-card .card-content {
		flex-direction: column;
		text-align: center;
	}

	.garniture-list li {
		justify-content: center;
	}

	.garniture-img-wrapper {
		margin-top: 40px;
		width: 100%;
	}
	}

	@media (max-width: 650px) {
	.product-pic {
		width: 100%;
		height: 250px;
	}

	.card-content {
		margin-top: 0;
	}

	.garniture-card,
	.aspiration-card {
		padding: 60px 15px !important;
	}

	.image-inner {
		margin-top: 0;
	}
	}
	/* ================= ASPIRATION ================= */
	.aspiration-card {
	background-color: #a31f1f;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding: 140px 0;
	animation: slideIn 0.8s ease-out;
	}

	.card-column {
	flex-direction: column;
	align-items: center;
	}

	.aspiration-coated-pic img {
	max-width: 550px;
	}

	.fa-tape {
	color: #fd5f00;
	}

	.card-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	}

	/* .badge {
		background: linear-gradient(to right, #999, #fff, #999);
		color: #333;
		padding: 20px 80px;
		border-radius: 8px;
		font-weight: 500;
		width: 100%;
		max-width: 350px;
		font-size: 16px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
		} */

	.product-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 20px;
	}

	.product-list li {
	display: flex;
	align-items: center;
	color: white;
	font-size: 16px;
	font-weight: 800;
	text-align: left;
	}

	.product-list i {
	margin-right: 15px;
	font-size: 1.2em;
	}

	.product-list li,
	.image-wrapper,
	.badge {
	will-change: transform, opacity;
	}

	@media (max-width: 1425px) {
		.about-text-block {
			margin-top: 30px;
		}
	}

	@media (max-width: 1024px) {
	.main-img {
		width: 100%;
		max-width: 450px !important;
		height: auto !important;
	}

	.border__outline {
		display: none;
	}

	.product-list li {
		font-size: 1.2rem;
	}

	.card-content {
		flex-direction: column;
	}
	}

	@media (max-width: 768px) {
	.aspiration-coated-pic img {
		width: 100%;
	}

	.product-list {
		align-items: center;
		gap: 20px;
		margin-bottom: 30px;
	}

	.product-list li {
		justify-content: center;
		font-size: 1.1rem;
	}

	.image-wrapper {
		margin: 10px 0;
	}

	.main-img {
		width: 100%;
		max-width: 100%;
		height: auto !important;
	}
	}

	@media (max-width: 550px) {
	.aspiration-coated-pic img,
	.main-img {
		width: 350px;
	}

	.card-content {
		margin-top: 15px;
	}

	.badge {
		margin: 60px 0 auto !important;
		padding: 15px 25px !important;
		font-size: 16px !important;
		text-wrap: nowrap !important;
	}
	}
	/* ================= ABOUT ================= */
	.about-section {
	background: url('../img/bg.png') no-repeat center center/cover;
	background-color: #a82323;
	padding: 100px 20px;
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
	}

	.about-section .container {
	max-width: 1100px;
	margin: 0 auto;
	}

	.about-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	}

	.about-content .badge {
	background: linear-gradient(to right, #999, #fff, #999);
	color: #333;
	padding: 12px 40px;
	border-radius: 8px;
	font-weight: 700;
	margin-bottom: 40px;
	display: inline-block;
	}

	.about-p {
	color: white;
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 20px;
	font-weight: 300;
	max-width: 900px;
	}

	.machine-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 40px 0;
	width: 100%;
	}

	.machine-card {
	padding: 15px;
	}

	.machine-card img {
	width: 100%;
	height: 280px;
	object-fit: contain;
	}

	.machine-grid .machine-card:first-child img {
	height: 300px;
	}

	.about-footer-text {
	color: white;
	font-size: 1.5rem;
	font-style: italic;
	margin-top: 40px;
	font-weight: 400;
	}

	@media (max-width: 850px) {
	.machine-grid {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.machine-card img {
		max-width: 500px;
	}

	.machine-grid .machine-card:first-child img {
		transform: translateX(-60px);
	}

	.about-p {
		font-size: 1.1rem;
	}

	.about-footer-text {
		font-size: 1.2rem;
	}
	}

	@media (max-width: 550px) {
		.about-text-block {
			margin-top: 30px;
		}
	}

	@media (max-width: 480px) {
	.about-section {
		padding: 70px 15px;
	}

	.about-content .badge {
		width: 100%;
		padding: 10px;
	}
	}

	@media (max-width: 550px) {
	.machine-grid .machine-card:first-child img {
		transform: translateX(-125px);
		width: auto;
	}

	.machine-grid .machine-card:nth-child(2) img {
		transform: translateX(-59px);
		width: 350px;
	}

	.machine-card {
		height: 215px;
	}

	.about-text-block {
		margin-bottom: -50px;
	}
	}

	@media (max-width: 380px) {
	.machine-grid .machine-card:first-child img {
		transform: translateX(-140px);
	}

	.machine-grid .machine-card:nth-child(2) img {
		transform: translateX(-80px);
	}
	}

	/* ================= RANGE ================= */
	.range-section {
	background: url('../img/bg.png') no-repeat center center/cover;
	font-family: 'Inter', sans-serif;
	background-color: #a82323;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	text-align: center;
	padding-top: 120px;
	}

	.range-title {
	background: linear-gradient(to right, #999, #fff, #999);
	color: #333;
	padding: 12px 40px;
	border-radius: 8px;
	font-weight: 500;
	margin-bottom: 40px;
	display: inline-block;
	}

	.range-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 80px;
	flex-wrap: wrap;
	margin-top: 80px;
	}

	.range-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 220px;
	}

	.range-pic {
	width: 250px;
	height: auto;
	}

	.range-text {
	background: linear-gradient(to right, #999, #fff, #999);
	color: #333;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 500;
	margin-bottom: 40px;
	display: inline-block;
	}

	@media (max-width: 1024px) {
	.range-container {
		gap: 60px;
	}

	.range-title {
		font-size: 24px;
	}
	}

	@media (max-width: 768px) {
	.range-container {
		gap: 30px;
	}

	.range-pic {
		width: 100%;
	}

	.range-card {
		width: 100%;
		max-width: 300px;
	}

	.range-title {
		font-size: 22px;
		padding: 10px 30px;
	}

	.range-text {
		font-size: 16px;
		padding: 12px 20px;
	}
	}

	@media (max-width: 550px) {
		.range-container {
			margin-top: 30px;
		}
	}

	@media (max-width: 480px) {
	.range-title {
		font-size: 18px;
	}

	.range-text {
		font-size: 14px;
	}
	}

	/* ================= HERO ================= */
	.advantages__contact {
	position: relative;
	z-index: 2;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* padding-left: 140px; */
	max-width: 100%;
	background: url('../img/bg.png') no-repeat center center/cover;
	background-color: #a82323;
	}

	.hero-content {
	z-index: 2;
	}

	.advantages__contact-title {
	color: #fff;
	font-size: 56px;
	letter-spacing: 4px;
	margin-bottom: 24px;
	font-family: Noto Sans;
	text-transform: uppercase;
	text-shadow: -3px 3px 50px rgba(95, 95, 95, 0.69);
	}

	.hero__text {
	color: #fff;
	font-family: Noto Sans;
	font-size: 14px;
	letter-spacing: 2px;
	opacity: 0.8;
	text-shadow: -3px 3px 50px rgba(95, 95, 95, 0.69);
	}

	.hero__contact-title {
	font-size: 45px;
	font-weight: 500;
	margin-bottom: 24px;
	font-family: Open Sans;
	text-transform: uppercase;
	text-shadow: -3px 3px 50px rgba(95, 95, 95, 0.69);
	}

	.contact-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	}

	.advantages-link a {
	color: #fff;
	display: inline-block;
	margin-top: 10px;
	font-size: 17px;
	font-weight: 300;
	margin-bottom: 24px;
	line-height: 35px;
	font-family: Noto Sans;
	transition: 0.3s ease;
	}

	.advantages-link a:hover {
	color: #e8e9ea;
	}

	.advantages-btn {
	margin-top: 30px;
	}

	.advantages-btn a {
	color: #fff;
	display: inline-block;
	margin-top: 10px;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: Noto Sans;
	border: 2px solid #fff;
	background: transparent;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 10px 15px;
	transition: 0.3s ease;
	}

	.advantages-btn a:hover {
	background: #a82323;
	border-color: #e0c5c5;
	}

	.company-name {
	font-size: 20px;
	font-weight: 700;
	font-family: Noto Sans;
	color: #fff;
	text-transform: uppercase;
	}

	@media (max-width: 768px) {
	.contact-hero {
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
		max-width: 100%;
	}

	.advantages__contact-title {
		font-size: 32px;
		letter-spacing: 2px;
	}

	.nav-arrow {
		top: auto;
		bottom: 30px;
		transform: none;
	}

	.nav-arrow.left {
		left: 20px;
	}
	.nav-arrow.right {
		right: 20px;
	}
	}

	@media (max-width: 550px) {
	.advantages__contact-title {
		font-size: 20px;
	}

	.advantages-btn a {
		font-size: 14px;
		padding: 10px;
	}

	.advantages-link a {
		font-size: 14px;
	}
	}
	/* ================= footer ================= */
	#footer {
	background: url('../img/bg.png') no-repeat center center/cover;
	background-color: #a82323;
	padding-bottom: 50px;
	padding-top: 50px;
	color: #fff;
	}

	#footer .container {
	margin-bottom: 50px;
	max-width: 1200px;
	}

	.footer__wrapper {
	display: flex;
	justify-content: space-around;
	align-items: center;
	}

	.footer__title {
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
	}

	.footer__column li {
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
	}

	.footer__column a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
	color: #fff;
	transition: 0.3s ease;
	}

	.footer__column a:hover {
	color: #dfdfdf;
	}

	@media (max-width: 1200px) {
	.footer {
		margin: 0 15px;
	}
	}

	@media (max-width: 550px) {
	.footer__wrapper {
		flex-direction: column;
		gap: 30px;
	}

	.footer__title {
		font-size: 16px;
	}
	}

	/*  */
	#privacy .container {
	max-width: 1200px !important;
	}

	.privacy {
	padding-top: 120px;
	}

	.privacy__title {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	font-family: Noto Sans;
	margin-top: 20px;
	}

	.privacy__title-span {
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	font-family: Noto Sans;
	padding-top: 50px;
	}

	.privacy__text {
	color: #d1d1d1;
	font-size: 13px;
	font-weight: 500;
	font-family: Noto Sans;
	margin-top: 20px;
	}

	.privacy__text ul li {
	margin-top: 10px;
	}

	#privacy-section .container {
	max-width: 1200px;
	}

	#privacy {
	background: url('../img/bg.png') no-repeat center center/cover;
	font-family: 'Inter', sans-serif;
	background-color: #a82323;
	}

	#privacy-section {
	color: #fcfcfc;
	background: url('../img/bg.png') no-repeat center center/cover;
	font-family: 'Inter', sans-serif;
	background-color: #a82323;
	}

	.privacy-main-title {
	color: #0b5e7d;
	font-family: 'Noto Sans', sans-serif;
	font-size: 28px;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
	}

	.privacy-table {
	background: #fff;
	border: 1px solid #e0e0e0;
	box-shadow: none;
	flex: 1 1 100%;
	}

	.privacy-table th {
	background-color: #f8f8f8;
	border-right: 1px solid #eee;
	color: #666;
	font-weight: 600;
	}

	.privacy-table td {
	border-right: 1px solid #eee;
	vertical-align: middle;
	}

	.privacy-table td strong {
	background: #f0f0f0;
	padding: 10px 15px;
	display: inline-block;
	border-radius: 2px;
	font-weight: 500;
	color: #555;
	}

	.badge {
	display: block;
	text-align: center;
	margin: 50px auto 50px auto;
	width: 100%;
	max-width: 400px;
	background: linear-gradient(to right, #999, #fff, #999);
	color: #333 !important;
	padding: 15px 0;
	border-radius: 8px;
	font-weight: 500;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	position: relative;
	}
	.privacy-table th:last-child,
	.privacy-table td:last-child {
	border-right: none;
	}

	.privacy-link a {
	display: inline-block;
	margin-top: 25px;
	color: #7ed8ff;
	font-size: 14px;
	font-family: Noto Sans;
	font-weight: 500;
	transition: 0.2s ease;
	}

	.privacy-link a:hover {
	color: #28a9e0;
	text-decoration: underline;
	}

	.browser-links-wrapper .container {
	max-width: 1200px;
	}

	.browser-links-wrapper {
	margin-top: 40px;
	background: #fff;
	border: 1px solid #ebebeb;
	}

	.browser-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 35px;
	}

	.browser-table td {
	padding: 15px 20px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
	color: #888;
	}

	.browser-table tr:last-child td {
	border-bottom: none;
	}

	.browser-table td:first-child a {
	color: #25aae1;
	text-decoration: none;
	transition: 0.3s;
	}

	.browser-table td:first-child a:hover {
	text-decoration: underline;
	}

	.browser-table td:last-child {
	color: #999;
	font-size: 13px;
	}

	@media (max-width: 768px) {
	.browser-table td {
		display: block;
		width: 100%;
	}
	.browser-table td:last-child {
		padding-top: 0;
		word-break: break-all;
	}
	}

	@media (max-width: 1200px) {
	.privacy,
	.privacy-wrapper,
	#privacy-section {
		padding: 100px 15px;
		overflow-y: auto;
		font-size: 13px;
	}
	}

	@media (max-width: 550px) {
	.privacy__title-span {
		font-size: 14px;
	}

	.privacy__text {
		font-size: 11px;
	}

	.privacy-main-title {
		font-size: 20px;
	}
	}
