@import url('jquery.fancybox.min.css');

:root {
	--accent: #a45a3a;
	--yellow: var(--accent);
	--red: var(--accent);
}

/* Login/Register Popup Styles */
.login-register-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
}

.login-register-popup .popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.login-register-popup .popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 10px;
	padding: 0;
	max-width: 450px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.login-register-popup .popup-content.account-mode {
	max-width: 1080px;
	width: min(1080px, 94vw);
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #fbf7f4 100%);
}

.login-register-popup .popup-content.guest-mode {
	max-width: 520px;
	border-radius: 24px;
}

.login-register-popup .popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
	z-index: 10;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.login-register-popup .popup-close:hover {
	background-color: #f5f5f5;
	color: #333;
}

.login-register-popup .popup-app-intro {
	padding: 32px 30px 20px;
	background: linear-gradient(135deg, rgba(164, 90, 58, 0.12) 0%, rgba(164, 90, 58, 0.04) 100%);
	border-bottom: 1px solid rgba(164, 90, 58, 0.12);
}

.login-register-popup .popup-app-intro h3 {
	margin: 12px 0 10px;
	font-size: 28px;
	line-height: 1.15;
	color: #1f1f1f;
}

.login-register-popup .popup-app-intro p {
	margin: 0;
	color: #5f5f5f;
	font-size: 15px;
	line-height: 1.6;
}

.login-register-popup .popup-app-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(164, 90, 58, 0.12);
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.login-register-popup .popup-tabs {
	display: flex;
	border-bottom: 1px solid #e0e0e0;
	background-color: #f8f9fa;
	border-radius: 10px 10px 0 0;
}

.login-register-popup .tab-btn {
	flex: 1;
	padding: 15px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	transition: all 0.3s ease;
	position: relative;
}

.login-register-popup .tab-btn.active {
	color: var(--accent);
	background-color: white;
}

.login-register-popup .tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--accent);
}

.login-register-popup .tab-content {
	padding: 30px;
	display: none;
}

.login-register-popup .tab-content.active {
	display: block;
}

.login-register-popup .auth-form .form-group {
	margin-bottom: 20px;
}

.login-register-popup .auth-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 14px;
}

.login-register-popup .auth-form input[type="text"],
.login-register-popup .auth-form input[type="email"],
.login-register-popup .auth-form input[type="password"] {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.login-register-popup .auth-form input:focus {
	outline: none;
	border-color: var(--accent);
}

.login-register-popup .auth-form .checkbox-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.login-register-popup .auth-form .checkbox-group label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	font-weight: 400;
	cursor: pointer;
}

.login-register-popup .auth-form .checkbox-group input[type="checkbox"] {
	margin-right: 8px;
}

.login-register-popup .auth-form .forgot-password {
	color: var(--accent);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.login-register-popup .auth-form .forgot-password:hover {
	color: #8b4a2a;
	text-decoration: underline;
}

.login-register-popup .submit-btn {
	width: 100%;
	padding: 14px 20px;
	background-color: var(--accent);
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}

.login-register-popup .submit-btn:hover {
	background-color: #8b4a2a;
}

.login-register-popup .form-message {
	padding: 10px 15px;
	margin-bottom: 15px;
	border-radius: 5px;
	font-size: 14px;
	display: none;
}

.login-register-popup .form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.login-register-popup .form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Account Management Styles */
.login-register-popup .account-management {
	padding: 0;
}

.login-register-popup .account-app-shell {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	min-height: 680px;
}

.login-register-popup .account-app-sidebar {
	background: linear-gradient(180deg, #1f1a18 0%, #2a2220 100%);
	padding: 28px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.login-register-popup .account-app-main {
	padding: 34px;
	overflow: auto;
}

.login-register-popup .account-header {
	display: flex;
	align-items: center;
	padding: 0;
	background-color: transparent;
	border-bottom: 0;
}

.login-register-popup .user-avatar {
	width: 72px;
	height: 72px;
	background-color: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: white;
	font-size: 24px;
	flex-shrink: 0;
	overflow: hidden;
	border: 3px solid rgba(255, 255, 255, 0.12);
}

.login-register-popup .user-avatar.avatar-clickable {
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-register-popup .user-avatar.avatar-clickable:hover,
.login-register-popup .user-avatar.avatar-clickable:focus {
	transform: scale(1.03);
	border-color: rgba(240, 183, 158, 0.9);
	box-shadow: 0 0 0 4px rgba(164, 90, 58, 0.18);
	outline: none;
}

.login-register-popup .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.login-register-popup .user-avatar.has-image {
	background-color: transparent;
}

.login-register-popup .user-info h3 {
	margin: 8px 0 5px 0;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
}

.login-register-popup .user-info p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.login-register-popup .account-status-badge {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #f7d7c7;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.login-register-popup .app-nav-tabs {
	flex-direction: column;
	gap: 10px;
	border-bottom: 0;
	background: transparent;
	border-radius: 0;
}

.login-register-popup .app-nav-tabs .tab-btn {
	flex: none;
	text-align: left;
	padding: 14px 16px;
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.74);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid transparent;
	font-size: 15px;
}

.login-register-popup .app-nav-tabs .tab-btn.active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
}

.login-register-popup .app-nav-tabs .tab-btn.active::after {
	display: none;
}

.login-register-popup .app-nav-tabs .tab-btn.danger {
	color: #ffc4c9;
}

.login-register-popup .app-nav-tabs .tab-btn.danger.active {
	background: rgba(220, 53, 69, 0.16);
	color: #fff;
	border-color: rgba(220, 53, 69, 0.24);
}

.login-register-popup .app-section-heading {
	margin-bottom: 24px;
}

.login-register-popup .app-section-heading h4 {
	margin: 0 0 8px;
	font-size: 28px;
	color: #1f1f1f;
	line-height: 1.2;
}

.login-register-popup .app-section-heading p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.login-register-popup .danger-heading h4,
.login-register-popup .danger-heading p {
	color: #9f1f2d;
}

.login-register-popup .account-overview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.login-register-popup .overview-card {
	padding: 22px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(164, 90, 58, 0.1);
	box-shadow: 0 10px 30px rgba(24, 24, 24, 0.05);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.login-register-popup .overview-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8a8a8a;
	font-weight: 700;
}

.login-register-popup .overview-card strong {
	font-size: 22px;
	color: #1f1f1f;
	line-height: 1.2;
}

.login-register-popup .account-quick-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.login-register-popup .quick-action-btn {
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid rgba(164, 90, 58, 0.18);
	background: rgba(164, 90, 58, 0.06);
	color: var(--accent);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.login-register-popup .quick-action-btn:hover {
	background: rgba(164, 90, 58, 0.12);
	transform: translateY(-1px);
}

.login-register-popup .quick-action-btn.danger {
	border-color: rgba(220, 53, 69, 0.18);
	background: rgba(220, 53, 69, 0.08);
	color: #c82333;
}

.login-register-popup .quick-action-btn.danger:hover {
	background: rgba(220, 53, 69, 0.14);
}

.login-register-popup .account-app-main .tab-content {
	padding: 0;
}

.login-register-popup .account-app-main .auth-form {
	padding: 28px;
	background: #fff;
	border-radius: 22px;
	border: 1px solid rgba(164, 90, 58, 0.1);
	box-shadow: 0 12px 35px rgba(20, 20, 20, 0.05);
}

.login-register-popup .avatar-preview.has-image {
	border-color: rgba(164, 90, 58, 0.3);
}

.hr-client-app {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 28px;
	padding: 24px 0 40px;
}

.hr-client-sidebar {
	background: linear-gradient(180deg, #201a18 0%, #2a2220 100%);
	border-radius: 24px;
	padding: 28px;
	color: #fff;
	position: sticky;
	top: 30px;
	height: fit-content;
	box-shadow: 0 18px 50px rgba(24, 18, 16, 0.2);
}

.hr-client-identity {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
}

.hr-client-avatar-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.hr-client-avatar {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 3px solid rgba(255, 255, 255, 0.12);
}

.hr-client-avatar-trigger {
	padding: 0;
	background: transparent;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hr-client-avatar-trigger:hover,
.hr-client-avatar-trigger:focus {
	transform: scale(1.03);
	border-color: rgba(240, 183, 158, 0.9);
	box-shadow: 0 0 0 4px rgba(164, 90, 58, 0.18);
	outline: none;
}

.hr-client-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hr-client-avatar-message {
	display: none;
	font-size: 12px;
	text-align: center;
	color: rgba(255, 255, 255, 0.82);
	max-width: 120px;
}

.hr-client-avatar-message.success {
	color: #9be7b5;
}

.hr-client-avatar-message.error {
	color: #ffb4b4;
}

.hr-client-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(164, 90, 58, 0.16);
	color: #f0b79e;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hr-client-badge.alt {
	background: rgba(164, 90, 58, 0.1);
	color: var(--accent);
}

.hr-client-identity-content h1 {
	margin: 10px 0 6px;
	font-size: 24px;
	color: #fff;
}

.hr-client-identity-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.hr-client-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
}

.hr-client-nav a,
.hr-client-side-btn {
	display: block;
	padding: 14px 16px;
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.84);
	background: rgba(255, 255, 255, 0.05);
	text-decoration: none;
	transition: all 0.2s ease;
}

.hr-client-nav a:hover,
.hr-client-side-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.hr-client-side-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hr-client-main {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hr-client-hero,
.hr-client-card,
.hr-document-table-wrap {
	background: #fff;
	border: 1px solid rgba(164, 90, 58, 0.1);
	border-radius: 24px;
	box-shadow: 0 14px 40px rgba(20, 20, 20, 0.05);
}

.hr-client-hero {
	padding: 30px;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: flex-start;
	background: linear-gradient(135deg, rgba(164, 90, 58, 0.12) 0%, rgba(255, 255, 255, 1) 75%);
}

.hr-client-hero h2 {
	margin: 14px 0 10px;
	font-size: 34px;
	line-height: 1.1;
	color: #1f1f1f;
}

.hr-client-hero p {
	margin: 0;
	color: #5f5f5f;
	max-width: 680px;
	line-height: 1.7;
}

.hr-client-hero-actions,
.hr-client-inline-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hr-client-primary-btn,
.hr-client-secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}

.hr-client-primary-btn {
	background: var(--accent);
	color: #fff;
}

.hr-client-primary-btn:hover {
	background: #8b4a2a;
	color: #fff;
}

.hr-client-secondary-btn {
	background: rgba(164, 90, 58, 0.08);
	color: var(--accent);
	border: 1px solid rgba(164, 90, 58, 0.16);
}

.hr-client-secondary-btn:hover {
	background: rgba(164, 90, 58, 0.12);
	color: var(--accent);
}

.hr-client-summary-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.hr-summary-card {
	padding: 22px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(164, 90, 58, 0.08);
	box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
}

.hr-summary-card span {
	display: block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8b8b8b;
	margin-bottom: 10px;
}

.hr-summary-card strong {
	font-size: 30px;
	line-height: 1;
	color: #1f1f1f;
}

.hr-summary-card.accent-primary {
	background: linear-gradient(180deg, rgba(164, 90, 58, 0.14) 0%, #fff 100%);
}

.hr-summary-card.accent-secondary {
	background: linear-gradient(180deg, rgba(57, 108, 172, 0.12) 0%, #fff 100%);
}

.hr-client-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hr-client-section.two-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.hr-client-section-heading h3 {
	margin: 0 0 6px;
	font-size: 28px;
	color: #1f1f1f;
}

.hr-client-section-heading p {
	margin: 0;
	color: #6d6d6d;
}

.hr-client-card-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.hr-client-card-list.compact {
	grid-template-columns: 1fr;
}

.hr-client-card {
	padding: 22px;
}

.hr-client-card-top,
.hr-client-card-bottom {
	display: flex;
	justify-content: space-between;
	gap: 14px;
}

.hr-client-card-top {
	align-items: flex-start;
	margin-bottom: 16px;
}

.hr-client-card-top h4,
.hr-timeline-content h4 {
	margin: 6px 0 0;
	font-size: 20px;
	color: #1f1f1f;
}

.hr-client-card p,
.hr-timeline-content p {
	margin: 0;
	color: #666;
	line-height: 1.65;
}

.hr-client-status,
.hr-client-meta,
.hr-timeline-date {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hr-client-status {
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(164, 90, 58, 0.1);
	color: var(--accent);
	white-space: nowrap;
}

.hr-client-meta,
.hr-timeline-date {
	color: #8b8b8b;
}

.hr-client-card-bottom strong {
	font-size: 24px;
	color: #1f1f1f;
}

.hr-document-table-wrap {
	overflow: hidden;
}

.hr-client-upload-form {
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hr-client-upload-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.hr-client-upload-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #2c2c2c;
}

.hr-client-upload-form input[type="text"],
.hr-client-upload-form input[type="file"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(164, 90, 58, 0.16);
	border-radius: 12px;
	background: #fff;
}

.hr-client-upload-form .form-message {
	display: none;
	padding: 12px 14px;
	border-radius: 12px;
	font-weight: 500;
}

.hr-client-upload-form .form-message.success {
	display: block;
	background: #eaf8ee;
	color: #25633d;
}

.hr-client-upload-form .form-message.error {
	display: block;
	background: #fdecec;
	color: #8a3030;
}

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

.hr-document-table th,
.hr-document-table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid rgba(164, 90, 58, 0.08);
}

.hr-document-table th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8a8a8a;
	background: rgba(164, 90, 58, 0.04);
}

.hr-timeline {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hr-timeline-item {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 18px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid rgba(164, 90, 58, 0.08);
	border-radius: 20px;
	box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
}

.login-register-popup .tab-btn.danger {
	color: #dc3545;
}

.login-register-popup .tab-btn.danger.active {
	color: #dc3545;
	border-bottom-color: #dc3545;
}

.login-register-popup .tab-btn.danger.active::after {
	background-color: #dc3545;
}

.login-register-popup .delete-warning {
	background-color: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}

.login-register-popup .delete-warning h4 {
	color: #856404;
	margin: 0 0 10px 0;
	font-size: 16px;
}

.login-register-popup .delete-warning p {
	color: #856404;
	margin: 0 0 15px 0;
	font-size: 14px;
}

.login-register-popup .delete-warning ul {
	margin: 0;
	padding-left: 20px;
	color: #856404;
}

.login-register-popup .delete-warning li {
	margin-bottom: 5px;
	font-size: 14px;
}

.login-register-popup .danger-btn {
	background-color: #dc3545;
	color: white;
}

.login-register-popup .danger-btn:hover {
	background-color: #c82333;
}

.login-register-popup .auth-form h4 {
	margin: 0 0 20px 0;
	color: #333;
	font-size: 16px;
	font-weight: 600;
}

/* Avatar Upload Styles */
.login-register-popup .avatar-upload-group {
	margin-bottom: 25px;
}

.login-register-popup .avatar-upload-container {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}

.login-register-popup .avatar-preview {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #f8f9fa;
	border: 2px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	transition: border-color 0.3s ease;
}

.login-register-popup .avatar-preview:hover {
	border-color: var(--accent);
}

.login-register-popup .avatar-preview i {
	color: #999;
	font-size: 24px;
}

.login-register-popup .avatar-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.login-register-popup .avatar-upload-controls {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.login-register-popup .upload-btn {
	background-color: #f8f9fa;
	color: #333;
	border: 1px solid #e0e0e0;
	padding: 8px 16px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

.login-register-popup .upload-btn:hover {
	background-color: var(--accent);
	color: white;
	border-color: var(--accent);
}

.login-register-popup .remove-avatar-btn {
	background-color: #dc3545;
	color: white;
	border: 1px solid #dc3545;
	padding: 6px 12px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s ease;
}

.login-register-popup .remove-avatar-btn:hover {
	background-color: #c82333;
	border-color: #c82333;
}

.login-register-popup .upload-help {
	margin: 0;
	font-size: 12px;
	color: #666;
	font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
	.login-register-popup .popup-content {
		width: 95%;
		max-width: none;
		margin: 20px;
		transform: none;
		top: 20px;
		left: 0;
		right: 0;
		position: fixed;
	}
	
	.login-register-popup .popup-content.account-mode {
		width: calc(100vw - 20px);
	}
	
	.login-register-popup .popup-app-intro {
		padding: 24px 20px 18px;
	}
	
	.login-register-popup .popup-tabs {
		flex-direction: column;
	}

	.login-register-popup .account-app-shell {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.login-register-popup .account-app-sidebar,
	.login-register-popup .account-app-main {
		padding: 20px;
	}

	.login-register-popup .account-header {
		align-items: flex-start;
	}

	.login-register-popup .account-overview-grid {
		grid-template-columns: 1fr;
	}

	.login-register-popup .account-quick-actions {
		flex-direction: column;
	}

	.login-register-popup .quick-action-btn {
		width: 100%;
	}

	.login-register-popup .account-app-main .auth-form {
		padding: 20px;
	}

	.hr-client-app {
		grid-template-columns: 1fr;
	}

	.hr-client-sidebar {
		position: static;
	}

	.hr-client-hero,
	.hr-client-section.two-columns {
		display: flex;
		flex-direction: column;
	}

	.hr-client-summary-grid,
	.hr-client-card-list,
	.hr-client-upload-grid {
		grid-template-columns: 1fr;
	}

	.hr-timeline-item {
		grid-template-columns: 1fr;
	}

	.hr-document-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
	
	.login-register-popup .tab-btn {
		border-bottom: 1px solid #e0e0e0;
	}
	
	.login-register-popup .tab-btn.active {
		border-bottom-color: var(--accent);
	}
	
	.login-register-popup .tab-content {
		padding: 20px;
	}
	
	.login-register-popup .auth-form .checkbox-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}

.sp-megamenu-parent > li:hover > a {
	color: var(--yellow) !important;
}
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li > a {
	font-weight: bold;
}
@media(max-width: 1199px){
#sp-header {
	height: 80px;
}
#sp-header .logo {
    height: 80px;
    line-height: 80px !important;
}
}

@media(min-width: 1200px){
.sppb-addon-sp-slider {
    position: relative;
    overflow: hidden;
    background-position: center;
}
.sppb-addon-sp-slider:after {
    background-color: var(--yellow);
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    left: -6%;
    top: -13%;
}
	
#sp-header.transparent {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    z-index: 99;
	background: transparent;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0);
}
#sp-header.transparent .sp-megamenu-parent > li a {
	color: #ffffff;
}	
}

#sp-header.transparent.header-sticky {
    background-color: var(--black);	
	position: fixed;
	top: 0;
	width: 100%;
	height: 85px;
}

#sp-header.transparent .sp-megamenu-parent > li > a, 
#sp-header.transparent .sp-megamenu-parent > li > span {
	line-height: 85px;
	font-size: 16px;
	font-weight: 600;
}

#sp-top-bar .mod-languages ul,
#sp-header-topbar .mod-languages ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

#sp-top-bar .mod-languages li,
#sp-header-topbar .mod-languages li {
	margin: 0;
	padding: 0;
}

#sp-top-bar .mod-languages a,
#sp-header-topbar .mod-languages a {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

#sp-top-bar .mod-languages img,
#sp-header-topbar .mod-languages img {
	width: 22px;
	height: auto;
	display: block;
	border-radius: 3px;
}

#sp-top-bar .mod-languages .lang-active img,
#sp-header-topbar .mod-languages .lang-active img {
	outline: 2px solid var(--yellow);
	outline-offset: 2px;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a  {
	color: var(--black) !important;
}
/**/
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
	border-radius: 5px;
	padding: 20px 30px;
}
body {
    overflow-x: hidden;
}
p
{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

a{
    text-decoration: none;
}

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

.gap {
    padding: 120px 0;
}
.no-top{
    padding-top: 0;
}
.no-bottom{
    padding-bottom: 0;
}
ul{
    padding: 0;
    margin: 0;
}

figure {
    overflow: hidden;
}
/* hero-section */
.hero-section::before {
    content: "";
    background-color: var(--black);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: .5;
}
.hero-text {
    position: relative;
}
.hero-text h1,.hero-text p{
    color: var(--white);
}
.hero-section {
    position: relative;
    overflow: hidden;
    background-position: center;
}
.hero-section:after {
    background-color: var(--yellow);
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    left: -6%;
    top: -13%;
}
.hero-text-video {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-text-video p {
    width: 78%;
    padding-bottom: 20px;
    font-size: 20px;
}
.hero-text-video .video {
    margin: 0;
}
.hero-text-video .video i {
    background-color: var(--white);
}
.hero-text-video {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 81%;
    margin-top: 40px;
}
.owl-item.active .hero-text h1 {
    animation-duration: 1s;
    animation-name: fadeInOne;
}
.btn-box {
	margin-top: 15px;
}
.owl-item.active .hero-text-video {
    animation-duration: 1.4s;
    animation-name: fadeInOne;
}
.btn-box i {
	font-size: 20px;
	color: #ffffff;
}
a.phonne {
	color: #ffffff;
	padding-right: 20px;
	margin-top: 5px;
}
.btn-box a:hover{
    color: var(--white);
}
.btn-box .btn i {
	color: var(--black);
}
.btn i {
    padding-left: 15px;
    opacity: 0;
    transform: translateX(-10px);
}
.btn:hover i{
    opacity: 1;  
    transform: translateX(0px);
}
@keyframes fadeInOne {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;  }
}

.shaps-side {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--yellow);
    right: 0;
    transform: rotate(45deg);
    right: -6%;
    bottom: -13%;
}
/* btn */
.btn {
    align-items: center;
    background-color: var(--yellow);
    padding: 14px 24px;
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
    border-radius: 25%;
    color: var(--black);
    font-weight: 800;
    position: relative;
    transition: .3s ease-in-out;
    display: inline-flex;
    padding-right: 20px;
}
.btn:hover {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    color: var(--black) !important;
	background-color: var(--yellow);
}
.btn:hover{
    color: var(--black);
}
/* what-we-do */
.what-we-do {
    text-align: center;
}
.what-we-do h3 {
    font-size: 22px;
    padding-top: 26px;
    margin-bottom: 10px;
    line-height: 32px;
}
.what-we-do .sppb-btn-custom {
	margin-top: 34px;
	margin-left: auto !important;
	margin-right: auto !important;
}
.what-we-do {
    transform: translateY(0); 
    transition: transform 0.3s ease-in-out; 
	position: relative;
}

.what-we-do:hover {
    transform: translateY(-10px);
	transition: transform 0.3s ease-in-out; 
}

.what-we-do p {
    width: 75%;
    margin: auto;
}
.provide-img:hover::before {
	transition: transform 0.3s ease-in-out; 
}

.provide-img:hover img.provide-img-one {
   transform: translateY(10px);
  	transition: transform 0.3s ease-in-out; 
}
.provide-img:hover img.provide-img-three {
   transform: translateX(-10px);
  	transition: transform 0.3s ease-in-out; 
}
.provide-img img.provide-img-three {
  	transition: transform 0.3s ease-in-out; 
}
.what-we-do img {
    transform: rotate(45deg);
    margin-bottom: 40px;
    box-shadow: -30px 30px 0px 0px rgba(240,240,240,1);
    -webkit-box-shadow: -30px 30px 0px 0px rgba(240,240,240,1);
    -moz-box-shadow: -30px 30px 0px 0px rgba(240,240,240,1);
}
.what-we-do:hover img {
    box-shadow: -30px 30px 0px 0px var(--accent);
    -webkit-box-shadow: -25px 35px 0px 0px var(--accent);
    -moz-box-shadow: -30px 30px 0px 0px var(--accent);
}
.what-we-do a {
    display: inline-block;
}
.what-we-do h3 a,
.blog-text-style a {
    color: var(--black);
    -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s;
    padding: 0.1% 0px;
    background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    background-repeat: no-repeat;
    text-decoration: none;
}

.what-we-do h3:hover,
.what-we-do a:hover,
.blog-text-style a:hover {
    background-size: 100% 2px;
}
/* provide-img */
.provide-img {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
	transition: transform 0.3s ease-in-out; 
}
.provide-img::before {
    content: "";
    top: 4%;
    position: absolute;
    background-color: var(--red);
    width: 370px;
    height: 470px;
    z-index: -1;
    transform: rotate(45deg);
    left: 22%;
	transition: transform 0.3s ease-in-out; 
}
.provide-img img.provide-img-one {
    margin-left: 40px;
    margin-right: 24px;
    margin-bottom: 50px;
	  	transition: transform 0.3s ease-in-out;
}
.provide-img img.provide-img-three {
    margin-left: 50px;
}
.years-experience sup {
    top: -15px;
}
.years-experience {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    width: 87%;
}
.years-experience h6 {
    font-size: 16px;
}
.heading span {
    font-weight: 800;
    color: var(--body);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 6px;
    display: block;
}
.heading h3 {
    font-size: 50px;
    line-height: 58px;
}
.years-experience h5 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 0;
    padding-top: 10px;
}

.years-experience span {
	display: inline;
}
.boder {
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--yellow);
}

.widget-title .boder {
  width: 60px !important;
  height: 3px !important;
  margin-bottom: 40px !important;
  margin-top: 15px;
}

.years-experience h2 {
    font-size: 100px;
}
.provide-text p {
    width: 88%;
    font-size: 18px;
}
/*  our-recnt-text */
.heading-center {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}
.heading img {
    padding-top: 10px;
}
.our-recnt {
    position: relative;
}
.our-recnt-text {
    position: absolute;
    bottom: 10%;
    color: white;
    width: 90%;
    left: 40px;
}
.our-recnt:hover .our-recnt-text {
    bottom: 23%;
}
.our-recnt:hover .our-recnt-text p{
    opacity: 1;
}
.our-recnt-text p {
    color: var(--white);
    opacity: 0;
    width: 80%;
}
.our-recnt-text h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 14px;
}
.lests {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    width: 90%;
    padding-left: 40px;
    transform: translateY(-30px);
}
.lests span {
    font-weight: 700;
}

.lests .bolo {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background-color: #787878;
    margin: 0px 30px;
}
.our-recnt img {
    width: 100%;
}
.our-recnt figure:before {
    background-image: linear-gradient(180deg, #ffffff00, #0000008f);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.our-recnt figure {
    position: relative;
}
.our-recnt:hover .lests {
    background-color: var(--yellow);
}
.our-recnt {
    width: 97%;
}
.slider-recnt button.owl-dot.active,
.review-slider button.owl-dot.active,
.hero-slider button.owl-dot.active{
    width: 50px;
    height: 5px;
    background-color: var(--yellow);
}
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 14%;
}
.hero-slider .owl-nav {
    position: absolute;
    bottom: 20px;
    right: 13%;
}
.slider-experts .owl-nav i,
.hero-slider .owl-nav i {
    font-size: 16px;
    background-color: var(--yellow);
    line-height: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-experts .owl-nav i:hover,
.hero-slider .owl-nav i:hover{
    background-color: var(--yellow);
    transform: scale(1.1);
}
.slider-experts.owl-theme .owl-nav [class*=owl-]:hover,
.hero-slider.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: transparent;
    color: var(--black);
}
.hero-slider button.owl-dot {
    width: 50px;
    height: 5px;
    background-color: var(--white);
    margin-left: 10px;
}
.slider-experts.owl-carousel .owl-dots.disabled,
.slider-experts.owl-carousel .owl-nav.disabled{
    display: block;
}
.slider-experts .owl-nav {
    position: absolute;
    top: -23%;
    right: 0%;
    width: auto;
}
.hero-slider.owl-carousel .owl-dots.disabled,
.hero-slider.owl-carousel .owl-nav.disabled {
    display: block;
}
.review-slider button.owl-dot,
.slider-recnt button.owl-dot{
    width: 50px;
    height: 5px;
    background-color: #b7b7b7;
    margin-left: 10px;
}
/* dedicated */
.dedicated {
    text-align: center;
    margin: auto;
}
.dedicated {
    text-align: center;
    margin: auto;
    width: 67%;
    z-index: 1;
    position: relative;
}
.dedicated h2 {
    color: var(--white);
    font-size: 40px;
    line-height: 50px;
}
.dedicated p {
    color: var(--white);
}
.video-section {
    padding-top: 180px;
    position: relative;
    padding-bottom: 165px;
    overflow: hidden;
}
.slider-experts.owl-carousel .owl-dots.disabled {
    display: none;
}
.video-section:after {
    background-color: var(--yellow);
    content: "";
    position: absolute;
    width: 428px;
    height: 500px;
    opacity: .6;
    transform: rotate(45deg);
    left: -11%;
    top: -17%;
    z-index: 1;
}
.video-section .shaps-side {
    background-color: var(--yellow);
    position: absolute;
  width: 428px;
  height: 500px;
  opacity: .6;
  transform: rotate(45deg);
  right: -22%;
  bottom: -90%;
  z-index: 1;
}
.video-section:before {
    background-color: var(--black);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;
    right: 0%;
    top: 0%;
    z-index: 1;
}
/* video */
.video i {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-radius: 50%;
    background-color: var(--yellow);
    color: var(--black);
    position: relative;
}
.video {
    margin: auto;
    display: inline-flex;
    margin-bottom: 70px;
}
.video i:before {
    content: "";
    border: 3px var(--yellow) dashed;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    position: absolute;
    transition: 1s ease-in-out;
}
.video a:hover i:before {
    animation: animName 5s linear infinite;
}
@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #86979100;
}
/**/
ul.social-media-icon {
    display: flex;
}
ul.social-media-icon li {
  list-style: none;
  margin-bottom: 4px;
}
ul.social-media-icon li a {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin: 0 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    color: var(--black);
    border: 1px solid #c1c1c1;
}
ul.social-media-icon li a .icon {
  position: relative;
  color: #ffffff;
  transition: .5s;
  z-index: 3;
}
.our-experts-text ul.social-media-icon li a .icon {
    color: var(--black);
}
ul.social-media-icon li a:hover .icon {
  color: var(--white);
  transform: rotateY(360deg);
}
.our-experts a svg {
    width: 30px;
    height: auto;
}
ul.social-media-icon li a:hover:before {
  top: 0;
}
ul.social-media-icon li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3b5999;
  transition: .5s;
  z-index: 2;
}
ul.social-media-icon li:nth-child(2) a:before{
  background: #55acee;  
}
ul.social-media-icon li:nth-child(3) a:before {
    background-color: #0077b5;
}
/* our-experts */
.our-experts-text {
    margin-top: 60px;
    margin-left: 60px;
}
.our-experts-text span {
    display: block;
    font-size: 18px;
    color: var(--body);
    padding-bottom: 20px;
}
.our-experts-text h3 {
    font-size: 30px;
    text-transform: uppercase;
    width: 88%;
    line-height: 30px;
}
.our-experts img {
    border: 5px solid var(--yellow);
}
.our-experts-text a {
    font-weight: bold;
    margin-bottom: 24px;
    display: block;
    color: var(--black);
}
.our-experts {
    display: flex;
    align-items: flex-start;
    margin-top: 124px;
    margin-bottom: 170px;
    position: relative;
}
.heading.two {
    padding-bottom: 50px;
}

.mem-two .our-experts:before {
    transform: rotate(0deg);
    right: 18%;
    top: -25%;
}
.mem-two .our-experts:hover:before {
    top: -35%;
}

.mem-two .our-experts-text {
	margin-left: 40px;
}

.our-experts:before {
    content: "";
    background-color: white;
    width: 350px;
    position: absolute;
    height: 450px;
    z-index: -1;
    border: 1px solid #c1c1c1;
    transform: rotate(45deg);
    right: 18%;
    top: -23%;
    box-shadow: -30px 30px 0px 0px rgba(240,240,240,0.75);
    -webkit-box-shadow: -30px 30px 0px 0px rgba(240,240,240,0.75);
    -moz-box-shadow: -30px 30px 0px 0px rgba(240,240,240,0.75);
}
.our-experts:hover:before {
    box-shadow: -25px 35px 0px 0px var(--accent);
    -webkit-box-shadow: -25px 35px 0px 0px var(--accent);
    -moz-box-shadow: -25px 35px 0px 0px var(--accent);
}
.owl-carousel .owl-item img{
    width: auto;
}
ul.client {
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: 10px 10px 10px 0px rgba(242,242,242,1);
-webkit-box-shadow: 10px 10px 10px 0px rgba(242,242,242,1);
-moz-box-shadow: 10px 10px 10px 0px rgba(242,242,242,1);
}
ul.client img {
    transform: scale(.8);
}
ul.client li:hover img {
    transform: scale(1);
}
ul.client li {
    padding: 30px 63px;
    border: 1px solid #c1c1c1;
    margin-left: -1px;
}
.heading-center h3 {
    text-transform: uppercase;
}
.section-features {
    background-repeat: no-repeat;
    position: relative;
    background-position: bottom;
    margin-bottom: 78px;
}
.section-features:before {
    width: 100%;
    top: 0;
    background-color: #fafafa;
    height: 100%;
    position: absolute;
    content: "";
    opacity: .65;
}
.features-text,.features-box {
    position: relative;
}
.features-box img {
    padding-right: 20px;
}
.features-box p {
    font-size: 16px;
}
.features-box h5 {
    font-size: 20px;
    line-height: 22px;
}
.features-text p {
    font-size: 16px;
    width: 100%;
}
.features-box {
    padding: 26px 40px;
    display: flex;
    align-items: flex-start;
    background-color: white;
    border: 1px solid #bebebe;
    box-shadow: 10px 10px 10px 0px rgba(212,212,212,.75);
    -webkit-box-shadow: 10px 10px 10px 0px rgba(212,212,212,.75);
    -moz-box-shadow: 10px 10px 10px 0px rgba(212,212,212,.75);
    margin-bottom: 26px;
}
.features-box:hover{
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
}
/* reviews-text */
.reviews-text {
    position: relative;
}
.reviews-text span {
    letter-spacing: .5px;
    font-weight: 800;
    display: block;
}
.reviews-text .heading h3 {
    font-size: 40px;
    line-height: 48px;
}
ul.star {
    background-color: var(--yellow);
    padding: 4px 10px;
    display: inline-flex;
}
ul.star {
    display: inline-flex;
    background-color: var(--yellow);
    padding: 0px 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}
ul.star li{
    padding-right: 3px;
	list-style: none;
}
/* reviews-img */
.reviews-img {
    position: relative;
}
.reviews-img > img {
    margin-left: -110px;
    margin-top: 70px;
    position: relative;
}
.reviews-img {
    position: relative;
    display: flex;
    align-items: center;
	margin-bottom: -120px;
}
.reviews-slide {
    position: relative;
    padding-left: 30px;
    margin-bottom: -56px;
}
.quotation-img {
	margin-top: -140px;
	margin-bottom: 70px
}

.reviews-slide p {
    width: 70%;
    font-size: 24px;
    position: relative;
    color: white;
    line-height: 34px;
    padding-bottom: 20px;
    padding-top: 50px;
}
.reviews-img:before {
    content: "";
    position: absolute;
    width: 474px;
    height: 609px;
    background-color: var(--black);
    transform: rotate(45deg);
    left: 28%;
	box-shadow: -80px 80px 0px -41px var(--accent);
	-webkit-box-shadow: -80px 80px 0px -41px var(--accent);
	-moz-box-shadow: -80px 80px 0px -41px var(--accent);
}
.reviews-slide img {
    width: 60px;
    height: 60px;
    padding: 18px;
    background-color: var(--yellow);
    transform: rotate(45deg);
}

.reviews-slide h3 {
    color: var(--white);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.reviews-slide span {
    letter-spacing: 0;
    color: var(--white);
    text-transform: uppercase;
}
.review-slider .owl-item.cloned,.review-slider .owl-item {
    opacity: 0;
}
.review-slider .owl-item.active{
    opacity: 1;
    width: 100%;
}
.review-slider.owl-theme .owl-nav.disabled+.owl-dots {
    text-align: initial;
    position: absolute;
    bottom: -27%;
}
/* blog */
.blog-text {
    display: flex;
    align-items: center;
}
.blog-text-style {
    margin-left: 40px;
}
.blog-text-style p {
    font-size: 16px;
    padding-bottom: 30px;
}
.blog-text-style span {
    font-size: 14px;
    display: flex;
    text-transform: uppercase;
    font-weight: bold;
    color: #8c8c8c;
    padding-left: 18px;
    padding-top: 5px;
}
.blog-text-style h6 {
    font-size: 16px;
    background-color: var(--yellow);
    margin-bottom: 0;
    margin-top: 14px;
    display: inline-block;
    line-height: 22px;
    padding-left: 27px;
    margin-left: -8px;
    padding-right: 10px;
}
.blog-text-style img {
    border-radius: 50px;
    position: relative;
    border: 5px solid var(--yellow);
}
.blog-text-style h5 {
    font-size: 20px;
    line-height: 28px;
    padding-top: 5px;
}
.mt-70 {
    text-align: center;
    margin-top: 70px;
}
/* subscribe */
.subscribe {
    display: flex;
    align-items: flex-start;
}
.subscribe h3 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.subscribe img {
    margin-right: 30px;
}
.subscribe form{
    display: flex;
    margin-top: 40px;
	margin-left: 12%;
	margin-right: 5%;
}
.subscribe-img {
    text-align: end;
    position: relative;
    display: flex;
}
.subscribe form {
	width: 100%;
}
.subscribe form input {
    outline: none;
    height: 54px;
    box-shadow: 10px 10px 10px 0px rgba(212,212,212,.25);
    -webkit-box-shadow: 10px 10px 10px 0px rgba(212,212,212,.25);
    -moz-box-shadow: 10px 10px 10px 0px rgba(212,212,212,.25);
    padding-left: 24px !important;
    width: 443px;
    border: 1px solid #c1c1c1;
    border-right: 0;
    font-weight: 700;
}
.subscribe-img  figure.effect-duke {
    margin: 5px;
}
.section-subscribe {
    position: relative;
    overflow: hidden;
}
.section-subscribe:before {
    position: absolute;
    width: 800px;
    height: 745px;
    background-color: var(--yellow);
    right: 0;
    transform: rotate(45deg);
    right: -13%;
    bottom: -96%;
    content: "";
}
/* #sp-bottom1 */
#sp-bottom1{
    position: relative;
}
#sp-bottom1:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: var(--black);
    opacity: .9;
}
.logo {
    position: relative;
}
#sp-bottom1 ul.social-media-icon li a .icon {
    color: white;
}
.logo p {
    color: #e8e8e8;
    font-size: 16px;
    width: 74%;
    padding-top: 24px;
    padding-bottom: 60px;
}
#sp-bottom1 ul.social-media-icon li a {
    width: 60px;
    height: 60px;
    margin: 0 4px;
}
.widget-title {
    position: relative;
}
.widget-title h3 {
    color: var(--white);
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.widget-title .boder {
    width: 60px;
    height: 3px;
    margin-bottom: 50px;
}
.widget-title li a {
    color: #e8e8e8;
    margin-left: 15px;
    padding-bottom: 6px;
}
.widget-title li {
    padding-bottom: 20px;
	list-style: none;
}
.widget-title li i {
    color: #515151;
}
.get-in-touch {
    position: relative;
    display: flex;
    margin-bottom: 10px;
}
.get-in-touch svg {
    fill: var(--yellow);
    height: auto;
}
.get-in-touch i {
    background-color: #242424;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    margin-right: 20px;
}
.get-in-touch span {
    font-weight: 400;
    padding-bottom: 3px;
    display: block;
}
.get-in-touch h6{
    font-size: 16px;
}
.get-in-touch h6 a{
    padding-bottom: 4px;
}
.get-in-touch h6 a,.get-in-touch a,.footer-bottom-text ul a,.get-in-touch span,.get-in-touch h6,.footer-bottom-text h6{
    color: var(--white);
}

.lests,.navbar-links li.navbar-dropdown .dropdown  li a:before,.our-experts:before,.slider-experts .owl-nav i,
.hero-slider .owl-nav i,
.what-we-do img,.what-we-do a,.what-we-do a i,.our-recnt-text,.our-recnt-text p,.btn i,figure.zoom img,
.features-box,.btn,ul.client img,.widget-title li a,.get-in-touch h6 a,.get-in-touch a,.footer-bottom-text ul li a{
     transition: .3s ease-in-out;
}
.footer-bottom-text ul li {
	display: inline-block;
}
.widget-title li a:hover,.get-in-touch h6 a:hover,.get-in-touch a:hover,
.footer-bottom-text ul li a:hover{
    color: var(--yellow);
}
.footer-bottom-text ul li a {
	border-bottom: 1px solid #fff;
	text-transform: uppercase;
	font-size: 16px;
}
.footer-bottom-text ul li {
  padding-left: 20px;
}
.footer-bottom-text ul {
  display: flex;
  justify-content: flex-end;
}
figure.effect-duke img{
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-duke {
    background: -webkit-linear-gradient(-45deg, black 0%,black 100%);
    background: linear-gradient(-45deg, black 0%,black 100%);
}
figure.effect-duke:hover img {
  opacity: 0.8;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2,1.2, 1);
}


.blog-text figure.effect-duke {
    width: 100%;
    margin: 0;
}
.blog-text:hover figure.effect-duke img{
    opacity: 0.8;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2,1.2, 1);
}

video {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
}

.borderr-line::after {
    content: "";
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 100%; 
    background-color: var(--yellow); 
}

@media(max-width: 1400px){
.dedicated h2,.heading-center h2 {
    font-size: 38px;
    line-height: 48px;
}
.hero-text-video {
    width: 83%;
    margin-top: 21px;
}
.video-section:after {
    left: -22%;
    top: -24%;
}
.video-section .shaps-side{
    right: -22%;
    bottom: -24%; 
}

.hero-slider .owl-dots {
    left: 8%;
}

.slider-experts .owl-nav i, .hero-slider .owl-nav i {
    font-size: 14px;
    width: 45px;
    height: 45px;
}

.reviews-img > img {
    width: 45%;
}
.reviews-img > img {
    margin-left: -110px;
    margin-top: 20px;
}
.hero-section:after {
    width: 170px;
    height: 180px;
}

h1 {
    font-size: 55px;
}
.hero-text {
    padding-top: 110px;
    width: 51%;
    padding-bottom: 0px;
}
.video i:before {
    width: 110px;
    height: 110px;
}
.shaps-side {
    width: 158px;
    height: 159px;
}

.what-we-do p {
    width: 90%;
}
.what-we-do img {
    width: 46%;
}
.video i {
    width: 85px;
    height: 85px;
}
.hero-text-video p {
    width: 100%;
    font-size: 18px;
}
.what-we-do h4 {
    font-size: 20px;
    padding-top: 16px;
    margin-bottom: 4px;
}
.what-we-do a i {
    height: 44px;
    width: 44px;
    font-size: 12px;
    margin-top: 20px;
}
.heading h3 {
    font-size: 38px;
    line-height: 42px;
}
.heading span {
    font-size: 14px;
}
.years-experience h2 {
    font-size: 66px;
}
.provide-text p{
    font-size: 16px;
    line-height: 26px;
}
.provide-img img.provide-img-one {
    margin-left: 20px;
    margin-right: 24px;
    margin-bottom: 20px;
}
.provide-img::before {
    width: 290px;
    height: 440px;
}
.provide-img img.provide-img-three {
    margin-left: 18px;
    width: 50%;
}
.our-experts-text {
    margin-top: 60px;
    margin-left: 29px;
}
.our-experts {
    margin-top: 92px;
    margin-bottom: 116px;
}
  img.provide-img-two {
    width: 30%;
}
  ul.client li {
    padding: 30px 45px;
}
.features-box {
    padding: 20px 20px;
}
.features-text p,.features-box p {
    font-size: 14px;
    line-height: 24px;
}
.reviews-text .heading h3 {
    font-size: 34px;
    line-height: 36px;
}
.reviews-slide p {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 24px;
    padding-top: 40px;
}
.reviews-img:before {
    width: 382px;
    height: 510px;
    left: 32%;
}
.reviews-slide h3 {
    font-size: 20px;
}
.section-features {
    margin-bottom: 10px;
}
.video {
    margin-bottom: 40px;
}
.reviews-slide span {
    font-size: 14px;
}
.blog-text-style {
    margin-left: 20px;
}
.blog-text > img {
    width: 43%;
}
.subscribe h3 {
    font-size: 30px;
}
.subscribe form input {
    width: 339px;
}
.blog-text-style p {
    padding-bottom: 22px;
}
.our-experts-text h3 {
    font-size: 22px;
    width: 100%;
    line-height: 24px;
}
.section-subscribe:before {
    width: 664px;
    height: 659px;
    right: -18%;
    bottom: -75%;
}
.our-experts-text span {
    font-size: 16px;
    color: #444;
    padding-bottom: 16px;
}
.our-experts:before {
    width: 254px;
    height: 368px;
    right: 19%;
    top: -23%;
}
.footer-bottom-text ul li a {
    font-size: 14px;
}
#sp-bottom1-bottom {
    margin-top: 80px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.reviews-slide {
    width: 74%;
} 
}
@media(max-width: 1200px){
.gap {
    padding: 100px 0;
}
.no-top{
      padding-top: 0;
}
.no-bottom{
      padding-bottom: 0;
}
.shaps-side {
    right: -9%;
    bottom: -19%;
}
.hero-section:after,.shaps-side{
    display: none;
}
.slider-experts .owl-dots{
    display: none;
}
.slider-experts .owl-nav {
    position: relative;
    margin-top: 30px;
}
  h1 {
    font-size: 42px;
}
.hero-text {
    width: 100%;
}
.hero-text {
    padding-top: 50px;
}
.hero-slider .owl-dots {
    left: 13%;
}
.shaps-side {
    width: 89px;
    height: 101px;
}
.hero-section:after {
    width: 109px;
    height: 95px;
}
.reviews-img:before {
    width: 67%;
    height: 444px;
    left: 38%;
    transform: revert;
}
  #sp-bottom1 ul.social-media-icon{
    margin-bottom: 30px;
}
.subscribe {
    margin-bottom: 30px;
}
.footer-bottom-text h6 {
    font-size: 14px;
}
.subscribe-img{
    text-align: center;
    justify-content: center;
}
.subscribe-img img {
    width: auto;
}
.subscribe form input {
    width: 385px;
}
.footer-bottom-text ul li a {
    font-size: 12px;
    margin-left: -10px;
}
.blog-text {
    margin-bottom: 24px;
}
.reviews-text {
    padding-top: 60px;
}
  h2 {
    font-size: 40px;
    line-height: 50px;
}
  ul.star {
    margin-bottom: 10px;
    margin-top: 20px;
}
  ul.client {
    box-shadow: none;
      -webkit-box-shadow: none;
    flex-wrap: wrap;
}
.reviews-img > img {
    margin-left: 0px;
    margin-top: 40px;
    position: relative;
    width: 38%;
}
.reviews-img:before {
    width: 60%;
    height: 444px;
    left: 33%;
}
.what-we-do {
    margin-bottom: 60px;
}
.provide-img img.provide-img-one {
    width: 70%;
}
.dedicated h2 {
    color: #fff;
    font-size: 34px;
    line-height: 42px;
}
.provide-img {
    margin-bottom: 40px;
    justify-content: center;
}
.dedicated {
    width: 100%;
}
.our-experts img {
    width: 30% !important;
}
.our-experts:before {
    right: 36%;
}
.our-experts {
    margin-bottom: 75px;
}
.heading.two {
    padding-bottom: 40px;
}
}
@media(max-width: 993px){
.gap {
    padding: 80px 0;
}
.no-top{
      padding-top: 0;
}
.no-bottom{
      padding-bottom: 0;
}
.mobile-nav {
    width: 40%;
}
.blog-text-style {
    width: 100%;
}
.video-section:after {
    width: 269px;
    left: -25%;
    top: -24%;
}
.blog-text figure.effect-duke img {
    width: 100%;
}
.video-section .shaps-side {
    width: 269px;
    display: block;
    right: -25%;
    bottom: -24%;
}
.section-features {
    margin-bottom: 60px;
}
.hero-section:after,.shaps-side{
    display: none;
}
.slider-experts .owl-dots{
    display: none;
}
.slider-experts .owl-nav {
    position: relative;
    margin-top: 30px;
}
  h1 {
    font-size: 42px;
}
.hero-text {
    width: 100%;
}
.hero-text {
    padding-top: 50px;
}
.hero-slider .owl-dots {
    left: 13%;
}
.shaps-side {
    width: 89px;
    height: 101px;
}
.hero-section:after {
    width: 109px;
    height: 95px;
}
.reviews-img:before {
    width: 67%;
    height: 444px;
    left: 38%;
    transform: revert;
}
  #sp-bottom1 ul.social-media-icon{
    margin-bottom: 30px;
}
.subscribe {
    margin-bottom: 30px;
}
.footer-bottom-text h6 {
    font-size: 14px;
}
.subscribe-img{
    text-align: center;
    justify-content: center;
}
.subscribe-img img {
    width: auto;
}
.subscribe form input {
    width: 385px;
}
.footer-bottom-text ul li a {
    font-size: 12px;
    margin-left: -10px;
}
.blog-text {
    margin-bottom: 24px;
}
.reviews-text {
    padding-top: 60px;
}
  h2 {
    font-size: 40px;
    line-height: 50px;
}
  ul.star {
    margin-bottom: 10px;
    margin-top: 20px;
}
  ul.client {
    box-shadow: none;
      -webkit-box-shadow: none;
    flex-wrap: wrap;
}
.reviews-img > img {
    margin-left: 0px;
    margin-top: 40px;
    position: relative;
    width: 38%;
}
.reviews-img:before {
    width: 60%;
    height: 444px;
    left: 33%;
}
.what-we-do {
    margin-bottom: 60px;
}
.provide-img img.provide-img-one {
    width: 70%;
}
.dedicated h2 {
    color: #fff;
    font-size: 34px;
    line-height: 42px;
}
.provide-img {
    margin-bottom: 40px;
    justify-content: center;
}
.dedicated {
    width: 100%;
}
.our-experts img {
    width: 30% !important;
}
.our-experts:before {
    right: 36%;
}
.our-experts {
    margin-bottom: 75px;
}
.heading.two {
    padding-bottom: 40px;
}
}
@media(max-width: 768px){
.lests {
    padding: 10px;
    width: 96%;
    padding-left: 30px;
}
.mobile-nav {
    width: 50%;
}
  video {
    width: auto;
    height:100%;
}
.video-section:after {
    width: 126px;
}
.video-section .shaps-side {
    width: 126px;
}
.boder {
    height: 90px;
}
.hero-slider .owl-dots {
    left: 15%;
}
.review-slider.owl-theme .owl-nav.disabled+.owl-dots {
    bottom: -25%;
}
.reviews-slide {
    width: 90%;
}
.features-text p {
    padding-bottom: 20px;
}
.reviews-slide img {
    width: 50px;
    height: 50px;
    padding: 18px;
    background-color: var(--accent);
    transform: rotate(45deg);
    margin-top: 55px;
}
.reviews-img > img{
    display: none;
}
.widget-title h3 {
    margin-bottom: 0;
    margin-top: 30px;
}
.logo p {
    padding-top: 24px;
    padding-bottom: 30px;
}
.reviews-img:before {
    width: 100%;
    height: 100%;
    left: 0%;
    top: 9%;
}
.reviews-slide p {
    width: 100%;
}
.reviews-slide p {
    padding-top: 22px;
}
  #sp-bottom1 ul.social-media-icon{
    margin-bottom: 0;
}
.blog-text > img {
    width: 43%;
}
.widget-title .boder {
    width: 60px;
    margin-bottom: 24px;
}
.widget-title li {
    padding-bottom: 12px;
}
.footer-bottom-text {
    flex-wrap: wrap;
    justify-content: center;
}
#sp-bottom1-bottom {
    margin-top: 60px;
}
.subscribe {
    display: block;
    text-align: center;
}
.subscribe form input {
    width: 100%;
}
.subscribe {
    display: block;
}
.subscribe img {
    margin-bottom: 20px;
    width: 50px;
}
.our-experts:before {
    right: 24%;
}
.subscribe form {
    margin-top: 20px;
}
.subscribe-img img {
    width: 50%;
}
.our-recnt-text {
    left: 30px;
}
}
@media(max-width: 600px){
}
@media(max-width: 576px){
.gap {
    padding: 60px 0;
}
.no-top{
      padding-top: 0;
}
.no-bottom{
      padding-bottom: 0;
}
.mobile-nav {
    width: 100%;
    padding: 40px 30px 15px;
}
.video-section .shaps-side,.video-section:after {
   display: none;
}
.section-features {
    margin-bottom: 80px;
}
.hero-text-video {
    width: 95%;
}
.hero-slider .owl-dots {
    left: 0;
    position: relative;
}
.reviews-img:before {
    box-shadow: -46px 46px 0px -42px var(--accent);
    -webkit-box-shadow: -46px 46px 0px -42px var(--accent);
    -moz-box-shadow: -46px 46px 0px -42px var(--accent);
}
.hero-slider.owl-carousel .owl-dots.disabled, .hero-slider.owl-carousel .owl-nav.disabled{
    display: none;
}
.blog-text {
    display: block;
    margin-bottom: 40px;
}
.blog-text > img {
    width: 35%;
}
  h2 {
    font-size: 32px;
    line-height: 42px;
}
.blog-text-style {
    margin-left: 0;
    margin-top: 15px;
}
.blog-text-style p {
    padding-bottom: 14px;
}
.heading-center {
    padding-bottom: 30px;
}
.heading.two {
    padding-bottom: 30px;
}
.dedicated h2 {
    font-size: 28px;
    line-height: 32px;
}
.lests span {
    font-size: 14px;
}
.lests .bolo {
    margin: 0px 16px;
}
.our-recnt-text h3 {
    font-size: 24px;
}
.years-experience img {
    width: 140px;
}
.years-experience h2 {
    font-size: 50px;
    margin-bottom: 0;
}
.years-experience h5 {
    font-size: 18px;
}
.heading span {
    font-size: 12px;
}
.years-experience h6 {
    font-size: 14px;
}
.provide-img::before {
    width: 195px;
    height: 350px;
}
.heading h3 {
    font-size: 30px;
    line-height: 36px;
}
}
@media(max-width: 500px){
.our-experts:before {
    right: 19%;
}
}
@media(max-width: 480px){
.our-experts:before {
    transform: rotate(90deg);
}
.hero-text-video .video {
    margin: 26px;
}
.hero-text-video {
    width: 100%;
    display: block;
}
.subscribe h3 {
    font-size: 24px;
}
.our-experts:before {
    right: 15%;
    top: -12%;
}
.heading-center {
    padding-bottom: 20px;
}
.our-experts-text h3 {
    font-size: 20px;
}
.our-experts {
    margin-top: 15px;
    margin-bottom: 26px;
}
}
@media(max-width: 450px){
.provide-img::before {
    width: 148px;
    height: 300px;
}
  h1 {
    font-size: 34px;
}
.slider-experts.owl-carousel .owl-item img {
    margin: auto;
}
.blog-text > img {
    width: 100%;
}
.our-experts-text {
    margin-left: 60px;
}
  h2 {
    font-size: 26px;
    line-height: 32px;
}
.our-experts:before {
    right: 27%;
    top: 36%;
}
.our-experts:before {
    width: 67%;
    height: 77%;
    right: 19%;
    top: 31%;
}
.our-experts img {
    width: 50% !important;
}
.heading.two {
    padding-bottom: 20px;
}
.our-experts-text {
    margin-top: 20px;
}
.our-experts {
    display: block;
}
.our-recnt-text h3 {
    font-size: 18px;
}
.our-recnt-text p{
    font-size: 14px;
    line-height: 24px;
}
.our-recnt-text h3 {
    margin-bottom: 0px;
}
.our-recnt-text p{
    padding-bottom: 10px;
}
.subscribe form {
    display: block;
}
.subscribe form input {
    border: 1px solid #c1c1c1;
    margin-bottom: 20px;
}
.subscribe h3 {
    font-size: 20px;
}
}
@media(max-width: 410px){
.heading h3 {
    font-size: 28px;
    line-height: 34px;
}
.dedicated h2 {
    font-size: 24px;
    line-height: 28px;
}
.lests span {
    font-size: 12px;
}
.lests {
    padding: 10px;
    width: 100%;
    padding-left: 10px;
}
.our-recnt {
    width: 96%;
}
.review-slider button.owl-dot, .slider-recnt button.owl-dot {
    width: 30px;
}
.our-recnt-text {
    left: 10px;
    width: 100%;
}
.footer-bottom-text h6 {
    font-size: 12px;
    text-align: center;
}
}
@media(max-width: 375px){
.our-experts:before {
    width: 70%;
    height: 77%;
    right: 15%;
    top: 31%;
}
.res-log img {
    width: 60%;
}
}
.our-clients {
	width: 100%;
	height: auto;
	text-align: center;
}

.our-clients ul {
	padding: 0;
	margin: 0;
}

.our-clients ul li {
	list-style: none;
	display: inline-block;
	width:180px;
	height:100px;
	position: relative;
	overflow: hidden;
	cursor:pointer;
	margin: 10px;
	border: 2px solid #c1c1c1;
	transition: .5s;
}

.our-clients ul li img {
	width: 100%;
	height: 100%;
}
.our-clients ul li img:nth-child(1) {
	transform: translateY(0);
	transition: .5s;
}
.our-clients ul li img:nth-child(2) {
	transform: translateY(0);
	transition: .5s;
}

/*Hover-Section*/


.our-clients ul li:hover img:nth-child(1) {
	transform: translateY(-100%);
	transition: .5s;
}
.our-clients ul li:hover img:nth-child(2) {
	transform: translateY(-100%);
	transition: .5s;
}

/**/
.effect-1,
.effect-2 {
  border-radius: 30%;
  display: none;
  mix-blend-mode: multiply;
  height: 84%;
  opacity: 1;
  position: absolute;
  width: 84%;
  z-index: 3000;
}

.effect-1 {
  animation: rotate 1.8s linear infinite;
  background: cyan;
}

.effect-2 {
  animation: rotate 1.2s linear reverse infinite;
  background: #e7a9ff;
}

@keyframes rotate {
  0% {
    top: 0;
    left: 8%;
  }
  25% {
    top: 8%;
    left: 0%;
  }
  50% {
    top: 16%;
    left: 8%;
  }
  75% {
    top: 8%;
    left: 16%;
  }
  100% {
    top: 0;
    left: 8%;
  }
}

.title {
  position: relative;
  top: calc(100% + 16px);
}

.title span {
  display: block;
  font-family: Helvetica, Arial, Sans-Serif;
  font-size: 0.6rem;
  letter-spacing: 0.1rem;
  margin-top: 8px;
  text-transform: uppercase;
}

.exercise {
  background-image: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  border-radius: 5px;
  height: 50%;
  margin: 25%;
  width: 50%;
}

/**/
@media (max-width: 767px) {
  .tp-service-five-section-box {
    padding-left: 30px;
    padding-right: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
  }
}
.tp-service-five-section-box p {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #ffffff;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-five-section-box p br {
    display: none;
  }
}
.tp-service-five-wrapper {
  transform: translateY(50px);
  transition: 0.3s;
}
.tp-service-five-bg {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-five-bg {
    width: 100%;
  }
}
.tp-service-five-item {
  padding: 40px 60px;
  transition: 0.4s;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-five-item {
    padding: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-five-item {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-five-item {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .tp-service-five-item {
    padding: 30px;
  }
}
.tp-service-five-item:hover {
  z-index: 9;
}
.tp-service-five-item:hover .tp-service-five-wrapper {
  transform: translateY(0px);
}
.tp-service-five-item:hover .tp-service-five-content p {
  opacity: 1;
  visibility: visible;
}
.tp-service-five-item:hover .tp-service-five-btn a {
  transform: scale(1.2);
  background-color: var(--black);
  color: #ffffff;
}
.tp-service-five-item .tp-service-five-btn a {
  background-color: var(--yellow);
  color: #ffffff;
}
.tp-service-five-item:hover .tp-services-five-item-bg {
  transform: scale(1.05);
  box-shadow: 0px 16px 40px rgba(32, 33, 36, 0.1);
  background-color: var(--yellow);
}
.tp-service-five-item:hover .tp-services-five-item-bg .inner {
  transform: translate(-50%, 50%) scale(1);
}
 
.tp-service-five-item .tp-services-five-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: 50% 100%;
  box-shadow: none;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-property: all;
  transition-property: transform, box-shadow;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #c1c1c1;
}
.tp-service-five-item .tp-services-five-item-bg .inner {
  display: block;
  width: 230%;
  height: 230%;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) scale(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  background-color: #F7F9FB;
}

.tp-service-five-content p {
  font-size: 15px;
}
.tp-service-five-title-sm a {
  color: var(--black);
}
.tp-service-five-title-sm {
  font-weight: 500;
  font-size: 26px;
  line-height: 33px;
  color: var(--black);
  padding-bottom: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-five-title-sm {
    font-size: 23px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-five-title-sm {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-five-title-sm {
    font-size: 22px;
    line-height: 28px;
  }
}
.tp-service-five-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
}

.tp-service-five-content p {
  color: #595B62;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.tp-service-five-btn {
  position: relative;
  z-index: 9;
}
.tp-service-five-btn a {
  height: 55px;
  width: 55px;
  box-shadow: 0px 1px 2px rgba(32, 33, 36, 0.1);
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  text-align: center;
  line-height: 55px;
  color: var(--black);
  font-weight: 700;
  transition: 0.3s;
}
.tp-service-five-btn a:hover {
  background-color: var(--yellow);
  color: #ffffff;
  
}
.tp-service-five-btn a:hover i {
  animation: tfLeftToRight 0.4s forwards;
}

.tp-services-five-item-bg-color .row [class*=col-]:first-child .tp-service-five-item .tp-services-five-item-bg {
  background-color: #F7F9FB;
}
.tp-services-five-item-bg-color .row [class*=col-]:first-child .tp-service-five-item .inner {
  background-color: white;
}
.tp-services-five-item-bg-color .row [class*=col-]:nth-child(4) .tp-service-five-item .tp-services-five-item-bg {
  background-color: #F7F9FB;
}
.tp-services-five-item-bg-color .row [class*=col-]:nth-child(4) .tp-service-five-item .inner {
  background-color: white;
}

.sv-details-category {
  background: #F7F9FC;
  border-radius: 20px;
  padding: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sv-details-category {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .sv-details-category {
    padding: 30px;
  }
}

/**/
/*blog*/
.comma {
    padding-bottom: 30px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.comma img {
	width: 31px !important;
	border-radius: 0!important;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.few {
    color: #ffffff;
    text-align: center;
    border-radius: 20px;
    padding: 50px;
    padding-bottom: 35px;
    margin-top: 22px;
    margin-bottom: 20px;
	background: var(--yellow);
}
.few h4 {
	width: 80%;
	margin: auto;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	color:  var(--black);
}
.few span{
    font-size: 20px;
    font-weight: bold;
    padding-top: 20px;
    display: block;
    text-transform: uppercase;
	color:  var(--black);
}

.sppb-article-info-wrap h3 {
	font-size: 26px;
	font-weight: bold;
}
.sppb-article-info-wrap h3 a {
	color: var(--black);
}

.blog .sppb-article-info-wrap {
    margin: auto;
    margin-top: -65px;
    width: 95%;
    background: #ffffff;
    position: relative;
    padding: 0 40px;
    padding-top: 40px;
    border-radius: 25px;
}

.sppb-addon-article .sppb-article-img-wrap .sppb-img-responsive img {
	border-radius: 20px;
}

figure {
	overflow: hidden;
}

.sp-page-title .sp-page-title-heading {
	font-size: 60px;
	color: #ffffff;
	font-weight: 600;
	position: relative;
	z-index: 0;
	padding-top: 20px;
}
.sp-page-title {
	position: relative;
	padding-top: 200px;
	padding-bottom: 140px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#sp-left .sp-module, 
#sp-right .sp-module {
	background: #fafafa;
	padding: 40px;
	border-radius: 20px;
	margin: 10px 0 30px 0;
	border: 0px solid #f3f3f3;
}
.article-list .article-body {
	padding: 20px 30px;
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}
.article-list .article .article-intro-image, .article-list .article .article-featured-video, .article-list .article .article-featured-audio, .article-list .article .article-feature-gallery {
	margin: 0;
	border-radius: 0;
	border-bottom: 0px solid #f5f5f5;
}
.article-list .article {
  margin-bottom: 30px;
  padding: 0px;
  border: 0px solid #f5f5f5;
  border-radius: 0;
}

.cols-3 .article-introtext {
	display: none;	
}

.cols-3 .article-intro-image img {
	height: 305px;
	width: 100%;
	object-fit: cover;
}
.article-list .article .article-header h1 a:hover, 
.article-list .article .article-header h1 a:active, 
.article-list .article .article-header h1 a:focus, 
.article-list .article .article-header h2 a:hover, 
.article-list .article .article-header h2 a:active, 
.article-list .article .article-header h2 a:focus {
  color: var(--black);
}
.article-info span,
.article-info a {
	font-size: 14px;
	color: #6f7775 !important;
}

.article-list.articles-leading .article .article-header h1, 
.article-list.articles-leading .article .article-header h2 {
	font-size: 36px;
	padding-bottom: 0;
	padding-top: 25px;
}

.article-list.articles-leading .article .readmore a {
	display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-theme-3);
  background: var(--yellow);
  text-align: center;
  padding: 15px 49px;
  position: relative;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: all 0.5s linear;
  margin-top: 20px;
}
.article-list.articles-leading .article .readmore a:hover {
	background: var(--black);
	color: #ffffff;
	border: 0px solid var(--black);
}
.article-list.articles-leading .article-body {
	padding: 0;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0);
}
.article-introtext p {
	color: #444444;
}

.article-list .article .article-intro-image img, 
.article-list .article .article-featured-video img, 
.article-list .article .article-featured-audio img, 
.article-list .article .article-feature-gallery img {
  border-radius: 0;
  width: 100%;
}
#sp-right .awesomplete {
  width: 100%;
}
.article-header h2 {
	font-weight: 500;
}
.blog-newss .sppb-article-img-wrap img {
	height: 90px !important;
	width: 180px !important;
	object-fit: cover;
	display: block;
}
.blog-newss .sppb-col-xs-6 {
	display: flex;
	align-items: center;
}
.blog-newss .sppb-addon-article {
	display: flex;
	align-items: center;
}
.blog-newss .sppb-article-info-wrap {
	margin-left: 10px;
}
.blog-newss .sppb-article-info-wrap a:hover {
	color: var(--yellow);
}
.blog-newss .sppb-article-info-wrap h3 {
	font-size: 16px;
	color: var(--black);
	font-weight: 400;
	transition: 0.3s;
	margin-bottom: 0;
	margin-top: 10px;
}
.blog-newss .sppb-addon-article {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #f2f2f2;
}
#sp-left .sp-module .sp-module-title, 
#sp-right .sp-module .sp-module-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    position: relative;
    color: var(--black);
}
.long-way .few,
.layout-blog .few {
	width: 84%;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.layout-blog .article-details .article-info,
.layout-blog .article-details p,
.long-way .article-details .article-info,
.long-way .article-details p {
    padding: 0 90px;
}
.layout-blog .article-details .article-header,
.long-way .article-details .article-header {
    background: #ffffff;
    position: relative;
    padding: 0 20px;
    padding-top: 20px;
    border-radius: 2px;
    margin: auto;
    margin-top: 0px;
    width: 90%;
}

#sp-left .js-finder-searchform .form-control,
#sp-right .js-finder-searchform .form-control  {
	border-radius: 60px;
	padding: 15px 20px;
	border: 2px solid #ffffff;
}
#sp-left .js-finder-searchform .form-control:hover,
#sp-right .js-finder-searchform .form-control:hover  {
	border: 2px solid var(--yellow);
}
#sp-left .sp-module ul > li, 
#sp-right .sp-module ul > li {
	border-bottom: 0px solid #f3f3f3;
}
#sp-left .sp-module .sp-module-title, 
#sp-right .sp-module .sp-module-title {
	border-bottom: 0px solid #f3f3f3;
	padding-bottom: 20px;
}
.categories-module li:hover a {
	color: var(--black) !important;
	background: var(--yellow);
	box-shadow: rgba(120, 120, 120, 0.05) 0px 1px 3px 0px, rgba(120, 120, 120, 0.05) 0px 1px 6px 0px;
	transition: all 0.45s ease-in-out;
}
.categories-module {
	margin-top: -7px !important;
}
.categories-module a {
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    padding-left: 30px;
	transition: all 0.45s ease-in-out;
}
.categories-module a {
    background: #ffffff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    border-radius:40px;
    align-items: center;
    margin-top: 10px;
	padding: 12px 0 2px 30px !important;
}

#sp-left .sp-module .tagscloud .tag-name, 
#sp-right .sp-module .tagscloud .tag-name {
	padding: 10px 20px;
	background: var(--black);
	color: #ffffff;
	border-radius: 2px;
	margin-bottom: 4px;
	text-transform: capitalize;
	font-size: 14px !important;
}
#sp-left .sp-module .tagscloud .tag-name:hover, 
#sp-right .sp-module .tagscloud .tag-name:hover {
		background: var(--yellow);
}
.article-details .article-header h1, 
.article-details .article-header h2 {
	font-size: 40px;
	padding-top: 5px;
	font-weight: bold;
	color: var(--black);
}
.article-details img,
.article-details .article-full-image img {
	border-radius: 0px;
	width: 100%;
}
/*end blog**/
.sp-page-title .breadcrumb .float-start {
	margin-left: -15px;
}
.sp-page-title .breadcrumb > span, 
.sp-page-title .breadcrumb > li, 
.sp-page-title .breadcrumb > li + li::before, 
.sp-page-title .breadcrumb > li > a {
	font-size: 18px;
	text-decoration: none;
	font-weight: bold;
	padding-right: 15px;
	padding-left: 0px;
	transition: 0.5s ease-in-out;
	color: #ffffff;
	z-index: 999;
	position: relative
}
.sp-page-title .breadcrumb-item + .breadcrumb-item.active::before {
	padding-right: 15px;
}
.sp-page-title .breadcrumb > .active {
	color: #ffffff;
}
.sp-page-title .breadcrumb {
	margin: 30px 0 0 0;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: "-";
}
.sp-page-title .breadcrumb .fas {
	display: none;
}
.tags > li a {
	background: var(--yellow);
	color: #ffffff;
}
.tags > li a:hover {
	background: var(--black);
	color: #ffffff;
}
.pagenavigation .btn:hover,
.pagenavigation .btn {
	padding: 10px 15px !important;
}
.sppb-addon-articles .sppb-addon-article {
	transition: 0.5s ease-in-out;
	border: 1px solid transparent;
}
.sppb-addon-articles .sppb-addon-article:hover {
    background: #fff;
	transition: 0.5s ease-in-out;
	border: 1px solid #c1c1c1;
}
/* Base styles for the article container */
.sppb-addon-article-layout {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/* Flex container styles */
.sppb-addon-article-layout-content {
    display: flex;
    flex-direction: row;
    align-items: center; /* Center items vertically */
    margin: 20px 0; /* Adjust as needed */
}
#sp-right .sppb-addon-article-layout-content {
    margin: 10px 0 !important;
}
/* Image styles */
.sppb-article-img-wrap {
    flex: 0 0 110px; /* Fixed width for the image */
    margin-right: 0px; /* Space between image and text */
}

.sppb-article-img-wrap img {
    width: 100%;
    height: 110px; /* Fixed height */
    object-fit: cover; /* Maintain aspect ratio */
    display: block;
	margin-left: 5px;
}

/* Content styles */
.sppb-article-info-wrap {
    flex: 1;
    padding: 20px 30px;
	position: relative;
}
.sppb-addon-articles .sppb-article-meta {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #8c8c8c;
    margin: 5px -5px;
}

.sppb-meta-category {
    position: absolute;
    top: 20px;
    left: 25px;
}

.sppb-article-info-wrap h3 {
    padding-top: 30px;
}
#sp-right .sppb-article-info-wrap h3 {
    padding-top: 0px !important;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
.sppb-addon-article-layout-content {
    flex-direction: column;
    align-items: center; /* Center items horizontally in column layout */
}

.sppb-article-img-wrap {
    margin-right: 0;
    margin-bottom: 20px;
    flex: none; /* Reset flex properties for vertical layout */
    width: 100%; /* Allow image to be responsive on smaller screens */
    max-width: 290px; /* Keep max width to prevent it from growing too large */
}
}
.logo-image {
	height: auto !important;
	margin-top: 5px;
}

/**/
.packages {
    border: 0px solid #cecece;
    border-radius: 7px;
    padding-top: 35px;
    padding-left: 45px;
    padding-bottom: 35px;
    position: relative;
    overflow: hidden;
    padding-right: 35px;
    transition: 0.3s ease-in-out;
	box-shadow: 0px 10px 60px 0px rgba(26, 26, 26, 0.1);
}
.packages:hover {
    transform: translateY(-10px);
	border: 0px solid var(--black);
	box-shadow: 0px 10px 60px 0px rgba(26, 26, 26, 0.3);
}

.packages h3{
    font-size: 28px;
    font-weight: bold;
    margin: 0;
	color: var(--black);
}
.packages > span {
    font-size: 14px;
    font-weight: lighter;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--body_color);
}
.packages h4{
    font-size: 55px;
    font-weight: bold;
    padding-top: 5px;
    margin: 0;
	color: var(--black);
}
.packages sup{
    font-size: 30px;
    color: var(--black);
}
ul.storage {
    color: var(--black);
	margin-bottom: 0;
	padding: 0 0 0 10px;
}
.storage li {
    display: flex;
    padding-top: 22px;
    font-size: 16px;
    color: var(--black);
    align-items: center;

}
.storage i.far.fa-times-circle {
    font-size: 20px;
    color: red;
    padding-right: 15px;
}
.storage i {
    font-size: 20px;
    color: #1ac9b5;
    padding-right: 15px;
}

.package span{
    letter-spacing: 1px;
}
.packages-icon i {
	color: var(--black);
}	
.packages-icon li {
    height: 70px;
    background: #ffffff;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 37px;
    box-shadow: 0px 0px 10px 12px var(--black);
	list-style: none;
}
.packages-icon li a {
    font-size: 30px;
}
.button li {
	list-style: none;
}
.packages .btn {
	margin-top: 20px;
	list-style: none;
}
/**/
/* 25. Team Style Two Start */
.team-style-two .team-data {
    border: 1px solid #c1c1c1;
    padding: 30px 35px 40px 35px;
    width: 68%;
    position: relative;
    margin-bottom: 40px;
	transition: 0.3s ease-in-out;
	background: #fff;
}
.team-style-two .team-data:hover {
	transition: 0.3s ease-in-out;
    border: 1px solid var(--yellow);
	transform: translateY(-5px);
}
.team-style-two .team-data:before {
    content: "";
    width: 100px;
    height: 100.5%;
    position: absolute;
    bottom: -1px;
    left: 100%;
    /*transform: translateX(-50%) skew(-23deg, 0deg);*/
    z-index: 0;
	margin-left: -20px;
}
.team-style-two .team-data h3 {
    font-size: 30px;
    margin-bottom: 5px;
	font-weight: 600;
}
.team-style-two .team-data h3 a {
    color: var(--black);
}
.team-style-two .team-data .contact i {
    width: 25px;
    height: 25px;
}
.team-style-two .team-data .contact p {
    font-weight: bold;
    margin-left: 6px;
	color: var(--black);
	margin-bottom: 6px;
}
.team-style-two .team-data .contact i {
	vertical-align: middle;
}
.team-style-two .team-data .contact {
    display: flex;
    align-items: center;
    margin-top: 22px;
}
.team-style-two .team-social-medias a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
	transition: 0.3s ease-in-out;
}
.team-style-two .team-social-medias > a i {
    font-size: 17px;
    color: var(--black);
    transition: 0.3s ease-in-out;
}
.team-style-two .team-social-medias > a:hover i {
	transition: 0.3s ease-in-out;
	transform: rotate(45deg);
}
.team-style-two .team-social-medias {
    margin-top: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 40px;
}
.team-style-two .team-data .team-social-media a {
    width: 50px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 10px;
}
.team-style-two .team-data .team-social-media a:before {
    content: "";
    border: 1px solid #c1c1c1;
    /*transform: skew(-23deg, 0deg);*/
	width: 50px;
	height: 50px;
    background: var(--white);
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data:hover .team-image img {
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data .team-image img {
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data .team-social-media a:hover i {
    color: var(--white);
}
.team-style-two .team-data .team-social-media a.fb:hover:before {
    background: #4267B2;
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data .team-social-media a.tw:hover:before {
    background: #00acee;
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data .team-social-media a i {
    font-size: 16px;
    color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data .team-image {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}
.team-style-two .team-data .team-image img {
    width: 200px;
    height: 323px;
    object-fit: cover;
}
.team-style-two .team-social-medias > a,
.team-style-two .team-data::before {
	background-color: var(--yellow);
	transition: 0.3s ease-in-out;
}
@media (max-width: 980px) {
.team-style-two .team-data::before {
	display: none;
}
.team-style-two .team-data {
	width: 100%;
}
.team-style-two .team-data .team-image {
	position: relative;
	top: 0;
	right: 0;
	transform: translateY(5%);
	transition: 0.3s ease-in-out;
}
.team-style-two .team-data .team-image img {
	width: 100%;
}
}

.tags {
	display: none;
}
/**/
.recent-project .btn {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}
.btn i {
	opacity: 1 !important;
}
.recent-project {
	display: flex;
	flex-direction: row;
	background: linear-gradient(to right, #ffffff, #f0f0f0);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 20px;
}

.recent-project:hover {
	transition: transform 0.3s ease;
	transform: scale(1.01);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.recent-project-image {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.recent-project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.recent-project-image img:hover {
	transform: scale(1.1);
}

.recent-project-info {
	flex: 1;
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-link {
	text-decoration: none;
}

.project-title {
margin: 0;
	font-size: 1.8em;
	color: var(--black);
	font-weight: 500;
	transition: color 0.3s ease;
}

.project-title:hover {
	color: var(--black);
}

.project-description {
	margin: 10px 0 0;
	font-size: 1em;
	color: #666;
}

.project-details {
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 15px;
	border-radius: 5px;
	font-size: 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	bottom: 15px;
	left: 15px;
	font-weight: 500;
}

.project-details span {
	margin-right: 10px;
	white-space: nowrap;
}

.divider {
	width: 3px;
	height: 3px;
	background-color: #fff;
	border-radius: 50%;
	margin: 0 8px;
	align-self: center;
}

/* Responsive Design */
@media (max-width: 768px) {
.recent-project {
	flex-direction: column;
}
.project-details {
	background-color: var(--black);
	border-radius: 0;
}
.recent-project-image img {
	border-radius: 10px 10px 0 0;
}

.project-details {
	position: relative;
	bottom: auto;
	left: auto;
	margin-top: 0px;
}

.recent-project-info {
	padding: 30px 35px;
}
}
.blog .list-group-item a {
	color: var(--black);
}
.blog .pagination > .active > a:hover, 
.blog .pagination > .active > a:focus, 
.blog .pagination > .active > span:hover, 
.blog .pagination > .active > span:focus {
	color: #ffffff;
}
.blog .pagination > .active > a, 
.blog .pagination > .active > span {
  border-color:  var(--black);
  background-color:  var(--black);
}
.blog .active > span:hover, 
.blog .pagination > .active > span:focus {
  border-color: var(--yellow) !important;
  background-color: var(--yellow) !important;
  color:  var(--black) !important;
} 
/**/
.contact__info-icon i {
  font-size: 18px;
}
.contact__social .icon ul li {
  list-style: none;
  display: inline-block;
}
.contact__social .icon ul li a {
  margin-right: 25px;
  color: var(--black);
  font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact__social .icon ul li a {
    margin-left: 0px;
  }
}
.contact__social .icon ul li a:hover {
  color: var(--black);
}
.contact__line a {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
}
.contact__info-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.contact__info-text h4 {
  font-size: 18px;
  color: var(--black);
}
.contact__info-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
}
.contact__info ul li {
  list-style: none;
  padding-bottom: 15px;
}
.contact__info ul li a span {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
}
.contact__info ul li a i {
  margin-right: 20px;
  color: var(--black);
  font-size: 18px;
}
.contact__info ul li a:hover {
  color: var(--black);
}
/**/
.features-item-two {
	background-color: #fff;
	-webkit-box-shadow: 0px 10px 60px 0px rgba(24, 28, 34, 0.07);
			box-shadow: 0px 10px 60px 0px rgba(24, 28, 34, 0.07);
	border-radius: 7px;
	padding: 40px;
	gap: 30px;
	border:  2px solid #ffffff;
	transition: all 0.3s ease-out 0s;
}
@media (max-width: 450px) {
.features-item-two {
	padding: 40px 20px;
	gap: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	text-align: center;
}
}
.features-item-two:hover {
	transition: all 0.3s ease-out 0s;
	border:  2px solid var(--yellow);
	transform: translateY(-5px);
}
.features-item-two:hover .icon-btn {
	background-color: var(--black);
	border-color: transparent;
	color: #fff;
}
.features-item-two span.number {
	font-size: 24px;
	color: var(--black);
	font-weight: 800;
}
.features-item-two .icon {
	-webkit-box-flex: 0;
		-ms-flex: 0 0 100px;
			flex: 0 0 100px;
	max-width: 100px;
	height: 100px;
	border-radius: 7px;
	background-color: transparent;
	color: var(--yellow);
	font-size: 50px;
	line-height: 110px;
	text-align: center;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
@media (max-width: 450px) {
.features-item-two .icon {
	width: 100px;
}
}
@media (max-width: 1199px) {
.features-item-two .text {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
}
}
.features-item-two .text h3.title {
	letter-spacing: -0.03em;
	color: var(--black);
	font-weight: 500;
	font-size: 23px;
	line-height: 35px;
}
@media (max-width: 450px) {
.features-item-two .text h3.title {
	margin-bottom: 20px;
}
}
.align-items-center {
	align-items: center !important;
}
.features-item-two .icon-btn:hover {
	border: 1px solid var(--yellow);
	background: var(--yellow);
	color: var(--black);
}
.features-item-two .icon-btn {
	-webkit-box-flex: 0;
		-ms-flex: 0 0 60px;
			flex: 0 0 60px;
	max-width: 60px;
	height: 60px;
	border-radius: 7px;
	border: 1px solid var(--black);
	font-size: 18px;
	color: #ffffff;
	line-height: 60px;
	display: block;
	text-align: center;
	background: var(--black);
}
@media (max-width: 450px) {
.features-item-two .icon-btn {
	width: 60px;
}
}
/**/
.wwbb {
    background: var(--black);
    position: relative;
    z-index: 0;
}
.wwbb .heading-style-2 .data h2 {
    color: #ffffff;
}
.wwbb .heading-style-2 {
    margin-bottom: 70px;
}
.wwbb .heading-style-2 .data span,
.wwbb .wwb-ul li .location span,
.wwbb .wwb-ul li:before {
    color: #c4c4c4;
}
.wwbb .wwb-ul li h3 {
    font-size: 22px;
    line-height: 32px;
    width: 23%;
    margin-right: 100px;
	font-weight: 500;
}
.wwbb .wwb-ul li h3 a {
    color: #757575;
}
.wwbb .wwb-ul li.active h3 a {
    color: #ffffff;
}
.wwbb .wwb-ul {
    counter-reset: my-awesome-counter;
}
.wwbb .wwb-ul li {
    display: flex;
    align-items: center; /* Vertically center the contents */
    padding-left: 85px;
    counter-increment: my-awesome-counter;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #555;
}

.wwbb .wwb-ul li .location {
    display: flex; /* Use flexbox to align the inner spans */
    align-items: center; /* Center the text vertically */
    padding-top: 0; /* Remove the padding-top */
}

.wwbb .wwb-ul li .location span {
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}
.wwbb .wwb-ul li:last-child {
    border-bottom: 1px solid #555;
}
.wwbb .wwb-ul li:before {
    content: counter(my-awesome-counter) ". ";
    font-size: 16px;
    position: absolute;
    top: 65px;
    left: 0;
}
.wwbb .wwb-ul li .location span {
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}
.wwbb .wwb-ul li .location {
    padding-top: 5px;
}
.wwbb .wwb-ul li figure img {
    width: 415px;
    height: 300px;
    object-fit: cover;
}
.wwbb .wwb-ul li figure {
    overflow: hidden;
    padding-top: 35px;
    padding-bottom: 20px;
    position: absolute;
    right: 0;
    top: -65px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.wwbb .wwb-ul li.active figure {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-duration: 0.5s;
}
.wwbb .wwb-ul li figure:before {
    content: "";
    width: 180px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-70%) skew(-23deg, 0deg);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.wwbb .wwb-ul li.active figure:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) skew(-23deg, 0deg);
    transition-duration: 0.6s;
}
.wwbb .wwb-ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.wwbb .wwb-ul li.active h3 a,
.wwbb .wwb-ul li h3 a,
.wwbb .wwb-ul li.active:before,
.wwbb .wwb-ul li:before,
.wwbb .wwb-ul li.active figure,
.wwbb .wwb-ul li figure,
.wwbb .wwb-ul li figure:before,
.wwbb .wwb-ul li.active figure:before {
    transition: 0.3s ease-in-out;
}
.wwbb .wwb-ul li.active::before {
	color: var(--yellow);
}
@media (max-width: 992px) {
.wwbb .wwb-ul li.active figure {
	display: none;
}
}
@media (max-width: 1200px) {
.wwbb .wwb-ul li h3,
.wwbb .wwb-ul li .location {
	width: 100% !important;
}
.wwbb .wwb-ul li {
    padding-left: 50px;
}
.wwbb .wwb-ul li h3 {
	margin-right: 50px;
}
}

.zindexover {
    position: relative !important;
    z-index: 99 !important;
}
@media(max-width: 980px){
.textright {
	text-align: left !important;
}
}
@media(min-width: 981px){
.textright {
	text-align: right !important;
}
}
.pagenavigation .btn {
	clip-path: none !important;
}

/* ---- SP Page Builder : remplacement couleur jaune (warning) par l'accent ---- */
body .sppb-btn-warning,
body .sppb-btn.sppb-btn-warning,
body .sppb-btn-warning.disabled,
body .sppb-btn-warning:disabled,
body .sppb-btn-warning.dropdown-toggle,
body .sppb-btn-warning.active,
body .sppb-btn-warning:active {
    background: var(--accent) !important;
    background-color: var(--accent) !important;
    background-image: none !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}
body .sppb-btn-warning:hover,
body .sppb-btn-warning:focus,
body .sppb-btn-warning.focus {
    background: #8a4a2e !important;
    background-color: #8a4a2e !important;
    background-image: none !important;
    border-color: #8a4a2e !important;
    color: #fff !important;
}
body .sppb-btn-warning.sppb-btn-gradient {
    background: var(--accent) !important;
    background-image: none !important;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}
body .sppb-btn-warning.sppb-btn-3d {
    border-bottom-color: #8a4a2e !important;
}
body .sppb-btn-warning.sppb-btn-outline {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
body .sppb-btn-warning.sppb-btn-outline:hover,
body .sppb-btn-warning.sppb-btn-outline:focus:hover {
    background: var(--accent) !important;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}
body .sppb-progress-bar-warning {
    background: var(--accent) !important;
    background-color: var(--accent) !important;
}
body .sppb-panel-warning > .sppb-panel-heading {
    background: var(--accent) !important;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}
body .btn-warning,
body .badge-warning,
body .alert-warning,
body .bg-warning,
body .text-bg-warning {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}
body .btn-warning:hover,
body .btn-warning:focus,
body .btn-warning.focus {
    background-color: #8a4a2e !important;
    border-color: #8a4a2e !important;
    color: #fff !important;
}
body .text-warning {
    color: var(--accent) !important;
}
body .border-warning {
    border-color: var(--accent) !important;
}

body .btn-danger,
body .badge-danger,
body .alert-danger,
body .bg-danger,
body .text-bg-danger {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}
body .btn-danger:hover,
body .btn-danger:focus,
body .btn-danger.focus {
    background-color: #8a4a2e !important;
    border-color: #8a4a2e !important;
    color: #fff !important;
}
body .text-danger {
    color: var(--accent) !important;
}
body .border-danger {
    border-color: var(--accent) !important;
}

body .sppb-btn-danger,
body .sppb-btn.sppb-btn-danger {
    background: var(--accent) !important;
    background-color: var(--accent) !important;
    background-image: none !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}
body .sppb-btn-danger:hover,
body .sppb-btn-danger:focus,
body .sppb-btn-danger.focus {
    background: #8a4a2e !important;
    background-color: #8a4a2e !important;
    background-image: none !important;
    border-color: #8a4a2e !important;
    color: #fff !important;
}

body .btn,
body a.btn,
body button.btn,
body input.btn,
body .btn-box .btn,
body .btn-box a.btn,
body .btn-box a,
body .sppb-btn,
body a.sppb-btn,
body button.sppb-btn,
body .sppb-btn-custom,
body .sppb-btn-link,
body .sppb-btn-outline,
body .sppb-addon-button a,
body .sppb-addon-button .sppb-btn {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}

body .btn:hover,
body a.btn:hover,
body button.btn:hover,
body .btn-box .btn:hover,
body .btn-box a:hover,
body .sppb-btn:hover,
body a.sppb-btn:hover,
body .sppb-addon-button a:hover,
body .sppb-addon-button .sppb-btn:hover,
body .btn:focus,
body a.btn:focus,
body button.btn:focus,
body .sppb-btn:focus,
body a.sppb-btn:focus {
    background-color: #8a4a2e !important;
    border-color: #8a4a2e !important;
}

body .btn,
body .btn-box a,
body .sppb-btn,
body .sppb-addon-button a,
body .sppb-addon-button .sppb-btn {
    color: #ffffff !important;
}

:root {
    --accent: #a45a3a !important;
    --yellow: var(--accent) !important;
    --red: var(--accent) !important;
}
