/**
* Template Name: EasyFolio
* Template URL: https://bootstrapmade.com/easyfolio-bootstrap-portfolio-template/
* Updated: Feb 21 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font: 'Roboto', system-ui, -apple-system, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	--heading-font: 'Questrial', sans-serif;
	--nav-font: 'Noto Sans', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #ffffff; /* Background color for the entire website, including individual sections */
	--default-color: #0a0f14; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #0f2943; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #e87532; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #0a0f14; /* The default color of the main navmenu links */
	--nav-hover-color: #e87532; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #0a0f14; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #e87532; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #faf9fb;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #060606;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #252525;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

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

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .header-container {
	background: var(--surface-color);
	border-radius: 50px;
	padding: 5px 25px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 40px;
	margin-right: 0; /* Убираем отступ справа */
}

.header .logo h1 {
	font-size: 24px;
	margin: 0;
	padding-left: 5px;
	font-weight: 500;
	color: var(--heading-color);
}

.header .header-social-links {
	padding-right: 15px;
}

.header .header-social-links a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	padding-left: 6px;
	display: inline-block;
	transition: 0.3s;
	font-size: 16px;
}

.header .header-social-links a:hover {
	color: var(--accent-color);
}

.header .header-social-links a i {
	line-height: 0px;
}

@media (max-width: 1200px) {
	.header {
		padding-top: 10px;
	}

	.header .header-container {
		margin-left: 10px;
		margin-right: 10px;
		padding: 10px 5px 10px 15px;
	}

	.header .logo {
		order: 1;
	}

	.header .header-social-links {
		order: 2;
	}

	.header .navmenu {
		order: 3;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

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

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	padding: 40px 0;
	position: relative;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.footer .copyright p {
	margin-bottom: 0;
}

.footer .social-links {
	margin-top: 20px;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin: 0 5px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer .credits {
	margin-top: 10px;
	font-size: 13px;
	text-align: center;
}

/* Стили для логотипа в футере */
.footer .sitename img {
	max-height: 40px;
	margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(
		120deg,
		var(--heading-color),
		var(--accent-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.section-title .title-shape {
	width: 200px;
	height: 20px;
	margin: 0 auto;
	color: var(--accent-color);
	opacity: 0.5;
}

.section-title .title-shape svg {
	width: 100%;
	height: 100%;
}

.section-title p {
	margin: 15px auto 0;
	font-size: 16px;
	max-width: 700px;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	line-height: 1.8;
}

@media (max-width: 768px) {
	.section-title h2 {
		font-size: 32px;
	}

	.section-title .subtitle-wrapper .subtitle {
		font-size: 13px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.hero .content h2 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
	.hero .content h2 {
		font-size: 2.5rem;
	}
}

.hero .content .lead {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .cta-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

@media (max-width: 576px) {
	.hero .cta-buttons {
		flex-direction: column;
	}
}

.hero .cta-buttons .btn {
	padding: 0.8rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.hero .cta-buttons .btn.btn-primary {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--contrast-color);
}

.hero .cta-buttons .btn.btn-primary:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	transform: translateY(-2px);
}

.hero .cta-buttons .btn.btn-outline {
	border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
	color: var(--accent-color);
	background: transparent;
}

.hero .cta-buttons .btn.btn-outline:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-2px);
}

.hero .hero-stats {
	display: flex;
	gap: 3rem;
	margin-top: 2rem;
}

@media (max-width: 576px) {
	.hero .hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}
}

.hero .hero-stats .stat-item .stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--heading-color);
	line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
	font-size: 0.9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-top: 0.5rem;
	display: block;
}

.hero .hero-image {
	position: relative;
	padding: 2rem;
}

.hero .hero-image img {
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.hero {
		text-align: center;
		padding: 60px 0;
	}

	.hero .cta-buttons {
		justify-content: center;
	}

	.hero .hero-stats {
		justify-content: center;
	}

	.hero .hero-image {
		margin-top: 3rem;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-image {
	position: relative;
}

.about .about-image img {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about .about-content {
	text-align: center;
}

@media (max-width: 991.98px) {
	.about .about-content {
		padding-left: 0;
		margin-top: 3rem;
	}
}

.about .about-content .subtitle {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 1rem;
	display: block;
}

.about .about-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.about .about-content .lead {
	font-size: 1.1rem;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .about-intro {
	max-width: 800px;
	margin: 0 auto 2rem;
}

/* About Section Styles */
.about .about-intro h2 {
	font-size: 2rem;
	position: relative;
	padding-bottom: 15px;
}

.about .about-intro h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: var(--accent-color);
}

.about .about-features {
	max-width: 1200px;
	margin: 0 auto;
}

.about .feature-card {
	background: var(--surface-color);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
	height: 100%;
	transition: transform 0.3s ease;
}

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

.about .feature-card i {
	font-size: 2.5rem;
	color: var(--accent-color);
	display: block;
	text-align: center;
	margin-bottom: 20px;
}

.about .feature-card h4 {
	margin-bottom: 20px;
}

.about .feature-card ul {
	padding-left: 20px;
}

.about .feature-card li {
	margin-bottom: 12px;
	position: relative;
}

.about .feature-card li:before {
	content: '•';
	color: var(--accent-color);
	font-weight: bold;
	position: absolute;
	left: -15px;
}

.about .blockquote {
	border-left: 3px solid var(--accent-color);
	padding: 15px 20px;
	font-style: italic;
	color: var(--heading-color);
	font-size: 1.1rem;
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
	border-radius: 8px;
}

.about .feature-card .blockquote {
	text-align: center;
	margin: 0 auto;
	max-width: 300px;
}

.about .text-start ul {
	display: inline-block;
	text-align: left;
	padding-left: 1.5rem;
}

.about .btn-accent {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.about .btn-accent:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
	background-color: var(--surface-color);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.skills .skill-box p {
	font-size: 0.9rem;
	margin-bottom: 0.8rem;
	opacity: 0.6;
}

.skills .skill-box .progress {
	background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
	border-radius: 50px;
	height: 8px;
	margin-top: 5px;
	overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
	background-color: var(--accent-color);
	height: 100%;
	position: relative;
	border-radius: 50px;
	transition: 0.9s;
	width: 1px;
}

.skill-box {
	padding: 20px;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.skill-box:hover {
	transform: translateY(-5px);
}

.skill-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.skill-icon img {
	max-height: 60px;
	width: auto;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
	margin-bottom: 40px;
}

.portfolio .portfolio-filters {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}

.portfolio .portfolio-filters li {
	font-size: 15px;
	font-weight: 500;
	padding: 8px 20px;
	cursor: pointer;
	border-radius: 30px;
	background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
	color: var(--default-color);
	transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
	color: var(--accent-color);
	transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.portfolio .portfolio-card {
	background-color: var(--surface-color);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease-in-out;
}

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

.portfolio .portfolio-card:hover .portfolio-overlay {
	opacity: 1;
	visibility: visible;
}

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
	transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
	transform: translateY(20px);
	transition: all 0.4s ease-in-out;
	display: flex;
	gap: 15px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
	width: 45px;
	height: 45px;
	background-color: var(--surface-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 20px;
	transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
	padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
	font-size: 14px;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
	font-size: 20px;
	margin: 0 0 15px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
	color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.about .feature-card {
		padding: 20px;
	}

	.about .feature-card i {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.about .text-start ul {
		padding-left: 1rem;
	}

	.portfolio .portfolio-filters li {
		font-size: 14px;
		padding: 6px 15px;
	}

	.portfolio .portfolio-card .portfolio-content {
		padding: 20px;
	}

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

	.portfolio .portfolio-card .portfolio-content p {
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
	width: 100%;
	position: relative;
	padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .testimonial-item {
	background-color: var(--surface-color);
	transition: transform 0.3s ease;
	padding: 40px;
	border-radius: 20px;
}

.testimonials .testimonial-item:hover {
	transform: translateY(-5px);
}

@media (max-width: 575px) {
	.testimonials .testimonial-item {
		padding: 20px;
	}
}

.testimonials .testimonial-item h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.testimonials .testimonial-item p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
	font-style: italic;
}

/* Profile in Testimonials */
.testimonials .testimonial-item .profile {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.testimonials .testimonial-item .profile .profile-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	flex-shrink: 0;
}

/* Разные цвета для аватарок */
.testimonials .bg-color-0 {
	background-color: #e87532;
} /* accent color */
.testimonials .bg-color-1 {
	background-color: #0f2943;
} /* heading color */
.testimonials .bg-color-2 {
	background-color: #2c7be5;
}
.testimonials .bg-color-3 {
	background-color: #00aaff;
}
.testimonials .bg-color-4 {
	background-color: #00c9a7;
}
.testimonials .bg-color-5 {
	background-color: #8456ff;
}
.testimonials .bg-color-6 {
	background-color: #ff6b6b;
}
.testimonials .bg-color-7 {
	background-color: #ffc107;
}
.testimonials .bg-color-8 {
	background-color: #20c997;
}
.testimonials .bg-color-9 {
	background-color: #fd7e14;
}

.testimonials .testimonial-item .profile .profile-info h3 {
	font-size: 18px;
	margin: 0;
	font-weight: 600;
}
.testimonials .testimonial-item .profile .profile-info span {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .testimonial-content {
	background-color: var(--surface-color);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials .testimonial-content {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.testimonials .testimonial-content:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Different colors for avatars */
.bg-color-0 {
	background-color: #e87532;
} /* accent color */
.bg-color-1 {
	background-color: #0f2943;
} /* heading color */
.bg-color-2 {
	background-color: #2c7be5;
}
.bg-color-3 {
	background-color: #00aaff;
}
.bg-color-4 {
	background-color: #00c9a7;
}
.bg-color-5 {
	background-color: #8456ff;
}
.bg-color-6 {
	background-color: #ff6b6b;
}
.bg-color-7 {
	background-color: #ffc107;
}
.bg-color-8 {
	background-color: #20c997;
}
.bg-color-9 {
	background-color: #fd7e14;
}

.testimonials .swiper-navigation {
	position: absolute;
	bottom: 0;
	gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	margin: 0;
	width: 44px;
	height: 44px;
	background-color: var(--surface-color);
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
	transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
	font-size: 20px;
	color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
	padding: 80px 0;
}

.services .servies-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.services .btn-outline-primary {
	color: var(--accent-color);
	border-color: var(--accent-color);
	padding: 10px 30px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.services .btn-outline-primary:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.services .service-item {
	background-color: var(--surface-color);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}

.services .service-item .icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.services .service-item:hover {
	transform: scale(1.05);
}

.service-item:hover .icon {
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.services .service-item i {
	font-size: 2.5rem;
	color: var(--accent-color);
	display: inline-block;
	margin-bottom: 15px;
}

.services .service-item h3 {
	font-size: 1.25rem;
	margin-bottom: 15px;
	flex-grow: 1; /* Заголовок растягивается */
}

.services .service-item h3 a {
	color: var(--heading-color);
}

.services .service-item h3 a:hover {
	color: var(--accent-color);
}

.services .service-item p {
	font-size: 0.9rem;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.services .row {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.services .col-md-4 {
	flex: 1 1 auto;
	max-width: 33.333333%;
	padding: 15px;
}

.services .col-md-4 .service-item {
	width: 100%;
	height: 100%;
}

@media (max-width: 991px) {
	.services h2 {
		font-size: 2rem;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact-card {
	background: var(--surface-color);
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	height: 100%;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	font-size: 28px;
	color: white;
	flex-shrink: 0;
}

.bg-telegram {
	background-color: #2aabee;
}
.bg-whatsapp {
	background-color: #25d366;
}
.bg-instagram {
	background: linear-gradient(
		45deg,
		#f09433,
		#e6683c,
		#dc2743,
		#cc2366,
		#bc1888
	);
}
.bg-email {
	background-color: var(--accent-color);
}

.contact-details h4 {
	font-size: 1.25rem;
	margin-bottom: 5px;
	color: var(--heading-color);
}

.contact-details p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 0.95rem;
	margin-bottom: 8px;
}

.contact-link {
	display: block;
	color: var(--accent-color);
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact-cta {
	padding-top: 30px;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.btn-accent {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: 10px 30px;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-accent:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.about .about-image {
		margin-bottom: 2rem;
	}

	.about .about-features .col-md-4 {
		margin-bottom: 1.5rem;
	}
}

/* Новые стили для логотипа */
.header .logo img,
.footer .sitename img {
	transition: transform 0.3s ease;
}

.header .logo img:hover,
.footer .sitename img:hover {
	transform: scale(1.05);
}

.sitename {
	display: flex;
	align-items: center;
	justify-content: center;
}
