/* ============================================
	ElbiNet LLC Custom Styles
	IT Consulting Website
============================================ */

/* ========================================
	Color Scheme - Dark Mode Default
======================================== */
:root {
	--elbinet-primary: #3b82f6;
	--elbinet-secondary: #06b6d4;
	--elbinet-accent: #f97316;
	--elbinet-dark: #0f172a;
	--elbinet-darker: #020617;
	--elbinet-light: #f1f5f9;
	--elbinet-gray: #94a3b8;
	--elbinet-card-bg: #1e293b;
	--elbinet-card-border: #334155;
	--elbinet-text-primary: #f1f5f9;
	--elbinet-text-secondary: #cbd5e1;
	--elbinet-text-muted: #94a3b8;
	--elbinet-bg-main: #0f172a;
	--elbinet-bg-section: #1e293b;
}

/* ========================================
	Typography
======================================== */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: var(--elbinet-bg-main);
	color: var(--elbinet-text-secondary);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--elbinet-text-primary);
}

p {
	color: var(--elbinet-text-secondary);
}

.lead {
	color: var(--elbinet-text-secondary);
}

.text-muted {
	color: var(--elbinet-text-muted) !important;
}

/* Dark mode sections */
.section {
	background-color: var(--elbinet-bg-main);
}

.bg-light {
	background-color: var(--elbinet-bg-section) !important;
}

.bg-dark {
	background-color: var(--elbinet-darker) !important;
}

/* ========================================
	Custom ElbiNet Header
======================================== */
.elbinet-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(15, 23, 42, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(51, 65, 85, 0.3);
	transition: all 0.3s ease;
}

.elbinet-navbar .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

/* Logo */
.nav-logo a {
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}

.logo-main {
	color: #f1f5f9;
	transition: color 0.3s ease;
}

.logo-accent {
	color: #06b6d4;
}

.nav-logo a:hover .logo-main {
	color: #3b82f6;
}

/* Desktop Menu */
.nav-menu {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 5px;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	color: #cbd5e1;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	border-radius: 6px;
}

.nav-link:hover {
	color: #3b82f6;
	background: rgba(59, 130, 246, 0.1);
}

.nav-item.active .nav-link {
	color: #3b82f6;
	background: rgba(59, 130, 246, 0.1);
}

.dropdown-icon {
	font-size: 10px;
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
	transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #1e293b;
	border: 1px solid #334155;
	border-radius: 8px;
	padding: 8px;
	margin-top: 5px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	list-style: none;
}

.dropdown-menu a {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	color: #cbd5e1;
	text-decoration: none;
	font-size: 13px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.dropdown-menu a:hover {
	background: rgba(59, 130, 246, 0.15);
	color: #f1f5f9;
	transform: translateX(5px);
}

.dropdown-menu i {
	width: 20px;
	margin-right: 10px;
	color: #3b82f6;
}

/* CTA Buttons */
.nav-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-call {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	color: #cbd5e1;
	text-decoration: none;
	border: 1px solid #334155;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-call:hover {
	background: rgba(59, 130, 246, 0.1);
	border-color: #3b82f6;
	color: #3b82f6;
	transform: translateY(-2px);
}

.btn-call .btn-text {
	display: none;
}

@media (min-width: 768px) {
	.btn-call .btn-text {
		display: inline;
	}
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: linear-gradient(135deg, #3b82f6, #06b6d4);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #cbd5e1;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
	.nav-menu {
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		background: rgba(15, 23, 42, 0.98);
		border-bottom: 1px solid #334155;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		max-height: calc(100vh - 60px);
		overflow-y: auto;
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
	}

	.nav-item {
		width: 100%;
	}

	.nav-link {
		padding: 12px 16px;
		width: 100%;
		justify-content: space-between;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: rgba(30, 41, 59, 0.5);
		border: none;
		box-shadow: none;
		margin: 5px 0 0 0;
		padding: 0 0 0 20px;
		display: none;
	}

	.has-dropdown.active .dropdown-menu {
		display: block;
	}

	.mobile-toggle {
		display: flex;
	}

	.nav-cta {
		margin-right: 10px;
	}
}

@media (max-width: 576px) {
	.nav-logo a {
		font-size: 20px;
	}

	.btn-primary {
		padding: 8px 12px;
		font-size: 12px;
	}
}

/* Adjust body padding for fixed header */
body {
	padding-top: 60px;
}

/* ========================================
	Fullscreen Sections
======================================== */
.fullscreen-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 80px 0;
	position: relative;
	padding-top: 120px; /* Account for fixed header */
}

.fullscreen-section-alt {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 80px 0;
	position: relative;
	background-color: var(--elbinet-bg-section);
	padding-top: 120px; /* Account for fixed header */
}

@media (max-width: 768px) {
	.fullscreen-section,
	.fullscreen-section-alt {
		min-height: 100vh;
		padding: 60px 0;
	}
}

/* Section scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	cursor: pointer;
	z-index: 10;
}

.scroll-indicator i {
	font-size: 24px;
	color: var(--elbinet-text-muted);
	transition: color 0.3s ease;
}

.scroll-indicator:hover i {
	color: var(--elbinet-primary);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}


/* ========================================
	Buttons
======================================== */
.button {
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.button-primary {
	background-color: var(--elbinet-primary);
	color: #fff;
}

.button-primary:hover {
	background-color: #1e40af;
}

.button-secondary {
	background-color: var(--elbinet-secondary);
	color: #fff;
}

.button-accent {
	background-color: var(--elbinet-accent);
	color: #fff;
}

/* ========================================
	Hero Section
======================================== */
#slider {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--elbinet-darker) 0%, var(--elbinet-bg-main) 100%);
}

#slider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 100 0 L 0 0 0 100" fill="none" stroke="%23334155" stroke-width="0.5" opacity="0.3"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100" height="100" fill="url(%23grid)"/%3E%3C/svg%3E');
	z-index: 1;
}

#slider .slider-inner {
	position: relative;
	z-index: 2;
}

#slider h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--elbinet-text-primary);
}

#slider p {
	color: var(--elbinet-text-secondary);
}

@media (max-width: 768px) {
	#slider h1 {
		font-size: 2rem;
	}
}

/* ========================================
	Services Section
======================================== */
#services .row {
	min-height: 70vh;
}

.service-card {
	transition: all 0.3s ease;
	background: var(--elbinet-card-bg);
	border: 1px solid var(--elbinet-card-border) !important;
	height: 100%;
	min-height: 280px;
}

.service-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
	border-color: var(--elbinet-primary) !important;
	z-index: 10;
}

.service-card .card-body {
	padding: 2rem !important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-icon-wrapper {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(59, 130, 246, 0.2);
	margin-bottom: 1.5rem !important;
}

.service-card:hover .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
	transform: scale(1.08) rotate(3deg);
	border-color: rgba(59, 130, 246, 0.4);
}

.service-icon-wrapper i {
	font-size: 48px;
	background: linear-gradient(135deg, var(--elbinet-primary), var(--elbinet-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-content h3 {
	color: var(--elbinet-text-primary);
	font-size: 1.4rem !important;
	margin-bottom: 1rem !important;
}

.service-content p {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 1.5rem !important;
}

.service-features {
	border-top: 1px solid var(--elbinet-card-border);
	padding-top: 20px;
	margin-top: auto;
}

.service-features ul li {
	font-size: 15px;
	color: var(--elbinet-text-muted);
	padding: 0.4rem 0;
}

.service-features ul li span {
	color: var(--elbinet-text-secondary);
}

.service-features ul li i {
	font-size: 16px;
}

/* Different icon colors for each service */
#managed-services .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
}

#managed-it .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(59, 130, 246, 0.12));
}

#cybersecurity .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(239, 68, 68, 0.12));
}

#vcio .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(14, 165, 233, 0.12));
}

#cloud .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(251, 191, 36, 0.12));
}

#network .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(74, 222, 128, 0.12));
}

/* Responsive adjustments for services */
@media (min-width: 1400px) {
	#services .container {
		max-width: 1320px;
	}
	
	.service-card .card-body {
		padding: 2.5rem !important;
	}
}

@media (max-width: 1199px) {
	#services .row {
		min-height: auto;
	}
}

@media (max-width: 991px) {
	.service-card {
		min-height: 240px;
	}
	
	.service-icon-wrapper {
		width: 80px;
		height: 80px;
	}
	
	.service-icon-wrapper i {
		font-size: 36px;
	}
}

/* ========================================
	About Section
======================================== */
.counter {
	font-size: 48px;
	font-weight: 700;
	color: var(--elbinet-primary);
	line-height: 1;
	margin-bottom: 15px;
}

.counter-small {
	font-size: 42px;
}

.iconlist-color li i {
	color: var(--elbinet-secondary);
}

/* ========================================
	Cards
======================================== */
.card {
	border: 1px solid var(--elbinet-card-border);
	background-color: var(--elbinet-card-bg);
	transition: all 0.3s ease;
	border-radius: 10px;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
	border-color: var(--elbinet-primary);
}

.card h5, .card h3, .card h4 {
	color: var(--elbinet-text-primary);
}

.card p, .card small {
	color: var(--elbinet-text-muted);
}

.card .feature-box.fbox-plain .fbox-icon i {
	font-size: 48px;
	margin-bottom: 20px;
}

/* ========================================
	Testimonials
======================================== */
.testimonial-full {
	max-width: 800px;
	margin: 0 auto;
}

.testi-content p {
	font-size: 1.25rem;
	line-height: 1.8;
	font-style: italic;
	color: #fff;
	margin-bottom: 30px;
}

.testi-meta {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.testi-meta span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 5px;
}

/* ========================================
	Contact Section
======================================== */
#contact-form .form-control {
	border-radius: 5px;
	border: 1px solid var(--elbinet-card-border);
	background-color: var(--elbinet-card-bg);
	color: var(--elbinet-text-primary);
	padding: 12px 15px;
	font-size: 15px;
	transition: all 0.3s ease;
}

#contact-form .form-control:focus {
	border-color: var(--elbinet-primary);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
	background-color: var(--elbinet-card-bg);
}

#contact-form .form-control::placeholder {
	color: var(--elbinet-text-muted);
}

#contact-form label {
	font-weight: 500;
	color: var(--elbinet-text-primary);
	margin-bottom: 8px;
}

#contact-form select.form-control {
	background-color: var(--elbinet-card-bg);
	color: var(--elbinet-text-primary);
}

#contact-form select.form-control option {
	background-color: var(--elbinet-card-bg);
	color: var(--elbinet-text-primary);
}

/* ========================================
	Footer
======================================== */
#footer {
	padding-top: 80px;
	padding-bottom: 60px;
	background-color: var(--elbinet-darker);
	border-top: 1px solid var(--elbinet-card-border);
}

#footer .widget h4 {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 25px;
	color: var(--elbinet-text-primary);
}

#footer .widget p {
	color: var(--elbinet-text-muted);
	line-height: 1.8;
}

#footer .widget_links ul li a {
	color: var(--elbinet-text-muted);
	transition: all 0.3s ease;
}

#footer .widget_links ul li a:hover {
	color: var(--elbinet-primary);
	padding-left: 5px;
}

.social-icon {
	transition: all 0.3s ease;
}

.social-icon:hover {
	transform: translateY(-3px);
}

#copyrights {
	padding: 30px 0;
	font-size: 14px;
	color: var(--elbinet-text-muted);
	background-color: var(--elbinet-darker);
	border-top: 1px solid var(--elbinet-card-border);
}

#copyrights a {
	color: var(--elbinet-text-secondary);
	transition: color 0.3s ease;
}

#copyrights a:hover {
	color: var(--elbinet-primary);
}

/* Pricing Tables */
.pricing-box {
	background-color: var(--elbinet-card-bg);
	border: 1px solid var(--elbinet-card-border);
}

.pricing-box:hover {
	border-color: var(--elbinet-primary);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-title h3 {
	color: var(--elbinet-text-primary);
}

.pricing-price {
	color: var(--elbinet-primary);
}

.pricing-features li {
	color: var(--elbinet-text-secondary);
	border-bottom: 1px solid var(--elbinet-card-border);
}

/* Badge styles */
.badge {
	font-weight: 500;
}

.badge.bg-primary {
	background-color: var(--elbinet-primary) !important;
}

.badge.bg-success {
	background-color: #10b981 !important;
}

.badge.bg-danger {
	background-color: #ef4444 !important;
}

.badge.bg-warning {
	background-color: var(--elbinet-accent) !important;
	color: #fff !important;
}

/* ========================================
	Animations
======================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) rotate(1deg);
	}
	75% {
		transform: translateY(10px) rotate(-1deg);
	}
}

@keyframes scroll {
	0% {
		transform: translateY(0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(20px);
		opacity: 0;
	}
}

[data-animate="fadeInUp"] {
	animation: fadeInUp 0.8s ease-out;
}

[data-animate="fadeInRight"] {
	animation: fadeInRight 0.8s ease-out;
}

/* Text Gradient Animation */
.text-gradient {
	background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #06b6d4 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Hero Section Specific Styles */
#slider {
	position: relative;
	z-index: 1;
}

#slider .position-absolute {
	pointer-events: none;
}

#slider .animated-nodes circle {
	filter: drop-shadow(0 0 10px currentColor);
}

#slider .badge {
	animation: fadeInDown 0.8s ease-out;
}

#slider .button {
	transition: all 0.3s ease;
	pointer-events: auto;
}

#slider .button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ========================================
	Responsive Design
======================================== */
@media (max-width: 991px) {
	.primary-menu .menu-container {
		background-color: #fff;
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}
	
	.primary-menu .menu-link {
		padding: 10px 0;
		border-bottom: 1px solid #f3f4f6;
	}
	
	#logo span {
		font-size: 24px !important;
	}
	
	.header-misc {
		display: none;
	}
}

@media (max-width: 768px) {
	.counter {
		font-size: 36px;
	}
	
	.section {
		padding: 60px 0;
	}
	
	#footer {
		padding-top: 60px;
		padding-bottom: 40px;
	}
	
	.heading-block h2 {
		font-size: 28px;
	}
}

/* ========================================
	Utilities
======================================== */
.bg-gradient-primary {
	background: linear-gradient(135deg, var(--elbinet-primary) 0%, var(--elbinet-secondary) 100%);
}

.text-gradient {
	background: linear-gradient(135deg, var(--elbinet-primary) 0%, var(--elbinet-secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.shadow-soft {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.border-gradient {
	border: 2px solid;
	border-image: linear-gradient(135deg, var(--elbinet-primary), var(--elbinet-secondary)) 1;
}

/* Dark mode overrides */
.dark .heading-block h2,
.dark .heading-block h3 {
	color: var(--elbinet-text-primary);
}

.dark .heading-block > span {
	color: var(--elbinet-text-secondary);
}

.dark .iconlist li {
	color: var(--elbinet-text-secondary);
}

.dark .btn-primary {
	background-color: var(--elbinet-primary);
	border-color: var(--elbinet-primary);
}

.dark .btn-primary:hover {
	background-color: #2563eb;
	border-color: #2563eb;
}

.dark .btn-outline-light {
	color: var(--elbinet-text-primary);
	border-color: var(--elbinet-card-border);
}

.dark .btn-outline-light:hover {
	background-color: var(--elbinet-card-bg);
	border-color: var(--elbinet-primary);
}

/* ========================================
	Loading Animation
======================================== */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 3px solid var(--elbinet-light);
	border-top-color: var(--elbinet-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

