	:root {
	--primary: #6c5ce7;
	--primary-dark: #5649c0;
	--secondary: #00cec9;
	--dark: #2d3436;
	--light: #f5f6fa;
	--accent: #fd79a8;
	--glass: rgba(255, 255, 255, 0.15);
	--glass-border: rgba(255, 255, 255, 0.2);
	--gradient: linear-gradient(135deg, var(--primary), var(--secondary));
	--h2-font-size: 2.5rem; 
	--h3-font-size: 1.8rem;  
	--h4-font-size: 1.5rem;  
	}

	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

	body {
	font-family: 'Montserrat', sans-serif;
	background-color: #0f0f1a;
	color: var(--light);
	overflow-x: hidden;
	line-height: 1.6;
	background-image: 
	radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 20%),
	radial-gradient(circle at 90% 80%, rgba(0, 206, 201, 0.1) 0%, transparent 20%);
	}

	#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
	}

	.featured-label {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 12px;
	background: linear-gradient(90deg, #ff4d4d, #f957a1);
	color: white;
	font-weight: bold;
	font-size: 12px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(255, 77, 77, 0.7);
	animation: glowing 2s infinite;
	transform: translateY(-50%);
	z-index: 1;
	text-transform: uppercase;
	}

	@keyframes glowing {
	0% { box-shadow: 0 0 5px rgba(255, 77, 77, 0.7); }
	50% { box-shadow: 0 0 20px rgba(255, 77, 77, 0.9); }
	100% { box-shadow: 0 0 5px rgba(255, 77, 77, 0.7); }
	}

	html {
	scroll-behavior: smooth;
	}

	h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	}

	h2 {
	font-size: var(--h2-font-size);
	}

	.card h3 {
	font-size: var(--h3-font-size);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--light);
	position: relative;
	padding-bottom: 0.5rem;
	}

	.navbar-container .logo span {
	margin-left: -45px; 
	font-size: 1.1rem; 
	font-weight: 600;  
	}

	.card h4 {
	font-size: var(--h4-font-size);
	font-weight: 600;
	margin: 1.5rem 0 1rem;
	color: var(--light);
	position: relative;
	padding-bottom: 0.5rem;
	}

	p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	}

	a {
	color: var(--secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	}

	a:hover {
	color: var(--accent);
	}

	.text-gradient {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	}

	.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.btn-primary {
	background: var(--gradient);
	color: white;
	}

	.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
	}

	.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	}

	.btn-outline:hover {
	background: var(--primary);
	color: white;
	}

	.card {
	background: var(--glass);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
	}

	.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	}

	.card:hover::before {
	transform: translateX(100%);
	}

	.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	}

	section {
	padding: 100px 0;
	position: relative;
	}

	.section-title {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	}

	.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--gradient);
	margin: 20px auto;
	border-radius: 2px;
	}

	.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 1000;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(15, 15, 26, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.navbar.scrolled {
	padding: 15px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	}

	.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	}

	.logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	}

	.logo img {
	height: 80px;
	margin-right: 10px;
	}

	.nav-links {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px; 
	}

	.nav-links li {
	position: relative;
	}

	.nav-links a {
	color: white;
	font-weight: 500;
	text-decoration: none;
	font-size: 16px; 
	padding: 5px 2px; 
	white-space: nowrap; 
	transition: all 0.3s ease;
	}

	.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -3px; 
	left: 8px;
	width: calc(100% - 16px); 
	height: 1px; 
	background: var(--secondary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	}

	.nav-links a:hover::after {
	transform: scaleX(1);
	}

	.language-switcher {
	margin-left: 30px;
	position: relative;
	z-index: 1001;
	}

	.language-dropdown {
	position: relative;
	}

	.language-toggle {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 8px 15px;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	}

	.language-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	}

	.language-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: rgba(15, 15, 26, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	padding: 5px 0;
	min-width: 150px;
	display: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.language-menu.active {
	display: block;
	}

	.language-option {
	padding: 8px 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	}

	.language-option:hover {
	background: rgba(108, 92, 231, 0.3);
	}

	.hamburger {
	display: none;
	cursor: pointer;
	}

	.hamburger div {
	width: 25px;
	height: 3px;
	background: white;
	margin: 5px;
	transition: all 0.3s ease;
	}

	.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	}

	.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
	}

	.hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	animation: fadeInDown 1s ease;
	}

	.hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	animation: fadeInUp 1s ease 0.3s both;
	}

	.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	animation: fadeInUp 1s ease 0.6s both;
	}

	.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.3;
	}

	.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

	.dr-orange {
	color: #FFA500 !important; 
	}
	
	.dr-orange2 {
	color: #FFA500 !important; 
	font-size: 1.5rem;
	}

	.floating {
	will-change: transform;
	animation: floating 6s ease-in-out infinite;
	}

	@keyframes floating {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
	100% { transform: translateY(0px); }
	}

	.about-container {
	display: flex;
	align-items: center;
	gap: 50px;
	}

	.about-image {
	flex: 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transform: perspective(1000px) rotateY(-10deg);
	transition: all 0.5s ease;
	}

	.about-image:hover {
	transform: perspective(1000px) rotateY(0deg);
	}

	.about-image img {
	width: 100%;
	height: auto;
	display: block;
	}

	.about-content {
	flex: 1;
	}

	.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 21px;
	}

	.feature-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	}

	.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	}

	.case-card {
	background: #1a1a2e;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	}

	.case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	}
	
	.single-card-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

	.metrics-box {
	padding: 20px;
	background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
	display: flex;
	gap: 15px;
	}

	.metric {
	flex: 1;
	text-align: center;
	}

	.metric-value {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	}

	.case-screenshot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-bottom: 1px solid #333;
	}

	.case-details {
	padding: 20px;
	}

	.case-stats li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 15px;
	}

	.case-stats li:before {
	content: "•";
	color: #fc00ff;
	position: absolute;
	left: 0;
	}

	.case-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 1000;
	overflow-y: auto;
	}

	.modal-content {
	position: relative;
	max-width: 900px;
	margin: 50px auto;
	background: #1a1a2e;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 50px rgba(0,0,0,0.5);
	}

	.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
	}

	.close-modal:hover {
	background: rgba(255,255,255,0.2);
	transform: rotate(90deg);
	}

	.close-modal svg {
	width: 20px;
	height: 20px;
	color: #fff;
	}

	.modal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	}

	.modal-image-container {
	position: relative;
	max-height: 70vh;
	min-height: 400px;
	border-radius: 8px;
	overflow: auto; 
	}

	.image-wrapper {
	display: inline-block;
	min-width: 100%;
	padding: 10px;
	}

	.modal-image {
	width: 100%;
	height: auto;
	display: block;
	}

	.difference-row td {
	font-weight: 600;
	color: #34c759;
	}

	.difference-value {
	background: rgba(52, 199, 89, 0.15) !important;
	color: #34c759 !important;
	}

	.badge.difference-value::before {
	content: '▲';
	margin-right: 5px;
	font-size: 0.8em;
	}

	.modal-stats-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	}
	
	.dr-insight-card {
	background-color: #1a1a2e;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	max-width: 600px;
	margin: 40px auto;
	border-left: 4px solid #ff8a00;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dr-insight-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.dr-icon {
	font-size: 40px;
	flex-shrink: 0;
}

.dr-content h3 {
	margin: 0 0 10px 0;
	color: #2c3e50;
	font-size: 20px;
}

.highlight {
	background: #1a1a2e;
	padding: 2px 5px;
	border-radius: 4px;
}

.dr-stats {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 15px;
	gap: 20px;
}

.stat {
	flex: 1 1 100px;
	text-align: center;
}


.stat .value {
	font-weight: bold;
	font-size: 18px;
	color: #ff8a00;
}

.stat .label {
	font-size: 12px;
	color: #7f8c8d;
}

@media (max-width: 600px) {
	.dr-insight-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		padding: 15px;
		margin: 20px 10px;
	}

	.dr-icon {
		font-size: 32px;
	}

	.dr-content h3 {
		font-size: 18px;
	}

	.dr-stats {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.stat {
		text-align: left;
	}
}

	.stats-icon {
	width: 24px;
	height: 24px;
	color: #6e00ff;
	}

	.stats-highlights {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-bottom: 25px;
	}

	.highlight-card {
	background: rgba(15,15,26,0.8);
	padding: 15px;
	border-radius: 8px;
	border-left: 3px solid #6e00ff;
	}

	.highlight-value {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 5px;
	background: linear-gradient(90deg, #00dbde, #fc00ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	}

	.highlight-label {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
	}

	.stats-table-container {
	margin-bottom: 25px;
	}

	.stats-table {
	width: 100%;
	border-collapse: collapse;
	}

	.stats-table th {
	text-align: left;
	padding: 12px;
	background: rgba(110,0,255,0.2);
	color: #b388ff;
	font-weight: 600;
	}

	.stats-table td {
	padding: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	}

	.badge {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 4px;
	font-weight: 600;
	}

	.start-value {
	background: rgba(255,59,48,0.15);
	color: #ff3b30;
	}

	.end-value {
	background: rgba(52,199,89,0.15);
	color: #34c759;
	}

	.stats-note {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.5);
	margin-top: 20px;
	}

	.stats-note svg {
	flex-shrink: 0;
	color: #6e00ff;
	}

	.card {
	position: relative;
	padding: 2rem;
	height: 100%;
	}

	.alternative-option {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.custom-point-list {
	list-style: none; 
	padding-left: 0; 
	}

	.custom-point-list li {
	position: relative;
	padding-left: 20px; 
	margin-bottom: 8px;
	}

	.custom-point-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background: #6e00ff; 
	border-radius: 50%;
	transform: translateY(-50%);
	}

	.gradient-3d-btn {
	position: relative;
	background: #0f0c29;
	border: none;
	color: white;
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s, box-shadow 0.3s;
	}

	.hover-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	background-size: 200% 200%;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.5s;
	}

	.gradient-3d-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(110, 0, 255, 0.4);
	}

	.gradient-3d-btn:hover .hover-gradient {
	opacity: 1;
	animation: gradientFlow 3s ease infinite;
	}

	@keyframes gradientFlow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
	}

	.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	}

	.team-member {
	text-align: center;
	}

	.team-member img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 20px;
	border: 5px solid var(--glass);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	}

	.team-member:hover img {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	}

	.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	}

	.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	transition: all 0.3s ease;
	}

	.social-links a:hover {
	background: var(--primary);
	transform: translateY(-3px);
	}

	.faq-item {
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	}

	.faq-question {
	background: var(--glass);
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	transition: all 0.3s ease;
	}

	.faq-question:hover {
	background: rgba(108, 92, 231, 0.2);
	}

	.faq-question.active::after {
	content: '-';
	}

	.faq-answer {
	max-height: 0;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	transition: max-height 0.3s ease;
	}

	.faq-answer-content {
	padding: 20px;
	}

	.partners {
	background: rgba(0, 0, 0, 0.2);
	padding: 80px 0;
	}

	.partners-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	}

	.partners-slider {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	}

	.partner-card {
	width: 250px; 
	min-height: 320px; 
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	}

	.partner-link:hover::after {
	display: none !important;
	}

	.partner-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	}

	.partner-logo {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: #f9f9f9;
	}

	.partner-logo img {
	max-height: 80px;
	max-width: 80%;
	object-fit: contain;
	}

	.partner-info {
	padding: 15px;
	flex-grow: 1; 
	display: flex;
	flex-direction: column;
	}

	.partner-info h3 {
	margin: 0 0 10px;
	font-size: 18px;
	}

	.partner-info p {
	margin: 0;
	flex-grow: 1;
	display: block;
	overflow: visible;
	text-overflow: clip;
	-webkit-line-clamp: unset;
	}

	.partner-link {
	color: var(--secondary);
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
	}

	.partner-link:hover {
	color: var(--secondary);
	text-decoration: underline;
	}

	.partner-card:hover:after {
	content: attr(href);
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0,0,0,0.8);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	z-index: 2;
	}

	.partner-link:hover .partner-card {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.payment-methods {
	background: rgba(0, 0, 0, 0.0); 
	padding: 40px 0;
	text-align: center;
	}

	.payment-methods h3 {
	margin-bottom: 30px;
	}

	.payment-icons {
	display: flex;
	justify-content: center;
	align-items: center; 
	flex-wrap: wrap;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
	}

	.payment-icon {
	width: 80px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative; 
	}

	.payment-icon img {
	max-width: 90%;
	max-height: 90%;
	width: auto; 
	height: auto;
	object-fit: contain; 
	opacity: 0.8;
	transition: filter 0.3s ease;
	}

	.payment-icon img[alt="МИР"] {
	transform: scale(1.2); 
	margin-top: 1px; 
	}

	.payment-icon img[alt="Visa"] {
	margin-bottom: 2px; 
	transform: scale(1.6); 
	margin-top: 1px; 
	}
	
	.payment-icon img[alt="Volet (AdvCash)"] {
	margin-bottom: 2px; 
	transform: scale(1.4); 
	margin-top: 1px; 
	}

	.payment-icon:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
	}

	.payment-icon:hover img {
	opacity: 1;
	filter: brightness(1.5) contrast(1.2);
	}

	footer {
	background: rgba(0, 0, 0, 0.3);
	padding: 50px 0 20px;
	position: relative;
	}

	.footer-logo {
	max-width: 500px;
	height: auto;
	position: relative;
	top: 125px;
	left: 220px;
	}

	.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	}

	.footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	display: inline-block;
	}

	.footer-links {
	text-align: right;
	margin-left: auto;
	margin-right: 20px; 
	}

	.footer-about {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-align: left;
	margin-right: auto;
	margin-left: 15px; 
	}

	.footer-about .footer-logo {
	font-size: 1.5rem;
	font-weight: bold;
	}

	.footer-about img.footer-logo-image {
	margin-top: 0px; 
	max-width: 550px; 
	height: auto; 
	}

	.footer-about .logo img {
	transform: scale(5.5); 
	margin-left: -90px; 
	margin-top: -20px; 
	}

	.footer-about .logo span {
	font-size: 1.5rem;
	margin-left: -10px; 
	}

	.footer-about p {
	margin-top: 13px; 
	}

	.footer-links h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
	}

	.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	}

	.footer-links ul li {
	margin-bottom: 10px;
	}

	.footer-links ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	}

	.footer-links ul li a:hover {
	color: #6c5ce7; 
	text-decoration: underline;
	}

	.footer-links li {
	margin-bottom: 10px;
	}

	.footer-links a {
	display: block; 
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	padding: 1px 0; 
	}

	.footer-links a:hover {
	color: white;
	padding-left: 5px;
	}

	.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	}

	.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: 0 5px 20px rgba(108, 92, 231, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	}

	.back-to-top.active {
	opacity: 1;
	visibility: visible;
	}

	.back-to-top:hover {
	transform: translateY(-5px);
	}

	@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
	100% { transform: translateY(0px); }
	}

	.animate-float {
	animation: float 6s ease-in-out infinite;
	}

	.price-converter {
	text-align: center;
	margin: 20px 0;
	display: none; 
	}

	html:not([lang="ru"]) .price-converter {
	display: block !important; 
	}

	.price-amount {
	font-size: 28px;
	font-weight: bold;
	}

	.image-link {
	cursor: zoom-in;
	display: block;
	}

	.modal-image {
	transition: transform 0.3s ease;
	}

	.image-link:hover .modal-image {
	transform: scale(1.02);
	}

	.nav-links .dropdown {
	position: relative;
	}

	.nav-links .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(40, 40, 40, 0.95); 
	filter: blur(0); 
	border-radius: 15px;
	overflow: hidden;
	min-width: 200px;
	z-index: 1000;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-links .dropdown-menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1); 
	z-index: -1; 
	}

	.nav-links .dropdown-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
	margin: 0; 
	}

	.nav-links .dropdown-menu li:last-child {
	border-bottom: none;
	}

	.nav-links .dropdown-menu a {
	display: block;
	padding: 8px 15px; 
	line-height: 1.2; 
	color: #fff !important; 
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); 
	font-weight: 500;
	transition: background 0.3s;
	}

	.nav-links .dropdown-menu a:hover {
	background: rgba(108, 92, 231, 0.2);
	}


	.nav-links .dropdown:hover .dropdown-menu {
	display: block;
	}

	.contact {
	display: flex;
	justify-content: center; 
	align-items: center; 
	min-height: 80vh; 
	padding: 60px 0;
	}

	.contact-content {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	max-width: 600px; 
	width: 100%;
	}

	.contact-card {
	background: var(--glass); 
	backdrop-filter: blur(12px); 
	border: 1px solid var(--glass-border); 
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	transition: all 0.3s ease;
	}

	.contact-card:hover {
	background: rgba(255, 255, 255, 0.2); 
	}

	.contact-card h3 {
	font-size: 1.75rem;
	margin-bottom: 15px;
	}

	.contact-card p {
	margin-bottom: 20px;
	color: var(--light); 
	}

	.contact-card .btn {
	display: inline-flex;
	align-items: center;
	background-color: #007bff;
	color: white;
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1rem;
	}

	.contact-card .btn i {
	margin-right: 10px;
	}

	.price-converter button {
	cursor: pointer;
	padding: 5px 15px;
	background: #6c5ce7;
	color: white;
	border-radius: 5px;
	transition: all 0.3s ease;
	position: relative;
	border: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
	}

	.price-converter button.active {
	background: #ff4d4d;
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
	color: white;
	padding: 5px 15px;
	border-radius: 5px;
	cursor: pointer;
	margin: 0 5px;
	transition: all 0.3s ease;
	border: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
	}

	.price-converter button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	border: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
	}

	.price-amount {
	transition: opacity 0.3s ease;
	}

	.price-converter:hover .price-amount {
	opacity: 0.8;
	}

	.pricing-cta-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100px;
	}

	.contact .container {
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 20px;
	}

	.contact-row {
	display: flex;
	justify-content: space-between;
	gap: 40px; 
	flex-wrap: wrap; 
	}

	.contact-content {
	flex: 1;
	min-width: 400px; 
	text-align: center;
	}

	.mobile-only {
	display: none !important;
	}

	li.dropdown .dropdown-menu {
	list-style-type: none;  
	padding: 0;             
	margin: 0;              
	}

	li.dropdown .dropdown-menu a {
	padding: 10px 15px;  
	display: block;      
	text-decoration: none; 
	}

	@media (max-width: 767px) {
	body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	}

	.navbar-container {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 0 10px !important;
	}

	.navbar-right-elements {
	position: relative;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	margin-left: auto !important;
	gap: 0 !important;
	width: 100px;
	min-width: fit-content;
	}

	.language-switcher {
	position: absolute !important;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1002;
	flex-shrink: 0 !important;
	margin: 0 !important;
	}

	.language-toggle {
	order: 3 !important;
	margin-left: 0 !important;
	flex-shrink: 0 !important;
	position: relative;
	z-index: 1002;
	}

	.hamburger {
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1003;
	flex-shrink: 0 !important;
	flex-direction: column;
	margin: 0 !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 40px;
	}

	.hamburger div {
	width: 20px !important;
	height: 2px !important;
	margin: 3px 0 !important;
	background: #fff !important;
	}

	.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	}

	.content-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	}

	.hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 20px;
	min-height: calc(100vh - высота навбара);
	}

	.hero h1 {
	margin-top: auto;
	padding: 0 15px;
	font-size: clamp(1.3rem, 5vw, 1.8rem);
	}

	.hero p {
	padding: 0 15px;
	margin-bottom: 20px;
	}
	}

	@media (min-width: 578px) and (max-width: 767px) {
	body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	}

	.navbar-container {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 0 10px !important;
	}

	.navbar-right-elements {
	position: relative;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	margin-left: auto !important;
	gap: 0 !important;
	width: 100px;
	min-width: fit-content;
	}

	.language-switcher {
	position: absolute !important;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1002;
	flex-shrink: 0 !important;
	margin: 0 !important;
	}

	.language-toggle {
	margin: 0 !important;
	flex-shrink: 0 !important;
	position: relative;
	z-index: 1002;
	}

	.hamburger {
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1003;
	flex-shrink: 0 !important;
	flex-direction: column;
	margin: 0 !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 40px;
	}

	.hamburger div {
	width: 20px !important;
	height: 2px !important;
	margin: 3px 0 !important;
	background: #fff !important;
	transition: all 0.3s ease;
	}

	.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	background:
	}

	.content-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	}

	.hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 20px;
	min-height: calc(100vh - );
	}

	.hero h1 {
	margin-top: auto;
	padding: 0 15px;
	font-size: clamp(1.3rem, 5vw, 1.8rem);
	}

	.hero p {
	padding: 0 15px;
	margin-bottom: 20px;
	}
	}

	@media (max-width: 335px) {
		.navbar-container {
	padding: 0 6px !important;
	gap: 4px !important;
	}

	.navbar-right-elements {
	gap: 4px !important;
	}

	.language-toggle {
	padding: 4px 6px !important;
	font-size: 11px !important;
	}

	.hamburger div {
	width: 18px !important;
	}

	.hero {
	padding-top: 10px;
	}

	.hero h1 {
	font-size: clamp(1.1rem, 4vw, 1.5rem);
	margin-top: 10px;
	}
	}

	@media (max-width: 286px) {
	.navbar-container {
	padding: 0 4px !important;
	gap: 2px !important;
	flex-wrap: wrap !important;
	}

	.navbar-right-elements {
	gap: 2px !important;
	flex-shrink: 1 !important;
	min-width: 0 !important;
	}

	.language-toggle {
	padding: 3px 4px !important;
	font-size: 10px !important;
	max-width: 60px !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	}

	.hamburger {
	padding: 4px !important;
	}

	.hamburger div {
	width: 16px !important;
	height: 1.5px !important;
	margin: 2.5px 0 !important;
	}

	.hero {
	padding-top: 5px !important;
	padding-bottom: 15px !important;
	}

	.hero h1 {
	font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
	line-height: 1.2 !important;
	margin: 5px 0 !important;
	padding: 0 8px !important;
	word-break: break-word !important;
	}

	.hero p {
	font-size: 0.8rem !important;
	padding: 0 8px !important;
	margin-bottom: 15px !important;
	line-height: 1.3 !important;
	}

	.hero-buttons {
	flex-direction: column !important;
	gap: 6px !important;
	padding: 0 8px !important;
	}

	.hero-buttons .btn {
	padding: 6px 8px !important;
	font-size: 0.7rem !important;
	}
	}

	@media (min-width: 768px) and (max-width: 1056px) {
	.navbar {
	padding: 15px 0;
	}

	.navbar-container {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 0 10px !important;
	}

	.navbar-right-elements {
	position: relative;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	margin-left: auto !important;
	gap: 0 !important;
	width: 100px;
	min-width: fit-content;
	}

	.language-switcher {
	position: absolute !important;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1002;
	flex-shrink: 0 !important;
	margin: 0 !important;
	}

	.language-toggle {
	order: 3 !important;
	margin-left: 0 !important;
	flex-shrink: 0 !important;
	position: relative;
	z-index: 1002;
	}

	.hamburger {
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1003;
	flex-shrink: 0 !important;
	flex-direction: column;
	margin: 0 !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 50px;
	}

	.hamburger div {
	width: 20px !important;
	height: 2px !important;
	margin: 3px 0 !important;
	background: #fff !important;
	}


	.hamburger.active div:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
	}

	.hamburger.active div:nth-child(2) {
	opacity: 0;
	}

	.hamburger.active div:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
	}

	.nav-links {
	display: none !important;
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background: rgba(15, 15, 26, 0.98);
	backdrop-filter: blur(10px);
	flex-direction: column;
	padding: 25px;
	gap: 20px;
	z-index: 999;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-links.active {
	display: flex !important;
	}

	.nav-links li {
	width: 100%;
	}

	.nav-links a {
	line-height: 1.2 !important;
	padding: 8px 0 !important;
	font-size: 1.1rem !important;
	display: block;
	width: 100%;
	color: white !important;
	}

	.mobile-only {
	display: inline-block !important;
	margin-left: 8px;
	font-size: 0.9em;
	transition: transform 0.3s ease;
	}

	.dropdown-menu {
	display: none !important;
	padding-left: 20px !important;
	list-style: none !important;
	animation: none !important;
	}

	.dropdown-menu.show {
	display: block !important;
	animation: slideDown 0.3s ease !important;
	}

	.dropdown-toggle {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-right: 30px !important;
	}

	.dropdown-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	font-size: 0.8em;
	}

	.dropdown-icon.rotated {
	transform: translateY(-50%) rotate(180deg);
	}

	@keyframes slideDown {
	from { opacity: 0; max-height: 0 }
	to { opacity: 1; max-height: 500px }
	}

	.hero h1 {
	font-size: 2.8rem !important;
	line-height: 1.2 !important;
	padding: 0 20px !important;
	}

	.hero p {
	font-size: 1.2rem !important;
	padding: 0 20px !important;
	}

	.hero-buttons {
	flex-direction: row !important;
	flex-wrap: wrap;
	gap: 15px !important;
	justify-content: center;
	}
	}

	@media (max-width: 1056px) and (orientation: landscape) {
	.hero {
	padding: 15px 10px 25px !important;
	min-height: 100vh !important;
	box-sizing: border-box !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	}

	.hero h1 {
	font-size: 1.7rem !important;
	line-height: 1.3 !important;
	padding: 0 10px !important;
	margin: 25px 0 15px 0 !important;
	word-break: break-word !important;
	overflow-wrap: anywhere !important;
	text-align: center !important;
	}

	.hero p {
	font-size: 0.95rem !important;
	padding: 0 15px !important;
	margin: 0 0 25px 0 !important;
	display: block !important;
	text-align: center !important;
	}

	.hero-buttons {
	flex-direction: row !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 0 10px !important;
	margin-top: auto !important;
	}

	.navbar {
	position: sticky !important;
	top: 0 !important;
	background: rgba(15, 15, 26, 0.95) !important;
	padding: 8px 0 !important;
	z-index: 1000 !important;
	}

	.navbar-container {
	padding: 0 12px !important;
	}

	.navbar-right-elements {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	margin-left: auto !important;
	}

	.language-switcher {
	order: 1 !important;
	margin-left: 0 !important;
	}

	.language-toggle {
	padding: 7px 12px !important;
	font-size: 14px !important;
	white-space: nowrap !important;
	}

	.hamburger {
	order: 2 !important;
	margin-left: 0 !important;
	}

	.hamburger div {
	width: 22px !important;
	height: 2px !important;
	margin: 4px 0 !important;
	}

	.logo img {
	max-height: 77px !important;
	}
	}

	@media (max-width: 767px) and (orientation: landscape) and (max-height: 400px) {
	.hero h1 {
	font-size: 1.5rem !important;
	margin: 15px 0 10px 0 !important;
	}

	.hero p {
	font-size: 0.9rem !important;
	margin-bottom: 15px !important;
	-webkit-line-clamp: 2 !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	}

	.hero-buttons .btn {
	padding: 8px 12px !important;
	font-size: 0.85rem !important;
	}
	}

	@media (max-width: 1080px) and (orientation: portrait) {
	.hero h1 {
	font-size: 2.4rem !important;
	}

	.mobile-only {
	display: inline-block !important;
	margin-left: 8px;
	font-size: 0.9em;
	transition: transform 0.3s ease;
	}

	.hero p {
	font-size: 1.1rem !important;
	}

	.language-switcher {
	margin-left: 400px;
	order: 1;
	}

	.nav-links {
	top: 70px;
	padding: 20px;
	}
	}

	@media (max-width: 768px) {

	body {
	overflow-x: hidden;
	}

	.card {
	margin-left: -10px !important;
	margin-right: -10px !important;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	}

	.navbar-container {
	padding: 0 15px;
	}

	section {
	padding: 100px 0;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	}

	.about-image img {
	width: 230%;
	position: relative;
	left: -68%;
	}

	.mobile-only {
	display: inline-block !important;
	margin-left: 8px;
	font-size: 0.9em;
	transition: transform 0.3s ease;
	}

	.dropdown-icon.rotated {
	transform: rotate(180deg);
	}

	.nav-links {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(15, 15, 26, 0.98);
	flex-direction: column;
	padding: 20px;
	gap: 15px;
	z-index: 999;
	}

	.nav-links.active {
	display: flex;
	}

	.hamburger {
	display: block;
	z-index: 1001;
	}

	.hamburger.active div:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
	}

	.hamburger.active div:nth-child(2) {
	opacity: 0;
	}

	.hamburger.active div:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
	}

	.hero h1 {
	font-size: 2rem;
	line-height: 1.1;
	}

	.hero p {
	font-size: 1.1rem;
	padding: 0 10px;
	}

	.hero-buttons {
	flex-direction: column;
	gap: 15px;
	}

	.card {
	padding: 1.5rem;
	margin: 0 10px;
	}

	.features-grid,
	.case-studies-grid {
	grid-template-columns: 1fr !important;
	}

	.features-grid {
	padding: 0 15px; !important;
	}

	.groups-container {
	grid-template-columns: 1fr;
	}

	.group-tabs {
	right: 0;
	justify-content: center;
	}

	.footer-content {
	grid-template-columns: 1fr;
	text-align: center;
	}

	.footer-about .logo {
	display: none !important; 
	}

	.footer-about .logo img {
	display: none !important;
	}

	.footer-links {
	text-align: center;
	margin: 20px 0;
	}

	.contact-row {
	flex-direction: column;
	gap: 30px;
	}

	.contact-content {
	min-width: auto;
	}

	.modal-image-container {
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	min-height: auto !important;
	position: relative;
	}

	.modal-image {
	width: 95vw !important;
	max-width: 600px !important;
	height: auto !important;
	margin: 10px 0 !important;
	margin-top: 43px !important;
	transform: none !important;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 0 25px rgba(108,92,231,0.4);
	order: -10;
	}

	.stats-table-container {
	width: 100% !important;
	margin-top: 10px !important;
	}

	.image-wrapper {
	min-width: 100%;
	padding: 0;
	}

	.modal-content {
	margin: 20px auto;
	padding: 20px 15px;
	}

	.modal-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	}

	.stats-highlights {
	grid-template-columns: 1fr;
	}

	.highlight-card {
	padding: 12px;
	}

	.stats-table th, 
	.stats-table td {
	padding: 8px;
	font-size: 0.9rem;
	}

	.modal-stats-title {
	font-size: 1.2rem;
	flex-direction: column;
	align-items: flex-start;
	}

	.dropdown-menu {
	display: none !important;
	position: static;
	background: transparent;
	box-shadow: none;
	padding-left: 20px;
	}

	.dropdown-menu.show {
	display: block !important;
	animation: slideDown 0.3s ease;
	}

	.dropdown-toggle {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	}

	.dropdown-icon {
	order: 2;
	margin-left: auto;
	transform: none !important;
	}

	.dropdown-icon.rotated {
	transform: rotate(180deg);
	}

	@keyframes slideDown {
	from { opacity: 0; max-height: 0 }
	to { opacity: 1; max-height: 500px }
	}
	}
	
	@media (max-width: 450px) {
	.about-image {
	display: none !important;
	}

	.about-container {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	}

	.about-content {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 15px !important;
	text-align: center !important;
	}

	.about-content h3,
	.about-content p,
	.about-content ul {
	text-align: center !important;
	}

	.about-content ul {
	display: inline-block;
	text-align: left;
	padding-left: 20px;
	}
	}

	@media (min-width: 451px) {
	.about-image {
	display: block;
	}
	}
	
	@media (max-width: 1080px) {
	html[lang="ar"] .navbar-container {
	position: relative;
	padding-left: 100px !important;
	height: 80px;
	display: flex;
	align-items: center;
	}

	html[lang="ar"] .logo {
	position: absolute;
	left: 93px;
	top: 17%;
	transform: scale(1.57) translateX(-20px);
	z-index: 1001;
	margin: 0;
	padding: 0;
	}

	html[lang="ar"] .logo img {
	max-width: 90px;
	height: auto;
	display: block;
	}

	html[lang="ar"] .navbar-right-elements {
	margin-left: auto !important;
	margin-right: 0 !important;
	}
	}