/****
Theme Name: Smartupworld
Author: Smartupworld Websolutions
Author URI: https://smartupworld.com
Description: Theme for https://smartupworld.com
Version: 21.0
****/

/* ── Shared design tokens ── */
:root {
	--swb-blue:     #1565C0;
	--swb-blue-mid: #1976D2;
	--swb-blue-lt:  #E3F0FB;
	--swb-orange:   #FF6D00;
	--swb-dark:     #0D1B2A;
	--swb-text:     #1A2B3C;
	--swb-muted:    #5A7080;
	--swb-border:   #D8E8F5;
	--swb-offwhite: #F4F8FD;
	--swb-white:    #FFFFFF;
	--swb-radius:   14px;
	--swb-pill:     999px;
	--swb-shadow:   0 4px 24px rgba(21,101,192,.10);
	--swb-shadow-h: 0 12px 40px rgba(21,101,192,.18);
	--swb-ease:     .26s cubic-bezier(.4,0,.2,1);
	--sw-blue:      #1565C0;   /* Smartupworld primary blue (from logo) */
	--sw-blue-mid:  #1976D2;
	--sw-blue-light:#E3F0FB;
	--sw-accent:    #FF6D00;   /* warm orange accent */
	--sw-dark:      #0D1B2A;
	--sw-text:      #1A2B3C;
	--sw-muted:     #5A7080;
	--sw-border:    #D8E8F5;
	--sw-white:     #FFFFFF;
	--sw-offwhite:  #F4F8FD;
	--radius-card:  16px;
	--radius-pill:  999px;
	--shadow-soft:  0 4px 24px rgba(21,101,192,.10);
	--shadow-card:  0 8px 40px rgba(21,101,192,.13);
	--shadow-hover: 0 16px 56px rgba(21,101,192,.20);
	--transition:   .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset scoped ── */
.sw-page * { box-sizing: border-box; }
.sw-page { font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--sw-text); }

/* ── Base section shell ── */
.swb-section       { padding: 72px 0; background: var(--swb-white); box-sizing: border-box; }
.swb-section--alt  { background: var(--swb-offwhite); }
.swb-section *     { box-sizing: border-box; }
.swb-wrap          { max-width: 1140px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ── Shared heading elements ── */
.swb-eyebrow {
	display: inline-block;
	font-size: .7rem; font-weight: 700; letter-spacing: .14em;
	text-transform: uppercase; color: var(--swb-blue);
	background: var(--swb-blue-lt); padding: 4px 14px;
	border-radius: var(--swb-pill); margin-bottom: 10px;
}
.swb-h2 {
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	font-weight: 800; color: var(--swb-dark);
	margin: 0 0 10px; line-height: 1.2;
}
.swb-sub {
	font-size: 1rem; color: var(--swb-muted);
	max-width: 560px; line-height: 1.65; margin: 0;
}
.swb-center         { text-align: center; }
.swb-center .swb-sub { margin: 0 auto; }
.swb-underline {
	width: 48px; height: 3px;
	background: var(--swb-orange);
	border-radius: 2px; margin: 12px auto 28px;
}

/* ── HERO ── */
.sw-hero {
	background: linear-gradient(135deg, var(--sw-dark) 0%, var(--sw-blue) 60%, #1E88E5 100%);
	padding: 96px 24px 88px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sw-hero::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,109,0,.13) 0%, transparent 70%),
	radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255,255,255,.05) 0%, transparent 60%);
	pointer-events: none;
}
.sw-hero__badge {
	display: inline-block;
	background: rgba(255,109,0,.18);
	color: #FFB74D;
	border: 1px solid rgba(255,109,0,.35);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: var(--radius-pill);
	margin-bottom: 22px;
}
.sw-hero h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	color: var(--sw-white);
	line-height: 1.15;
	margin: 0 auto 18px;
	max-width: 780px;
}
.sw-hero h1 span { color: #FFB74D; }
.sw-hero__sub {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(255,255,255,.82);
	max-width: 580px;
	margin: 0 auto 36px;
	line-height: 1.65;
}
.sw-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sw-accent);
	color: var(--sw-white);
	font-weight: 700;
	font-size: 1rem;
	padding: 15px 34px;
	border-radius: var(--radius-pill);
	text-decoration: none;
	box-shadow: 0 6px 28px rgba(255,109,0,.38);
	transition: var(--transition);
}
.sw-hero__cta:hover {
	background: #E65100;
	transform: translateY(-2px);
	box-shadow: 0 10px 36px rgba(255,109,0,.48);
	color: var(--sw-white);
	text-decoration: none;
}
.sw-hero__stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 56px;
	flex-wrap: wrap;
}
.sw-hero__stat { text-align: center; }
.sw-hero__stat-num {
	font-size: 2rem;
	font-weight: 800;
	color: var(--sw-white);
	display: block;
}
.sw-hero__stat-label {
	font-size: .78rem;
	color: rgba(255,255,255,.65);
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* ── SECTION WRAPPER ── */
.sw-section { padding: 80px 24px; overflow-x: hidden; }
.sw-section--alt { background: var(--sw-offwhite); }
.sw-container { max-width: 1140px; width: 100%; margin: 0 auto; overflow-x: hidden; }
.sw-section-label {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--sw-blue);
	background: var(--sw-blue-light);
	padding: 4px 14px;
	border-radius: var(--radius-pill);
	margin-bottom: 12px;
}
.sw-section-title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	color: var(--sw-dark);
	margin: 0 0 16px;
	line-height: 1.2;
}
.sw-section-sub {
	font-size: 1.05rem;
	color: var(--sw-muted);
	max-width: 560px;
	line-height: 1.65;
	margin: 0;
}
.sw-text-center { text-align: center; }
.sw-text-center .sw-section-sub { margin: 0 auto; }

/* ── WHY CHOOSE US — split panel ── */
.sw-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
@media(max-width:768px){ .sw-split { grid-template-columns: 1fr; } }

.sw-split__image {
	position: relative;
	min-height: 480px;
	background: url('https://smartupworld.com/wp-content/uploads/2024/07/Frame-82-1.webp') center/cover no-repeat;
}
.sw-split__image-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(13,27,42,.78) 0%, rgba(21,101,192,.65) 100%);
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	padding: 48px;
	text-align: center;
}
.sw-split__image-overlay h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--sw-white);
	margin: 0 0 12px;
}
.sw-split__image-overlay p {
	color: rgba(255,255,255,.8);
	font-size: 1rem;
	margin: 0;
	line-height: 1.6;
}

.sw-split__content {
	background: var(--sw-white);
	padding: 56px 52px;
}
@media(max-width:900px){ .sw-split__content { padding: 40px 28px; } }

.sw-services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 32px;
}
@media(max-width:560px){ .sw-services-grid { grid-template-columns: 1fr; } }

.sw-service-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	background: var(--sw-offwhite);
	border-radius: 10px;
	border: 1px solid var(--sw-border);
	transition: var(--transition);
}
.sw-service-item:hover {
	border-color: var(--sw-blue-mid);
	background: var(--sw-blue-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
}
.sw-service-icon {
	width: 36px; height: 36px;
	background: var(--sw-blue);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	color: var(--sw-white);
	font-size: 16px;
}
.sw-service-text { font-size: .9rem; font-weight: 600; color: var(--sw-text); line-height: 1.3; padding-top: 2px; }

/* ── PRICING ── */
.sw-plans {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 52px;
	align-items: start;
	width: 100%;
}
@media(max-width:900px){ .sw-plans { grid-template-columns: minmax(0,1fr); max-width: 420px; margin-left: auto; margin-right: auto; } }

.sw-plan-card {
	background: var(--sw-white);
	border: 1.5px solid var(--sw-border);
	border-radius: var(--radius-card);
	padding: 36px 28px 32px;
	position: relative;
	transition: var(--transition);
	box-shadow: var(--shadow-soft);
}
.sw-plan-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
	border-color: var(--sw-blue-mid);
}
.sw-plan-card--featured {
	background: linear-gradient(155deg, var(--sw-blue) 0%, #1565C0 100%);
	border-color: var(--sw-blue);
	color: var(--sw-white);
	transform: scale(1.04);
	box-shadow: var(--shadow-card);
}
.sw-plan-card--featured:hover {
	transform: scale(1.04) translateY(-6px);
	box-shadow: var(--shadow-hover);
}
.sw-plan-badge {
	position: absolute;
	top: -14px; 
	left: 50%;
	transform: translateX(-50%);
	/* High-contrast background for Accessibility */
	background: #1a1a1a !important; 
	color: #ffffff !important;
	/* Visual styling */
	font-size: .75rem; /* Slightly larger for better legibility */
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px; /* Equivalent to pill radius */
	white-space: nowrap;
	/* Fix for the SVG Emoji alignment */
	display: inline-flex;
	align-items: center;
	gap: 5px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sw-plan-name {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 4px;
	color: inherit;
}
.sw-plan-card--featured .sw-plan-name { color: var(--sw-white); }
.sw-plan-desc {
	font-size: .85rem;
	color: var(--sw-muted);
	margin: 0 0 20px;
}
.sw-plan-card--featured .sw-plan-desc { color: rgba(255,255,255,.75); }
.sw-plan-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 24px;
}
.sw-plan-currency { font-size: 1.3rem; font-weight: 700; color: var(--sw-blue); }
.sw-plan-card--featured .sw-plan-currency { color: #FFB74D; }
.sw-plan-amount { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--sw-dark); }
.sw-plan-card--featured .sw-plan-amount { color: var(--sw-white); }
.sw-plan-period { font-size: .85rem; color: var(--sw-muted); }
.sw-plan-card--featured .sw-plan-period { color: rgba(255,255,255,.7); }
.sw-plan-divider { border: none; border-top: 1px solid var(--sw-border); margin: 0 0 20px; }
.sw-plan-card--featured .sw-plan-divider { border-color: rgba(255,255,255,.2); }
.sw-plan-features { list-style: none; padding: 0; margin: 0 0 28px; }
.sw-plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .9rem;
	color: var(--sw-text);
	padding: 6px 0;
	border-bottom: 1px solid var(--sw-border);
}
.sw-plan-card--featured .sw-plan-features li {
	color: rgba(255,255,255,.9);
	border-bottom-color: rgba(255,255,255,.15);
}
.sw-plan-features li:last-child { border-bottom: none; }
.sw-plan-check {
	width: 18px; height: 18px;
	background: #E8F5E9;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	color: #2E7D32;
	font-size: 10px;
	margin-top: 1px;
}
.sw-plan-card--featured .sw-plan-check {
	background: rgba(255,255,255,.22);
	color: #FFB74D;
}
.sw-plan-btn {
	display: block;
	text-align: center;
	width: 100%;
	padding: 13px 20px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: .95rem;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
}
.sw-plan-btn--outline {
	border: 2px solid var(--sw-blue);
	color: var(--sw-blue);
	background: transparent;
}
.sw-plan-btn--outline:hover {
	background: var(--sw-blue);
	color: var(--sw-white);
	text-decoration: none;
}
.sw-plan-btn--solid {
	background: var(--sw-white);
	color: var(--sw-blue);
	border: 2px solid transparent;
	box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.sw-plan-btn--solid:hover {
	background: #FFB74D;
	color: var(--sw-dark);
	text-decoration: none;
}

/* ── TRUST STRIP ── */
.sw-trust {
	background: var(--sw-white);
	border-top: 1px solid var(--sw-border);
	border-bottom: 1px solid var(--sw-border);
	padding: 36px 24px;
}
.sw-trust-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 28px;
}
.sw-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.sw-trust-icon {
	width: 44px; height: 44px;
	background: var(--sw-blue-light);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	color: var(--sw-blue);
	font-size: 20px;
	flex-shrink: 0;
}
.sw-trust-label { font-size: .85rem; font-weight: 700; color: var(--sw-dark); line-height: 1.25; }
.sw-trust-sub { font-size: .75rem; color: var(--sw-muted); }

/* ── CTA BANNER ── */
.sw-cta {
	background: linear-gradient(135deg, var(--sw-dark) 0%, var(--sw-blue) 100%);
	padding: 80px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sw-cta::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 70% at 90% 50%, rgba(255,109,0,.12) 0%, transparent 65%);
	pointer-events: none;
}
.sw-cta h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.6rem);
	font-weight: 800;
	color: var(--sw-white);
	margin: 0 0 14px;
}
.sw-cta p {
	color: rgba(255,255,255,.78);
	font-size: 1.05rem;
	max-width: 520px;
	margin: 0 auto 36px;
	line-height: 1.65;
}
.sw-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sw-cta__btn-primary {
	background: var(--sw-accent);
	color: var(--sw-white);
	font-weight: 700;
	font-size: .95rem;
	padding: 14px 30px;
	border-radius: var(--radius-pill);
	text-decoration: none;
	box-shadow: 0 6px 24px rgba(255,109,0,.38);
	transition: var(--transition);
}
.sw-cta__btn-primary:hover {
	background: #E65100;
	transform: translateY(-2px);
	color: var(--sw-white);
	text-decoration: none;
}
.sw-cta__btn-ghost {
	background: rgba(255,255,255,.12);
	color: var(--sw-white);
	font-weight: 600;
	font-size: .95rem;
	padding: 14px 30px;
	border-radius: var(--radius-pill);
	text-decoration: none;
	border: 1.5px solid rgba(255,255,255,.3);
	transition: var(--transition);
}
.sw-cta__btn-ghost:hover {
	background: rgba(255,255,255,.22);
	color: var(--sw-white);
	text-decoration: none;
}







/* ── home-get-in-touch styles ── */
.swb-git-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-top: 48px;
}
@media (max-width: 768px) {
	.swb-git-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Image side */
.swb-git-img {
	border-radius: var(--swb-radius);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(21, 101, 192, .18);
	position: relative;
}
.swb-git-img picture,
.swb-git-img img {
	display: block;
	width: 100%;
	height: auto;
}
.swb-git-img-badge {
	position: absolute; bottom: 18px; right: 18px;
	background: var(--swb-orange);
	color: var(--swb-white);
	font-size: .78rem; font-weight: 700;
	padding: 7px 16px;
	border-radius: var(--swb-pill);
	box-shadow: 0 4px 16px rgba(255, 109, 0, .35);
}

/* Text side */
.swb-git-text { }

.swb-git-text h3 {
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 800; color: var(--swb-dark);
	margin: 0 0 18px; line-height: 1.3;
}
.swb-git-text p {
	font-size: .95rem; color: var(--swb-muted);
	line-height: 1.75; margin: 0 0 16px;
}

/* Checklist items */
.swb-git-checks {
	list-style: none;
	padding: 0; margin: 0 0 28px;
}
.swb-git-checks li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: .9rem; color: var(--swb-text);
	font-weight: 600;
	padding: 7px 0;
	border-bottom: 1px solid var(--swb-border);
	line-height: 1.45;
}
.swb-git-checks li:last-child { border-bottom: none; }
.swb-git-check-icon {
	width: 20px; height: 20px; flex-shrink: 0;
	background: var(--swb-blue);
	color: var(--swb-white);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; margin-top: 1px;
}

/* CTA button */
.swb-git-btn {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--swb-blue);
	color: var(--swb-white);
	font-size: .95rem; font-weight: 700;
	padding: 13px 28px;
	border-radius: var(--swb-pill);
	text-decoration: none;
	box-shadow: 0 6px 24px rgba(21, 101, 192, .28);
	transition: var(--swb-ease);
}
.swb-git-btn:hover {
	background: #0D47A1;
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(21, 101, 192, .38);
	color: var(--swb-white);
	text-decoration: none;
}


/* ── home-why-us styles ── */
.swb-whyus-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 44px;
}
@media (max-width: 768px) {
	.swb-whyus-grid { grid-template-columns: 1fr; }
}

.swb-why-card {
	background: var(--swb-white);
	border: 1.5px solid var(--swb-border);
	border-radius: var(--swb-radius);
	padding: 36px 28px 30px;
	position: relative;
	overflow: hidden;
	transition: var(--swb-ease);
	box-shadow: var(--swb-shadow);
}
.swb-why-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--swb-blue), var(--swb-orange));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.swb-why-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--swb-shadow-h);
	border-color: var(--swb-blue-mid);
}
.swb-why-card:hover::before { transform: scaleX(1); }

.swb-why-icon {
	width: 56px; height: 56px;
	background: var(--swb-blue-lt);
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
	color: var(--swb-blue);
	transition: var(--swb-ease);
}
.swb-why-card:hover .swb-why-icon {
	background: var(--swb-blue);
	color: var(--swb-white);
}

.swb-why-card h3 {
	font-size: 1.1rem; font-weight: 700;
	color: var(--swb-dark); margin: 0 0 10px;
}
.swb-why-card p {
	font-size: .9rem; color: var(--swb-muted);
	line-height: 1.65; margin: 0 0 18px;
}

.swb-why-link {
	font-size: .82rem; font-weight: 700;
	color: var(--swb-blue); text-decoration: none;
	display: inline-flex; align-items: center; gap: 5px;
	transition: gap var(--swb-ease);
}
.swb-why-link:hover { gap: 9px; color: var(--swb-orange); }



/* ── home-skills styles ── */
.swb-skills-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-top: 48px;
}
@media (max-width: 768px) {
	.swb-skills-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Benefit cards */
.swb-benefit {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 22px 20px;
	background: var(--swb-white);
	border: 1.5px solid var(--swb-border);
	border-radius: var(--swb-radius);
	margin-bottom: 16px;
	box-shadow: var(--swb-shadow);
	transition: var(--swb-ease);
}
.swb-benefit:last-child { margin-bottom: 0; }
.swb-benefit:hover {
	border-color: var(--swb-blue-mid);
	transform: translateX(4px);
}

.swb-benefit-icon {
	width: 48px; height: 48px;
	flex-shrink: 0;
	background: var(--swb-blue-lt);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px; color: var(--swb-blue);
}

.swb-benefit-body h4 {
	font-size: 1rem; font-weight: 700;
	color: var(--swb-dark); margin: 0 0 6px;
}
.swb-benefit-body p {
	font-size: .88rem; color: var(--swb-muted);
	line-height: 1.6; margin: 0;
}

/* Skill bars */
.swb-skill-item { margin-bottom: 22px; }
.swb-skill-item:last-child { margin-bottom: 0; }

.swb-skill-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}
.swb-skill-name { font-size: .88rem; font-weight: 700; color: var(--swb-dark); }
.swb-skill-pct  { font-size: .82rem; font-weight: 700; color: var(--swb-blue); }

.swb-skill-track {
	height: 8px;
	background: var(--swb-blue-lt);
	border-radius: var(--swb-pill);
	overflow: hidden;
}
.swb-skill-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--swb-blue), #42A5F5);
	border-radius: var(--swb-pill);
	width: 0;
	transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}



/* ── home-services styles ── */
.swb-svc-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-top: 44px;
}
@media (max-width: 900px) {
	.swb-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
	.swb-svc-grid { grid-template-columns: minmax(0, 1fr); }
}

.swb-svc-card {
	background: var(--swb-white);
	border: 1.5px solid var(--swb-border);
	border-radius: var(--swb-radius);
	padding: 28px 20px 24px;
	text-align: center;
	transition: var(--swb-ease);
	box-shadow: var(--swb-shadow);
	position: relative;
	overflow: hidden;
}
.swb-svc-card::after {
	content: '';
	position: absolute; bottom: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--swb-blue), var(--swb-orange));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.swb-svc-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--swb-shadow-h);
	border-color: var(--swb-blue-mid);
}
.swb-svc-card:hover::after { transform: scaleX(1); }

.swb-svc-icon-wrap {
	width: 60px; height: 60px;
	background: var(--swb-blue-lt);
	border-radius: 16px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px; color: var(--swb-blue);
	margin: 0 auto 16px;
	transition: var(--swb-ease);
}
.swb-svc-card:hover .swb-svc-icon-wrap {
	background: var(--swb-blue);
	color: var(--swb-white);
	border-radius: 50%;
}

.swb-svc-card h4 {
	font-size: .95rem; font-weight: 700;
	color: var(--swb-dark); margin: 0 0 8px; line-height: 1.3;
}
.swb-svc-card p {
	font-size: .82rem; color: var(--swb-muted);
	line-height: 1.55; margin: 0;
}


/* ── home-daily-maintenance styles ── */
.swb-twocol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	margin-top: 48px;
}
@media (max-width: 768px) {
	.swb-twocol { grid-template-columns: 1fr; gap: 36px; }
}

.swb-twocol__img {
	border-radius: var(--swb-radius);
	overflow: hidden;
	box-shadow: 0 16px 56px rgba(21, 101, 192, .16);
	position: relative;
}
.swb-twocol__img img {
	display: block;
	width: 100%;
	height: auto;
}
.swb-twocol__img-badge {
	position: absolute; bottom: 18px; left: 18px;
	background: var(--swb-blue);
	color: var(--swb-white);
	font-size: .78rem; font-weight: 700;
	padding: 7px 16px;
	border-radius: var(--swb-pill);
	box-shadow: 0 4px 16px rgba(21, 101, 192, .35);
}

.swb-twocol__text h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 800; color: var(--swb-dark);
	margin: 0 0 16px; line-height: 1.3;
}
.swb-twocol__text p {
	font-size: .95rem; color: var(--swb-muted);
	line-height: 1.72; margin: 0 0 14px;
}
.swb-twocol__text p:last-of-type { margin-bottom: 24px; }

.swb-twocol-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--swb-blue-lt);
	color: var(--swb-blue);
	font-size: .82rem; font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--swb-pill);
	margin: 0 6px 8px 0;
}
.swb-twocol-pill i { font-size: 13px; }





label,
ol,
p,
textarea,
ul,
ul li {
	font-weight: 400;
}
p,
ul li {
	line-height: 1.5;
	margin-bottom: 1rem;
}
.widget select,
img,
pre,
table {
	max-width: 100%;
}
.comment-reply-link,
a,
a:active,
a:hover,
body a,
nav.rank-math-breadcrumb a {
	text-decoration: none;
}
*,
:after,
:before {
	box-sizing: border-box;
	word-break: break-word;
}
body {
	overflow-x: hidden;
}
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
@keyframes increaseprogress {
	0% {
		width: 0;
	}
	100% {
		width: 96%;
	}
}
body a {
	transition: color 0.5s;
}
hr {
	margin: 4em auto;
	padding: 0;
	width: 53vh;
	border: 0;
	border-bottom: 5px solid #ff7f507d;
	border-radius: 5px;
}
.single-post .article p,
p,
ul li {
	letter-spacing: 0;
	margin-top: 1rem;
}
iframe[src*="vimeo.com"],
iframe[src*="youtube.com"] {
	aspect-ratio: 16/9;
	width: 100%;
	height: auto;
}
ul:not(.menu) li {
	margin-bottom: 10px;
}
select:focus-visible {
	border: 1px solid #cccccc9c;
	outline: unset;
}
label,
textarea {
	display: block;
}
img {
	height: auto;
}
p {
	font-size: 15px;
}
.highlight-card.st3 .highlight-description,
textarea,
ul li {
	font-size: 16px;
}
.menu-toggle,
label {
	letter-spacing: 2px;
}
strong,
table th {
	font-weight: 600;
}
a {
	color: inherit;
}
a:hover {
	color: #f95d77;
}
input {
	transition: 0.5s;
	border: 1px solid #8f8f8f5e;
	padding: 5px;
}
input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
input:focus,
textarea:focus {
	outline: 0;
}
input:not:[type=submit],textarea {
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 16px;
	color: #000;
	background-color: #f4f4f4;
}
input: [type=submit] {
	color: #fff;
	background-color: #4268e3;
	transition: 0.5s ease-out;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	transition: 0.5s;
}
textarea {
	border-radius: 5px;
	line-height: 1em;
	transition: 1s;
	padding: 10px;
}
code, kbd, tt, var {
	padding: 15px;
	margin: 16px 0;
	display: block;
	box-sizing: border-box;
	clear: both;
	color: #ffffff !important;
	background: #424242 !important;
	-moz-tab-size: 2;
	-o-tab-size: 2;
	-ms-word-break: normal;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	position: relative;
	border-radius: unset;
	white-space: normal;
	border: 1px solid #353535;
	font-weight: 400;
	font-family: monospace;
}
section {
	padding: 5rem 0;
}
.sidebar section {
	padding: 0;
	margin: 10px 0 35px;
}
select {
	border: 1px solid #d6d6d6;
}
label {
	font-size: 14px;
	margin: 0.5em 0.5em 0.5em 0;
}
table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	border: 1px solid #eee;
	margin-bottom: 1.5em;
	display: table !important;
	overflow-x: visible !important;
	box-sizing: border-box;
	font-size: 0.8em;
}
table tr td,
table tr th {
	align-items: center;
	padding: 0.5em 1em;
	word-break: break-all;
}
table th {
	background: #f4f4f4;
	text-transform: uppercase;
	text-align: left;
}
table tr:nth-child(2n) {
	background-color: #fafafa;
}
table code,
table kbd,
table tt,
table var {
	background: inherit !important;
	color: #d92d2d !important;
	font-size: inherit !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline !important;
	border: none;
}
form.gsc-search-box button,
form.gsc-search-box input {
	height: 37px !important;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
}
form.gsc-search-box {
	height: 75px !important;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
}
form.gsc-search-box input {
	height: 100% !important;
	margin: 0;
	padding: 5px 11px;
}
form.gsc-search-box button.gsc-search-button {
	margin: 0;
	padding: 5px 11px;
	height: 40px !important;
}
table.gsc-search-box td.gsc-input input {
	height: 40px !important;
	padding: 5px 10px !important;
}
.trp-language-switcher-container.trp-floater-ls-names.trp-bottom-left .trp-language-wrap,
.trp-language-switcher-container.trp-floater-ls-names.trp-bottom-right .trp-language-wrap,
table.gsc-search-box td.gsc-input {
	padding: 0 !important;
}
table.gsc-search-box td {
	padding: 0;
	width: 100%;
}
@media (max-width: 375px) {
	.g-recaptcha {
		transform: scale(0.85);
		transform-origin: 0 0;
		margin-left: 0;
	}
}
.contact-full .wpcf7-submit.btn.btn-one:hover {
	background-color: #597ff9 !important;
}
.adsense-auto-ads-ignore {
	google-auto-ads: ignore;
}
.mb-6 {
	margin-bottom: 4rem !important;
}
.mb-7 {
	margin-bottom: 5rem !important;
}
.mb-8 {
	margin-bottom: 6rem !important;
}
.mb-9 {
	margin-bottom: 7rem !important;
}
.mb-10 {
	margin-bottom: 8rem !important;
}
.mt-6 {
	margin-top: 4rem !important;
}
.mt-7 {
	margin-top: 5rem !important;
}
.mt-8 {
	margin-top: 6rem !important;
}
.mt-9 {
	margin-top: 7rem !important;
}
.mt-10 {
	margin-top: 8rem !important;
}
.no-display,
.posts-pagination .screen-reader-text,
.search-popup label.screen-reader-text,
.ytp-large-play-button,
a.meanmenu-reveal {
	display: none;
}
.btn-purple {
	background-color: #a138a1;
	color: #fff;
}
#pricing .box h3,
.heading-two {
	line-height: 27px;
	height: 130px;
	width: 200px;
	margin: 50px auto 0;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	font-size: 28px;
}
.floating-text {
	display: inline-block;
	animation: 3s ease-in-out infinite float;
}
.current-menu-item a {
	color: coral;
}
.img-hover-zoom {
	overflow: hidden;
	display: block;
}
.img-hover-zoom img {
	transition: transform 0.4s;
}
.img-hover-zoom img:hover {
	transform: scale(1.02);
	cursor: pointer;
}
.clear,
.clearfix,
.clr {
	clear: both;
	box-sizing: border-box;
}
.align-center,
.four-col-box .services__content,
.home .send-us-message .btn-wrap,
.services-section .service-card .service-title,
.skills .suw_sub_heading_two,
.three-col-box .services__content,
body.single .single-post-meta {
	text-align: center;
}
.screen-reader-text {
	visibility: hidden;
}
.btn {
	font-weight: 700;
	padding: 10px 24px;
	border-radius: 6px;
	transition:
	background-color 0.3s,
	transform 0.2s;
	text-shadow: 0 1px 3px #0000006b;
	border: 1px solid #ffffff45;
}
.btn:hover {
	border: 1px solid #ffffff45;
}
.btn-one {
	background-color: #4d6dd6 !important;
	color: #fff !important;
}
.btn.btn-one:hover {
	background-color: transparent !important;
	transform: translateY(-2px);
	cursor: pointer;
}
.btn-two {
	background-color: #0090e700;
	color: #fff;
	text-shadow: 0 1px 3px #000000b0;
	box-shadow: 0 0 2px #000;
}
.btn.btn-two:hover {
	background-color: #0084d4;
	transform: translateY(-2px);
	cursor: pointer;
}
.btn.btn-trans {
	background-color: #ff924900;
	color: #fff;
}
.btn.btn-trans:hover {
	background-color: #c85b5b;
	transform: translateY(-2px);
}
.site-navigation ul ul,
.team .member:hover {
	transform: translateY(-10px);
}
.lbt {
	color: #6d8fff;
}
.pull-left {
	float: left !important;
}
.pull-right {
	float: right !important;
}
.highlight-x3,
body.blog .single-article .title,
form#searchform {
	display: flex;
}
.mobile-nav-active .mobile-nav {
	visibility: visible;
	opacity: 1;
}
.suw-logo-font {
	font-weight: 900;
	margin: 0 3px;
}
.mt-50 {
	margin-top: 50px;
}
.mt-30 {
	margin-top: 30px;
}
.heading-underline {
	clear: both;
	display: block;
	width: 90px;
	position: relative;
	overflow: hidden;
	height: 8px;
	margin: 15px auto;
}
.fc-green {
	color: #43c33c;
}
.pad50,
.page-template-default .entry-content ol {
	padding: 50px;
}
.aligncenter,
.downarrow-go-down img {
	margin: 0 auto;
	display: block;
}
.trishape,
.trishape-right {
	width: 0;
	top: 0;
	left: 0;
	position: absolute;
	height: 0;
}
.basic-heading,
.btn,
.button,
.comment-reply-link,
.full-width-heading,
.sub_heading_three {
	position: relative;
}
.trishape {
	border-top: 80px solid #c15e72;
	border-right: 80px solid transparent;
}
.trishape-right {
	border-top: 100px solid #c15e72;
	border-right: 100px solid transparent;
}
.comments-area {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid #e9ecef;
}
body.single .entry-content h2.comments-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 25px;
	padding-left: 15px;
	border-left: 4px solid #7694ff;
	display: flex;
	align-items: center;
	gap: 10px;
}
.related-posts-list,
.site-footer ul,
ol.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.comment {
	background: #fff;
	border: 1px solid #f1f3f5;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.comment-author {
	font-weight: 700;
	margin-bottom: 5px;
	color: #333;
}
.comment-author img {
	border-radius: 50%;
	margin-right: 10px;
}
.comment-metadata {
	color: #6c757d;
}
.comment-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #495057;
}
.comment-reply-link {
	display: inline-block;
	padding: 5px 12px;
	background: #7694ff;
	color: #fff !important;
	border-radius: 4px;
	font-size: 0.8rem;
	margin-top: 10px;
}
.comment-reply-link:hover {
	background: #5b75d6;
}
.comment-respond {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 8px;
	margin-top: 40px;
}
.comments-area textarea#comment {
	width: 100%;
	border: 1px solid #ced4da;
	border-radius: 5px;
	padding: 10px;
	resize: vertical;
}
.comment-awaiting-moderation {
	font-size: 0.8rem;
	color: #856404;
	background: #fff3cd;
	padding: 2px 8px;
	border-radius: 4px;
}
.basic-heading,
.full-width-heading {
	color: #3f3f3f;
	line-height: 1.3em;
	text-align: center;
}
.basic-heading {
	font-size: 40px;
	font-weight: 500;
	margin: 15px 0 10px;
	border-bottom: 3px solid #fff;
	padding: 8px;
	background-color: #ce7171;
}
.full-width-heading {
	padding: 45px 10px 0;
	font-size: 32px;
	font-weight: 600;
	position: relative;
}
.heading-underline::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #f77f7f;
	bottom: 3px;
	left: calc(50% - 60px);
}
.heading-underline::after {
	content: "";
	position: absolute;
	display: block;
	width: 40%;
	height: 100%;
	background: #c85b5b;
	bottom: -1px;
	left: calc(50% - 20px);
}
.half-width-heading,
.half_width_heading {
	font-size: 40px;
	font-weight: 500;
	position: relative;
	padding: 0;
	line-height: 1.4em;
	margin-bottom: 50px;
}
.heading_two,
.suw-heading,
.suw_heading,
.suw_heading_two {
	font-weight: 400;
	position: relative;
}
.half_width_sub_heading {
	font-size: 25px;
	position: relative;
	line-height: 1.4em;
}
.suw-heading,
.suw_heading {
	font-size: 65px;
	color: inherit;
	margin: 0;
	line-height: 1.4em;
}
.heading_two,
.suw_heading_two {
	color: #3f3f3f;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.3em;
	margin: 0;
}
.sub-heading,
.suw-sub-heading,
.suw_sub_heading {
	font-size: 25px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1.4em;
}
.sub-heading p {
	text-align: center;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin: 0 auto 44px;
	max-width: 830px;
	padding: 0 20px;
}
.suw-sub-heading-two,
.suw_sub_heading_two {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4em;
	padding: 30px 0 50px;
}
.suw-sub-title,
.suw_sub_title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4em;
	padding: 10px 0;
	margin: 0;
}
.fluid-sub-heading {
	font-size: 25px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1.4em;
	margin: 30px auto 50px;
}
.sub_heading_three {
	margin: 0 0 10px;
	padding: 40px 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 27px;
}
.fc-one,
.fc-two {
	font-size: 1.2em;
}
.single-container {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-right: auto;
	margin-left: auto;
}
.wp-caption {
	max-width: 100% !important;
}
.post_category ul li,
.pull_left {
	float: left;
}
.pull_right,
.service-page .benifit-essential .col-md-4.right,
.site-header .site-navigation ul#primary-menu {
	float: right;
}
body .wpcf7 form.sent .wpcf7-response-output {
	border: unset;
	color: #46b450;
	text-align: center;
}
.bg-color-purple {
	background-color: #4469ea96;
}
.bc-blue,
.bc_blue {
	background-color: #4268e3;
}
.bc-red,
.bc_red {
	background-color: #ce7171;
}
.bc-green {
	background-color: #71ce8d;
}
.fc-one {
	color: var(--fc-one);
}
.fc-two {
	color: var(--fc-two);
}
.code {
	background-color: #000;
	padding: 17px;
	color: #fff;
}
.prose :where(pre):not(:where([class~="not-prose"] *)) {
	background-color: transparent;
	border-radius: 0.375rem;
	color: currentColor;
	font-size: 0.875em;
	font-weight: 400;
	line-height: 1.7142857;
	margin: 0;
	overflow-x: auto;
	padding: 0;
}
.page .content ol li,
.page .content ul li {
	font-size: 18px;
	margin-top: 1em;
}
.read-next {
	font-size: 16px;
	padding: 15px;
	line-height: 49px;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
.widget_listcategorypostswidget li {
	display: flex;
	flex-direction: row-reverse;
	gap: 15px;
	align-items: center;
	justify-content: left;
}
.widget_listcategorypostswidget img {
	max-width: 55px;
	float: left;
}
.lcp_catlist,
.site-navigation.toggled ul {
	padding: 0;
}
.sidebar select[name="archive-dropdown"] {
	height: 47px;
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--bs-body-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--bs-body-bg);
	background-clip: padding-box;
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-radius: var(--bs-border-radius);
	transition:
	border-color 0.15s ease-in-out,
	box-shadow 0.15s ease-in-out;
	border-bottom: 5px solid;
}
.sidebar select.postform {
	width: 100%;
	min-height: 45px;
}
.sidebar .widget-title {
	font-size: 17px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	position: relative;
	color: #000;
	border-bottom: 1px solid coral;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.sidebar ul {
	padding: 0;
	list-style: none;
	margin: 0;
}
.main-content .sidebar .widget-area {
	display: block;
	padding: 0 0.5em 0.5em;
	margin-left: 0.5em;
}
.main-content {
	margin: 0;
	padding: 0;
	overflow: hidden;
	max-width: 100%;
}
.archive .main-content .content {
	padding: 8px;
}
@media screen and (max-width: 1024px) {
	.main-content .col-md-9 .content {
		padding: 45px 15px;
	}
}
@media screen and (min-width: 480px) {
	.main-content .col-md-9 .content {
		padding: 95px 55px 45px;
	}
}
.single.main-content.single-php.page-wrap .wrap {
	max-width: 694px;
}
.single .content ul li,
.single-post .content ol li {
	font-weight: 400;
	font-size: 18px !important;
	margin: 10px 0;
	padding: 0 5px;
}
.single-post-author {
	padding: 10px 1px;
}
.single-post .col-md-8 .content {
	max-width: 700px;
	margin: 0 auto;
}
.single-post .article p {
	font-weight: 400;
	margin-bottom: 1.5em;
	font-size: 18px !important;
	line-height: 1.8 !important;
}
.page-title {
	margin-bottom: 52px;
	margin-top: 0;
}
.fc_green {
	color: #32a332;
}
.fc_blue {
	color: #3579f3c7;
}
.widget-area {
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.search-form .form-control:focus {
	box-shadow: none;
}
.bypostauthor,
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a,
.contact-us-page .contact_page_form .message_wrap span,
.message_wrap span,
.posts-pagination .nav-links,
.search-form,
.search-popup a.search-button,
.site-header .site-logo img,
.site-navigation a,
.site-navigation ul.menu a {
	display: block;
}
.posts-pagination {
	padding: 20px 0;
	margin: 60px 0 0;
	clear: both;
}
.pagination .nav-links > a,
.pagination .nav-links > div,
.pagination .nav-links > span {
	color: #fff;
	display: inline-block;
	min-width: fit-content;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
	line-height: 1.8em;
	padding: 3px 10px;
	background: #637dd9;
	margin: 0 0 10px;
}
.search-form .search-field {
	width: auto;
}
.search-popup.active .search-form .search-field {
	width: 80%;
	height: 20px;
	font-size: 11px;
}
.search-form .search-submit {
	border: unset;
	font-weight: 400;
	position: relative;
	background-color: #d14d31;
	color: #fff;
	min-width: 65px;
}
.post-password-form {
	background-color: #eee;
	border-radius: 5px;
	margin: 1.5em 0;
	padding: 2em;
}
.post-password-form label {
	float: left;
	width: calc(70% - 1em);
	margin-right: 1em;
}
.post-password-form input[type="submit"] {
	float: right;
	width: 30%;
	margin-top: 1.5em;
}
.post-password-form:after {
	content: "";
	display: table;
	clear: both;
}
.comment ol,
.comment ul,
.comment-metadata,
.pingback ol,
.pingback ul {
	margin-bottom: 1.5em;
}
.single span.cat-name,
.site-navigation ul.menu li a:hover,
.site-navigation ul.menu li.current-menu-item > a,
.widget ul li a:hover {
	color: #d14d31;
}
.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.alignwide {
	margin-left: calc(25% - 25vw);
	margin-right: calc(25% - 25vw);
}
.alignfull img,
.alignwide img {
	display: block;
	margin: 0 auto;
	width: 100%;
}
.wp-block-button .wp-block-button__link {
	border-radius: 5px;
	line-height: 1.5;
	padding: 12px;
	border: none;
	position: relative;
	transition: 0.2s ease-out 0;
}
.wp-block-button .wp-block-button__link:after {
	display: none;
	height: 0;
}
.wp-block-button .wp-block-button__link:active,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover {
	opacity: 0.8;
	border-bottom: 0;
	transition-delay: 0;
}
.wp-block-button .wp-block-button__link:active:not(.has-background),
.wp-block-button .wp-block-button__link:focus:not(.has-background),
.wp-block-button .wp-block-button__link:hover:not(.has-background) {
	background-color: #6f6f6f;
	opacity: 1;
}
.error404 form#searchform {
	margin: 0 auto;
}
.header-top {
	background: #1f1f1f;
	color: #fff;
	font-size: 13px;
	line-height: 1.5rem;
	position: relative;
	z-index: 1;
	padding: 2px 0;
	font-weight: 300;
}
.header-top .mail-wrap {
	text-align: right;
}
.site-header {
	z-index: 9999;
	max-width: 100%;
	padding: unset;
	position: relative;
	clear: both;
	background: #fff;
}
.site-header .site-title {
	padding: 0;
	font-size: 16px;
	display: inline-block;
	font-weight: 600;
	line-height: 1.4em;
	margin: 4px 10px 4px 4px;
	color: #fff;
}
.site-header .site-title a {
	color: inherit;
	font-size: 16px;
	text-decoration: none;
	font-weight: 400;
	line-height: 1.2em;
}
.site-header .site-branding .custom-logo-link {
	display: block;
	float: left;
	font-size: 24px;
	position: relative;
	z-index: 999;
}
.site-header .custom-logo-link img {
	height: auto;
	width: 100%;
	display: block;
	margin: 5px 0;
	max-width: 256px;
}
.site-title a:hover {
	text-decoration: unset;
}
.site-description {
	margin-bottom: 0.5em;
}
.site-header .site-logo {
	display: block;
	max-width: 172px;
	margin: 4px;
}
.site-navigation .menu li::first-child a img {
	width: 45px;
}
.site-header .site-navigation li {
	margin: 0;
}
.site-navigation ul.menu > li:hover > a {
	border-bottom: 2px solid #323232;
}
.site-navigation a {
	padding: 22px 10px;
	font-size: 16px;
	position: relative;
	color: #000;
}
.site-navigation a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	transform: scaleX(0);
	transition: 0.2s ease-out;
}
.site-navigation a:hover {
	opacity: 0.9;
	text-decoration: unset;
}
.menu-toggle {
	height: 100%;
	border: none;
	font-weight: 700;
	font-size: 14px;
	padding-left: 0;
	padding-right: 0;
	color: #333;
	background: #fff;
	display: none;
}
.site-navigation ul {
	padding: 0;
	list-style: none;
	margin: 0;
	display: block;
}
.site-navigation ul li.focus > ul,
.site-navigation ul li:hover > ul,
.site-navigation.toggled > div {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
ul.sub-menu li {
	color: #333;
}
.site-navigation ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	background: #fff;
	min-width: 236px;
	visibility: hidden;
	opacity: 0;
	transition:
	visibility 0.21s ease-out,
	opacity 0.2s ease-out,
	transform 0.2s ease-out;
	outline: 0;
	box-shadow: 0 3px 10px -5px #00000082;
	padding: 14px;
	border-radius: 5px;
	border-bottom: 5px solid #3d3d3d42;
	border-top-left-radius: unset;
	border-top-right-radius: unset;
	border-right: 2px solid #3d3d3d42;
	border-left: 2px solid #3d3d3d42;
	font-weight: 500;
}
.site-navigation ul#primary-menu > li:last-child ul,
.site-navigation ul.menu > li:nth-last-child(-n + 2) ul.sub-menu {
	right: 0;
	left: unset;
}
.site-navigation ul.menu > li:nth-last-child(-n + 4) ul li > ul {
	right: 100%;
	left: unset;
	top: 10px;
}
ul.sub-menu li:hover {
	opacity: 0.8;
}
.site-navigation > div > ul {
	padding: auto;
}
.site-navigation ul ul ul {
	left: 100%;
	top: 0;
	margin-top: -1px;
}
.site-navigation ul ul li {
	width: 100%;
	margin-bottom: 0;
}
.site-navigation ul ul li:first-child {
	border-top: unset;
}
.site-navigation ul ul li.focus > ul,
.site-navigation ul ul li:hover > ul {
	left: 100%;
}
.site-navigation ul ul a {
	width: 100%;
	padding: 6px 10px;
}
.site-navigation li {
	float: left;
	position: relative;
}
.site-navigation .current_page_ancestor > a,
.site-navigation .current_page_parent > a {
	-moz-box-shadow: inset 0 -2px 0 0 #333;
}
.site-navigation ul.menu > li {
	position: relative;
	margin: 0 5px;
}
.site-navigation ul.menu > li > a {
	padding: 0 5px;
	font-size: 15px;
	font-weight: 500;
	line-height: 3.4em;
	margin: 0;
	border-bottom: 2px transparent;
}
@media screen and (min-width: 1026px) {
	.site-header {
		padding: 8px 0;
	}
}
@media screen and (max-width: 1025px) {
	.site-navigation {
		display: none;
	}
	.site-header .col-md-3 {
		width: 100%;
	}
}
.pageBannerImage {
	position: relative;
	min-height: 240px;
	background-color: #eee;
	overflow: hidden;
}
.pageBannerImage__image {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.downarrow-go-down {
	text-align: center;
	z-index: 1;
	cursor: pointer;
	animation: 10s moving;
	overflow: hidden;
	padding: 20px 0;
}
nav.rank-math-breadcrumb {
	padding: 10px 0 14px;
	margin-bottom: 4px;
}
nav.rank-math-breadcrumb p {
	font-size: 13px !important;
	color: #6b7280;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	line-height: 1.5;
}
nav.rank-math-breadcrumb a {
	color: #6b7280;
	transition: color 0.15s;
}
nav.rank-math-breadcrumb a:hover {
	color: #ff4d00;
	text-decoration: underline;
}
nav.rank-math-breadcrumb .separator {
	color: #d1d5db;
	margin: 0 4px;
	font-size: 12px;
}
nav.rank-math-breadcrumb span:last-child {
	color: #374151;
	font-weight: 500;
}
nav.rank-math-breadcrumb a:first-child {
	color: #ff4d00;
}
.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 400;
	color: #37517e;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px;
	margin: 0;
	font-size: 14px;
}
.breadcrumbs ol li + li {
	padding-left: 10px;
}
.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #4668a2;
	content: "/";
}
.back-to-top {
	position: fixed;
	display: block;
	bottom: 0;
	z-index: 99999;
	left: 0;
}
h3.widget-title.footer-subtitle {
	font-size: 22px;
	margin: 20px 0 5px;
}
.site-footer {
	box-sizing: border-box;
	display: block;
	overflow: hidden;
	clear: both;
	position: relative;
}
.site-footer .widget ul li {
	font-weight: unset;
}
.footer-copyright .container,
.site-footer p {
	font-size: inherit;
}
#contact .section-title,
.portfolio .portfolio-item,
.title-lg-mb-x1 h2 {
	margin-bottom: 30px;
}
.site-footer .footer-contact ul {
	list-style: none;
	margin-left: 0;
	padding: 0;
}
.site-footer .footer-desc {
	line-height: 1.3em;
	margin: 10px 0 20px;
	font-size: 26px;
}
.footer-logo img.custom-logo {
	width: 100%;
	max-width: 295px;
	display: block;
	padding: 15px;
}
.site-footer h4 {
	font-weight: 400;
	line-height: 1.3em;
	margin: 30px 0 20px;
	font-size: 22px;
}
.site-footer ul li {
	padding: 10px 0;
	line-height: 18px;
	overflow: hidden;
	max-width: 100%;
	margin: 0 auto;
	font-size: 1em;
}
.footer-social {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.footer-social-col {
	padding: 100px 0 0;
}
.site-footer .footer-links ul i {
	padding-right: 2px;
	color: #333;
	font-size: 18px;
	line-height: 1;
}
.site-footer .footer-links ul li:first-child {
	padding-top: 0;
}
.site-footer .norton {
	margin: 20px 0 0;
	clear: both;
	display: block;
	width: 100%;
}
.footer-copyright {
	background-color: #1f1f1f;
	color: #fff;
	font-size: 12px;
	position: relative;
	z-index: 0;
	padding: 12px !important;
	margin: 0;
	line-height: 1em;
}
#pricing,
.two-column-block {
	background: #f8f8f8cc;
}
.footer-top .sub-title {
	font-size: 18px;
	padding: 0;
	margin: 15px 0 20px;
	color: #222;
	font-weight: 500;
}
.footer-top i {
	margin-right: 8px;
}
@media (min-width: 1200px) {
	.site-footer {
		padding: 150px 28px;
	}
}
.post-content code {
	font-size: 17px;
	padding: 15px;
	line-height: 49px;
	width: 100%;
	box-sizing: border-box;
	display: block;
}
.the_posts_navigation {
	width: 100%;
	position: relative;
}
.posts-navigation {
	margin-bottom: 4em;
}
.nav-links .nav-next a,
.nav-links .nav-previous a {
	border-radius: 3px;
	line-height: 1.4em;
	padding: 5px;
	background-color: #333;
	color: #fff;
	border: none;
	transition: 0.2s ease-out;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 12px;
}
.nav-links .nav-next a:focus,
.nav-links .nav-next a:hover,
.nav-links .nav-previous a:focus,
.nav-links .nav-previous a:hover {
	border: none;
	color: #fff;
	background-color: #6f6f6f;
}
.nav-links div:nth-child(2) {
	border-left: none;
}
#pricing .row,
.portfolio-details {
	padding-top: 40px;
}
.portfolio-details .portfolio-details-carousel {
	position: relative;
	z-index: 1;
}
.portfolio-details .portfolio-details-carousel .owl-dots,
.portfolio-details .portfolio-details-carousel .owl-nav {
	margin-top: 5px;
	text-align: left;
}
.portfolio-details .portfolio-details-carousel .owl-dot {
	display: inline-block;
	margin: 0 10px 0 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}
.portfolio-details .portfolio-details-carousel .owl-dot.active {
	background-color: #3579f3 !important;
}
.portfolio-details .portfolio-info {
	padding: 30px;
	position: absolute;
	right: 0;
	bottom: -70px;
	background: #fff;
	box-shadow: 0 2px 15px #0000001a;
	z-index: 2;
}
.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 16px;
}
.skills .content ul li,
.team .member span {
	padding-bottom: 10px;
}
.about_us_about .col-md-6 .content ul li + li,
.archive .single-article,
.category .single-article,
.lp-archive-courses .course-content .course-categories,
.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}
.portfolio-details .portfolio-description {
	padding-top: 50px;
}
.portfolio-details .portfolio-description h2 {
	width: 50%;
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 20px;
}
.portfolio #portfolio-flters {
	list-style: none;
	margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	margin: 10px 5px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #444;
	transition: 0.3s;
	padding: 8px 20px;
	border-radius: 50px;
}
.contact .info .address:hover i,
.contact .info .email:hover i,
.contact .info .footer-social a:hover,
.contact .info .phone:hover i,
.portfolio #portfolio-flters li.filter-active,
.portfolio #portfolio-flters li:hover {
	background: #333;
	color: #fff;
}
.portfolio .portfolio-item .portfolio-img img {
	transition: 0.6s;
}
.team .member .pic img,
.team .member .social a {
	transition: 0.3s ease-in-out;
}
.portfolio .portfolio-item .portfolio-info {
	opacity: 0;
	position: absolute;
	left: 15px;
	bottom: 0;
	z-index: 3;
	right: 15px;
	transition: 0.3s;
	background: #37517ecc;
	padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info p {
	color: #f9fcfe;
	font-size: 14px;
	margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .details-link,
.portfolio .portfolio-item .portfolio-info .preview-link {
	position: absolute;
	right: 40px;
	font-size: 24px;
	top: calc(50% - 18px);
	color: #fff;
	transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .details-link {
	right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
	transform: scale(1.15);
}
.portfolio .portfolio-item:hover .portfolio-info {
	opacity: 1;
}
.team .member {
	position: relative;
	box-shadow: 0 2px 1px #000;
	padding: 30px;
	border-radius: 5px;
	background: #fff;
	transition: 0.5s;
	min-height: 270px;
	margin: 0 0 30px;
}
.team .member .pic {
	overflow: hidden;
	width: 180px;
	border-radius: 50%;
}
.team .member .member-info {
	padding-left: 30px;
}
.team .member h4 {
	font-weight: 400;
	margin-bottom: 5px;
	font-size: 16px;
	color: #37517e;
}
.team .member span {
	display: block;
	font-size: 16px;
	position: relative;
	font-weight: 500;
}
.team .member span::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 1px;
	background: #cbd6e9;
	bottom: 0;
	left: 0;
}
.team .member p {
	margin: 10px 0 0;
	font-size: 14px;
}
.team .member .social {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.team .member .social a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	width: 32px;
	height: 32px;
	background: #eff2f8;
}
.team .member .social a i {
	color: #37517e;
	font-size: 16px;
	margin: 0 2px;
}
.team .member .social a:hover {
	background: #333;
}
.team .member .social a + a {
	margin-left: 8px;
}
#pricing {
	clear: both;
	overflow: hidden;
	position: relative;
	padding: 60px 20px 80px;
}
.price-tag {
	font-size: 34px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: #e2583e;
}
#portfolio .nav-pills .nav-link.active,
#portfolio .nav-pills .show > .nav-link,
#pricing .box.purple h3,
#pricing .box.purple p,
#pricing .box.purple span.price-tag {
	color: #fff;
}
#pricing .box.purple ul li {
	color: #fff;
	transition: text-shadow 0.1s;
}
#pricing .box {
	min-height: 760px;
	position: relative;
	top: 0;
	overflow: hidden;
	background: #4d6dd6;
	box-shadow: 0 0 2px 0 #00000054;
	color: #fff;
	border-radius: 5px;
	border: 3px solid #55bfff;
	border-bottom: 5px solid #3d3d3d42;
	border-top: 5px solid #3d3d3d42;
	border-right: 1px solid #3d3d3d42;
	border-left: 1px solid #3d3d3d42;
}
#pricing .box ul li:hover {
	transform: translateY(-0.5px);
}
#pricing .box.purple {
	background: linear-gradient(45deg, #854585, #854585);
}
#pricing .col-md-4:nth-child(odd) .box .btn-secondary {
	color: #fff;
	background-color: #d5676d;
}
#pricing .sub-heading,
.author-resume,
body.single-post .entry-content h3 a,
body.single-post .entry-content h4 a,
body.single-post .entry-content h5 a {
	color: #000;
}
.service-page .service-benifit p.half_width_sub_heading {
	text-align: center;
	margin: 40px 0 50px;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	line-height: 1.3em;
}
#pricing .box p.badge {
	font-size: 12px;
	padding: 14px;
	border-style: solid;
	border-width: 2px 0 0;
	border-color: #fff;
	width: 100%;
	background: #c85b5b;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: normal;
	line-height: 1.5em;
	border-radius: unset;
}
#pricing .box.purple p.badge {
	background: #fff;
	color: #272727;
}
#pricing h4 {
	font-size: 32px;
	color: inherit;
	font-weight: 400;
	margin: 0 auto;
	height: 110px px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#pricing h4 sup {
	font-size: 24px;
	padding: 4px;
	top: 0;
	color: #d14d31;
	font-weight: 700;
}
#pricing h4 span {
	color: inherit;
	font-size: 18px;
	display: block;
}
#pricing ul {
	padding: 30px 50px 40px;
	list-style: none;
	color: #fff;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}
#pricing ul li {
	font-weight: 400;
	text-align: left;
	font-size: 16px;
	line-height: 26px;
	padding: 5px;
	margin: 0 0 10px;
	cursor: default;
}
#pricing ul i {
	color: inherit;
	font-size: 24px;
	position: absolute;
	left: 0;
	top: 6px;
}
#pricing ul .na,
#pricing ul .na i {
	color: #ccc;
}
#pricing ul .na span {
	text-decoration: line-through;
}
@media screen and (min-width: 1400px) {
	.main-content .content-area {
		padding-right: 10px;
	}
	.main-content .col-md-3 .sidebar,
	.main-content .col-md-9 .content {
		margin-top: 115px;
		margin-bottom: 190px;
	}
	.site-header .site-branding {
		position: relative;
		z-index: 9;
		overflow: hidden;
	}
	.site-header.navscrl {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: #fff;
	}
	.container-fullwidth {
		width: 100%;
		max-width: 100%;
		clear: both;
	}
	#contact .col-md-6 {
		width: 49%;
	}
	#contact .col-md-6 > div {
		margin: 0 1%;
		width: 98%;
	}
	.site-navigation ul.menu > li ul li a {
		color: #000;
	}
	#pricing .col-md-4:nth-child(3) {
		margin-right: 0;
		padding: 0;
	}
	.single-container {
		max-width: 1024px;
		margin: 0 auto;
		width: 100%;
	}
}
@media screen and (min-width: 768px) {
	#pricing {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 20px;
	}
}
.benifit-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 50px 50px 50px 80px;
}
.benifit-box p.content {
	max-width: 480px;
	margin-top: 25px;
}
.benifit-box .benifit-icon {
	font-size: 42px;
}
.benifit-box .title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 25px;
	margin-top: 6px;
}
.benifit-box .title img {
	width: 30px;
	margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
	.benifit-box {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.faq .faq-list {
	padding: 0 100px;
}
.faq .faq-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}
.faq .faq-list a {
	display: block;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	padding: 0 30px;
	outline: 0;
}
.faq .faq-list .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: #333;
}
.faq .faq-list a.collapsed {
	color: #37517e;
	transition: 0.3s;
}
@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes animate-loading {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
a.special_link {
	font-size: 97%;
	color: inherit;
	font-weight: 400;
}
.footer-social a img {
	width: 19px;
	margin: 0 8px 5px 0;
	vertical-align: middle;
	text-align: left;
}
.author-resume h2,
.author-resume h3,
.author-resume h4,
.author-resume h5 {
	margin: 50px 0 0;
	clear: both;
	border-radius: 26px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.5em;
	color: #3c3c3c;
}
.author-resume p {
	padding: 0;
	margin: 12px 0;
}
.author-resume .container {
	border-radius: 5px;
	border-bottom: 10px solid #55bfff;
	border-top-left-radius: unset;
	border-top-right-radius: unset;
	border-top: 10px solid #55bfff;
	border-right: 1px solid #55bfff;
	border-left: 1px solid #55bfff;
	box-shadow: 0 0 4px 0 #ddd;
	margin-top: 10px;
	margin-bottom: 10px;
}
.author-resume .resume-heading {
	font-size: 40px;
	padding: 0;
	margin: 0;
	text-align: center;
	line-height: 1.4em;
	color: brown;
}
.author-resume h3 {
	font-size: 20px;
}
.author-resume h4 {
	font-size: 19px;
}
.author-resume ul {
	list-style: none;
	margin: 25px 0 0;
	padding-left: 8px;
	text-transform: capitalize;
}
.author-resume ul li {
	font-size: 17px;
	margin-top: 15px;
}
.author-resume p {
	line-height: 1.6em;
	font-size: 18px;
}
.author-resume .left-sidebar {
	padding: 20px 35px;
	box-sizing: border-box;
	border-right: 2px solid #55bfff;
}
.author-resume .content {
	padding: 20px 30px 90px;
	position: relative;
}
.author-resume .download-link {
	max-width: 118px;
	position: absolute;
	top: 0;
	right: 22px;
	padding: 5px;
	font-size: 12px;
	color: red;
}
.author-resume .download-link a {
	color: inherit;
	background: inherit;
	font-size: inherit;
}
.author-resume .content .content-header {
	clear: both;
	padding: 0;
	margin: 59px 0 0;
}
.author-resume .content .content-header .left {
	float: left;
	padding: 0 20px 0 0;
}
.author-resume .content .content-header .right {
	width: 30%;
	float: right;
}
.author-resume .content .content-header .right > img {
	display: block;
	width: 100%;
}
.author-resume .content .content-header .right > img:hover {
	border: 1px solid gold;
}
.author-resume .content .content-footer .right {
	float: right;
	max-width: 340px;
	width: 100%;
	margin-top: 100px;
	position: relative;
}
.author-resume .content .content-footer .right .signature {
	position: absolute;
	top: -6px;
	right: 43px;
}
.author-resume .content .content-footer .left {
	float: left;
	max-width: 267px;
	width: 100%;
	margin-top: 100px;
	position: relative;
}
.author-resume .content-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.author-resume .date-label,
.author-resume .signature-label {
	display: block;
	margin-bottom: 2px;
	font-weight: 700;
}
.author-resume .dotted-line {
	border-bottom: 1px dotted #000;
	height: 20px;
	line-height: 20px;
	position: relative;
}
.author-resume .dotted-line span {
	position: absolute;
	top: -20px;
	left: 0;
}
.home .skills,
.home .skills:before,
.skills .image-wrap {
	background-size: cover;
	background-repeat: no-repeat;
}
.skills-content {
	margin: 50px 0 0;
}
.about_us_about .col-md-6 .content ul {
	list-style: none;
	padding: 0;
}
.about_us_about .col-md-6 .content h3 {
	font-weight: 400;
	font-size: 26px;
}
.about_us_about .left,
.about_us_about .right {
	height: 425px;
}
.about_us_about {
	clear: both;
	display: flex;
	margin: 100px 0;
}
.about_us_about .section-content {
	padding: 0 40px 0 0;
}
.two-column-block .text {
	padding: 60px 20px;
	max-width: 560px;
}
.two-col-title {
	margin: 0 0 30px;
}
.two-column-block .text p {
	margin: 28px 0 0;
}
.two-column-block li.list-group-item {
	background: unset;
}
.two-col-img img {
	margin: 0 auto;
	display: block;
	width: 100%;
}
.two-column-block .caption {
	padding: 30px 50px;
}
.service-card {
	max-width: 250px;
	margin: 50px auto 0;
	text-align: center;
	transition: 0.1s;
}
.services-section .service-card .icon {
	font-size: 50px;
	color: #fff;
	background: #7694ff;
	width: 140px;
	margin: 0 auto 30px;
	padding: 23px;
	transition:
	background 0.4s,
	border-right 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.home .skills:before,
.services-section:before {
	background-size: auto;
	background-position: right center;
	height: 100%;
	width: 100%;
}
.services-section .service-card .icon:hover {
	background: #dd7575;
}
.services-section .service-description {
	padding: 15px;
	text-align: center;
}
.services-section .arrow {
	text-align: center;
	float: right;
	margin-right: 30px;
}
.services-section {
	text-align: center;
	padding: 50px 20px;
	position: relative;
}
.services-section:before {
	content: "";
	background-image: url(https://smartupworld.com/wp-content/uploads/2025/08/vector-min.webp);
	background-attachment: fixed;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	opacity: 0.8;
}
.services-section .section-title {
	color: #f95a5a;
	font-size: 18px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.services-section .section-subtitle {
	text-align: center;
	margin: 40px auto 50px;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	line-height: 1.3em;
	max-width: 760px;
}
.get-in-touch:before,
.home .skills:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: "";
}
@media (max-width: 425px) {
	.about_us_about .left {
		height: 660px;
	}
	.services-section .section-subtitle {
		font-size: 16px;
	}
}
.services-section .services-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}
.services-section .services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.service-list-section .service-card {
	flex-direction: column;
	padding: 50px 10px;
	transition: 0.3s;
	margin: 0 auto 26px;
	display: flex;
	box-shadow: 0 0 3px -1px #000;
	min-height: 345px;
	background: #ff000005;
	border-radius: 5px;
}
.services-section .service-card:hover {
	transform: translateY(-2px);
}
.services-section .icon {
	font-size: 30px;
	margin-bottom: 15px;
}
.services-section .service-title {
	font-size: 18px;
	color: #4d6dd6;
	margin-bottom: 10px;
}
.services-section .service-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}
.services-section .arrow {
	font-size: 18px;
	color: #f95a5a;
}
@media (max-width: 1200px) {
	.site-footer .norton {
		margin-bottom: 20px;
	}
	footer.site-footer {
		padding: 60px 0 30px;
	}
	.site-footer h4 {
		height: auto;
	}
	.services-section .services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 900px) {
	.services-section .services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.services-section .services-grid {
		grid-template-columns: 1fr;
	}
}
.skills .image-wrap {
	background-color: #000;
	background-position: center center;
}
.home .skills:before {
	background-image: url("//smartupworld.com/wp-content/uploads/2024/07/Vector.png");
	opacity: 0.5;
}
.skills .content h3 {
	font-weight: 400;
	font-size: 32px;
	color: #37517e;
}
.skills .content ul i {
	font-size: 16px;
	padding-right: 4px;
	color: #333;
}
.skills .progress {
	height: 58px;
	display: block;
	background: 0 0;
	margin-bottom: 15px;
}
.skills .progress .skill {
	margin: 0 0 5px;
	display: block;
	padding: 0;
	font-size: 16px;
	color: #000;
	font-weight: 600;
	line-height: 30px;
}
.skills .progress .skill .val {
	float: right;
	font-style: normal;
}
.skills .progress-bar-wrap {
	background: #707070;
}
.skills .progress-bar {
	width: 92%;
	height: 22px;
	animation: 5s increaseprogress;
	background: #7694ff;
}
.primary-banner .animated {
	animation: 2s ease-in-out infinite alternate-reverse both up-down;
}
.skills .progress:first-child .progress-bar {
	width: 90%;
}
.skills .progress:nth-child(2) .progress-bar {
	width: 89%;
	background: #7694ff;
}
.get-in-touch {
	position: relative;
	overflow: hidden;
	height: max-content;
	padding: 60px 0;
	color: #000;
}
.get-in-touch .page-thumb img {
	margin: 0 auto;
	display: block;
	box-shadow: 0 0 2px 0 #00000087;
	border-radius: 5px;
	max-width: 560px;
	width: 100%;
}
.get-in-touch .right {
	padding: 70px 0 0;
}
.get-in-touch ul {
	margin: 20px 0 0;
	padding-left: 50px;
}
.get-in-touch .text {
	padding: 25px;
	font-size: 18px;
}
.get-in-touch:before {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;
	height: 100%;
	background: #fff;
}
.get-in-touch h2 {
	text-align: center;
	color: inherit;
}
.get-in-touch ul.contact-info {
	margin: 50px 0;
	font-size: 22px;
	text-align: center;
	list-style: none;
	padding: 0;
}
.get-in-touch ul.contact-info li {
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 18px;
}
.get-in-touch .sub-heading {
	font-size: 16px;
	font-weight: 400;
	max-width: 540px;
	text-align: center;
	margin: 39px auto 50px;
}
.contact-page-form label {
	font-size: 15px;
	display: block;
	line-height: 1.3em;
	font-weight: 400;
	margin: 0;
}
.contact-page-form span.wpcf7-form-control-wrap {
	width: 100%;
	display: block;
	text-align: center;
	margin-top: 10px;
}
.contact-page-form .form-element-wrap,
.home .frontpage-contact-form .form-element-wrap {
	padding: 15px 0;
	position: relative;
}
.contact-page-form .form-element-wrap > p,
.home .frontpage-contact-form .form-element-wrap > p {
	padding: 0;
	margin: 0;
}
.contact-page-form .left,
.contact-page-form .right {
	padding: 0 10px;
	position: relative;
}
.contact-page-form input[type="date"],
.contact-page-form input[type="datetime-local"],
.contact-page-form input[type="datetime"],
.contact-page-form input[type="email"],
.contact-page-form input[type="month"],
.contact-page-form input[type="number"],
.contact-page-form input[type="password"],
.contact-page-form input[type="range"],
.contact-page-form input[type="search"],
.contact-page-form input[type="tel"],
.contact-page-form input[type="text"],
.contact-page-form input[type="time"],
.contact-page-form input[type="url"],
.contact-page-form input[type="week"],
.contact-page-form select,
.contact-page-form textarea {
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 3px;
	color: #000000b3;
	border: 1px solid #00000040;
	padding: 5px 14px;
	font-size: 16px;
	line-height: 28px;
	box-shadow: none;
	transition:
	border 0.15s,
	box-shadow 0.15s;
}
.contact-page-form select {
	font-size: 14px;
	width: 100%;
	height: 45px;
}
.contact-page-form input[type="submit"] {
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
	display: block;
}
.contact-page-form textarea {
	height: 180px;
	padding-top: 14px;
	padding-bottom: 14px;
	margin: 0 auto;
	width: -webkit-fill-available;
}
.contact-page-form span.wpcf7-form-control-wrap input {
	width: 100%;
	display: block;
}
.google-map {
	clear: both;
	overflow: hidden;
	width: 100%;
	height: 450px;
	padding: 0;
}
.google-map img {
	min-height: 280px;
	object-fit: cover;
}
.get-started-btn {
	margin-left: 25px;
	color: #fff;
	border-radius: 50px;
	padding: 6px 25px 7px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	border: 2px solid #333;
	font-weight: 600;
}
.get-started-btn:hover {
	background: #31a9e1;
	color: #fff;
}
.mobile-nav-toggle {
	position: fixed;
	top: 20px;
	right: 15px;
	z-index: 9998;
	border: 0;
	background: 0 0;
	font-size: 24px;
	transition: 0.4s;
	outline: 0 !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav,
.mobile-nav-overly {
	position: fixed;
	transition: 0.2s ease-in-out;
}
.mobile-nav {
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}
.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #37517e;
	padding: 10px 20px;
	font-weight: 500;
	outline: 0;
}
.mobile-nav .active > a,
.mobile-nav a:hover,
.mobile-nav li:hover > a {
	color: #333;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\eaa1";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	background: #283a5a99;
	overflow: hidden;
	display: none;
}
.primary-banner .col-md-6 {
	display: flex;
	align-items: center;
	justify-content: center;
}
.front-page-primary-banner-buttons {
	display: flex;
	gap: 25px;
}
.primary-banner {
	width: 100%;
	height: calc(100vh - 116px);
	position: relative;
	overflow: hidden;
	background: #000;
}
.primary-banner:before {
	content: "";
	background-image: url(//smartupworld.com/wp-content/uploads/2024/01/front-page-services-bg-blurred-min.webp);
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	top: 0;
}
.primary-banner .container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.company-motto {
	text-align: center;
	border-bottom: 1px solid #ccccccb0;
	padding: 0 0 20px;
	margin-bottom: 45px;
}
.company-motto h2 {
	font-size: 20px;
	word-spacing: 1em;
	line-height: 1.3em;
	font-weight: 700;
}
.google_review {
	text-align: center;
	padding: 0 20px;
	font-weight: 700;
	font-size: 13px;
}
.google_review a {
	color: inherit;
	font-size: inherit;
	font-family: inherit;
}
.primary-banner .btn-get-started,
.primary-banner .btn-watch-video {
	font-weight: inherit;
	letter-spacing: inherit;
	transition: inherit;
}
.primary-banner .btn-get-started:hover {
	background: #b44458;
}
.primary-banner .caption .h1 {
	margin: 0 0 15px;
	color: inherit;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1em;
}
.primary-banner .caption .sub-title {
	color: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	align-self: center;
	margin: 30px 0;
	text-shadow: 0 1px 3px #000;
}
.primary-banner .btn-get-started {
	font-size: inherit;
	margin: 0 20px 0 0;
	color: #fff;
	background: #4469ea96;
	font-family: inherit;
}
.primary-banner .btn-watch-video {
	color: #fff;
	font-family: inherit;
	background-color: #b44458;
	font-size: inherit;
}
.primary-banner .btn-watch-video:hover {
	background: var(--lite-blue);
}
.primary-banner .caption {
	padding: 20px;
	max-width: 480px;
	color: #fff;
	position: relative;
}
.primary-banner .hero-img {
	text-align: right;
	padding-right: 50px;
}
@media screen and (max-width: 860px) {
	.google_review {
		font-size: 13px;
	}
	.primary-banner .btn-get-started {
		font-weight: 400;
		font-size: 12px;
		float: left;
	}
	.primary-banner .btn-watch-video {
		font-weight: 400;
		font-size: 12px;
		float: right;
	}
}
.experience h4,
.plans h4,
.services h4,
.three-col-box h4,
.work h4 {
	text-align: center;
	color: #f95d77;
	margin-bottom: 34px;
}
.three-col-box .col-inner {
	flex-direction: column;
	padding: 50px 35px 48px;
	transition:
	background 0.3s,
	border 0.3s,
	border-radius 0.3s,
	box-shadow 0.3s;
	display: flex;
	border-radius: 5px;
	border-bottom: 10px solid #4d6dd6;
	border-top: 10px solid #4d6dd6;
	border-right: 1px solid #4d6dd6;
	border-left: 1px solid #4d6dd6;
	min-height: 415px;
	background: #f7f7ff9c;
}
.three-col-box .col-inner:hover {
	box-shadow: 0 0 4px 0 #7fcfff;
}
.three-col-box .icon span {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.three-col-box .icon img {
	width: 78px;
}
.three-col-box .services__content h3 {
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: #7694ff;
	font-size: 21px;
	font-weight: 700;
	line-height: 27px;
}
.three-col-box {
	overflow: hidden;
	position: relative;
}
.four-col-box:before,
.three-col-box:before {
	content: "";
	background-image: url(https://smartupworld.com/wp-content/uploads/2025/08/vector-min.webp);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	top: 0;
	left: 0;
	opacity: 0.5;
}
@media (max-width: 1400px) {
	.three-col-box .col-inner {
		margin: 20px 0 0;
	}
}
.four-col-box {
	position: relative;
	padding: 60px 0;
}
.four-col-box .heading {
	text-align: center;
	font-size: 32px;
	color: #333;
	font-weight: 700;
}
.four-col-box .heading-underline {
	width: 80px;
	height: 3px;
	background-color: #f95d77;
	margin: 20px auto;
}
.four-col-box .sub-heading p {
	text-align: center;
	font-size: 18px;
	color: #555;
	margin-bottom: 40px;
}
.four-col-box .row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.four-col-box .col {
	flex: 1;
	min-width: 22%;
	padding: 15px;
	box-sizing: border-box;
}
.four-col-box .col-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 40px;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #f0f0f0;
	transition:
	box-shadow 0.3s,
	transform 0.3s;
	min-height: 400px;
}
.four-col-box .col-inner:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}
.four-col-box .icon {
	margin-bottom: 30px;
	font-size: 70px;
	color: #55bfff;
}
.four-col-box .services__content h3 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}
.four-col-box .services__content p {
	font-size: 16px;
	font-weight: 400;
	color: #555;
	line-height: 1.5;
	margin-bottom: 20px;
}
.four-col-box .services__content a {
	display: inline-block;
	margin-top: 10px;
	color: #f95d77;
	text-decoration: none;
	font-weight: 600;
}
.four-col-box .services__content a img {
	width: 18px;
	vertical-align: middle;
	margin-left: 10px;
}
@media (max-width: 1200px) {
	.four-col-box .col {
		min-width: 48%;
	}
}
.home .do-you-need {
	width: 100%;
	clear: both;
	position: relative;
	overflow: hidden;
	height: 560px;
}
.home .do-you-need:before {
	content: "";
	position: absolute;
	background-image: url(//smartupworld.com/wp-content/uploads/2023/10/geometric-5969509.svg);
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	filter: brightness(0.9);
}
.home .do-you-need .section-title {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	transform: translate(-50%, -50%);
	width: 768px;
	padding: 0;
}
.home .do-you-need .section-title p {
	margin-bottom: 30px;
	margin-top: 15px;
	clear: both;
	text-shadow: 0 0 4px #000000c2;
}
.about-us-wrap .heading {
	padding: 40px 40px 120px;
	text-align: center;
	overflow: hidden;
	color: #000;
}
.about-us-wrap .full_width_sub_heading {
	color: #000;
	font-size: 25px;
	max-width: 955px;
	margin: 40px auto 0;
}
.about_us_page_top .col-md-6 > div {
	overflow: hidden;
	box-sizing: border-box;
	font-size: 18px;
}
.about_us_page .heading {
	margin: 0 0 70px 10px;
	text-align: center;
}
.about_us_page_top .col-md-6 .left img {
	width: 100%;
	height: 470px;
	object-fit: cover;
	object-position: top center;
}
.about_us_page_top .col-md-6 .right {
	padding: 10px 60px;
}
.about_us_about .col-md-6 .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	color: #333;
	line-height: 1;
}
.about_us_page_top .col-md-6 a {
	display: inline;
	color: inherit;
}
.about_us_about .col-md-6 > div {
	color: #000;
	margin: 0;
	overflow: hidden;
	box-sizing: border-box;
}
.about_us_about .col-md-6 .left {
	padding: 48px 60px 40px 58px;
}
.about_us_about .content,
.home .send-us-message p {
	margin: 30px 0;
	text-align: center;
	color: #3f3f3f;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}
.about_us_about .col-md-6 .content ul li {
	padding-left: 28px;
	position: relative;
}
.about_us_about .col-md-6 .content .btn-learn-more {
	padding: 20px 35px;
	width: 170px;
	margin: 20px auto;
	border-radius: 50px;
	background: #fff;
	color: #333;
	height: 40px;
	display: inline-flex;
	line-height: 1.4em;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.about_us_page .high_time {
	height: 470px;
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}
.about_us_page .high_time .caption {
	position: absolute;
	left: 0;
	top: 50%;
	right: 50%;
	background: #000000a8;
	padding: 40px;
	transform: translate(20%, -50%);
	color: #fff;
	max-width: 490px;
	width: 100%;
}
.about_us_page .high_time .caption h3 {
	font-size: 21px;
	margin-bottom: 0;
	margin-top: 5px;
	line-height: 1.3em;
	font-weight: unset;
	color: #f95a5a;
}
.about_us_page .high_time .caption p {
	color: inherit;
	font-size: 37px;
	overflow-wrap: break-word;
	padding: 0;
	margin: 10px 0 0;
	line-height: 1em;
}
@media screen and (max-width: 1400px) {
	.main-content .col-md-9 .content {
		margin-top: 0;
	}
	.primary-banner .caption {
		margin: 29px auto 0;
	}
	.primary-banner .hero-img {
		max-width: 490px;
		padding: 0;
		margin: 0 auto;
	}
	.about_us_page .page_header {
		height: fit-content;
	}
	body .mean-container a.meanmenu-reveal span {
		background: #fff;
	}
	body .mean-container .mean-nav ul li,
	body .mean-container .mean-nav ul li li {
		margin-bottom: 0;
	}
	body .mean-container .mean-nav ul li li a {
		width: 94%;
		padding: 17px 4%;
	}
	.site-header .mean-container .mean-nav {
		background: #385ac7;
	}
	.site-header.mean-container .mean-nav {
		background: #3c5fd1;
	}
	.main-content .sidebar .widget-area {
		margin-left: unset;
	}
	body .site-header .site-branding {
		max-width: 100%;
	}
	.site-header .site-logo {
		width: 160px;
	}
	.skills .home .skills_left_content img {
		margin: 0 auto;
		padding: 0;
		float: none;
	}
	.skills .home .skills_right_content {
		padding: 100px 30px 0 50px;
	}
	.skills .container > div {
		height: unset;
		padding: 50px 15px;
	}
	#contact .col-md-6 {
		margin-bottom: 20px;
	}
	.contact_us_wrap .col-md-6 img {
		border: unset;
	}
	.contact_page_form {
		border: unset;
		box-shadow: unset;
	}
}
@media screen and (max-width: 768px) {
	table td,
	table th {
		padding: 6px;
		font-size: 14px;
	}
	#pricing .row > div:not(:last-child) .box {
		margin-bottom: 30px;
	}
	#pricing {
		padding-bottom: 0;
	}
	.about_us_page .high_time .caption {
		transform: translate(13%, -60%);
		max-width: 80%;
	}
}
@media screen and (max-width: 600px) {
	.about_us_page .about_us_page h3.full-width-heading {
		font-size: 32px;
	}
	.about_us_page .about-us-wrap .heading {
		padding: 55px 20px;
	}
	.about_us_page .about_us_about .col-md-6 .left {
		height: 910px;
	}
}
@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
.cliens {
	padding: 12px 0;
	text-align: center;
}
.cliens img {
	max-width: 45%;
	transition: 0.4s ease-in-out;
	display: inline-block;
	padding: 15px 0;
	filter: grayscale(100);
}
.cliens img:hover {
	filter: none;
	transform: scale(1.1);
}
.home .send-us-message {
	margin: 0;
	width: 100%;
	overflow: hidden;
	height: max-content;
	position: relative;
	padding: 50px 10px 80px;
	background: #fff;
	color: #000;
}
.home .send-us-message .suw_sub_heading_two {
	line-height: 1.3em;
	position: relative;
	color: inherit;
	font-size: 40px;
	font-weight: 400;
	margin: 45px auto;
	text-align: center;
	max-width: 650px;
}
.home .send-us-message h4 {
	color: #f95d77;
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	z-index: 0;
	text-align: center;
}
.home .send-us-message h3 {
	color: #fff;
	position: relative;
	margin: 0;
}
.home .send-us-message .cta-btn {
	padding: 12px 40px;
	margin: 10px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	background-color: #5879e2;
	border: 1px solid #ffffff5e;
	color: #f0f8ff;
}
@media screen and (max-width: 1500px) {
	.home .send-us-message .suw_sub_heading_two {
		margin: 0;
		padding: 50px 0 52px 52px;
	}
	.home .send-us-message p {
		margin: 0;
		padding: 0 0 52px 52px;
	}
}
.page-template-page-contained .entry-content p a {
	font-size: 96%;
	font-weight: 400;
	color: #333;
	padding: 0 4px;
}
.page_header {
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	display: flex;
}
.page-template-about .page_header {
	background-position: center;
}
.page_header:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #00000045;
}
.page_header .page_caption {
	margin: 0 auto;
	padding: 100px 0;
	text-align: center;
}
.page_header .page_heading,
.single-post-header .page_heading {
	font-weight: 600;
	color: #d14d31;
	font-size: 39px;
	text-align: center;
}
.page_header .page_sub_heading {
	font-weight: inherit;
	font-family: inherit;
	margin: 12px 0 0;
	font-size: 16px;
	color: #ff4d00;
	padding: 0 10px;
}
.page-template-default .entry-content {
	padding: 130px;
}
.page-template-default .entry-content ol li {
	line-height: 1.8em;
	margin-bottom: 16px;
	font-size: 18px;
}
.service-list-section h2.full-width-heading {
	position: relative;
	padding-top: 50px;
	padding-left: 10px;
	padding-right: 10px;
	color: #3f3f3f;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.3em;
}
.service-list-section {
	clear: both;
	overflow: hidden;
	width: 100%;
	padding: 60px 60px 80px;
	position: relative;
}
.service-list-section:before {
	content: "";
	background-image: url(https://smartupworld.com/wp-content/uploads/2024/07/Services.webp);
	background-attachment: fixed;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	top: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto;
}
.service-list-section h3.half_width_sub_heading {
	font-size: 16px;
	font-weight: 400;
	max-width: 540px;
	text-align: center;
	margin: 0 auto 50px;
}
.service-list-section .service-box-single-item {
	overflow: hidden;
	position: relative;
	margin: 10px;
	background-image: url(//smartupworld.com/wp-content/uploads/2024/07/Vector-10.png);
	border: unset;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: auto;
	background-color: #f9f9f9;
	border-radius: 10px;
	box-shadow: 0 2px 5px #0000001a;
	transition: transform 0.3s;
}
.service-list-section .section-content {
	margin-bottom: 90px;
	overflow: hidden;
}
.service-list-section .service-box-single-item .icon {
	width: 100%;
	height: auto;
	margin-bottom: 35px;
}
.service-list-section .service-box-single-item .icon img {
	width: 70px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 9px;
	background: #4e4e4e;
}
.service-list-section .service-box-single-item .title {
	margin-bottom: 40px;
	min-height: 80px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: #514899;
	font-size: 21px;
	font-weight: 700;
	line-height: 27px;
}
.service-list-section .service-box-single-item ul.list-item {
	list-style: none;
	padding: 0;
	width: 290px;
	margin: 0 auto;
}
.service-list-section .service-box-single-item ul.list-item li {
	text-transform: capitalize;
	line-height: 1.3em;
	margin-bottom: 8px;
	border-bottom: 5px solid #b4c4f280;
	padding-bottom: 5px;
	color: #3f3f3f;
	font-size: 16px;
	font-weight: 400;
}
.service-list-section .inner-shape {
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	visibility: hidden;
	opacity: 0;
}
.service-list-section .service-box-single-item:hover .inner-shape {
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: visible;
	opacity: 1;
}
.service-list-section ul li:before {
	content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
	margin-right: 5px;
}
body.single .main-content .entry-header .entry-title {
	text-transform: capitalize;
	font-weight: 600;
	color: #00aeff;
	font-size: 35px;
	text-align: left;
	line-height: 38px;
}
body.single .entry-header {
	margin-bottom: 35px;
}
body.single .entry-meta {
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	margin: 40px 0 0;
}
body.single .entry-meta span.byline {
	margin: 0 5px;
}
body.single .entry-content ol li p,
body.single .entry-content ul li p {
	display: inline;
}
body.single .entry-content h2 {
	font-size: 26px;
	margin: 30px 0;
	font-weight: 600;
}
body.single .entry-content h3 {
	font-size: 22px;
	font-weight: 600;
	margin: 30px 0;
}
body.single .entry-content h4 {
	line-height: 1.3em;
	padding: 5px 0;
	font-size: 22px;
	font-weight: 600;
}
body.single-post .entry-content a {
	color: #00aeff;
}
.single-post .entry-content ul ul {
	list-style: disc;
}
body.single .single-post-category {
	font-size: 34px;
	color: #fff;
	text-align: center;
	font-weight: 600;
	width: fit-content;
	margin: 0 auto;
	background: #00aeff;
	padding: 10px 30px;
}
body.single .featured-image {
	display: block;
	box-sizing: border-box;
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0;
	transition: 0.6s;
	padding: 0;
}
body.single .img-hover-zoom {
	overflow: hidden;
	display: block;
	margin: 10px auto;
}
body.single ul:not(.menu) li:before {
	font-size: 10px;
}
body .dino-outer:first-of-type {
	border: 0 !important;
	background: #fff;
}
ul.sub-category-list li {
	display: inline-block;
	border: 1px solid;
	margin-right: 10px;
	font-size: 12px;
	border-color: #ededed8a;
	line-height: 30px;
	padding: 0 10px;
}
ul.sub-category-list li:nth-child(odd) a {
	color: #d14d31;
	font-weight: 400;
	font-size: 15px;
}
ul.sub-category-list li a {
	color: #00aeff;
	font-weight: 600;
	font-size: 13px;
}
.image_gallery_archive .single-article .image,
.video_gallery_archive .single-article {
	background-position: center;
	background-color: #4c75bd;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.archive .single_cat_title {
	font-weight: 700;
	color: #d14d31;
	font-size: 46px;
	padding: 0 15px;
	line-height: normal;
	margin: 80px 0 0;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}
.archive-description {
	padding: 0 0 4px;
	border-bottom: 4px solid #edc3cb;
	margin: 10px 0 0 8px;
}
.archive-description p {
	padding: 15px 5px 5px;
	margin: 10px 5px 15px;
	text-align: center;
	font-size: 14px;
}
.archive .single-article .icon,
.category.single-article .icon {
	float: left;
	padding: 0;
	margin: 0 8px 0 0;
}
.archive .single-article .icon img,
.category .single-article .icon img {
	width: 20px;
	padding: 0;
	display: block;
}
.archive .single-article .title a {
	text-transform: unset;
	width: auto;
	margin-bottom: 5px;
	display: block;
	text-align: left;
	font-weight: 700;
	color: #444;
	text-decoration: none;
	font-size: 20px;
	line-height: 26px;
}
.archive .single-article .title a:hover {
	color: #b1b1b1;
}
.archive .single-article .entry-title,
.category .single-article .entry-title {
	font-size: 14px;
}
.category .single-article .title {
	max-width: 100%;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}
ul.sub-category-list {
	position: relative;
	overflow: hidden;
	margin: 12px auto;
	padding: 5px;
	text-align: center;
}
@media screen and (min-width: 1200px) {
	.archive .sub-category-list,
	.category .sub-category-list {
		padding: 20px;
		margin-bottom: 25px;
	}
}
@media screen and (max-width: 360px) {
	.archive ul.sub-category-list {
		padding: 0;
	}
	.archive .single-article .icon,
	.category .single-article .icon {
		display: none;
	}
	.category ul.sub-category-list {
		display: none;
		padding: 0;
	}
	.category .single-article .title {
		border-bottom: 1px solid #edc3cb;
	}
}
body.blog .single-article .title a {
	font-size: 16px;
	display: inline-block;
	font-weight: 400;
	text-transform: capitalize;
	width: auto;
	line-height: 1.3em;
}
@media screen and (max-width: 480px) {
	table {
		font-size: 13px;
	}
	table td,
	table th {
		padding: 6px 4px;
	}
	table td {
		hyphens: auto;
	}
	.header-top .mail-wrap,
	.header-top .phone-wrap {
		text-align: left;
	}
	.site-header .custom-logo-link img {
		margin: 0;
		padding: 0;
	}
	#pricing .box {
		max-width: 100%;
		height: auto;
		min-height: unset;
		margin-bottom: 0;
		padding: 0 20px 45px;
	}
	#pricing .col-md-4 {
		margin-bottom: 25px;
	}
	#pricing .sub-heading {
		font-size: 16px;
		font-weight: 400;
		line-height: 26px;
		margin: 0 0 44px;
		align-self: center;
		text-align: center;
	}
	.primary-banner .hero-img {
		max-width: 320px;
	}
	.page_header .page_heading {
		font-size: 1.3em;
		font-weight: 600;
		padding: 0 5px;
		text-align: left;
	}
	body.blog .featured-image {
		width: 100%;
	}
}

@media screen and (max-width: 360px) {
	.site-header .custom-logo-link img {
		max-width: 224px;
		margin: 0 0;
		display: block;
	}
	.site-header {
		height: 60px;
	}
}

.image_gallery_archive .the_archive_description {
	background-size: auto;
	margin: 0 10px;
	color: #484848;
	font-size: 16px;
	padding: 0 15px;
	text-align: center;
}
.image_gallery_archive .archive-page .single-article {
	clear: both;
	position: relative;
	overflow: hidden;
}
.image_gallery_archive .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	box-shadow: 0 0 7px 0 #000;
	border-radius: 3px;
}
.image_gallery_archive .single-article .image {
	height: 280px;
	display: block;
	box-shadow: 0 0 4px 1px #000;
}
.image_gallery_archive .single-article .title {
	margin: 0 0 0.5em;
}
.image_gallery_archive .single-article .image-wrap {
	display: block;
	overflow: hidden;
	margin-bottom: 15px;
}
.image_gallery_archive .post_meta {
	font-size: 12px;
	font-weight: 300;
}
.read-more {
	font-size: 12px;
	width: fit-content;
	display: block;
	text-align: center;
	margin-top: 8px;
	float: right;
}
.video_gallery_archive .single-article {
	height: 198px;
	width: 98%;
	margin: 0 2% 2%;
	padding: 0;
}
.video_gallery_archive .single-article .title {
	position: relative;
	width: 100%;
}
.video_gallery_archive .single-article .tiktok-embed {
	position: absolute;
	width: 100%;
	overflow: hidden;
	height: 100%;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}
.video_gallery_archive .single-article .html5-video-player a {
	font-size: 13px;
	word-break: break-word;
	overflow: visible;
}
.video_gallery_archive .single-article a {
	margin: 0 auto;
	font-size: 16px;
	text-transform: capitalize;
	min-height: 25px;
	font-weight: 400;
	z-index: 9;
	text-align: center;
	width: 100%;
	text-shadow: 0 4px 3px #000;
	max-width: 90%;
	padding: 20px 0;
}
.video_gallery_archive .single-article .ytp-large-play-button {
	width: 32px;
	margin-left: -15px;
}
.video_gallery_archive .ytp-title-channel-logo {
	width: 34px;
	height: 34px;
}
.blog-template .single-article {
	width: 33.333%;
	float: left;
}
.blog-template .single-article:nth-child(3n + 1) {
	clear: left;
}
.blog-template {
	box-shadow: 0 1px 3px 0 #0000002e;
	background-color: #5480cf;
	height: 215px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	width: 96%;
	margin: 2% auto;
	outline: #5a5b64 solid 1px;
}
.blog-template .blog-page-heading {
	font-size: 16px;
	padding: 6px 9px;
	text-transform: capitalize;
	height: 56px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	font-weight: 400;
	margin: 8px 0 0;
	box-shadow: 0 0 2px 0 #5c5c5c52;
}
.blog-template .content .title {
	font-size: 18px;
	text-transform: capitalize;
	height: auto;
	font-weight: 400;
	position: absolute;
	top: 34%;
	bottom: 26%;
	display: block;
	left: 2%;
	right: 2%;
	padding: 12px;
	text-align: left;
}
.blog-template .content .post-thumb {
	max-width: 100%;
	margin: 0 0 10px;
	width: 100%;
	height: 170px;
}
.blog-template .content .post-thumb img {
	height: 100%;
	width: 100%;
}
.blog-template .single-article .excerpt {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
@media screen and (max-width: 420px) {
	#pricing .box {
		max-width: 100%;
		margin: 0 auto 30px;
	}
}
.contact_template .contact_us_wrap {
	overflow: hidden;
	margin: 0 auto 60px;
	box-sizing: border-box;
	padding: 67px 6px;
	max-width: 98%;
}
body.search-results .search_heading {
	font-size: 16px;
	background-color: #7ca6ef;
	padding: 6px 12px;
	margin: 0;
	text-transform: capitalize;
	text-shadow: 0 0 8px #000;
	font-weight: 400;
	color: #fff;
}
body.search-results .content {
	border-bottom: 1px solid #ccc;
	padding: 66px;
	margin: 0;
}
body.search-results .content .title a {
	display: block;
	font-size: 19px;
	font-weight: 700;
}
body.search-results .search-result-inner {
	border-bottom: 1px solid #ccc;
	padding: 0 0 10px;
	margin-bottom: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.game {
	min-height: 600px;
	padding: 50px;
}
.minifier .content {
	position: relative;
	z-index: 9;
	overflow: auto;
	min-height: max-content;
}
.minifier #input_string,
.minifier .output-string {
	min-height: 250px;
	background: azure;
	border: 2px solid #ededed;
	width: 100%;
}
.contact-us-page .contact-us-title,
input#ctdb_login_submit {
	background: #4268e3;
	overflow: hidden;
}
.minifier h3.title {
	font-size: 25px;
	margin-bottom: 15px;
}
.minifier .content input[type="submit"] {
	font-weight: 500;
	background-color: #4268e3;
	transition: 0.5s;
	border: 1px solid #ffffff5e;
	padding: 8px 10px;
}
.minifier #input_string {
	padding: 20px;
}
.minifier .output-string {
	margin: 0 auto;
	padding: 20px 40px;
}
.minifier .left,
.minifier .right {
	padding: 10px;
}
@media screen and (min-width: 992px) {
	.service-list-section .service-box-single-item {
		padding: 60px 15px 70px;
		min-height: 592px;
	}
}
@media screen and (min-width: 1800px) {
	.service-list-section {
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 1200px) {
	.home .send-us-message p {
		margin: 0 auto;
		text-align: left;
	}
	.home .send-us-message {
		text-align: center;
		justify-content: center;
	}
	.service-list-section .section-title p {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media screen and (min-width: 1024px) {
	body.single .entry-content .single-container {
		max-width: 960px;
	}
}
@media screen and (max-width: 768px) {
	.home .do-you-need {
		height: 620px;
	}
	.home .do-you-need .section-title p {
		font-size: 26px;
	}
	.home .do-you-need .container {
		padding: 0 10px;
	}
	.home .do-you-need .section-title {
		width: 90%;
	}
	.home .send-us-message .suw_sub_heading_two {
		padding: 0;
		font-size: 30px;
		text-align: center;
		margin: 10px 0;
	}
	.home .send-us-message {
		height: max-content;
		font-size: 30px;
		padding-bottom: 80px;
	}
	.home .send-us-message p {
		padding: 0;
		margin: 30px 0 60px;
	}
	.page-template-default .entry-content {
		padding: 40px;
		word-wrap: break-word;
	}
	.service-list-section {
		padding-left: 10px;
		padding-right: 10px;
	}
	.service-list-section .full-width-heading {
		padding: 90px 17px 0;
	}
	.service-list-section h3.half_width_sub_heading {
		font-size: 25px;
		position: relative;
		line-height: 1.4em;
		margin: 30px 0 50px;
	}
	.category .archive-description p {
		font-size: 16px;
		text-align: center;
	}
	.category .single-article .title .icon img {
		height: 35px;
		padding: 10px;
	}
	a.profile-photo {
		float: none;
		margin: 0 auto;
		display: block;
		padding: 10px;
	}
}
@media screen and (max-width: 520px) {
	.contact-page-form {
		padding: 12px 20px 15px;
	}
	.primary-banner .container {
		padding-top: 0;
		position: relative;
	}
	.front-page-primary-banner-buttons .btn:last-child {
		margin-right: 0;
	}
	.primary-banner .company-motto h2 {
		word-spacing: unset;
		font-size: 11px;
	}
	#pricing ul {
		padding: 30px 20px 50px;
	}
	.get-in-touch ul.contact-info {
		margin: 12px 12px 0;
		font-size: 18px;
	}
}
@media screen and (max-width: 425px) {
	.suw-sub-heading-two,
	.suw_sub_heading_two {
		font-size: 16px;
	}
	nav.navigation.pagination {
		justify-content: center;
	}
	.search-form .search-field {
		width: 100%;
	}
	.footer-copyright .copyright,
	.site-footer p {
		font-size: 12px;
	}
	#pricing {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 30px;
	}
	.two-column-block .text {
		padding: 50px 20px;
	}
	.get-in-touch .sub-heading {
		font-size: 16px;
		padding: 0 20px;
	}
	.dino-outer .dino-canvas {
		z-index: 9999;
	}
}
@media screen and (min-width: 1024em) {
	.services .col-md-6 {
		flex-basis: 33.333%;
		margin-bottom: 15px;
	}
}
@media screen and (min-width: 600em) {
	.site-header-col {
		justify-content: flex-start;
	}
	.site-title a {
		margin-right: 20px;
	}
}
@media screen and (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover > ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down > a:after {
		content: "\ea9d";
	}
}
@media screen and (min-width: 1080px) {
	.pageBannerImage {
		min-height: 500px;
	}
}
@media screen and (max-width: 992px) {
	.footer-copyright .copyright {
		float: unset;
	}
	.breadcrumbs {
		margin-top: 68px;
	}
}
@media screen and (min-width: 769px) {
	.send-us-message .cta-btn-container {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
}
@media screen and (min-width: 768px) {
	.author-resume .content .content-header {
		display: flex;
		flex-direction: column;
	}
	.author-resume .content .content-header .left {
		width: 100%;
		float: unset;
		padding: 0;
		order: 2;
	}
	.author-resume .content .content-header .right {
		width: 400px;
		margin: 0 auto 40px;
	}
	.pageBannerImage {
		min-height: 450px;
	}
	.posts-navigation {
		margin-bottom: 2em;
	}
	.comment-form-email {
		width: 48%;
		float: left;
	}
	.comment-form-url {
		width: 48%;
		float: right;
	}
	.portfolio-details .portfolio-description h2 {
		width: 100%;
	}
	.portfolio-details .portfolio-info {
		position: static;
		margin-top: 30px;
	}
	.cliens img {
		max-width: 40%;
	}
	.get-started-btn {
		margin: 0 48px 0 0;
		padding: 6px 20px 7px;
	}
	body.page-id-21040 .rank-math-html-sitemap {
		columns: 3;
	}
}
@media screen and (max-width: 767px) {
	.archive .single-article .title .icon img {
		height: 35px;
		padding: 10px;
	}
	.copyright,
	.site-footer .credits {
		text-align: center;
		float: none;
	}
	.skills .skills-content {
		padding: 0 0 45px;
	}
	@media (max-width: 767px) {
		.post-meta-container {
			justify-content: flex-start !important;
			text-align: left !important;
			flex-direction: column;
			align-items: flex-start !important;
		}
		.post-meta-item {
			margin-bottom: 8px;
		}
	}
}
@media screen and (max-width: 678px) {
	.col-md-9 .content,
	.sidebar {
		margin-top: 12px;
		margin-bottom: 12px;
	}
	body.single .entry-meta {
		margin: 0;
		padding: 0;
	}
}
@media screen and (max-width: 575px) {
	#hero .btn-get-started {
		font-size: 16px;
		padding: 10px 24px 11px;
	}
	#hero .btn-watch-video i {
		font-size: 32px;
		top: 7px;
	}
}
@media screen and (min-width: 540px) {
	.pageBannerImage {
		min-height: 380px;
	}
}
@media screen and (max-width: 480px) {
	.skills .container > div {
		height: auto;
		padding: 27px 20px;
		float: none;
	}
	.skills .home .skills_right_content h3 {
		font-size: 26px;
		margin-bottom: 0;
	}
	.service-list-section .section-title p {
		margin-bottom: 30px;
		font-size: 22px;
		margin-top: 40px;
		text-align: left;
	}
	.home #contact .container,
	body.single .entry-content {
		padding: 0 5px;
	}
	body.single .entry-content h4 {
		line-height: 1.3em;
		padding: 35px 10px 5px;
		font-size: 22px;
		font-weight: 600;
	}
	body.single .entry-header .entry-title {
		font-size: 25px;
	}
	footer.site-footer {
		padding: 40px 0;
	}
	footer.site-footer .footer-bottom .title {
		display: none;
	}
	.home .suw-heading {
		font-size: 26px;
		text-align: center;
		margin: 30px 0 0;
	}
	.contact-us-page .contact-us-title .title {
		padding: 88px 20px;
		font-size: 30px;
	}
	.home .send-us-message {
		padding: 20px 20px 50px;
	}
	.home #contact .section-title > h2 {
		margin-top: 30px;
		font-size: 26px;
	}
	.home .contact .info h2 {
		font-size: 40px;
	}
	.home #contact .section-title p {
		padding: 0 10px;
		text-align: left;
	}
	.contact-us-page .contact-us-title .sub-title {
		padding: 0 0 80px;
		font-size: 20px;
	}
	.contact-us-page .contact_us_wrap .background-image {
		height: 450px;
	}
	.single-post-header .page_heading {
		font-size: 30px;
		font-weight: 600;
		padding: 0 5px;
		text-align: left;
	}
}
@media screen and (max-width: 430px) {
	.front_page_primary_banner .caption {
		width: 100%;
		padding: 10px;
	}
}
@media screen and (max-width: 380px) {
	.skills .row {
		padding: 0;
		margin: 0;
		width: unset;
		max-width: unset;
		margin: unset;
		padding: unset;
	}
	.skills .container > div {
		height: auto;
		padding: 5px;
	}
	.home .skills_right_content h3 {
		font-size: 25px;
		text-align: center;
		margin: 10px 0 0;
		padding: 10px 5px;
	}
	.home .send-us-message h3,
	.skills .content h3 {
		font-size: 25px;
	}
	.col-md-9 .content,
	.sidebar {
		margin-bottom: 0;
	}
	.primary-banner .btn-get-started {
		font-size: 13px;
		margin-right: 0;
	}
	.primary-banner .btn-watch-video {
		font-size: 13px;
	}
	.home .google_review {
		text-align: center;
		margin: 0 auto;
		right: 0;
		left: 0;
	}
	.home .contact .info {
		padding: 32px 15px;
	}
	.home .contact .info h2 {
		padding: 0;
		margin: 0 auto 20px;
		width: 170px;
	}
	.home .suw-heading {
		font-size: 25px;
		text-align: center;
		font-weight: 500;
	}
}
#portfolio .nav-pills .nav-link:hover {
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
#portfolio .nav-pills .nav-link {
	color: #000;
	font-weight: 600;
	text-shadow: 0 0 0 transparent;
	transition: text-shadow 0.2s;
}
.contact-us-page .contact-us-title .title {
	line-height: 1.3em;
	text-align: center;
	font-size: 40px;
	font-weight: 400;
	padding-top: 50px;
	margin: 80px auto 50px;
	max-width: 640px;
}
.contact-us-page .contact-us-title .sub-title {
	padding: 0 0 80px;
	margin: 0;
	text-align: center;
	font-size: 25px;
}
.contact-us-page .contact-us-title .suw_sub_heading {
	max-width: 530px;
	text-align: center;
	margin: 25px auto 85px;
	font-size: 30px;
}
.contact-us-page .contact_us_wrap .col-md-6,
.contact-us-page .contact_us_wrap .col-md-6 > div,
.contact-us-page .contact_us_wrap .left_content {
	margin: 0;
	height: 100%;
}
.contact-us-page .looking-forward .background-image {
	overflow: hidden;
	background-image: url(https://smartupworld.com/wp-content/uploads/2022/10/brooke-cagle-uHVRvDr7pg-unsplash.jpg);
	background-repeat: no-repeat;
	background-size: 140%;
	background-position: center center;
	animation: 50s zoom;
	position: relative;
	height: 800px;
}
.contact-us-page .looking-forward .overlay {
	color: #fff;
	left: 40%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}
.comment-form-comment,
.contact-us-page .contact_us_wrap .caption .h1 {
	margin-bottom: 20px;
}
.contact-us-page .info .col-md-4 > div {
	padding: 50px 20px;
	background-color: #4268e3;
	margin: 5px;
	min-height: 219px;
	border-bottom: 6px solid #5979e2;
}
.contact-us-page ul.location {
	margin-bottom: 50px;
	font-weight: 400;
}
.contact-us-page ul.contact-info {
	font-size: 18px;
	list-style: none;
	max-width: 262px;
	text-align: left;
	margin: 0 auto;
}
.contact-us-page ul.contact-info img {
	width: 29px;
}
.contact-us-page ul.contact-info a {
	font-size: 19px;
	line-height: 1.3em;
	margin-left: 6px;
	position: absolute;
}
.contact-us-page .contact-info .phone a {
	color: #517aff;
}
.contact-us-page .get-in-touch {
	position: relative;
	height: max-content;
	padding: 60px 10px 50px;
}
.contact-us-page .get-in-touch .full-width-heading {
	text-align: center;
	margin-bottom: 32px;
}
.contact-us-page .contact-page-form .wpforms-form textarea.wpforms-field-medium {
	min-height: 152px;
}
.contact-page-form .wpcf7-not-valid-tip {
	color: #ff6464;
	display: block;
	font-size: 9px;
	position: absolute;
	bottom: -24px;
	right: 0;
	font-weight: 600;
}
.wpcf7 form .wpcf7-response-output {
	margin: 5px auto;
	padding: 0.2em 1em;
	text-align: center;
	display: block;
}
.comment-respond .comment-form > p.comment-notes,
.comment-respond .comment-form > p.logged-in-as {
	color: #7a99ff !important;
	font-size: 13px;
	font-weight: 500;
	margin: 0;
	padding: 5px 0 0;
}
.comment-respond .comment-form > p.logged-in-as a {
	color: #ff3131 !important;
	text-decoration: underline;
	font-weight: 600;
}
#trp-floater-ls.trp-bottom-right {
	text-indent: -2000px;
	width: 18px !important;
	min-width: unset;
	padding: 0;
	margin: 0;
	top: 0;
	right: 10%;
	position: absolute;
	bottom: auto;
	height: auto;
	background: unset;
	border: unset;
	box-shadow: unset;
}
.trp-language-wrap {
	display: flex;
	flex-direction: column-reverse;
}
#trp-floater-ls div:not(#trp-floater-poweredby) > a {
	height: 22px;
	margin: 0;
	padding: 0;
}
#trp-floater-ls:focus #trp-floater-ls-language-list,
#trp-floater-ls:hover #trp-floater-ls-language-list {
	display: block;
	height: auto;
}
#trp-floater-ls .trp-with-flags .trp-flag-image {
	margin: 0;
	height: auto;
	padding: 0;
}
.trp-color-dark #trp-floater-ls-language-list .trp-language-wrap a:hover {
	color: unset;
	background: unset;
	border-radius: unset;
}
#trp-floater-ls-current-language.trp-with-flags,
#trp-floater-ls-language-list.trp-with-flags {
	text-align: left;
}
input#ctdb_user_login,
input#ctdb_user_pass {
	-webkit-appearance: none;
	height: 38px;
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	background: #4d6bcc;
	float: left;
	outline: 0;
	border: none;
	position: relative;
	color: #fff;
	padding: 0 10px;
}
input#ctdb_login_submit {
	height: 38px;
	display: block;
	width: 20%;
	font-size: 14px;
	text-align: center;
	min-height: unset;
	border-radius: unset;
	border: unset;
	font-weight: 400;
	color: #fff;
	position: relative;
	top: 2px;
	margin: 50px 0 0;
}
div#ctdb-login-wrap {
	background: linear-gradient(0deg, #0029b1cc, #00155ab0);
	padding: 50px 30px;
}
.ctdb-comments-area .comment-author .avatar {
	width: 22px;
	float: left;
}
.ctdb-comments-area .comment-author a.url {
	max-width: 166px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 9px;
	line-height: 1em;
	display: inline-block;
	margin: 5px 0;
}
.comment-meta .comment-author img.avatar.avatar-32.photo.entered {
	height: 20px;
	width: auto;
}
.comment-metadata,
.wp-block-button .wp-block-button__link {
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 11px;
	text-transform: uppercase;
}
.output-string {
	background: #000;
	padding: 20px 40px;
	margin: 50px 0 149px;
}
video {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	display: block;
	height: fit-content;
}
.dino-outer .dino-container {
	max-width: 600px;
	overflow: hidden;
	width: 100%;
	height: 310px;
	margin: 110px auto 0;
}
body.page-id-21040 .entry-content h2 {
	font-size: 40px;
}
body.page-id-21040 .rank-math-html-sitemap li.rank-math-html-sitemap__item a {
	font-size: 13px;
}
#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
	margin: 0 0 10px;
	font-size: 22px;
	text-transform: capitalize;
	line-height: 1.3em;
}
.affiliate {
	margin: 0 auto;
	padding: 40px;
	position: relative;
	overflow: hidden;
	font-size: 12px;
	text-align: left;
}
body.single .affiliate h3 {
	text-align: center;
	clear: both;
	padding: 0 0 20px;
}
.affiliate img {
	height: 284px;
	object-fit: cover;
	width: 100%;
	padding: 5px;
	max-width: 272px;
}
p.form-submit input#submit {
	padding: 5px 20px;
}
.portfolio-item {
	border-bottom: 6px solid #4d6dd6;
	border-top: 6px solid #4d6dd6;
	border-right: 1px solid #4d6dd6;
	border-left: 1px solid #4d6dd6;
}
.portfolio-item .overlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
	.portfolio-item:hover .overlay {
		opacity: 1;
	}
}
@media (hover: none) and (pointer: coarse) {
	.portfolio-item .overlay {
		opacity: 1;
		background: unset;
	}
}
.nav-pills .nav-link.active {
	background-color: #7694ff;
}
.mean-container .mean-nav ul li:first-child img {
	width: 40px;
	display: block;
	margin: 0 auto;
}
.mean-container .mean-bar {
	width: 100%;
	padding: 0;
	height: 100%;
	z-index: 999;
	position: absolute;
	background: #fff;
	left: 0;
}
.mean-container a.meanmenu-reveal {
	width: 63px;
	height: 50px;
	padding: 5px;
	position: absolute;
	top: 0;
	cursor: pointer;
	text-decoration: none;
	font-weight: 400;
	color: #fff;
	background: #4065de;
	z-index: 999;
	box-sizing: border-box;
	margin-right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.mean-container a.meanmenu-reveal span {
	display: block;
	background: #fff;
	height: 2px;
	margin-top: 7px;
	border-radius: 20px;
	width: 100%;
	box-shadow: 0 0 2px 0 #000000eb;
	max-width: 25px;
	margin-left: auto;
	margin-right: auto;
}
.mean-container a.meanmenu-reveal span:first-child {
	margin-top: 0;
}
.mean-container .mean-nav {
	float: left;
	width: 100%;
	margin-top: 50px;
	border-bottom: 9px solid #547cff;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
}
.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%;
	border-top: 1px solid #233f99;
	margin-top: unset;
}
.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 100%;
	padding: 14px 15px;
	margin: 0;
	text-align: left;
	color: #fff;
	text-decoration: none;
	text-transform: capitalize;
	box-sizing: border-box;
	font-weight: 600;
}
.mean-container .mean-nav ul li li {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 5px 5%;
	visibility: visible;
	font-size: 14px;
}
.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}
.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%;
}
.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}
.mean-container .mean-nav ul li a.mean-expand {
	width: 55px;
	height: 52px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 999;
	font-weight: 600;
	text-align: center;
	padding: 0;
	line-height: 53px;
}
.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}
.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}
.mean-container .mean-bar,
.mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.mean-remove {
	display: none !important;
}
.three-col-box .icon {
	text-align: center;
	font-size: 44px;
	display: block;
	margin: 20px 0;
	color: #7694ff;
}
.banner-two {
	padding: 0;
	position: relative;
	height: calc(100vh - 90px);
}
.banner-two .caption {
	max-width: 50%;
	color: #fff;
	position: absolute;
	z-index: 1;
	top: 0;
	height: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
}
.banner-two .caption h1 {
	color: #fff;
	padding: 0 0 15px;
	font-weight: 700;
	font-size: 40px;
}
.banner-two .caption p {
	color: inherit;
	padding: 0 0 20px;
	font-weight: 400;
	font-size: 16px;
}
.banner-two .caption a.bt.btn-primary,
.category-header-banner .caption a.bt.btn-primary {
	padding: 0.5rem 20px;
	border-radius: 1.25rem;
	box-shadow:
	0 3px 1px -2px rgba(0, 0, 0, 0.2),
	0 2px 2px 0 rgba(0, 0, 0, 0.14),
	0 1px 5px 0 rgba(0, 0, 0, 0.12);
	color: #fff;
	background: #73b82a;
	line-height: 1.75;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: capitalize;
}
.banner-two .caption a.bt.btn-primary:hover,
.category-header-banner .caption a.bt.btn-primary:hover {
	background: #4b8728;
}
.banner-two .hero-image {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.banner-two .hero-image:after {
	content: "";
	left: 0;
	top: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #0000006e;
}
.banner-two.overlay-cap .hero-image:after {
	background: 0 0;
}
.banner-two .hero-image img,
.category-header-banner .hero-image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
}
.banner-two .caption .inner-cap {
	padding: 80px;
	color: #fff;
	background-color: #000000bd;
	background-color: transparent;
}
.banner-two.overlay-cap .inner-cap {
	background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
	.banner-two .caption {
		max-width: 100%;
		padding: 30px;
	}
}
@media only screen and (max-width: 768px) {
	.banner-two .caption .inner-cap {
		padding: 10px !important;
	}
}
.research-badge {
	display: flex;
	align-items: center;
	max-width: 500px;
	padding: 20px;
	border: 1px solid #ddd;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	background: #fff;
	margin: 30px auto;
}
.research-badge-link {
	flex-shrink: 0;
	margin-right: 20px;
}
.research-badge-img {
	max-width: 120px;
	height: auto;
	display: block;
	width: 75px;
}
.research-badge-texts {
	display: flex;
	flex-direction: column;
}
.research-badge-title {
	margin: 0 0 5px;
	color: #0d6efd;
	font-weight: 700;
}
.research-badge-text {
	margin: 0;
	font-size: 0.85rem;
	color: #6c757d;
}
.research-badge-text a {
	color: #6c757d;
	text-decoration: none;
}
.category img.img-fluid.featured-image.wp-post-image {
	width: 100%;
}
.category .category-header-banner {
	position: relative;
	min-height: calc(100vh - 360px);
	margin: 0;
	padding: 0;
}
.category .category-header-banner:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}
.category-header-banner .caption {
	width: 100%;
	color: #fff;
	position: absolute;
	z-index: 1;
	top: 0;
	height: 100%;
	align-items: center;
	display: flex;
	max-width: 580px;
}
.category-header-banner .caption h1 {
	color: #fff;
	padding: 0 0 15px;
	font-weight: 700;
	font-size: 40px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.category-header-banner .caption p {
	color: inherit;
	padding: 0 0 20px;
	line-height: 1.6;
	font-weight: 400;
	font-size: 16px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.category-header-banner .hero-image {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}
.category-header-banner .hero-image:after {
	content: "";
	left: 0;
	top: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background: 0 0;
}
.category-header-banner .caption .inner-cap {
	padding: 70px 60px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.6);
}
.box-x1 {
	padding: 18px;
	border: 1px solid #b5f433;
	border-radius: 10px;
	margin-top: 60px;
}
.highlight-card {
	border: 2px solid #b5f433;
	border-radius: 10px;
	padding: 20px;
	background-color: #fff;
	transition: transform 0.3s;
	display: flex;
	align-items: center;
	min-height: 230px;
}
.highlight-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.highlight-icon {
	font-size: 2rem;
	color: #b5f433;
	margin-bottom: 10px;
	margin-right: 20px;
}
.highlight-title {
	font-weight: 500;
	font-size: 1.2rem;
	margin-bottom: 9px;
}
.highlight-description {
	font-size: 1rem;
}
.highlight-card.st2 {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px 0;
}
.highlight-card.st2 .highlight-title {
	margin-bottom: 10px;
	margin-top: 15px;
}
.section-5box h2 {
	margin-bottom: 40px;
}
.highlight-card.st3 {
	background: url(images/Union.png) center/104% no-repeat #b5f433;
	align-items: flex-start;
	min-height: 220px;
	display: flex;
	align-items: flex-start;
}
.highlight-card.st3 .highlight-title {
	font-size: 20px;
	font-weight: 600;
}
.highlight-card.st3 .highlight-content {
	display: flex;
	flex-direction: column;
	min-height: 176px !important;
}
.post-slider-wrap {
	padding: 30px 0 80px;
}
.post-slider-item {
	position: relative;
	height: 400px;
	overflow: hidden;
	border-radius: 8px;
}
.post-slider-overlay,
.single-post-header .page_caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	align-items: center;
}
.owl-carousel .item {
	height: 320px;
}
.post-slider-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}
.post-slider-overlay {
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	transition: background 0.3s;
}
.post-slider-item:hover .post-slider-overlay {
	background: rgba(0, 0, 0, 0.7);
}
.post-slider-content {
	text-align: center;
	color: #fff;
	padding: 20px;
	max-width: 90%;
}
.post-slider-content h4 {
	font-size: 18px;
	margin: 0 0 20px;
	font-weight: 500;
	color: #fff;
	line-height: 1.3;
}
.post-slider-author {
	font-size: 16px;
	margin: 10px 0;
	color: #fff;
	font-weight: 500;
}
.post-slider-date {
	font-size: 14px;
	margin: 10px 0 0;
	color: #ddd;
}
@media (max-width: 768px) {
	.four-col-box .col {
		min-width: 100%;
	}
	.category .category-header-banner {
		height: 400px;
		min-height: 350px;
	}
	.category-header-banner .caption .inner-cap {
		padding: 20px !important;
	}
	.category-header-banner .caption h1 {
		font-size: 32px;
	}
	.category-header-banner .caption p {
		font-size: 15px;
	}
	.post-slider-item {
		height: 300px;
	}
	.post-slider-content h4 {
		font-size: 18px;
	}
	.post-slider-author {
		font-size: 14px;
	}
	.post-slider-date {
		font-size: 12px;
	}
}
@media (max-width: 480px) {
	.banner-two .caption .inner-cap {
		padding: 45px;
	}
	.banner-two .caption h1 {
		font-size: 30px;
	}
	.banner-two {
		max-height: 280px;
	}
	.category .category-header-banner {
		height: 350px;
		min-height: 300px;
	}
	.category-header-banner .caption .inner-cap {
		padding: 35px 35px 15px !important;
		max-width: 92%;
		margin: 0 auto;
	}
	.category-header-banner .caption h1 {
		font-size: 28px;
		padding: 0 0 10px;
	}
	.category-header-banner .caption p {
		font-size: 14px;
		padding: 0 0 15px;
	}
	.category-header-banner .caption {
		left: 0;
	}
	body .p-3 {
		padding: 0 !important;
	}
	.single-post .page_header .page_heading {
		font-size: 28px;
	}
}
.single-post-header {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-image: none !important;
}
.single-post-header .page_header_img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}
.single-post-header .page_caption {
	height: 100%;
	display: flex;
	justify-content: center;
}
.related-post-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.related-post-item:last-child {
	border-bottom: none;
}
.related-post-thumb {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	overflow: hidden;
	border-radius: 4px;
	display: block;
}
.related-post-thumb img {
	width: 70px !important;
	height: 70px !important;
	object-fit: cover;
	display: block;
}
.related-post-title {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
	text-decoration: none;
}
.related-post-title:hover {
	color: #0073aa;
}
