:root {
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	--primary-color: #253786;
	--light-gray: #f8f8f8;
}

html,body{font-family: 'Outfit', sans-serif;color: #333;font-size: 1.1rem;}
h1, h2, h3{font-family: 'Outfit', sans-serif;font-weight: 600;color: inherit;}
p a, p a:hover {color: var(--primary-color);}

.rotate{transform: rotate(5deg);
	position: relative;
	  box-shadow: 1rem 1rem 0 0 white;
}

.bike_bg{
	background-image: url('../img/bikes-fade.svg');
	background-size: cover;
	background-position: center center;
}

.streaks_bg{
	background-image: url('../img/streaks.svg');
	background-size: cover;
	background-position: center center;
}

.streaks_white_bg{
	background-image: url('../img/streaks-white.svg');
	background-size: cover;
	background-position: center center;
}

.blue_bg{
	background-color: var(--primary-color);
	color: #fff;
}

.uk-navbar-container {
	background-color: white !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.uk-navbar-nav > li > a {
	color: #333;
	font-weight: 500;
	text-transform: none;
	font-size: 1.1rem;
	min-height: 70px;
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li > a:focus, 
.uk-navbar-nav > li.uk-active > a {
	color: var(--primary-color);
}

.logo {
	font-weight: 700;
	font-size: 24px;
	color: #333;
	text-decoration: none;
	padding: 0 15px;
}

.uk-button{font-size: 1.1rem;font-weight: 300 !important;}

.uk-offcanvas-bar{background-color: var(--primary-color) !important;}

.uk-offcanvas-bar a{color: #fff !important;font-size: 1.1rem;}

.primary-btn {
	background-color: var(--primary-color);
	color: white;
	border-radius: 4px;
	font-weight: 600;
	padding: 10px 20px;
	text-transform: none;
}

.primary-btn:hover {
	background-color: #1c2a6b;
	color: white;
}

.blue_bg .primary-btn {
	background-color: #fff;
	color: var(--primary-color);
}

.secondary-btn {
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	font-weight: 600;
	padding: 10px 20px;
	text-transform: none;
}

.secondary-btn:hover {
	background-color: rgba(37, 55, 134, 0.1);
	color: var(--primary-color);
}

.blue_bg .secondary-btn {
	border: 1px solid #fff;
	color: #fff;
}

.hero-section {
	background-color: var(--primary-color);
	padding: 80px 0;
	color: white;
}

.hero-section .hero-title,
.hero-section p {
	color: white;
}

.hero-section .secondary-btn {
	color: white;
	border-color: white;
}

.hero-section .secondary-btn:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.hero-section .primary-btn {
	background-color: #1c2a6b;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.feature-card {
	padding: 30px;
	border-radius: 8px;
	height: 100%;
	transition: all 0.3s ease;
	color: #333 !important;
}

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

.feature-icon {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 20px;
}

.section {
	padding: 80px 0;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 40px;
}

.blue_bg .section-subtitle{
	color: #fff;
}

.benefit-item {
	display: flex;
	align-items: center;
}

.benefit-icon {
	color: var(--primary-color);
	margin-right: 15px;
	font-size: 1.2rem;
}

.benefit-item p {margin: 0rem 0rem .5rem 0rem;}

.footer {
	background-color: #f8f8f8;
	padding: 60px 0 30px;
}

.footer-title {
	font-weight: 700;
	margin-bottom: 20px;
}

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

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

.footer-links a {
	color: #666;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.social-icons a {
	color: #666;
	margin-right: 15px;
	font-size: 1.2rem;
}

.social-icons a:hover {
	color: var(--primary-color);
}

.copyright {
	border-top: 1px solid #eee;
	padding-top: 20px;
	margin-top: 30px;
	color: #666;
	font-size: .9rem;
}

.testimonial-card {
	border-radius: 8px;
	transition: transform 0.3s ease;
	height: 100%;
}

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

.testimonial-card p.uk-text-medium {
	font-style: italic;
	position: relative;
}

.testimonial-card p.uk-text-medium::before {
	content: '"';
	font-size: 60px;
	color: rgba(0, 0, 0, 0.05);
	position: absolute;
	top: -20px;
	left: -15px;
	z-index: 0;
}


@media (max-width: 960px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
}